]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - HISTORY
Fixed all instances that caused E_NOTICE messages.
[SourceForge/phpwiki.git] / HISTORY
1 1.1.8 10/25/00: 
2 * Internationalization, with support for Dutch, and an architecture
3   to add more languages easily
4 * Term/defintion tags updated to next and use tabless markup
5 * MostPopular works for all implementations, except flat files
6 * Flat file database support; it's not yet complete but the basic Wiki
7   functionality is there, thanks to Ari
8 * New zip file format for page dumps follows standard email format
9 * Removed tabs from all default pages
10 * Added whitespace padding to pages after they are serialized and
11   written to the DBM file; this goes a long way towards fixing the
12   memory leak problems for DBM-based Wikis.
13 * Numerous bug fixes, as always
14 * Some refactoring of the database interface
15
16 1.1.7 07/15/00: A lot was added since the 1.1.6b release. Diffs are
17     the handiwork of Jeff Dairiki, though Arno wrote the second
18     revision. Features and changes include:
19
20 * Page diffs, with color
21 * "MostPopular" page added which dynamically tracks most viewed pages
22   (MySQL only so far)
23 * Admin functions: page dumps, page loads, Zip dumps, page locking
24 * MySQL, DBM, mSQL and Postgresql support all functional and appear stable
25 * Full HTML compliance in page output
26 * Tabless markup language introduced for <UL> and <OL>
27 * Fixed raw HTML exploit in [info] page
28 * Perl script included to reduce the size of a DBM file
29 * documentation updates
30 * page source updates
31 * gazillion feature enhancements and bug fixes, no doubt necessitating
32   another gazillion feature enhancements and bug fixes ;-)
33
34 1.1.6b 06/27/00: The wrong wiki_config.php3 file was included in 1.1.6, 
35 and this release corrects that; also in my hurry, I included all the CVS
36 directories and files, and a test file. That stuff was left out.
37
38 1.1.6 06/26/00: Added templates, Postgresql support, mSQL support, new
39 database schema, new date storage format, an "info" link on all pages,
40 and introduced some new bugs (RecentChanges is broken ;-)
41
42 1.1.5 06/08/00: Here are the comments from the CVS logs:
43
44 fixed magic_quotes_gpc=1 bug for $pagename
45 fixed raw-HTML exploit for $pagename
46 fixed javascript: links exploit
47 Concurrent editing of pages is detected now - fixes LostUpdateProblem
48 (note: EditLinks is *not* treated this way yet)
49 search term is now preg_quote()'ed instead of chars removed
50 bugfix: UpdateRecentChanges didn't link names of new-style pages.
51 Fixed FindPage and search boxes
52 Added headings (!,!!,!!!), suppression of wiki linking (!WikiName), and linebreaks (%%%)
53 changed mySQL schema: column 'data' renamed 'hash' because 'dada' is a
54 reserved word. (update your tables!)
55
56 This release should work fine with the new linking scheme, but then
57 again, hey, it's beta!
58
59 1.1.4 05/11/00: I added the new linking
60 scheme, which largely follows the scheme of Wikic
61 (http://wiki.cs.uiuc.edu/RefactoringBrowser/Wiki+Syntax). Both "classic
62 Wiki" linking and the new linking are supported; you can now also link
63 things by using square brackets, like this:
64
65 [this is a page link]
66 [this is an external link | http://wcsb.org/]
67 [ftp://ftp.redhat.com/]
68
69 Reference links are still supported.
70
71 1.1.3 04/22/00: I rewrote UpdateRecentChanges completely; it's more
72 efficient now because it only loops over the lines once, and entries are
73 now newest-first instead of oldest-first.
74
75 1.1.2 04/20/00: I finally solved the problem once and for all (I hope!)
76 with loading pages into a brand new wiki. Vim allows you to change the
77 file formats so I wrote a two line ex script to convert all the pages to
78 dos format. (This gives them the CR/NL, unlike Un*x).
79
80 1.1.1 04/15/00: I changed the way Wiki markup is converted and 
81 displayed. Before pages were rendered line by line; now it accumulates
82 all the HTML in a variable and does one "echo" to display the page. 
83 While this might be a bit slower (it will use a little bit more memory)
84 this means PhpWiki can be modified so the HTML can be written to a file.
85 a whole PhpWiki site might either be served as static HTML, or
86 periodically exported to disk after a period of activity. This is the
87 secod beta (more or less) of the 1.1 release.
88
89 1.1.0 04/10/00: Support for MySQL added. Thanks to Arno Hollosi for 
90 his excellent work! He also provided patches to clean up the wiki_setup
91 procedure and fix rendering bugs with italics and bold text, amongst
92 others. Alister <alister@minotaur.nu> provided patches for arbitrary
93 numbers of reference links, fixing a rotten logic error on my part.
94 Removed "static" declarations to help the PHP4 porters.
95
96 1.03 03/21/00: Refactored index.php3 and wiki_display.php3, which 
97 had dbm function calls in them. Thanks to Christian Lindig
98 <lindig@gaertner.de> for pointing this out. This should make it
99 a little easier to port to a different database.
100
101 1.02 02/02/00: Disabled embedded HTML, due to security holes 
102 described in this CERT advisory: http://www.cert.org/advisories/CA-2000-02.html
103 You can re-enable it by removing the comment tags in wiki_display.php3.
104 Please be certain of what you are doing if you allow this!
105
106 1.01 02/01/11: Fixed bug where header rules (<hr>) were inserted
107 whenever four or more dashes occured; this only works if it starts the
108 line now. Thanks to Gerry Barksdale.
109
110 1.00 01/25/00: Changed the names of all files except index.php3; I
111 prefaced them all with "wiki_" to avoid collisions with other files 
112 that might be in the include path. Thanks to Grant Morgan for the 
113 suggestion. A few corrections to the default pages; I think the 
114 small rendering problems are due to Unix's lack of a carriage 
115 return.
116
117 0.99 01/20/00: Added a logic change suggested by Clifford Adams, 
118 where a copy is saved to the archive if the previous author was 
119 different. A different person that is. Fixed a rendering bug. This was
120 breaking: http://c2.com/cgi-bin/wiki followed by
121 http://c2.com/cgi-bin/wiki?PhpWiki on the same line. Because PHP only
122 can do *global* search and replace, the second URL was incompletely
123 swapped and linked. Using rsort() on the array of matches worked.
124 Added a patch from Grant Morgan for servers with magic_quotes_gpc set.
125
126 0.98 01/18/00: Added code to build the $ServerAddress dyanamically. Now,
127 PhpWiki will work as soon as it's untarred. No configuration should be
128 necessary.
129
130 0.97 01/16/00: Added a feature suggested by Clifford Adams. It stores
131 the author's remote address and disables the EditCopy the next time they
132 edit a page. Added <DL><DT><DD> support and debugged it. A new Wiki will
133 load a set of new pages, so the Wiki is ready to go out of the box.
134
135 0.96 01/15/00: Added EditCopy. This uses a second DBM file and could use
136 some more pounding. I also found a bug when two URL's appear on the same
137 line, like:
138 http://foo.com/ http://foo.com/WikiWikiWeb
139 In this case the second URL will not be linked correctly due to PHP's
140 replace-all-or-nothing regular expression functions.
141
142 0.95 01/04/00: Severe reworking of the list code (UL amd OL tags). I
143 added a stack class and "implemented recursion," which seemed the
144 logical way to accomplish nested tags. There are a couple of minor bugs
145 to work out, and I have to get DL tags working. I changed some constants
146 to define()'s instead. There are magic numbers in stdlib.php3 that
147 probably should be defined. I also used while() loops while doing
148 push/pop operations which also gives me the willies, but I put in bounds
149 checking.
150
151 0.94: 12/22/99 Mostly code cleanups; added code for waiting on the dbm
152 file if not available; added more comments. 
153
154 0.93: 12/21/99 Added full text search. Moved configuration code to a new
155 file, config.php3. Fixed another bug in RecentChanges. Page titles now
156 link to full search, which is a bit more useful. Added code to create a
157 new RecentChanges if none existed.
158
159 0.92: 12/20/99 Added REMOTE_HOST to RecentChanges edits; fixed a bug
160 where I typed in PUT instead of POST in editpage.php3; patched
161 RecentChanges so hopefully the lines won't get screwed up anymore.
162
163 0.91: 12/20/99 Fixed bug that occurred when creating new pages.
164
165 0.90: 12/19/99 Added user-defined links (i.e. [1], [2] etc) and embedded
166 images. This is the first beta release. Only an issue with second-level
167 lists remains, and a couple of other minor things.
168
169 0.81: 12/19/99 Fixed another wiki word linking issue. It arose from
170 having similar patterns in words in the same line.
171
172 0.80: 12/18/99 I'm bumping up the version to .8 because it's that close.
173 I finally solved the crucial linking problem, by reinventing how
174 classic Wiki does it ;-) URL's are first replaced with tokens, then Wiki
175 words are linked, then linked URL's are put back. I improved the code a
176 great deal for the differnet "modes" of display text; I have a function
177 maintain the mode, and whether end tags are needed or not.
178
179 0.07: 12/18/99 Fixed minor bug in preformatted/bulleted code output; fixed
180 reverse linking of page titles
181
182 0.06: 12/15/99: Added ChangeSpacesToTabs
183
184 0.05: 12/14/99: Added title searches, RecentChanges, fixed numerous bugs like
185 only trying to render valid page names, the last-edited-date, removed
186 the navigation toolbars, linked the new logo to FrontPage, and a half
187 dozen other odd things. It's almost ready.
188
189 0.04: 12/12/99: Several additions to markup:
190    italics 
191    bold
192    preformatted text
193    unordered lists (one level only, tow levels breaks)
194
195 In addition, wiki links have been further debugged, but I still
196 haven't solved the problem with wiki-links inside URLs.
197    
198 0.03: 12/4/99: Pages are now serialized arrays instead of text blobs. Some
199 markup rules have been implemented. HTML is escaped; Wiki linking works
200 but
201 undefined pages do not have the question mark after them (they look like
202 a regular link to a Wiki page.) URL's hyperlink and should accept most
203 legal
204 URL's.
205
206 0.02: 12/3/99: Basic page editing/saving/displaying is now working.
207
208 Prior to 0.02, there were no numbered releases, and in fact there
209 was only one release, so I guess that would be 0.01 :-)