[ Index ] |
|
Code source de eGroupWare 1.2.106-2 |
1 $Id: ChangeLog.txt 9853 2003-03-04 21:21:05Z ralfbecker $ 2 3 WikkiTikkiTavi - ChangeLog 4 -------------------------- 5 6 2002-02-19 Scott Moonen <smoonen@andstuff.org. 7 8 * Added code to HTML template to add the page's name, with WikiWords 9 split apart, to the list of meta keywords for a page. This should 10 aid in search engine categorization of pages. 11 * Optimized some of the SQL to use JOINs instead of manual simulation 12 of nested selects. 13 * Changed header regular expression to allow whitespace before first 14 equals sign and after last equals sign. 15 16 2002-02-18 Scott Moonen <smoonen@andstuff.org> 17 18 * Fix bug causing RSS parameters (min=mmm, days=nnn) to be ignored. 19 20 2002-02-15 Scott Moonen <smoonen@andstuff.org> 21 22 * Modified code so as to avoid generating warnings when PHP config 23 variable error_reporting is cranked up to 15. All of the immediately 24 evident at-fault code has been fixed. 25 * Allow URLs to end in an underscore (_). 26 * Relaxed rules for characters permitted in free-link page names. 27 * Relaxed rules for characters allowed in page anchors. 28 * Fixed problems in configure.pl related to quotes in strings and files 29 in DOS format. 30 * Modified templates so that a Content-Length header is emitted. This 31 should allow browsers to implement persistent connections, thereby 32 speeding up page loading. 33 34 2002-02-14 Scott Moonen <smoonen@andstuff.org> 35 36 * Work around regex bug in PHP 4.03 that causes freelinks to render 37 improperly. 38 * Fixed numerous bugs wherein pages with a single quote in their names 39 would generate bad SQL, thereby aborting the engine. 40 * Fixed a bug in the code that maintains the link database that caused 41 it to double-count some links. 42 * Fixed bug that caused Mozilla to show a blank page when saving 43 preferences. 44 45 2002-01-14 Scott Moonen <smoonen@andstuff.org> 46 47 * Introduce '!' as a no-link escape. E.g., !SandBox renders 48 as SandBox, without linking to the given page. 49 50 2002-01-10 Scott Moonen <smoonen@andstuff.org> 51 52 * Added $SeparateLinkWords configurable to insert spaces in 53 links to wiki pages. Default is off. 54 55 2002-01-08 Scott Moonen <smoonen@andstuff.org> 56 57 * Worked on streamlining installation, providing instructions for 58 added security and ease of upgrade. 59 * Introduced [[Transclude PageName]] macro, which will succeed 60 the %%PageName%% syntax. The double-% syntax is now deprecated 61 and will be removed in 0.30. 62 * Added action=style URL action to retrieve stylesheet. 63 * Applied patch from David Baker to allow case-insensitive image 64 suffixes, and also support .jpeg suffix. 65 66 2002-01-03 Scott Moonen <smoonen@andstuff.org> 67 68 * Changed transclusion behavior so that recursive transclusions beyond 69 one level are allowed, but circular transclusions are disallowed. 70 * Streamline installation, configuration, and maintenance process 71 by refactoring the configuration scheme. 72 73 2002-01-02 Scott Moonen <smoonen@andstuff.org> 74 75 * Introduced new option to $SeparateTitleWords in page titles. 76 * Refactored common code in default template. 77 * Fixed security hole in template system. 78 * Tweak macro behavior wrt newlines to better facilitate in-line 79 macros. 80 * Applied patch from Kimmo Suominen to accomodate 81 register_globals=off. 82 * Implemented HTML anchor macro, [[Anchor name]]. 83 * Implemented anchor reference syntax: PageName#anchor and 84 ((free links#anchor)). 85 86 2002-01-01 Scott Moonen <smoonen@andstuff.org> 87 88 * Change raw HTML processing to allow <html> tags to be uppercase. 89 * Rework templates so parameters are passed as an associative array, 90 rather than a hard-coded set of parameters. This will allow for 91 much more flexible extensibility. 92 93 2001-12-31 Scott Moonen <smoonen@andstuff.org> 94 95 * Fix rendering of {{ .. }} so that it slurps up braces within 96 the outer braces. I.e., {{{abc}}} now renders as <tt>{abc}</tt>. 97 98 2001-12-28 Scott Moonen <smoonen@andstuff.org> 99 100 * Removed formatting markup to bring 'Tavi from XHTML-Transitional 101 to XHTML-Strict. 102 * Moved formatting information to 'template/wiki.css'. 103 * 'Tavi now validates as XTHML-Strict and CSS compliant (except for 104 wrap="virtual" attribute on text areas, which I don't think can 105 be accomplished using CSS). 106 107 2001-12-19 Scott Moonen <smoonen@andstuff.org> 108 109 * Thoroughly rework list (indent, bullet, numbered) parsing. 110 Engine output is now entirely XHTML-Transitional-compliant. 111 * Add definition lists (syntax is ";term:definition"). 112 * Change $Unicode configuration option to $Charset configuration 113 option, to allow engine to always emit a character set. 114 115 2001-12-18 Scott Moonen <smoonen@andstuff.org> 116 117 * Fix minor formatting glitches in the parse engine. 118 Code now uses chr(255) to flag elements, rather than '\{n}'. 119 * Include 'alt=' property on img tags, since this is a required 120 XHTML attribute. The property's value is set to the basename of 121 the image's URL. 122 123 2001-12-14 Scott Moonen <smoonen@andstuff.org> 124 125 * Implement table syntax in the rendering engine. 126 * Implement RSS output for syndication. 127 * Implement time-zone option in user preferences. 128 129 2001-12-03 Scott Moonen <smoonen@andstuff.org> 130 131 * Implement a slight variation of Mark Kimes's tweak to display 132 arbitrary link text for free links. Syntax is: 133 ((page name|appears as this)) 134 * Fix parse_diff_message, which sometimes generated false matches 135 for the diff pattern. 136 * Fix html_time so that it returns 'never' for a timestamp that 137 is empty (i.e., for an unedited page). 138 * Remove 'document last modified' message from template/history.php, 139 as the time was never passed to the history template. 140 141 2001-11-30 Scott Moonen <smoonen@andstuff.org> 142 143 * Fix bug in validate_page wherein it would fail to recognize some 144 valid free link page names. 145 146 2001-11-29 Christopher Cashell <topher@zyp.org> 147 148 * Replace '<?' with '<?php' in all files. 149 150 2001-11-29 Scott Moonen <smoonen@andstuff.org> 151 152 * Fix lack of hash ('#') in colors for diff table cells. 153 154 2001-09-10 Scott Moonen <smoonen@andstuff.org> 155 156 * Officially released 0.20, a complete rewrite. A full description of 157 its new functionality is forthcoming, as time permits. 158 159 2001-02-20 Scott Moonen <smoonen@andstuff.org> 160 161 * Squashed a few bugs in preparation for the 0.10 release. 162 - mailto: links now display with a "mailto:" prefix. 163 - Race condition when saving pages eliminated. 164 - Multiple lines of whitespace are folded into one. 165 - Small glitch in generation of link table fixed. 166 * Version 0.10 released. See TaviDownload. 167 168 2001-02-06 Scott Moonen <smoonen@andstuff.org> 169 170 * Added to version 0.10 code: 171 - A META tag forbidding search engines to index history, 172 - old-version, diff, and edit pages. 173 174 2001-01-6 Scott Moonen <smoonen@andstuff.org> 175 176 * Completed changes adding sisterwiki, interwiki, and remote_pages 177 tables to the database schema. The first two define relationships 178 with external wikis, which are now community-accessible through 179 SisterWiki and InterWiki statement. The latter table is the list 180 of known external pages. 181 * Tweaked URL regex to handle a few extra terminating characters. 182 * This constitutes at least part of version 0.1. Will release soon. 183 184 2001-01-15 Scott Moonen <smoonen@andstuff.org> 185 186 * Version 0.05. 187 * Added configuration variable $Persistence, which specifies 188 whether to create a persistent MySQL connection. Default is not 189 to do so. 190 191 2001-01-07 Scott Moonen <smoonen@andstuff.org> 192 193 * Version 0.04. 194 * Fixed a bug introduced in version 0.03 where a PageWithA/SubPage? 195 was rendered improperly (whenever the sub-page was itself a valid 196 page name). 197 198 2001-01-04 Scott Moonen <smoonen@andstuff.org> 199 200 * Version 0.03. 201 * Fixed bug whereby some_text_preceding_a_non_alpha.FollowedByALink? 202 was rendered improperly. 203 204 2000-12-27 Scott Moonen <smoonen@andstuff.org> 205 206 * Version 0.02 released. 207 208
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 17:20:01 2007 | par Balluche grâce à PHPXref 0.7 |