]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/ReleaseNotes
bump version
[SourceForge/phpwiki.git] / pgsrc / ReleaseNotes
1 Date: Tue, 2 Jan 2007 12:35:17 +0000
2 Mime-Version: 1.0 (Produced by PhpWiki 1.3.13)
3 X-Rcs-Id: $Id: ReleaseNotes,v 1.66 2007-01-02 13:24:41 rurban Exp $
4 Content-Type: application/x-phpwiki;
5   pagename=ReleaseNotes;
6   pgsrc_version="2 $Revision: 1.66 $";
7   flags=PAGE_LOCKED;
8   markup=2;
9   charset=iso-8859-1
10 Content-Transfer-Encoding: binary
11
12 1.3.13  Jan, 15 2007 Reini Urban
13
14 fixes:
15 * DB: use ANSI SQL statements (oracle by umfang699, postgresql by Reini Urban)
16 * fixed blog and Monobook theme layout
17 * xhtml dump for subpages into subdirectories, fixed filenames and subdir names
18 * fixed loading pages into foreign charsets (such as utf-8)
19 * ErrorManager: patch #1438439 by Matt Brown: 
20   Only set no-cache headers when error output is generated
21 * ImageLinks: patch #1348996 by Robert Litwiniec
22 * fix bug #1327912 numeric pagenames can break plugins (Joachim Lous)
23 * improve pdf output via external converter
24 * force integer constants to be set as integer
25 * partially fix CRC overflow in ziplib (Bob Apthorpe)
26 * testsuite: force C locale and EN $LANG
27 * fixed display of edited InterWikiMap. static var issue
28 * fixed display of "Merge and Edit: pagename" header in merge edit (hack!)
29 * WikiFormRich: fix name=value parsing. fix limit with plugin-list invocations
30 * plugin/Diff: fix lib/diff loading conflicts by removing duplicate classes
31 * plugin/Ploticus: support PLOTICUS_PREFABS config.ini setting (documented but never worked)
32 * fix edit:locked label selection: typo, was edit:lock
33 * fixed moacdropdown integration
34 * fixed fortune error handling
35 * fixed limit handling with multiple pagelists: don't overwrite request arg
36
37 changes:
38 * add linkrelation support: getPageLinks returns now an array of hashes. optimize get_links for relations.
39 * moved default help pages to Help/ subpages
40 * generalized ENABLE_HTMLAREA3 to ENABLE_WYSIWYG
41 * DB: foreign key support in schemas, simplify methods
42 * print "Ignored stoplist words" on FullTextSearch, 
43   add FULLTEXTSEARCH_STOPLIST constant,
44   make TextSearchQuery->_stoplist localizable
45 * fix arg order in WikiDB_backend_search()
46 * remove user table: upgrade from SQL db.
47 * updated locale for it, de and es (google translation)
48 * improve loading multiple version archives such as full zipdumps. force temp. overwrite.
49   support loadfile for multipart archives (full dumps) automatically
50 * add new empty InterWiki moniker ":", not to store backlinks [:DontStoreLink] (experimental)
51 * omit actionbar from pdf output
52 * support charsets in pagedumps for loadfile and virgin setup 
53 * _BackendInfoPlugin prints linkinfo also.
54 * ExternalSearchPlugin displays the button at the right. Change it with 
55   EXTERNALSEARCH_DEFAULT_BUTTON_POSITION = left, or the argument button_position=left or none.
56 * disabled postgresql optimize() in favor of autovacuum, 
57   enable it in the backend method if the web user is the table owner (security risk)
58 * protected tests. only allow localhost
59 * optimize ArchiveCleaner for the new default case (since 1.3.11): Keep all revisions.
60 * changed the default DB backend from gdbm to dba db4
61 * changed action=upgrade to check and store a db version
62 * don't loadfile *.orig files (this might be a limitation. sorry)
63 * rename _AuthFile to DebugAuthFile in upgrade
64 * support more WikiFormRich method arguments: url, dynurl, xmlrpc, dynxmlrpc, 
65   the autocomplete option for pulldown[] and editbox[] and the new combobox[] widget.
66 * updated most template files for harmonisation
67 * changed default LiveSearch method in search.tmpl from url to xmlrpc. faster and less hackish.
68 * fixed all templates with missing revision check. can be false.
69 * rewrote and redefined WikiDB::listRelations. list only all relations as array.
70 * changed Semantic attribute syntax from ":-" to ":=" (relevant to cvs users only)
71 * change TextSearchQuery handling of regex=pcre: plain string, no parsing at all, 
72   detect and apply modifiers
73
74 new:
75 * add SemanticRelations syntax and db structure.
76   Sample: pagename=SanDiego isa::city => SanDiego relation=isa, linkto=city
77   population:=1,305,736 (store unified attribute in pagedata)
78 * new experimental WYSIWYG edit library framework: 
79   WikiWyg, tinymce, FCKeditor, htmlarea3, htmlarea2, spaw
80 * new wysiwyg_editor feature by Jean-Nicolas GEREONE and Sabri LABBENE (experimental)
81 * added postgresql tsearch2 support
82 * new experimental flatfile backend: readable page source files (experimental)
83 * added new xmlrpc methods: listPlugins, getPluginSynopsis, mailPasswordToUser, 
84   getUploadedFileInfo, listRelations, callPlugin
85 * new plugins: SemanticSearch, ListRelations, FileInfo, BoxRight, PasswordReset, WatchPage
86 * add <nowiki></nowiki> tag: Transform only html markup and entities
87 * new option DISABLE_MARKUP_WIKIWORD to force [ ] for links
88 * new option ENABLE_MARKUP_DIVSPAN (experimental)
89 * new option PLUGIN_MARKUP_MAP for xml-style plugin syntax (experimental)
90 * support Windows NTLM Auth via HttpAuth: mod_ntlm (apache1+2. also on linux) 
91   and mod_auth_sspi (apache2. better, but windows only)
92 * patch #1377011 by Matt Brown: add DATABASE_OPTIMISE_FREQUENCY
93 * new options db-check and db-rebuild for WikiAdminPlugin.
94 * new MailNotify class, simplified WikiDB.php
95 * added "Printable version" js to monobook theme. See License in 
96   http://www.howtocreate.co.uk/jslibs/termsOfUse.html
97 * new ActionButton function for MonoBook with selected state. (tab state)
98 * added SyncWiki plugin to sync pages and uploads with master wiki.
99 * added boolean UPLOAD_USERDIR to upload into user-specific directory.
100 * added support for multiple page arguments in BackLinks. Logical AND.
101 * added wikidb->backend->rebuild()
102 * added "Keep old" and "Overwrite with new" buttons and actions for loadfile merge edit.
103 * added lib/XmlRpcClient, xmlrpc methods to lib/HttpClient and acdropdown.js
104 * created Help/*Plugin stubs for all plugins in pgsrc
105 * added a new _DEBUG_REMOTE flag to debug into remote sessions (xmlrpc, ajax, ...)
106 * added WikiDB::linkSearch and backend/dumb/~LinkSearchIter.php. Mainly for SemanticSearch, 
107   but can be used for BackLinks et al also
108
109 1.3.12p3 Jun, 18 2006, Reini Urban:
110
111 * fix [/Subpage] links
112 * fix pref storing of already crypted passwords. bug #1327470 (Tom Harding)
113 * fix cache headers on errors (@ob_end_flush issue). (matt brown)
114 * fix BogoLogin when ENABLE_PAGEPERM=false. patch #1438392 by Matt Brown
115 * unique WIKI_ID cookies per WIKI_NAME. patch #1333957 by Matt Brown
116 * added DATABASE_OPTIMISE_FREQUENCY feature. patch #1377011 by Matt Brown
117 * don't check lock_table priv on action=upgrade
118 * fix _accesslog->logtable and _is_buffering_output warnings (uckelman)
119 * do not print wrong length header on url-rewriting. bug #1376007
120 * fix pref->set: Error generated when login out. bug #1355533 (Thierry Nabeth)
121 * fix default preferences for editheight maxrows, by Manuel Vacelet.
122 * fix DBAUTH arguments to be position independent, bug #1358973
123 * add PdoDbPassUser user
124 * fix output of Homepage prefs update
125 * update config-dist.ini format from CVS
126 * update configurator.php from CVS
127 * print optimize wikidb only when DEBUG
128 * simplify messages for translators
129 * added ImageTile.php
130 * added tsearch2 to doc/INSTALL.pgsql
131 * added basepage to Cached_WikiLink::asXML for subpages within CreateTOC
132 * print filename on dba access error
133 * use bind_textdomain_codeset. bug #1480077 (Kai Krakow)
134 * make TextSearchQuery->_stoplist localizable and overridable within config.ini
135 * fixes for mysql 5.x wantedpages join
136 * add rel=nofollow to more actions. patch by Matt Brown
137 * add verify to RevertPage, display reverted page as template
138 * update plugin/CalendarList: patches by mpullen and banjo
139 * update plugin/GraphViz
140 * added plugin/PasswordReset
141 * fixed hash() in plugin/RateIt
142 * plugin/_AuthInfo: protect File passwords
143 * added Captcha to Crao edit template
144 * added MacOSX Pdf button
145 * fixed Portland and Wordpress editpage template
146 * removed Wordpress buttons, transparent default buttons should be used.
147 * disabled RelatedChanges button
148
149 1.3.12p2 Mar, 7 2006, Reini Urban:
150
151 * fix change prefs for File WikiUser
152 * fix HomepagePrefs update message
153 * remove plugin/Imdb
154 * apply PluginToolbarButton fix from cvs
155
156 1.3.12p1 Mar, 4 2006, Reini Urban:
157
158 * fix "Call-time pass-by-reference" in CreateBib
159 * fix parse error in SiteMap.php
160
161 1.3.12 Mar, 4 2006, Reini Urban:
162
163 Rename function hash() and method final() for php-5.1 compatibility.
164 Add various backports from cvs:
165
166 fixes:
167 * fix ZipReader
168 * Fix "Call-time pass-by-reference has been deprecated" errors,
169   allow_call_time_pass_reference = Off
170 * fix broken locale update for php-5.1.1
171 * default locale fix by Thomas Harding
172 * fix Bug #1381464 "Duplicate functions" with php-5.1.1
173 * InterWikiMap: allow spaces in paths, even implicitly. fixes bug #1218733
174 * fix 'VOID' in TextSearchQuery
175 * remove LIMIT 1 in ADODB
176 * fix SQL WantedPages
177 * fixed fulltext search and stoplist handling
178 * fix bug #1327912 numeric pagenames can break plugins (Joachim Lous)
179 * fix xmlrpc and tests/unit for !register_long_arrays
180 * ensure absolute uploads path
181 * fix GoogleMaps syntax error
182 * fix ListPages for non-SQL backends. Add top3recs as default only if 
183   ratings are available
184 * plugin/PageTrail improved empty cookie
185 * plugin/_WikiTranslation: protect against 2x define
186 * remove mysql specific ISNULL()
187 * fix signout pref error
188 * don't log on ACCESS_LOG_SQL < 2
189
190 changes:
191 * cache EditToolbar popup content
192 * beautify SCRIPT lines
193 * added cfg-able markups only for default TextTransformation, not 
194   for links and others
195 * add a proper Content-Encoding: gzip if compressed, and omit Content-Length then.
196   Trick to send the correct gzipped Content-Length
197 * set dsn after SQL/ADODB switches in WikiDB backends for easier unit testing
198 * email notifications: better From: header
199 * add DBAUTH_PREF_INSERT: self-creating users. by John Stevens
200 * improved WikiUser/Ldap error description
201 * cache SystemInfo methods
202 * VisualWiki: remove INCLUDED from EXCLUDED, includes override excludes.
203 * improve postgresql schemas (tsearch2 and stored procedures not yet)
204
205 new:
206 * added NUM_SPAM_LINKS as config.ini option
207 * new ENABLE_SPAMBLOCKLIST, lib/SpamBlocklist.php:
208   check external links against surbl.org and bl.spamcop.net 
209 * added Captcha class and better spiral
210 * added get_captcha_random_word() contributed by Dan Frankowski
211 * dumphtml when not at admin page: dump the current or given page
212 * added plugin FileInfo
213 * major PhotoAlbum feature enhancements by Thomas Harding: 
214   slides mode, real thumbnails
215 * add more backends to the testsuite (PearDB_pgsql, ...)
216
217 1.3.11p1 Sep, 18 2005, Reini Urban:
218
219 fixes:
220 * added missing pgsrc/OldStyleTablesPlugin
221 * fixed OldStyleTables plugin with args
222 * protect against Content-Length if headers_sent()
223 * fixed ENABLE_MARKUP_TEMPLATE warning if undefined
224 * fixed writing unwanted accesslog sql entries
225 * fixed WikiAdminSelect preselection
226 * fixed passencrypt.php for PHP5 !register_long_arrays
227 * fixed configurator for DATABASE_DSN, USER_AUTH_ORDER
228
229 changes:
230 * optimized explodePageList to use SQL when available 
231   (titleSearch instead of getAllPages)
232 * added optimization for a new ALL textsearch token 
233   (* => pcre: .*, sql: %)
234 * configurator takes default description from config-dist.ini
235 * added some missing configurator constants
236
237 1.3.11 Sep, 11 2005, Reini Urban, Joel Uckelman:
238
239 Lots of bugfixes, and some feature and performance enhancements.
240 A new EDIT_TOOLBAR from mediawiki, more page permission enhancements, 
241 reduced memory usage for pagelists which need no page content, 
242 related improvement for OldMarkup crashes because of PCRE memory exhaustion.%%%
243 New <!plugin-list !> syntax and PhpWiki:PageListLibrary args.%%%
244 Because of SQL changes you'd need to ?action=upgrade to update for SQL.
245
246 fixes:
247 * fixed crash after login, by eliminating endless recursion in 
248   group isAdmin() checks
249 * fixed syntax errors in signin.tmpl 
250 * fixed missing DEBUG warnings (Support #954260)
251 * PhpWiki is now allow_call_time_pass_reference = Off safe (php.ini)
252   Some external libraries are not (Pear_DB odbc, adodb oracle)
253 * fixed sql statements for pagedata where it is not needed, fixing the 
254   typical PageList memory exhaustion on simple page lists.
255   cached_html is handled complete seperate now.
256 * fixed and improved WikiDB pageid caching.
257 * fixed some WikiGroup errors for WIKIPAGE and DB
258 * fixed JS_SEARCHREPLACE
259 * fixed rename with dba
260 * fixed Today link in all templates if USE_PATH_INFO = false
261 * fixed PluginManager fatal error line 222
262 * utf-8 pagenames fixed (typed foreign names from IE)
263 * CGI: no PATH_INFO fix 
264 * fix some too loose PhpWiki:PagePermissions for signed, but not authenticated users
265   (admin, owner, creator), and edit and view for Bogo and Password users 
266 * security fix for create ACL: action=edit is now checked for create
267 * fixed important WikiDB bug with DEBUG > 0: wrong assertion 
268   around line 172 (#954648)
269 * fixed flatfile ArchiveCleaner assertion
270 * RssFeedPlugin stability fix for empty feeds or broken connections 
271 * fixed Sidebar theme CSS, added existing dates to jscalendar
272 * fixed PhpWiki:ImageLinks, broken since 1.3.10 (Bug #956068)
273 * fixed lib/pear/File_Passwd loading
274 * TranslateText: verbatim needed a pagebreak
275 * fixed duplicate session_id warning with adodb
276 * fixed adodb ~DbPassUser login
277 * fixed external ~DbPassUser login
278 * fixed adodb action=upgrade
279 * fixed ~FilePassUser locking problems and session handling
280 * fixed a lot of LDAP auth and group issues
281 * fixed LDAP options handling (by John Cole)
282 * fixed possible security problems: allowing only posixly strict usernames, 
283   and an actual LDAP Injection problem, detected by Steve Christey, MITRE.
284 * honor s=wildcard arguments for ~WikiAdmin plugins
285 * fixed flatfile assertion (#963268) - check existing previous version
286 * fixed all msg references from index.php to config/config.ini
287 * fixed immediate LANG and THEME in-session updates if not stored in prefs
288 * fixed USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides ~HttpAuth)
289   and removed LDAP, POP3, IMAP default configs.
290 * RelatedChanges: fixed days links
291 * fix Rename: Change pagename in all linked pages
292 * fixed PhpWiki:PageChangeNotification for not-current users
293 * fixed UpLoadPlugin for filenames with space (Bug #969532)
294 * fixed label support for CreateTocPlugin (Bug #969495)
295 * fixed Apache2 crashing with old markup and the CreateTocPlugin. 
296 * catch fatals and request->args changes on dumping
297 * fixed unneeded UserPreferences plugin login screen on dumphtml
298 * catch SOAP fatal on GooglePlugin without GOOGLE_LICENSE_KEY
299 * silently ignore jshide argument on MacIE for AddCommentPlugin and CreateTocPlugin
300 * fixed xmlrpc to be able to use the native xmlrpc extension.
301 * fixed xmlrpc wiki.listLinks method: "name" => "page" param
302 * fixed xmlrpc security not using eval on usercode anymore
303 * fixed WikiAdminUtils behaviour on POST
304 * fixed strict login on "Db" (by Mikhail Vladimirov)
305 * more /tmp warnings on flatfile (by Joel Uckelman)
306
307 changes:
308 * ~WikiAdminSetAcl functional
309 * enabled PhpWiki:PagePermissions for all admin plugins (no admin required): 
310   Remove, Rename, Replace, ~SetAcl, Chown
311 * renamed DB_Session.php to ~DbSession.php and moved libs to a subdir
312 * new Error-style with collapsed output of repeated messages 
313 * whitespace trim pagenames to avoid abuse
314 * no double login page header, better login msg. 
315 * improved ~FileFinder include_path logic (~NormalizeLocalFileName, ...)
316 ** init global FileFinder to add proper include paths at startup
317    adds PHPWIKI_DIR to the front if started from another dir, lib/pear to the end.
318 ** fix slashify for Windows
319 * check more config-default and predefined constants 
320 * ~AutoSplit pagenames at subpage seperators, esp for Sidebar theme
321 * improve Pagelist layout by equal pagename width for limited lists 
322 * added CPAN, OsFaq2, WikiLens to interwiki.map
323 * ExternalSearchPlugin useimage arg (RFE #952323)
324 * simplified some strings for easier translation 
325 * added hash and object support for ~SessionPassUser userid session variable
326 * auth page=>DB ~PassUser upgrade: delete existing Page prefs, if Db prefs are saved.
327 * vastly improved french locale support, which is now complete (by Pierrick Meignen).
328   english, german and french are now completely translated. The others partially.
329 * improved ~SetupWiki (virgin setup) loading all required action pages in english,
330   if no foreign translation found (by Pierrick Meignen)
331 * show RelatedChanges only if minimum two links on the current page.
332 * PageDump: ViewSource link, better actionpage usage, MessageID TZ
333 * brought ~WikiUser (old) uptodate
334 * added owner and acl fields to dumps
335 * import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini
336 * renamed global $Theme to $~WikiTheme (gforge nameclash)
337 * aggressive WikiDB and cache memory optimization: don't cache %content 
338   and _cached_html if not needed.
339 * PageDump added format=backup: dump all revisions.
340 * force mysql to use auto_increment page.id for performance reasons.
341   call ?action=upgrade
342 * extended all plugins which take "pages" and "exclude" params to accept 
343   <!plugin-list !> pagelists
344 * enabled limit, exclude and sortby PageList options for almost all db backends natively
345 * improved SqlResult: templates and variable expansion.
346   automatic paging not yet.
347 * use latest Pear DB features, which will break on older PearDB libs. 
348   (escapeSimple). Use INCLUDE_PATH to override.
349 * INCLUDE_PATH is now prepended, not appended. PHPWIKI_DIR is forced to be first.
350 * rewrote OldTextFormattingRules, AnciennesR%E8glesDeFormatage
351   for proper importing (PCRE+memory related crashes on older php's)
352 * added extra page.cached_html column. ?action=upgrade or PhpWikiAdministration
353   "Convert cached_html" is needed to convert your old pagedata "_cached_html".
354 * page deletion is now undoable and being seen in RecentChanges. Purge pages 
355   by new admin button.
356 * zipdump and dumphtml contains now images, buttons and css
357 * improved _WikiTranslation performance with gettext extension
358 * moved DbSession methods to extra files as with WikiUser files.
359 * changed config.ini options:
360   KEYWORDS: "Category:Topic" => "Category* OR Topic*", 
361   KEYWORD_LINK_REGEXP removed,
362 * action=dumphtml dumps only the current page unless done from PhpWikiAdministration
363
364 new:
365 * new ENABLE_EDIT_TOOLBAR (from mediawiki), JS_SEARCHREPLACE, 
366   AddCategory, AddPlugin buttons
367 * new other config options: 
368 ** ENABLE_PAGEPERM to turn off ACL (no owner at the statusline if off)
369 ** FORTUNE_DIR to enable random quotes for new pages
370 ** GOOGLE_LINKS_NOFOLLOW, ACCESS_LOG_SQL, BABYCART_PATH, BLOG_DEFAULT_EMPTY_PREFIX, 
371    CATEGORY_GROUP_PAGE, DATABASE_PERSISTENT, DBADMIN_PASSWD, DBADMIN_USER,
372    DEFAULT_DUMP_DIR, DISABLE_GETIMAGESIZE, ENABLE_DOUBLECLICKEDIT,
373    ENABLE_LIVESEARCH, ENABLE_MODERATEDPAGE_ALL, ENABLE_RAW_HTML_LOCKEDONLY, 
374    ENABLE_RAW_HTML_SAFE, ENABLE_SPAMASSASSIN, ENABLE_XHTML_XML,
375    GOOGLE_LICENSE_KEY, HTML_DUMP_DIR, LDAP_OU_GROUP, LDAP_OU_USERS
376    PLUGIN_CACHED_CACHE_DIR, PLUGIN_CACHED_DATABASE, PLUGIN_CACHED_FILENAME_PREFIX,
377    PLUGIN_CACHED_FORCE_SYNCMAP, PLUGIN_CACHED_HIGHWATER, 
378    PLUGIN_CACHED_IMGTYPES, PLUGIN_CACHED_LOWWATER, PLUGIN_CACHED_MAXARGLEN, 
379    PLUGIN_CACHED_MAXLIFETIME, PLUGIN_CACHED_USECACHE, TEMP_DIR, USECACHE, 
380    USE_EXTERNAL_HTML2PDF, ENABLE_MARKUP_COLOR, ENABLE_MARKUP_TEMPLATE
381 * implemented WikiDB page creator and ownership
382 * added paging support for simple one-column pagelists
383 * added new PageList options: cols, azhead, comma, commasep, ordered
384   and enabled the new args on most plugins.
385 * new pagename utf8 detection logic (from mediawiki)
386 * added action revert, with button from action=diff
387 * added new <!plugin-list PluginName args!> syntax within plugin args
388 * new plugin IncludePages, esp. for <!plugin-list !>
389 * added template variable expansion support to the CreatePagePlugin
390 * added new <!plugin-list PluginName args!> syntax within plugin args
391 * new plugin IncludePages, esp. for <!plugin-list !>
392 * added template variable expansion support to the CreatePagePlugin
393 * WikiSpam prevention: 
394   ** On GOOGLE_LINKS_NOFOLLOW add rel=nowfollow to all external 
395      links, unless the author was authenticated.
396   ** max 20 new links hardcoded
397   ** new babycart module interfacing SpamAssassin
398 * added WikiPluginCached support for image maps, static cache in uploads/ and SVG
399 * added case-sensitive/insensitive and regex searching, replace also
400 * added action=pdf: only page formatter missing, use USE_EXTERNAL_HTML2PDF instead
401 * new ~XmlParser, ~HtmlParser: new libs for HTML->wiki import and htmlarea3 support
402 * new action=chown|setacl|rename|dump action shortcuts pointing to the plugin
403 * new SyntaxHighlighter plugin (based on work by alecthomas),
404   needs highlight from http://www.andre-simon.de/
405 * new PloticusPlugin. Full application/xhtml+xml support not yet 
406   (javascript document.write() not supported with ENABLE_XHTML_XML)
407 * new ListPages plugin (by Dan Frankowski)
408 * new TeX2pngPlugin (by Pierrick Meignen)
409 * added support for ?force_unlock=1 parameter for stale File_Passwd locks
410   (should not be needed anymore, we lock only when we actually change the passwd)
411 * added mysql-4.1 fix at action=upgrade,
412   added CACHE_CONTROL NONE => NO_CACHE config.ini fix to action=upgrade
413 * author, owner, creator support for WikiAdmin* and AllPages plugins:
414 ** AllPagesCreatedByMe, AllPagesLastEditedByMe, AllPagesOwnedByMe
415 * added option regex to ~WikiAdminSearchReplace and ~WikiAdminRename
416 * added oracle PearDB backend (by Philippe Vanhaesendonck)
417 * added experimental SearchHighlight feature (not for HTML yet)
418 * added experimental LiveSearch feature
419 * added [OverWrite All] button to loadfile action on the first page.
420 * added [Load & OverWrite] button to PhpWikiAdministration
421 * performance: use cached static config/config.php, if it's writable by 
422   the webserver. (experimental)
423 * added ACCESS_LOG_SQL &1: read, &2 write. new accesslog sql table. 
424   for various log analysis: abuse prevention, recent referrers.
425 * added more PageChangeNotification on other actions: rename, remove.
426   changed subject on create. Collapse mult. emails to one.
427 * added new PhpWiki:WikiFormRich plugin
428 * added new AppendTextPlugin (by Pascal Giard)
429 * added RSS2 link (format=rss2)  in RecentChanges. (no cloud channel yet)
430 * added PhpWikiAdministration WikiDB buttons:
431   [Purge all empty unreferenced pages], [Convert cached_html]
432 * (nyi) new experimental ModeratedPage feature. (i.e. delayed POST actions)
433 * new edit "[] old markup [Convert]" button to convert and save to new markup.
434 * new LinkDatabase plugin and actionpage for the http://touchgraph.sourceforge.net/ ~WikiBrowser
435 * new hyperwiki applet in the Sidebar theme. See http://hypergraph.sourceforge.net/
436 * new xmlrpc methods: putPage, mailPasswordToUser
437 * new xmlrpc test framework
438 * action=upgrade performs now a mysql LOCK TABLE privileges check and fix
439 * action=upgrade asks now for the admin's user and password if not defined
440 * added lib/ASCIIMathPHP and AsciiMath plugin
441 * new AnalyseAccessLogSqlPlugin (by Charles Corrigan)
442 * new TemplatePlugin, optionally mediawiki-style {{Template}} syntax
443 * new ENABLE_ACDROPDOWN moacdropdown library. fast xmlrpc communication nyi
444
445 PhpWiki 1.2.11:
446 * support remove for $WhichDatabase = file
447
448 PhpWiki 1.2.10:
449 * support php5 with register_long_arrays = off 
450
451 PhpWiki 1.2.9 bugfix:
452 * Jose Vina fixed MostPopular sorting for dba and dbm, 
453   which was broken since 1.2.3
454  
455 1.2.8 (the old-stable branch) Jan, 30 2005, Reini Urban:
456 * register_globals=off fix:
457   fix and centralize broken register_globals=off logic.
458 * update message catalog
459 * replace mysql_pconnect by mysql_connect
460
461 1.2.7 (the old-stable branch) Jan, 6 2005, Reini Urban:
462 PhpWiki 1.2.7 backport cvs release-1_2-branch enhancements never released with 1.2.3-1.2.6:
463 * full xhtml conformity
464 * split_pagename in title and header to help google
465 * "INSTALL.Mac OS X" added from cvs
466 * lib/zipfile.php: Content-Disposition: attachment
467 * lib/config.php, lib/stdlib.php: support new USE_LINK_ICONS and AUTOSPLIT_WIKIWORDS, 
468   better i18n $!WikiNameRegexp
469 * re-added images/* LINK_ICONS, pre-calculate DATA_PATH
470 * locale/*: fix and update strings and templates esp. for german, 
471 * index.php: urlparser extended to omit &start_debug=1 and other args
472 * added minor_edit checkbox
473 * print more meta tags: robots, favicon, language and PHPWIKI_VERSION
474
475 1.2.6 (the old-stable branch) Dec, 19 2004, Reini Urban:
476 ;: flatfile fixes and enhancement:
477 * fixed !TitleSearch and Backlinks for flatfile.
478 * enable MostPopular (hitcount storage) for flatfile 
479
480 1.2.5 (the old-stable branch) Nov, 28 2004, Reini Urban:
481 * works with register_globals=off
482 * adds user/password to pgsql, 
483 * fix zip and dumpserial on dba, dbm, msql and file,
484 * and fixes a minor (un)lock issue, displaying the (un)locked page afterwards 
485   and not the FrontPage.
486
487 1.3.10 May, 13 2004, Reini Urban, Joby Walker:
488
489 ;: In short: paging support, adodb rewrite, permission problem fixed.
490
491 fixes:
492 * fixed severe permission problem:
493   Default permissions not honored. Everybody was able to edit.
494 * set UserPreferences for bool and int fixed
495 * POP3 auth
496 * dba open problems improved, but not generally fixed
497 * fixed dba session reading, but still broken
498 * support wikiword links and image links in RichTable content,
499   backlinks still not working.
500 * fixed navbar links in theme smaller, and made them default
501 * fixed loading of localized pagenames on action=upgrade
502 * fixed interwiki.map loading on certain PrettyWiki setups
503 * re-enabled php-4.0.6 support (broken since 1.3.8: superglobals, array_key_exists),
504   4.0.4-pl1 and 4.0.5 do work, but not stable enough.
505 * fix running phpwiki in "http://server/" (empty DATA_PATH)
506 * fix PhpWiki:PrettyWiki detection: starter script includes index.php,
507   and include main.php by its own to override certain config values.
508 * fix WikiAdminRemove arguments passed from WikiAdminSelect,
509   WikiAdminRemove deleted too many args if passed from WikiAdminSelect
510 * session transportation improved, no db objects stored
511 * PageGroup support for [links] and subpages
512 * HttpClient fixes for older php's
513 * RssFeed for allow_url_fopen=false, IMAGE support, empty ITEM list
514 * Theme buttons are now also searched in the default theme
515 * numerous other minor bugfixes.
516
517 changes:
518 * ADODB update from ancient mysql-only, to 4.21 with all supported databases.
519   transaction support, with mysql locking-workarounds
520 * pear not in our include_path anymore: either use your pear or our pear, 
521   by adding it to your include_path or not. use now 1:1 copies of pear libs.
522 * CreateToc parses now headers with links and formatting optionally, if 
523   TOC_FULL_SYNTAX is defined
524 * PageChangeNotification: userids, not emails are printed
525 * default theme navbar consistency: linkButtons instead of action buttons
526 * _~WikiTranslation what=buttons, noT=1, nolinks=1
527 * ~SetupWiki (virgin setup) also loads all mandatory pages now 
528   and overwrites ReleaseNotes
529 * PageChangeNotification changed subject to "[WikiName] Page change %s",
530   update your filters accordingly
531 * action=upgrade now linked in PhpWikiAdministration,
532   db: fix page.id auto_increment and ADD session.sess_ip
533 * some internal InlineParser optimization
534 * DBAuthParam statement syntax change: variables now like '$userid'
535
536 new:
537 * new ini-style config instead of old index.php, by Joby Walker
538 * paging support for pagelists longer than limit
539 * PopularNearby plugin: same as the classic most popular footer
540 * formatted single-line plugins supported
541 * RelatedChanges plugin: only those which are links at the current page
542 * new GoogleLink pref: add "[G]" lookup on unknown links
543 * added chinese language support, by Yan-ren Tsai (druryl)
544 * added missing MacOSX buttons, by Carsten Klapp.
545 * new Crao theme from http://wiki.crao.net, by Arnaud Fontaine and Laurent Lunati
546 * extended PhpWiki:InlineImages markup (size, border, ...)
547
548
549 1.3.9-p1 May,5 2004, Reini Urban:
550
551 Bugfix patch for the following 1.3.9 problems:
552 * Default permissions not honored. Everybody was able to edit.
553 * set UserPreferences for bool and int fixed
554 * dba open problems improved
555 * session transportation improved, no db objects stored
556 * php-4.0.6 support re-enabled (superglobals, array_key_exists)
557 * WikiAdminRemove deleted too many if args passed from WikiAdminSelect
558 * PageGroup support for [links] and subpages
559 * disabled default dba sessions, broken!
560 * HttpClient fixes for older php's
561 * RssFeed for allow_url_fopen=false, IMAGE support, empty ITEM list
562
563
564 1.2.4 (the old-stable version) May, 4 2004, Reini Urban:
565 * improves possible deadlocks in DBA, 
566 * fixes problems with DBA open failures.
567
568
569 1.2.3 (the old-stable version) Apr, 29 2004, Reini Urban:
570 * added the most popular footer for dba
571 * added remove for dba
572 * fixed a warning on info page
573
574
575 1.3.9 Apr, 12 2004, Reini Urban:
576
577 Bugfix release for the following 1.3.8 problems:
578 * syntax errors in lib/plugin/UpLoad.php
579 * syntax errors in lib/plugin/WikiAdminRemove.php
580 * syntax error in schemas/mysql.sql
581 * several path issues (cannot findfile...), which were caused 
582   by a chdir for bindtextdomain in lib/config.php.
583     Failed opening required 'lib/stdlib.php', 
584     templates/html.tmpl: not found, and more
585 * added self-registration for DbPassUser
586 * added GoTo plugin, RateIt action page
587
588 1.3.8 Jan-Apr 2004, Reini Urban:
589
590 External plugable authentification, DB prefs and sessions, 
591 some more fixes, docs, themes and plugins.
592
593 * new WikiUserNew class (started by Carsten Klapp), 
594 * new Preferences (optionally from DB, no cookies anymore)
595 * improved DB_Session (added ADODB + dba support,
596   WhoIsOnline support)
597 * enabled WikiGroup (Joby Walker and Reini Urban)
598 * new individual PagePermissions (enabled, but not yet enforced)
599 * new WikiAdminRename, WikiAdminSearchReplace, WikiAdminSetAcl
600 * several other new plugins: WikiPoll, WhoIsOnline, 
601   CreateToc (experimental), AddComment, 
602   _WikiTranslation and TranslateText, NoCache,
603   UpLoad (by NathanGass, qubit and Reini Urban), 
604   IncludeSiteMap (by cuthbertcat and Reini Urban),
605   RichTable (by Sameer D. Sahasrabuddhe), 
606   CreatePage and RateIt (by Dan Frankowski),
607   RssFeed (by Arnaud Fontaine)
608 * added InterWiki image button support
609 * added Japanese language support (by Tadashi Jokagi)
610 * added sqlite support (thanks to Matthew Palmer)
611 * added theme and plugin-specific PageList column types and theme-specific UserPreferences
612 * added EmailVerification and PageChangeNotification (experimental)
613 * added new sess_ip column (DB_Session) for ip-based robot throttling
614
615 * Pear DB update, minor performance improvement for PearDB
616 * PageList: enhanced sortby + limit support, sortable gridbuttons enforced, cleanup.
617 * minor theme/default overhaul, new theme/smaller, new experimental theme/wikilens
618 * new theme/Wordpress by Mike Pickering
619 * updated theme/Sidebar: box methods, fast jscalendar and easier to customize
620 * more OldStyleTable arguments, PhotoAlbum local fs support
621 * preliminary action=upgrade (To import new pgsrc pages only yet. not for DB)
622 * preliminary SOAP support
623 * added PdfOutput libraries
624 * experimental javascript Search&Replace edit buttons
625 * experimental old-browser compatibility code.
626
627 * fixed WikiAdminSelect, WikiAdminRemove
628 * fixed and improved XHTML dumps (css, images, unlinked pages, \r\r\n issue)
629 * fixed ADODB limit problem, fixed dba on Windows PHP 4.3.x
630 * fixed BlockParser problem with "0" as text
631 * fixed UnfoldSubpages sortby
632 * fixes for PHP5 compatibility started
633 * fixed gettext, setlocale and update_locale problems
634
635 1.3.4 until 1.3.7, 2002-2003 Jeff, Carsten and Steve Wainstead:
636
637 * several stable releases with better documentation (most plugins) and various bugfixes.
638 * EditMetaData (by MichaelVanDam) for example. (forgot what else was new)
639 * Jochen Kalmbach's new UserFileManagement and UserRegistration didn't went upstream. 
640   (personal uploads, ...)
641
642 1.3.3 early 2002, Jeff strikes back, with the help of Carsten Klapp:
643
644 * major feature enhancements:
645 * Cache all output and use a clever page cache. Get rid of plugin-head.
646 * new PageType class. Formatter and Search engine rewrite.
647 * Validator
648 * broke several older plugins: InterWikiSearch, WikiAdminSelect. broke image buttons
649 * Carsten Klapp's beloved MACOSX theme, button factory and CSS wizardry in general.
650 * XHTML dumps, WikiBlog as page type.
651 * PluginManager and several more plugins.
652
653 1.3.2 early 2002, Reini Urban strikes:
654
655 * Start of external authorisation in the config, but not in code.
656 * Store Preferences in the users PersonalPage (Jeff)
657 * Sessions in DB, pear DB update
658 * concept of Subpages, UnfoldSubpages, SiteMap, AllPages, AllUsers, ...
659 * PageList (Jeff and Reini)
660 * Several new plugins: RedirectTo, plugin-head architecture. 
661   Normalize template names. WikiAdminSelect architecture: WikiAdminRemove
662 * VisualWiki, TexToPng, text2png + several cached plugins (by Johannes Große)
663 * PhpWeather (?), PrevNext, image buttons, 
664 * IncludePage (Joe Edelman), FrameInclude (Reini), Transclude (Jeff)
665 * Calendar (contributed by ?), CalendarList, WikiBlog, ...
666
667 .... a small hole here .... (three years no detailed HISTORY. see the outline above)
668
669 Jeffs Hacks.
670
671 * New database API.  See =lib/WikiDB.php= and =lib/WikiDB/backend.php=
672   for the bulk of the documentation on this.  The new database can
673   save multiple archived versions of each page.  A mechanism for
674   purging archived revisions is now in place as well.  See the
675   $~ExpireParams setting in =index.php=, and =lib/~ArchiveCleaner.php=
676   for details.  At this point, the DBA, MySQL and Postgres backends
677   are functional.  The DBA backend could use some performance
678   optimization.  The whole API is still subject to some change as I
679   figure out a clean way to provide for a variety of (not all forseen)
680   methods of indexing and searching the wiki.
681
682 * New WikiPlugin architecture.
683
684 * New template engine.  This needs to be documented further, but, for
685   now, see =lib/Template.php=.  On second thought, don't
686   (=lib/Template.php= desperately needs refactoring, still.)  The
687   basic advance is that PHP4's =ob_*()= functions can be used to
688   capture output from code that is run through =eval().  This allows
689   the templates to be PHP code...
690
691 * Edit preview button on the edit page.  Now you can see what your
692   edits look like before committing them.
693
694 * Reworked the style-sheets.  I still need to clean this up some more.
695   I would appreciate comments and bug reports on it.  So far I've only
696   tested the new style sheets with Netscape 4.77 and Mozilla 0.9.3
697   (both running under Linux.)
698
699 * Expanded syntax for text search, Searches like "wiki or web -page"
700   (or "(wiki or web) and not page") will now do more-or-less what they
701   look like they'll do.
702
703 * Security Issues: PhpWiki will now work with PHP's =register_globals=
704   set to off.
705
706 PhpWiki 1.3.x development branch.
707
708 * Pagenames in =PATH_INFO=.
709
710 * File uploads: see PhpWikiAdministration.
711
712 * UserPreferences.
713
714 * Ugly [MagicPhpWikiURLs] for administrative links. 
715
716 PhpWiki 1.2 is a huge advance over version 1.0:
717
718 * Database support for MySQL, Postgresql, mSQL, flat file and the new
719   dba_ library in PHP4 is included.
720
721 * Internationalization: support for different languages, down to the
722   source level, is included. German, Spanish, Swedish and Dutch are
723   currently shipped with PhpWiki. An architecture is in place to
724   easily add more languages.
725
726 * New linking schemes using square brackets in addition to the old
727   style ~BumpyText.
728
729 * Administration features include page locking, dumping the Wiki to a
730   zip file, and deleting pages.
731
732 * A MostPopular page showing the most frequently hit pages.
733
734 * Full HTML compliance.
735
736 * Links at the bottom of pages describing relationships like incoming
737   links from other pages and their hits, outgoing and their hits, and
738   the most popular nearby pages.
739
740 * Color page diffs between the current and previous version.
741
742 * An info page to view page metadata.
743
744 * Far more customization capability for the admin.
745
746 * A templating system to separate the page HTML from the PHP code.
747
748 * New markup constructs for =<B>=, =<I>=, =<DD>=, =<BR>= and more.
749
750 * Tabless markup to supercede the older markup (both still supported).
751
752
753 ----
754
755 PhpWiki 1.1.9 includes Spanish language pages, a full implementation
756 for Postgresql, numerous bug fixes and more. See the =HISTORY= file
757 for more info: http://phpwiki.sourceforge.net/phpwiki/HISTORY
758
759 ----
760
761 PhpWiki 1.1.6 is a major revision of PhpWiki. The ability to have
762 themes (via an easy-to-edit template system) has been added; the
763 schema for MySQL has been completely overhauled, breaking the page
764 details into columns (for efficiency we agreed not to put references
765 in a separate table, so it's not completely normalized. "Don't let the
766 best be the enemy of the good.")
767
768 Postgresql support has been added and the markup language is evolving, now allowing
769
770 !!!<h2>
771 !!<h3>
772 !<h4>
773
774 tags and __a new way to make text bold__, and of course the
775 [new linking scheme].
776
777 There is a new feature on all pages called ''more info'' that gives
778 you a low level detailed view of a page, which is probably more useful
779 for debugging than anything.
780
781 As we move towards a 1.2 release we will be adding logging, top ten
782 most active pages and other new features with the new database schema
783 (and yes, these features will make it into the DBM version too). I
784 also want to add mSQL support and test it under Zend, the new PHP4.
785
786 Below are the release notes for version 1.03, the last release of the
787 1.0 PhpWiki series. --Steve Wainstead, mailto:swain@panix.com
788
789 ----
790
791 PhpWiki was written because I am so interested in WikiWikiWeb~s, and I
792 haven't used PHP since version 2.0. I wanted to see how it had
793 advanced.
794
795 Version 1.0 is a near-perfect clone of the Portland Pattern
796 Repository, http://c2.com/cgi-bin/wiki?WikiWikiWeb. In truth, I was
797 using the Wiki script you can download from there as a model; that
798 Wiki lacks a number of features the PPR has, like EditCopy. So in
799 truth PhpWiki is a kind of hybrid of the PPR and the generic Wiki you
800 can get from there (which is written in Perl).
801
802 The one caveat of PhpWiki is the allowance of HTML if the line is
803 preceded by a bar (or pipe, which is how I usually say it). (That's a
804 '=|='). It was very simple to add, and the idea came from a posting
805 somewhere on the PPR about how AT&T had an internal Wiki clone and
806 used the same technique. The ability to embed HTML is disabled by
807 default for security reasons.
808
809 Version 1.01 includes a patch that fixes a small error with rendering
810 <hr> lines. Thanks to Gerry Barksdale.
811
812 See the =HISTORY= file for a rundown on the whole development process
813 if that sort of thing really interests you :-)
814
815 --SteveWainstead
816
817 ----
818
819 PhpWikiDocumentation