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