Penguin
Blame: ReleaseNotes
EditPageHistoryDiffInfoLikePages
Annotated edit history of ReleaseNotes version 4, including all changes. View license author blame.
Rev Author # Line
1 The PhpWiki programming team 1 Jeffs Hacks.
2
3 * New database API. See lib/WikiDB.php and lib/WikiDB/backend.php for the bulk of the documentation on this. The new database can save multiple archived versions of each page. A mechanism for purging archived revisions is now in place as well. See the $!ExpireParams setting in index.php, and lib/!ArchiveCleaner.php for details. At this point, the DBA, MySQL and Postgres backends are functional. The DBA backend could use some performance optimization. The whole API is still subject to some change as I figure out a clean way to provide for a variety of (not all forseen) methods of indexing and searching the wiki.
4 * New WikiPlugin architecture.
5 * New template engine. This needs to be documented further, but, for now, see lib/Template.php. On second thought, don't (lib/Template.php desperately needs refactoring, still.) The basic advance is that PHP4's ob_*() functions can be used to capture output from eval()ed PHP code. This allows the templates to be PHP code...
6 * Edit preview button on the edit page. Now you can see what your edits look like before committing them.
7 * Reworked the style-sheets. I still need to clean this up some more. I would appreciate comments and bug reports on it. So far I've only tested the new style sheets with Netscape 4.77 and Mozilla 0.9.3 (both running under Linux.)
8 * Expanded syntax for text search, now searches like "wiki or web -page" (or "(wiki or web) and not page") will do more-or-less what they look like they'll do.
9 * Security Issues: PhpWiki will now work with PHP's register_globals set to off.
10
11 PhpWiki 1.3.x development branch.
12
13 * Pagenames in PATH_INFO.
14 * File uploads: see PhpWikiAdministration.
15 * UserPreferences.
16 * Ugly [MagicPhpWikiURLs] for administrative links.
17
18 PhpWiki 1.2 is a huge advance over version 1.0:
19
20 * Database support for MySQL, Postgresql, mSQL, flat file and the new dba_ library in PHP4 is included.
21 * Internationalization: support for different languages, down to the source level, is included. German, Spanish, Swedish and Dutch are currently shipped with PhpWiki. An architecture is in place to easily add more languages.
22 * New linking schemes using square brackets in addition to the old style !BumpyText.
23 * Administration features include page locking, dumping the Wiki to a zip file, and deleting pages.
24 * A MostPopular page showing the most frequently hit pages.
25 * Full HTML compliance.
26 * Links at the bottom of pages describing relationships like incoming links from other pages and their hits, outgoing and their hits, and the most popular nearby pages.
27 * Color page diffs between the current and previous version.
28 * An info page to view page metadata.
29 * Far more customization capability for the admin.
30 * A templating system to separate the page HTML from the PHP code.
31 * New markup constructs for <B>, <I>, <DD>, <BR> and more.
4 LawrenceDoliveiro 32 * Tabless markup to supersede the older markup (both still supported).
1 The PhpWiki programming team 33
34
35 ----
36
37 PhpWiki 1.1.9 includes Spanish language pages, a full implementation for
38 Postgresql, numerous bug fixes and more. See the HISTORY file for more
39 info: http://phpwiki.sourceforge.net/phpwiki/HISTORY
40
41 ----
42
43 PhpWiki 1.1.6 is a major revision of PhpWiki. The ability to have themes (via an
44 easy-to-edit template system) has been added; the schema for MySQL has been
45 completely overhauled, breaking the page details into columns (for efficiency we
46 agreed not to put references in a separate table, so it's not completely
47 normalized. "Don't let the best be the enemy of the good.")
48
49 Postgresql support has been added and the markup language is evolving, now allowing
50 !!!<h2>
51 !!<h3>
52 !<h4>
53 tags and __a new way to make text bold__, and of course the
3 The PhpWiki programming team 54 [new linking scheme].
1 The PhpWiki programming team 55
56 There is a new feature on all pages called ''more info'' that gives you a low level
57 detailed view of a page, which is probably more useful for debugging than anything.
58
59 As we move towards a 1.2 release we will be adding logging, top ten most active
60 pages and other new features with the new database schema (and yes, these features
61 will make it into the DBM version too). I also want to add mSQL support and test it
62 under Zend, the new PHP4.
63
64 Below are the release notes for version 1.03, the last release of the 1.0 PhpWiki
65 series. --Steve Wainstead, mailto:swain@panix.com
66
67 ----
68
3 The PhpWiki programming team 69 PhpWiki was written because I am so interested in WikiWikiWebs, and I haven't used PHP since version 2.0. I wanted to see how it had advanced.
1 The PhpWiki programming team 70
3 The PhpWiki programming team 71 Version 1.0 is a near-perfect clone of the Portland Pattern Repository, http://c2.com/cgi-bin/wiki?WikiWikiWeb. In truth, I was using the Wiki script you can download from there as a model; that Wiki lacks a number of features the PPR has, like EditCopy. So in truth PhpWiki is a kind of hybrid of the PPR and the generic Wiki you can get from there (which is written in Perl).
1 The PhpWiki programming team 72
73 The one caveat of PhpWiki is the allowance of HTML if the line is preceded by a bar (or pipe, which is how I usually say it). (That's a '|'). It was very simple to add, and the idea came from a posting somewhere on the PPR about how AT&T had an internal Wiki clone and used the same technique. The ability to embed HTML is disabled by default for security reasons.
74
75 Version 1.01 includes a patch that fixes a small error with rendering <hr> lines. Thanks to Gerry Barksdale.
76
77 See the HISTORY file for a rundown on the whole development process if that sort of thing really interests you :-)
78
79 --SteveWainstead
80 ----
81 PhpWikiDocumentation