]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - TODO
move lib/updateinterwikimap shell script to admin
[SourceForge/phpwiki.git] / TODO
1 short-term TODO:
2 * rename should check existing subpages and rename these also.
3 * Sidebar: merge AVL theme (internal MonoBook derivate with customizable 
4   box states) with Sidebar
5 * clarify issues with pagenames: "," breaks PageList. Escape with "~" or "\"?
6   or htmlencode forbidden chars.
7 * fix Wikiwys with prettyurl, link labels and killing plugin args
8 * WatchList (?)
9
10 TODO:
11 architecture:
12 * flush <head> before <body> to parallelize css/js requests
13 * Optimization: try template_lite or try simple regex replacements as before.
14 * Evaluate some xml syntax for plugins (as in MediaWiki): 
15   <IncludePages pages=<plugin-list BackLinks/> />
16   <BackLink include_self=false />
17 4  And/or fix PLUGIN_MARKUP_MAP aliases which break the InlineParser.
18 * Fix postgresql stored procedures.
19 * Move serialized data from page_data / version_data to seperate SQL columns.
20 * WikiDB hooks. (?)
21 * Content expansion hooks in transformer. (SearchHighlight)
22 * Convert RecentChanges to PageList as source for format options. 
23   Generic rss, rdf handling.
24 * embedd basic RDF in XHTML (dc, foaf, ...) for GRDDL. 
25 * Do Microformats automatically? It's a stupid hack so support it only optionally.
26   ToDo: for Calendar, CalendarList, FoafPlugin
27
28 new:
29 * stabilize WYSIWYG converters
30 * HtmlParser and importer plugins (word, excel, html, interwiki)
31 * SemanticWeb link parser+db update, plugins: SemanticSearchAdvanced, SPARQL (php5 only)
32   include or support rdfapi? or write our own Sparql parser? (see pOWL OntoWiki)
33 * ATOM (experimentally done), TrackBack, PingBack services (take it from DokuWiki)
34 * finish Blog theme
35 * lang: mapping
36 * fix ENABLE_MARKUP_DIVSPAN
37 * WikiUser/EMailConfirm (?)
38 * ImportMediaWiki, ImportRdf, ImportOwl, ExportMediaWiki, ExportRdf, ExportOwl
39 * WikiUser/OpenID (from DokuWiki) - Status::in_work
40 * more meta stuff: OpenSearch, format=dc (Dublin Core)
41 * support missing REST interfaces (optional): action=remove => DELETE,
42   action=editpage and minor updates (rating,...) => PUT.
43   with fallbacks to POST
44 * format=mm (FreeMind) for RecentChanges, SemanticWeb's and simple PageList's. 
45   See http://wikkawiki.org/FreeMind. Maybe format=mmap for the commercial MindMap.
46 * Spellcheck AJAX backend (see DokuWiki)
47 * GeSHi Highlighter plugin
48
49 fixes:
50 * fix pagelist nopage unification (store just key as names?)
51 * pcre textsearch with multiple words: order-independency
52 * SQL textsearch with multiple words: AND 
53   (the two new failing unit tests)
54 * fix textsearch optimize with "word -word -word"
55 * format=printable (?) for non js/dom
56
57 OLDER TODO's:
58 Maybe (probably defer):
59 * CalendarList/UnfoldSubpages/Blog changes should update links to the basepage.
60 * Warn other editors
61 * http://www.movabletype.org/docs/mttrackback.html, http://umsu.de/beta-blogger/
62 * http://www.hixie.ch/specs/pingback/pingback, http://umsu.de/beta-blogger/
63 * Other languages: check page for [de:pagename] pseudo-interwiki links?
64 * pagerank algo: HITS http://www2002.org/CDROM/refereed/643/node1.html
65   FractalNavigation (pagetrail analysis)
66 * fix more wikilens libs and plugins, layout improvements (header, sidebar include)
67 * format=rdf and a new owl PageType (similar to InterWikiMap)
68   to statically define predicates used by PhpWiki:SemanticWeb
69   (semantically enriched links, like interwiki links).
70 * SqlResult paging (finished?)
71 * plugin\WikiAdminSetAclSimple, Chmod
72 * plugin\NewUserWelcomePage.php (some better template solution)
73 * plugin\SearchHighlight
74 * logfile stuff:
75 *   plugin\RecentReferrers
76 *   WikiAccessRestrictions
77 * SpamAssassinIntegration
78
79 already done lately:
80 * PgsrcTranslation slowness (update_locale?)
81 * overlarge session data
82 * handle empty DEFAULT_LANGUAGE: proper client detection
83 * fix glob errors
84 * display login page on "$action is disallowed on this wiki for user ..."
85 * remove "Invalid username" warning on "sign in as" button click
86 * themes/blog, BlogArchivesPlugin
87 * test WikiPluginCached support for image maps and svg, swf, eps, ...
88   defer header logic
89 * don't print php notices and warnings as red errors.
90   just green or grey
91 * rewrite OldTextFormattingRules, AnciennesR%E8glesDeFormatage
92   for proper importing
93 * PageChangeNotification other actions also (rename, remove).
94   better subject on create.
95 * do all unit tests:
96   all langs, all db backends, all pages import and export
97 * javascript search&replace
98 * pdf button when an external html2pdf app is defined
99   (enabled at PhpWikiDemo)
100 * enhanced WikiPluginCached (static, ondemand)
101 * added LdapSearchPlugin 
102 * more PageList options
103
104 2004-11-10 20:25:13 rurban
105 * optimize increaseHitCount, esp. for mysql.
106 * prepend dirs to the include_path (phpwiki_dir for faster searches)
107 * Pear_DB version logic (awful but needed)
108 * fix broken ADODB quote
109 * _extract_page_data simplification
110
111 2004-11-10 16:24:58 rurban
112 * requires newer Pear_DB (as the internal one): quote() uses now escapeSimple for strings
113 * ACCESS_LOG_SQL: fix cause request not yet initialized
114 * WikiDB: moved SQL specific methods upwards
115 * new Pear_DB quoting: same as ADODB and as newer Pear_DB.
116   fixes all around: WikiGroup, WikiUserNew SQL methods, SQL logging
117
118 2004-11-09 18:10:22 rurban
119 * revert to the wikidb ref passing. there's no memory abuse there.
120 * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
121   store page ids with getPageLinks (GleanDescription) of all existing pages, which 
122   are also needed at the rendering for linkExistingWikiWord().
123   pass options to pageiterator.
124   use this cache also for _get_pageid()
125   This saves about 8 SELECT count per page (num all pagelinks).
126 * fix passing of all page fields to the pageiterator.
127 * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
128
129 1.3.11 Goals:
130
131     * fix more sf.net bugs and patches (90%)
132     * fix LDAP with USER_AUTH_POLICY=old (100%)
133     * ADODB lock and transaction fixes (50%)
134     * some more theme beautification, new crao and nuke theme, 
135       cut or split long sidebar links somehow (100%)
136     * add some basic Recommender engine to enable rating recommendations, 
137       fix metadata getAvg and test it. (100%)
138     * fix metadata RateIt methods and RateIt usergroups, (100%)
139     * rewrite WikiGroup to be current_user independent to be able 
140       to ask for group membership of any user. (100%)
141     * more action=upgrade (diffs, multi-page interface) (60%)
142     * finish PdfOutput plugin and button (80%)
143     * add editpage javascript toolbar (100%)
144     * try the php-internal soap extension, test SOAP, fix GooglePlugin+AmazonPlugin (0%)
145     * iniconfig helpers (Joby?) (0%)
146     * improve more plugins caching (90%)
147
148     * change remove_page in WikiDb API, so that RecentChanges displays it.
149       (just purge all revisions?)
150     * rename global $Theme to $WikiTheme (gforge nameclash) (100%)
151
152 1.4.0 Goals:
153
154     * fix WikiAdminSetAcl (least common ACL denominator) (100%)
155     * enable ACL's in the mime dumps (100%)
156     * force strict PagePermissions on all plugins, which require now 
157       admin and some more administrative actions (90%)
158     * complete full paging support (limit=, prev/next buttons in PageList) (95%)
159       fix paging in MostPopular
160     * fix possibly remaining WikiGroup problems (100%)
161     * fix possibly remaining RateIt problems (50%)
162     * finalize PdfOutput (0%)
163       external works fine
164     * finalize editpage javascript toolbar (80%)
165       fix search/replace bug (100%)
166     * finalize SOAP support (0%)
167     * better utf-8 support (50%)