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