]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/ReleaseNotes
more things done...
[SourceForge/phpwiki.git] / pgsrc / ReleaseNotes
1 Date: Sat, 28 Oct 2005 15:01:44 +0100
2 Mime-Version: 1.0 (Produced by PhpWiki 1.3.11)
3 X-Rcs-Id: $Id: ReleaseNotes,v 1.58 2005-10-29 14:36:45 uckelman Exp $
4 Content-Type: application/x-phpwiki;
5   pagename=ReleaseNotes;
6   pgsrc_version="2 $Revision: 1.58 $";
7   flags=PAGE_LOCKED;
8   markup=2;
9   charset=iso-8859-1
10 Content-Transfer-Encoding: binary
11
12 1.3.12 (not yet), Reini Urban, Joel Uckelman
13
14 fixes:
15 * DB: ANSI SQL statements
16 * testsuite: force C locale and EN $LANG 
17 * PHP 5: compatibility fixes
18
19 changes:
20 * updated locale for de and es (google translation)
21 * generalized ENABLE_HTMLAREA3 to ENABLE_WYSIWYG, 
22   added preliminary tiny_mce support
23 * cache EditToolbar popup content
24 * DB: foreign key support, simplify methods
25
26 new:
27 * new ENABLE_SPAMBLOCKLIST, lib/SpamBlocklist.php:
28   check external links against surbl.org and bl.spamcop.net
29 * added new xml-rpc methods: listPlugins, getPluginSynopsis
30 * add more backends to the testsuite (PearDB_pgsql, ...)
31 * FileInfoPlugin: exeversion
32 * USE_CAPTCHA_RANDOM_WORD by Dan Frankowski
33
34 1.3.11p1 Sep, 18 2005, Reini Urban:
35
36 fixes:
37 * added missing pgsrc/OldStyleTablesPlugin
38 * novatrope patch to let only _AUTHENTICATED view pages
39 * fixed OldStyleTables plugin with args
40 * protect against Content-Length if headers_sent()
41 * fixed ENABLE_MARKUP_TEMPLATE warning if undefined
42 * fixed writing unwanted accesslog sql entries
43 * fixed WikiAdminSelect preselection
44 * fixed passencrypt.php for PHP5 !register_long_arrays
45 * fixed configurator for DATABASE_DSN, USER_AUTH_ORDER
46
47 changes:
48 * optimized explodePageList to use SQL when available 
49   (titleSearch instead of getAllPages)
50 * added optimization for a new ALL textsearch token 
51   (* => pcre: .*, sql: %)
52 * configurator takes default description from config-dist.ini
53 * added some missing configurator constants
54
55 1.3.11 Sep, 11 2005, Reini Urban, Joel Uckelman:
56
57 Lots of bugfixes, and some feature and performance enhancements.
58 A new EDIT_TOOLBAR from mediawiki, more page permission enhancements, 
59 reduced memory usage for pagelists which need no page content, 
60 related improvement for OldMarkup crashes because of PCRE memory exhaustion.%%%
61 New <!plugin-list !> syntax and PhpWiki:PageListLibrary args.%%%
62 Because of SQL changes you'd need to ?action=upgrade to update for SQL.
63
64 fixes:
65 * fixed crash after login, by eliminating endless recursion in 
66   group isAdmin() checks
67 * fixed syntax errors in signin.tmpl 
68 * fixed missing DEBUG warnings (Support #954260)
69 * PhpWiki is now allow_call_time_pass_reference = Off safe (php.ini)
70   Some external libraries are not (Pear_DB odbc, adodb oracle)
71 * fixed sql statements for pagedata where it is not needed, fixing the 
72   typical PageList memory exhaustion on simple page lists.
73   cached_html is handled complete seperate now.
74 * fixed and improved WikiDB pageid caching.
75 * fixed some WikiGroup errors for WIKIPAGE and DB
76 * fixed JS_SEARCHREPLACE
77 * fixed rename with dba
78 * fixed Today link in all templates if USE_PATH_INFO = false
79 * fixed PluginManager fatal error line 222
80 * utf-8 pagenames fixed (typed foreign names from IE)
81 * CGI: no PATH_INFO fix 
82 * fix some too loose PhpWiki:PagePermissions for signed, but not authenticated users
83   (admin, owner, creator), and edit and view for Bogo and Password users 
84 * security fix for create ACL: action=edit is now checked for create
85 * fixed important WikiDB bug with DEBUG > 0: wrong assertion 
86   around line 172 (#954648)
87 * fixed flatfile ArchiveCleaner assertion
88 * RssFeedPlugin stability fix for empty feeds or broken connections 
89 * fixed Sidebar theme CSS, added existing dates to jscalendar
90 * fixed PhpWiki:ImageLinks, broken since 1.3.10 (Bug #956068)
91 * fixed lib/pear/File_Passwd loading
92 * TranslateText: verbatim needed a pagebreak
93 * fixed duplicate session_id warning with adodb
94 * fixed adodb ~DbPassUser login
95 * fixed external ~DbPassUser login
96 * fixed adodb action=upgrade
97 * fixed ~FilePassUser locking problems and session handling
98 * fixed a lot of LDAP auth and group issues
99 * fixed LDAP options handling (by John Cole)
100 * fixed possible security problems: allowing only posixly strict usernames, 
101   and an actual LDAP Injection problem, detected by Steve Christey, MITRE.
102 * honor s=wildcard arguments for ~WikiAdmin plugins
103 * fixed flatfile assertion (#963268) - check existing previous version
104 * fixed all msg references from index.php to config/config.ini
105 * fixed immediate LANG and THEME in-session updates if not stored in prefs
106 * fixed USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides ~HttpAuth)
107   and removed LDAP, POP3, IMAP default configs.
108 * RelatedChanges: fixed days links
109 * fix Rename: Change pagename in all linked pages
110 * fixed PhpWiki:PageChangeNotification for not-current users
111 * fixed UpLoadPlugin for filenames with space (Bug #969532)
112 * fixed label support for CreateTocPlugin (Bug #969495)
113 * fixed Apache2 crashing with old markup and the CreateTocPlugin. 
114 * catch fatals and request->args changes on dumping
115 * fixed unneeded UserPreferences plugin login screen on dumphtml
116 * catch SOAP fatal on GooglePlugin without GOOGLE_LICENSE_KEY
117 * silently ignore jshide argument on MacIE for AddCommentPlugin and CreateTocPlugin
118 * fixed xmlrpc to be able to use the native xmlrpc extension.
119 * fixed xmlrpc wiki.listLinks method: "name" => "page" param
120 * fixed xmlrpc security not using eval on usercode anymore
121 * fixed WikiAdminUtils behaviour on POST
122 * fixed strict login on "Db" (by Mikhail Vladimirov)
123 * more /tmp warnings on flatfile (by Joel Uckelman)
124
125 changes:
126 * ~WikiAdminSetAcl functional
127 * enabled PhpWiki:PagePermissions for all admin plugins (no admin required): 
128   Remove, Rename, Replace, ~SetAcl, Chown
129 * renamed DB_Session.php to ~DbSession.php and moved libs to a subdir
130 * new Error-style with collapsed output of repeated messages 
131 * whitespace trim pagenames to avoid abuse
132 * no double login page header, better login msg. 
133 * improved ~FileFinder include_path logic (~NormalizeLocalFileName, ...)
134 ** init global FileFinder to add proper include paths at startup
135    adds PHPWIKI_DIR to the front if started from another dir, lib/pear to the end.
136 ** fix slashify for Windows
137 * check more config-default and predefined constants 
138 * ~AutoSplit pagenames at subpage seperators, esp for Sidebar theme
139 * improve Pagelist layout by equal pagename width for limited lists 
140 * added CPAN, OsFaq2, WikiLens to interwiki.map
141 * ExternalSearchPlugin useimage arg (RFE #952323)
142 * simplified some strings for easier translation 
143 * added hash and object support for ~SessionPassUser userid session variable
144 * auth page=>DB ~PassUser upgrade: delete existing Page prefs, if Db prefs are saved.
145 * vastly improved french locale support, which is now complete (by Pierrick Meignen).
146   english, german and french are now completely translated. The others partially.
147 * improved ~SetupWiki (virgin setup) loading all required action pages in english,
148   if no foreign translation found (by Pierrick Meignen)
149 * show RelatedChanges only if minimum two links on the current page.
150 * PageDump: ViewSource link, better actionpage usage, MessageID TZ
151 * brought ~WikiUser (old) uptodate
152 * added owner and acl fields to dumps
153 * import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini
154 * renamed global $Theme to $~WikiTheme (gforge nameclash)
155 * aggressive WikiDB and cache memory optimization: don't cache %content 
156   and _cached_html if not needed.
157 * PageDump added format=backup: dump all revisions.
158 * force mysql to use auto_increment page.id for performance reasons.
159   call ?action=upgrade
160 * extended all plugins which take "pages" and "exclude" params to accept 
161   <!plugin-list !> pagelists
162 * enabled limit, exclude and sortby PageList options for almost all db backends natively
163 * improved SqlResult: templates and variable expansion.
164   automatic paging not yet.
165 * use latest Pear DB features, which will break on older PearDB libs. 
166   (escapeSimple). Use INCLUDE_PATH to override.
167 * INCLUDE_PATH is now prepended, not appended. PHPWIKI_DIR is forced to be first.
168 * rewrote OldTextFormattingRules, AnciennesR%E8glesDeFormatage
169   for proper importing (PCRE+memory related crashes on older php's)
170 * added extra page.cached_html column. ?action=upgrade or PhpWikiAdministration
171   "Convert cached_html" is needed to convert your old pagedata "_cached_html".
172 * page deletion is now undoable and being seen in RecentChanges. Purge pages 
173   by new admin button.
174 * zipdump and dumphtml contains now images, buttons and css
175 * improved _WikiTranslation performance with gettext extension
176 * moved DbSession methods to extra files as with WikiUser files.
177 * changed config.ini options:
178   KEYWORDS: "Category:Topic" => "Category* OR Topic*", 
179   KEYWORD_LINK_REGEXP removed,
180 * action=dumphtml dumps only the current page unless done from PhpWikiAdministration
181
182 new:
183 * new ENABLE_EDIT_TOOLBAR (from mediawiki), JS_SEARCHREPLACE, 
184   AddCategory, AddPlugin buttons
185 * new other config options: 
186 ** ENABLE_PAGEPERM to turn off ACL (no owner at the statusline if off)
187 ** FORTUNE_DIR to enable random quotes for new pages
188 ** GOOGLE_LINKS_NOFOLLOW, ACCESS_LOG_SQL, BABYCART_PATH, BLOG_DEFAULT_EMPTY_PREFIX, 
189    CATEGORY_GROUP_PAGE, DATABASE_PERSISTENT, DBADMIN_PASSWD, DBADMIN_USER,
190    DEFAULT_DUMP_DIR, DISABLE_GETIMAGESIZE, ENABLE_DOUBLECLICKEDIT,
191    ENABLE_LIVESEARCH, ENABLE_MODERATEDPAGE_ALL, ENABLE_RAW_HTML_LOCKEDONLY, 
192    ENABLE_RAW_HTML_SAFE, ENABLE_SPAMASSASSIN, ENABLE_XHTML_XML,
193    GOOGLE_LICENSE_KEY, HTML_DUMP_DIR, LDAP_OU_GROUP, LDAP_OU_USERS
194    PLUGIN_CACHED_CACHE_DIR, PLUGIN_CACHED_DATABASE, PLUGIN_CACHED_FILENAME_PREFIX,
195    PLUGIN_CACHED_FORCE_SYNCMAP, PLUGIN_CACHED_HIGHWATER, 
196    PLUGIN_CACHED_IMGTYPES, PLUGIN_CACHED_LOWWATER, PLUGIN_CACHED_MAXARGLEN, 
197    PLUGIN_CACHED_MAXLIFETIME, PLUGIN_CACHED_USECACHE, TEMP_DIR, USECACHE, 
198    USE_EXTERNAL_HTML2PDF, ENABLE_MARKUP_COLOR, ENABLE_MARKUP_TEMPLATE
199 * implemented WikiDB page creator and ownership
200 * added paging support for simple one-column pagelists
201 * added new PageList options: cols, azhead, comma, commasep, ordered
202   and enabled the new args on most plugins.
203 * new pagename utf8 detection logic (from mediawiki)
204 * added action revert, with button from action=diff
205 * added new <!plugin-list PluginName args!> syntax within plugin args
206 * new plugin IncludePages, esp. for <!plugin-list !>
207 * added template variable expansion support to the CreatePagePlugin
208 * added new <!plugin-list PluginName args!> syntax within plugin args
209 * new plugin IncludePages, esp. for <!plugin-list !>
210 * added template variable expansion support to the CreatePagePlugin
211 * WikiSpam prevention: 
212   ** On GOOGLE_LINKS_NOFOLLOW add rel=nowfollow to all external 
213      links, unless the author was authenticated.
214   ** max 20 new links hardcoded
215   ** new babycart module interfacing SpamAssassin
216 * added WikiPluginCached support for image maps, static cache in uploads/ and SVG
217 * added case-sensitive/insensitive and regex searching, replace also
218 * added action=pdf: only page formatter missing, use USE_EXTERNAL_HTML2PDF instead
219 * new ~XmlParser, ~HtmlParser: new libs for HTML->wiki import and htmlarea3 support
220 * new action=chown|setacl|rename|dump action shortcuts pointing to the plugin
221 * new SyntaxHighlighter plugin (based on work by alecthomas),
222   needs highlight from http://www.andre-simon.de/
223 * new PloticusPlugin. Full application/xhtml+xml support not yet 
224   (javascript document.write() not supported with ENABLE_XHTML_XML)
225 * new ListPages plugin (by Dan Frankowski)
226 * new TeX2pngPlugin (by Pierrick Meignen)
227 * added support for ?force_unlock=1 parameter for stale File_Passwd locks
228   (should not be needed anymore, we lock only when we actually change the passwd)
229 * added mysql-4.1 fix at action=upgrade,
230   added CACHE_CONTROL NONE => NO_CACHE config.ini fix to action=upgrade
231 * author, owner, creator support for WikiAdmin* and AllPages plugins:
232 ** AllPagesCreatedByMe, AllPagesLastEditedByMe, AllPagesOwnedByMe
233 * added option regex to ~WikiAdminSearchReplace and ~WikiAdminRename
234 * added oracle PearDB backend (by Philippe Vanhaesendonck)
235 * added experimental SearchHighlight feature (not for HTML yet)
236 * added experimental LiveSearch feature
237 * added [OverWrite All] button to loadfile action on the first page.
238 * added [Load & OverWrite] button to PhpWikiAdministration
239 * performance: use cached static config/config.php, if it's writable by 
240   the webserver. (experimental)
241 * added ACCESS_LOG_SQL &1: read, &2 write. new accesslog sql table. 
242   for various log analysis: abuse prevention, recent referrers.
243 * added more PageChangeNotification on other actions: rename, remove.
244   changed subject on create. Collapse mult. emails to one.
245 * added new PhpWiki:WikiFormRich plugin
246 * added new AppendTextPlugin (by Pascal Giard)
247 * added RSS2 link (format=rss2)  in RecentChanges. (no cloud channel yet)
248 * added PhpWikiAdministration WikiDB buttons:
249   [Purge all empty unreferenced pages], [Convert cached_html]
250 * (nyi) new experimental ModeratedPage feature. (i.e. delayed POST actions)
251 * new edit "[] old markup [Convert]" button to convert and save to new markup.
252 * new LinkDatabase plugin and actionpage for the http://touchgraph.sourceforge.net/ ~WikiBrowser
253 * new hyperwiki applet in the Sidebar theme. See http://hypergraph.sourceforge.net/
254 * new xmlrpc methods: putPage, mailPasswordToUser
255 * new xmlrpc test framework
256 * action=upgrade performs now a mysql LOCK TABLE privileges check and fix
257 * action=upgrade asks now for the admin's user and password if not defined
258 * added lib/ASCIIMathPHP and AsciiMath plugin
259 * new AnalyseAccessLogSqlPlugin (by Charles Corrigan)
260 * new TemplatePlugin, optionally mediawiki-style {{Template}} syntax
261 * new ENABLE_ACDROPDOWN moacdropdown library. fast xmlrpc communication nyi
262
263 PhpWiki 1.2.11:
264 * support remove for $WhichDatabase = file
265
266 PhpWiki 1.2.10:
267 * support php5 with register_long_arrays = off 
268
269 PhpWiki 1.2.9 bugfix:
270 * Jose Vina fixed MostPopular sorting for dba and dbm, 
271   which was broken since 1.2.3
272  
273 1.2.8 (the old-stable branch) Jan, 30 2005, Reini Urban:
274 * register_globals=off fix:
275   fix and centralize broken register_globals=off logic.
276 * update message catalog
277 * replace mysql_pconnect by mysql_connect
278
279 1.2.7 (the old-stable branch) Jan, 6 2005, Reini Urban:
280 PhpWiki 1.2.7 backport cvs release-1_2-branch enhancements never released with 1.2.3-1.2.6:
281 * full xhtml conformity
282 * split_pagename in title and header to help google
283 * "INSTALL.Mac OS X" added from cvs
284 * lib/zipfile.php: Content-Disposition: attachment
285 * lib/config.php, lib/stdlib.php: support new USE_LINK_ICONS and AUTOSPLIT_WIKIWORDS, 
286   better i18n $!WikiNameRegexp
287 * re-added images/* LINK_ICONS, pre-calculate DATA_PATH
288 * locale/*: fix and update strings and templates esp. for german, 
289 * index.php: urlparser extended to omit &start_debug=1 and other args
290 * added minor_edit checkbox
291 * print more meta tags: robots, favicon, language and PHPWIKI_VERSION
292
293 1.2.6 (the old-stable branch) Dec, 19 2004, Reini Urban:
294 ;: flatfile fixes and enhancement:
295 * fixed !TitleSearch and Backlinks for flatfile.
296 * enable MostPopular (hitcount storage) for flatfile 
297
298 1.2.5 (the old-stable branch) Nov, 28 2004, Reini Urban:
299 * works with register_globals=off
300 * adds user/password to pgsql, 
301 * fix zip and dumpserial on dba, dbm, msql and file,
302 * and fixes a minor (un)lock issue, displaying the (un)locked page afterwards 
303   and not the FrontPage.
304
305 1.3.10 May, 13 2004, Reini Urban, Joby Walker:
306
307 ;: In short: paging support, adodb rewrite, permission problem fixed.
308
309 fixes:
310 * fixed severe permission problem:
311   Default permissions not honored. Everybody was able to edit.
312 * set UserPreferences for bool and int fixed
313 * POP3 auth
314 * dba open problems improved, but not generally fixed
315 * fixed dba session reading, but still broken
316 * support wikiword links and image links in RichTable content,
317   backlinks still not working.
318 * fixed navbar links in theme smaller, and made them default
319 * fixed loading of localized pagenames on action=upgrade
320 * fixed interwiki.map loading on certain PrettyWiki setups
321 * re-enabled php-4.0.6 support (broken since 1.3.8: superglobals, array_key_exists),
322   4.0.4-pl1 and 4.0.5 do work, but not stable enough.
323 * fix running phpwiki in "http://server/" (empty DATA_PATH)
324 * fix PhpWiki:PrettyWiki detection: starter script includes index.php,
325   and include main.php by its own to override certain config values.
326 * fix WikiAdminRemove arguments passed from WikiAdminSelect,
327   WikiAdminRemove deleted too many args if passed from WikiAdminSelect
328 * session transportation improved, no db objects stored
329 * PageGroup support for [links] and subpages
330 * HttpClient fixes for older php's
331 * RssFeed for allow_url_fopen=false, IMAGE support, empty ITEM list
332 * Theme buttons are now also searched in the default theme
333 * numerous other minor bugfixes.
334
335 changes:
336 * ADODB update from ancient mysql-only, to 4.21 with all supported databases.
337   transaction support, with mysql locking-workarounds
338 * pear not in our include_path anymore: either use your pear or our pear, 
339   by adding it to your include_path or not. use now 1:1 copies of pear libs.
340 * CreateToc parses now headers with links and formatting optionally, if 
341   TOC_FULL_SYNTAX is defined
342 * PageChangeNotification: userids, not emails are printed
343 * default theme navbar consistency: linkButtons instead of action buttons
344 * _~WikiTranslation what=buttons, noT=1, nolinks=1
345 * ~SetupWiki (virgin setup) also loads all mandatory pages now 
346   and overwrites ReleaseNotes
347 * PageChangeNotification changed subject to "[WikiName] Page change %s",
348   update your filters accordingly
349 * action=upgrade now linked in PhpWikiAdministration,
350   db: fix page.id auto_increment and ADD session.sess_ip
351 * some internal InlineParser optimization
352 * DBAuthParam statement syntax change: variables now like '$userid'
353
354 new:
355 * new ini-style config instead of old index.php, by Joby Walker
356 * paging support for pagelists longer than limit
357 * PopularNearby plugin: same as the classic most popular footer
358 * formatted single-line plugins supported
359 * RelatedChanges plugin: only those which are links at the current page
360 * new GoogleLink pref: add "[G]" lookup on unknown links
361 * added chinese language support, by Yan-ren Tsai (druryl)
362 * added missing MacOSX buttons, by Carsten Klapp.
363 * new Crao theme from http://wiki.crao.net, by Arnaud Fontaine and Laurent Lunati
364 * extended PhpWiki:InlineImages markup (size, border, ...)
365
366
367 1.3.9-p1 May,5 2004, Reini Urban:
368
369 Bugfix patch for the following 1.3.9 problems:
370 * Default permissions not honored. Everybody was able to edit.
371 * set UserPreferences for bool and int fixed
372 * dba open problems improved
373 * session transportation improved, no db objects stored
374 * php-4.0.6 support re-enabled (superglobals, array_key_exists)
375 * WikiAdminRemove deleted too many if args passed from WikiAdminSelect
376 * PageGroup support for [links] and subpages
377 * disabled default dba sessions, broken!
378 * HttpClient fixes for older php's
379 * RssFeed for allow_url_fopen=false, IMAGE support, empty ITEM list
380
381
382 1.2.4 (the old-stable version) May, 4 2004, Reini Urban:
383 * improves possible deadlocks in DBA, 
384 * fixes problems with DBA open failures.
385
386
387 1.2.3 (the old-stable version) Apr, 29 2004, Reini Urban:
388 * added the most popular footer for dba
389 * added remove for dba
390 * fixed a warning on info page
391
392
393 1.3.9 Apr, 12 2004, Reini Urban:
394
395 Bugfix release for the following 1.3.8 problems:
396 * syntax errors in lib/plugin/UpLoad.php
397 * syntax errors in lib/plugin/WikiAdminRemove.php
398 * syntax error in schemas/mysql.sql
399 * several path issues (cannot findfile...), which were caused 
400   by a chdir for bindtextdomain in lib/config.php.
401     Failed opening required 'lib/stdlib.php', 
402     templates/html.tmpl: not found, and more
403 * added self-registration for DbPassUser
404 * added GoTo plugin, RateIt action page
405
406 1.3.8 Jan-Apr 2004, Reini Urban:
407
408 External plugable authentification, DB prefs and sessions, 
409 some more fixes, docs, themes and plugins.
410
411 * new WikiUserNew class (started by Carsten Klapp), 
412 * new Preferences (optionally from DB, no cookies anymore)
413 * improved DB_Session (added ADODB + dba support,
414   WhoIsOnline support)
415 * enabled WikiGroup (Joby Walker and Reini Urban)
416 * new individual PagePermissions (enabled, but not yet enforced)
417 * new WikiAdminRename, WikiAdminSearchReplace, WikiAdminSetAcl
418 * several other new plugins: WikiPoll, WhoIsOnline, 
419   CreateToc (experimental), AddComment, 
420   _WikiTranslation and TranslateText, NoCache,
421   UpLoad (by NathanGass, qubit and Reini Urban), 
422   IncludeSiteMap (by cuthbertcat and Reini Urban),
423   RichTable (by Sameer D. Sahasrabuddhe), 
424   CreatePage and RateIt (by Dan Frankowski),
425   RssFeed (by Arnaud Fontaine)
426 * added InterWiki image button support
427 * added Japanese language support (by Tadashi Jokagi)
428 * added sqlite support (thanks to Matthew Palmer)
429 * added theme and plugin-specific PageList column types and theme-specific UserPreferences
430 * added EmailVerification and PageChangeNotification (experimental)
431 * added new sess_ip column (DB_Session) for ip-based robot throttling
432
433 * Pear DB update, minor performance improvement for PearDB
434 * PageList: enhanced sortby + limit support, sortable gridbuttons enforced, cleanup.
435 * minor theme/default overhaul, new theme/smaller, new experimental theme/wikilens
436 * new theme/Wordpress by Mike Pickering
437 * updated theme/Sidebar: box methods, fast jscalendar and easier to customize
438 * more OldStyleTable arguments, PhotoAlbum local fs support
439 * preliminary action=upgrade (To import new pgsrc pages only yet. not for DB)
440 * preliminary SOAP support
441 * added PdfOutput libraries
442 * experimental javascript Search&Replace edit buttons
443 * experimental old-browser compatibility code.
444
445 * fixed WikiAdminSelect, WikiAdminRemove
446 * fixed and improved XHTML dumps (css, images, unlinked pages, \r\r\n issue)
447 * fixed ADODB limit problem, fixed dba on Windows PHP 4.3.x
448 * fixed BlockParser problem with "0" as text
449 * fixed UnfoldSubpages sortby
450 * fixes for PHP5 compatibility started
451 * fixed gettext, setlocale and update_locale problems
452
453 1.3.4 until 1.3.7, 2002-2003 Jeff, Carsten and Steve Wainstead:
454
455 * several stable releases with better documentation (most plugins) and various bugfixes.
456 * EditMetaData (by MichaelVanDam) for example. (forgot what else was new)
457 * Jochen Kalmbach's new UserFileManagement and UserRegistration didn't went upstream. 
458   (personal uploads, ...)
459
460 1.3.3 early 2002, Jeff strikes back, with the help of Carsten Klapp:
461
462 * major feature enhancements:
463 * Cache all output and use a clever page cache. Get rid of plugin-head.
464 * new PageType class. Formatter and Search engine rewrite.
465 * Validator
466 * broke several older plugins: InterWikiSearch, WikiAdminSelect. broke image buttons
467 * Carsten Klapp's beloved MACOSX theme, button factory and CSS wizardry in general.
468 * XHTML dumps, WikiBlog as page type.
469 * PluginManager and several more plugins.
470
471 1.3.2 early 2002, Reini Urban strikes:
472
473 * Start of external authorisation in the config, but not in code.
474 * Store Preferences in the users PersonalPage (Jeff)
475 * Sessions in DB, pear DB update
476 * concept of Subpages, UnfoldSubpages, SiteMap, AllPages, AllUsers, ...
477 * PageList (Jeff and Reini)
478 * Several new plugins: RedirectTo, plugin-head architecture. 
479   Normalize template names. WikiAdminSelect architecture: WikiAdminRemove
480 * VisualWiki, TexToPng, text2png + several cached plugins (by Johannes Große)
481 * PhpWeather (?), PrevNext, image buttons, 
482 * IncludePage (Joe Edelman), FrameInclude (Reini), Transclude (Jeff)
483 * Calendar (contributed by ?), CalendarList, WikiBlog, ...
484
485 .... a small hole here .... (three years no detailed HISTORY. see the outline above)
486
487 Jeffs Hacks.
488
489 * New database API.  See =lib/WikiDB.php= and =lib/WikiDB/backend.php=
490   for the bulk of the documentation on this.  The new database can
491   save multiple archived versions of each page.  A mechanism for
492   purging archived revisions is now in place as well.  See the
493   $~ExpireParams setting in =index.php=, and =lib/~ArchiveCleaner.php=
494   for details.  At this point, the DBA, MySQL and Postgres backends
495   are functional.  The DBA backend could use some performance
496   optimization.  The whole API is still subject to some change as I
497   figure out a clean way to provide for a variety of (not all forseen)
498   methods of indexing and searching the wiki.
499
500 * New WikiPlugin architecture.
501
502 * New template engine.  This needs to be documented further, but, for
503   now, see =lib/Template.php=.  On second thought, don't
504   (=lib/Template.php= desperately needs refactoring, still.)  The
505   basic advance is that PHP4's =ob_*()= functions can be used to
506   capture output from code that is run through =eval().  This allows
507   the templates to be PHP code...
508
509 * Edit preview button on the edit page.  Now you can see what your
510   edits look like before committing them.
511
512 * Reworked the style-sheets.  I still need to clean this up some more.
513   I would appreciate comments and bug reports on it.  So far I've only
514   tested the new style sheets with Netscape 4.77 and Mozilla 0.9.3
515   (both running under Linux.)
516
517 * Expanded syntax for text search, Searches like "wiki or web -page"
518   (or "(wiki or web) and not page") will now do more-or-less what they
519   look like they'll do.
520
521 * Security Issues: PhpWiki will now work with PHP's =register_globals=
522   set to off.
523
524 PhpWiki 1.3.x development branch.
525
526 * Pagenames in =PATH_INFO=.
527
528 * File uploads: see PhpWikiAdministration.
529
530 * UserPreferences.
531
532 * Ugly [MagicPhpWikiURLs] for administrative links. 
533
534 PhpWiki 1.2 is a huge advance over version 1.0:
535
536 * Database support for MySQL, Postgresql, mSQL, flat file and the new
537   dba_ library in PHP4 is included.
538
539 * Internationalization: support for different languages, down to the
540   source level, is included. German, Spanish, Swedish and Dutch are
541   currently shipped with PhpWiki. An architecture is in place to
542   easily add more languages.
543
544 * New linking schemes using square brackets in addition to the old
545   style ~BumpyText.
546
547 * Administration features include page locking, dumping the Wiki to a
548   zip file, and deleting pages.
549
550 * A MostPopular page showing the most frequently hit pages.
551
552 * Full HTML compliance.
553
554 * Links at the bottom of pages describing relationships like incoming
555   links from other pages and their hits, outgoing and their hits, and
556   the most popular nearby pages.
557
558 * Color page diffs between the current and previous version.
559
560 * An info page to view page metadata.
561
562 * Far more customization capability for the admin.
563
564 * A templating system to separate the page HTML from the PHP code.
565
566 * New markup constructs for =<B>=, =<I>=, =<DD>=, =<BR>= and more.
567
568 * Tabless markup to supercede the older markup (both still supported).
569
570
571 ----
572
573 PhpWiki 1.1.9 includes Spanish language pages, a full implementation
574 for Postgresql, numerous bug fixes and more. See the =HISTORY= file
575 for more info: http://phpwiki.sourceforge.net/phpwiki/HISTORY
576
577 ----
578
579 PhpWiki 1.1.6 is a major revision of PhpWiki. The ability to have
580 themes (via an easy-to-edit template system) has been added; the
581 schema for MySQL has been completely overhauled, breaking the page
582 details into columns (for efficiency we agreed not to put references
583 in a separate table, so it's not completely normalized. "Don't let the
584 best be the enemy of the good.")
585
586 Postgresql support has been added and the markup language is evolving, now allowing
587
588 !!!<h2>
589 !!<h3>
590 !<h4>
591
592 tags and __a new way to make text bold__, and of course the
593 [new linking scheme].
594
595 There is a new feature on all pages called ''more info'' that gives
596 you a low level detailed view of a page, which is probably more useful
597 for debugging than anything.
598
599 As we move towards a 1.2 release we will be adding logging, top ten
600 most active pages and other new features with the new database schema
601 (and yes, these features will make it into the DBM version too). I
602 also want to add mSQL support and test it under Zend, the new PHP4.
603
604 Below are the release notes for version 1.03, the last release of the
605 1.0 PhpWiki series. --Steve Wainstead, mailto:swain@panix.com
606
607 ----
608
609 PhpWiki was written because I am so interested in WikiWikiWeb~s, and I
610 haven't used PHP since version 2.0. I wanted to see how it had
611 advanced.
612
613 Version 1.0 is a near-perfect clone of the Portland Pattern
614 Repository, http://c2.com/cgi-bin/wiki?WikiWikiWeb. In truth, I was
615 using the Wiki script you can download from there as a model; that
616 Wiki lacks a number of features the PPR has, like EditCopy. So in
617 truth PhpWiki is a kind of hybrid of the PPR and the generic Wiki you
618 can get from there (which is written in Perl).
619
620 The one caveat of PhpWiki is the allowance of HTML if the line is
621 preceded by a bar (or pipe, which is how I usually say it). (That's a
622 '=|='). It was very simple to add, and the idea came from a posting
623 somewhere on the PPR about how AT&T had an internal Wiki clone and
624 used the same technique. The ability to embed HTML is disabled by
625 default for security reasons.
626
627 Version 1.01 includes a patch that fixes a small error with rendering
628 <hr> lines. Thanks to Gerry Barksdale.
629
630 See the =HISTORY= file for a rundown on the whole development process
631 if that sort of thing really interests you :-)
632
633 --SteveWainstead
634
635 ----
636
637 PhpWikiDocumentation