1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
|
2004-05-23 Shiro Kawai <shiro@acm.org>
* release 0.5
* doc/Makefile.in : suppress making docs for the time being; it's
not ready.
* src/wiliki/rssmix.scm, src/rssmix.cgi : splitted customizable part
and library part.
2004-04-04 Shiro Kawai <shiro@acm.org>
* doc/* : start adding documentation. Yet to determine the format.
2004-04-03 Shiro Kawai <shiro@acm.org>
* src/wiliki2html: removed. The function is implemented by 'wiliki'
command.
* bin/wiliki: added. A general command-line tool to handle wiliki
database.
* test/test-bin.scm: added.
2004-04-02 Shiro Kawai <shiro@acm.org>
* src/wiliki/format.scm (fmt-lines): fixed a bug that caused infinite
loop (thanks to Kouhei Sutou for a patch). This changes behavior
of ul/ol inside blockquote, but I believe the previous behavior
was wrong.
2004-03-29 Shiro Kawai <shiro@acm.org>
* src/format.scm (fmt-lines) : fixed a bug that caused infinite loop
(thanks to Kouhei Sutou for a patch).
2004-03-21 Shiro Kawai <shiro@acm.org>
* src/wiliki/db.scm, src/wiliki.scm : made wiliki.db only depend on
wiliki.format. The APIs are renamed. Compatibility functions
are moved to wiliki.scm.
* src/wiliki/*.scm : adapted to the new wiliki.db api.
2004-03-19 Shiro Kawai <shiro@acm.org>
* renamed the directory aux/ to util/, for Windows doesn't like the
file name 'aux'. Yuck.
* src/wiliki/format.scm : made formatting customization routines
methods of <wiliki-formatter>. The closure members in
<wiliki-formatter> are retained for the compatibility of 0.5_pre2,
but deprecated. The preferable way is to subclass
<wiliki-formatter> and override methods.
2004-03-07 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (get-page-name): display toppage when null string
is given to the 'p' parameter in QUERY_STRING (Patch from Tokuya
Kameshima).
2004-02-10 Shiro Kawai <shiro@acm.org>
* src/wiliki/format.scm (fmt-line): fixed a bug that caused infinite
loop when there's an unmatched "[[" in a line.
2004-02-09 Shiro Kawai <shiro@acm.org>
* src/wiliki2.cgi (my-page-content): make 'Topics' of side-bar
a wiki-link (suggested by Zukeran Shin).
* src/wiliki/edit.scm (cmd-commit-edit): make top page not deleted
even if the content is empty (suggested by Kimura Fuyuki).
* src/wiliki/format.scm (fmt-line): let em and strong take the
innermost apostrophes instead of first-match.
2004-02-04 Shiro Kawai <shiro@acm.org>
* src/wiliki/format.scm (fmt-line): fixed a problem of emphasizing
phrase containing apostrophe.
2004-01-31 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : looking up CGI parameters from cgi-metavariables
first, instead of getting them directly by sys-getenv. This makes
the host program to parameterize wiliki more easily.
2004-01-21 Shiro Kawai <shiro@acm.org>
* src/wiliki/format.scm (fmt-line): added hook to parse ##() macro.
(wiliki:format-macro): ditto.
(<wiliki-formatter>): macro slot for ##()-macro formatter.
2004-01-19 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (wiliki:version): added procedure to get wiliki
version.
* src/wiliki/edit.scm (edit-form) : make "don't update recent changes"
a label of the checkbox.
2004-01-12 Shiro Kawai <shiro@acm.org>
* src/wiliki/format.scm, src/wiliki/macro.scm, src/wiliki/util.scm :
revised anchoring of headings (uses 'id' instead of 'a', and also
uses hash value rather than ordinal numbers). $$toc macro is
also revised to handle $$included page properly.
2004-01-11 Shiro Kawai <shiro@acm.org>
* various files: more fixes for new format handling.
* src/wiliki.scm : export various formatting functions for
user customization.
* src/wiliki2.cgi, src/wiliki2.css : added a sample cgi to show
how to customize page display.
* src/wiliki.css : renamed from wiliki-sample.css for consistency.
* configure.in : 0.5_pre1
2004-01-08 Shiro Kawai <shiro@acm.org>
* src/wiliki/format.scm : yet another snapshot of refactoring
formatter. format-lines is rewritten using SXML.
2003-12-31 Shiro Kawai <shiro@acm.org>
* another snapshot of refactoring formatter. wiliki.format is
decoupled completely.
2003-12-30 Shiro Kawai <shiro@acm.org>
* working snapshot of refactoring formatter. more changes to come.
2003-12-29 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (get-page-name): changed to use PATH_INFO instead of
REQUEST_URI
* test/test-wiliki.scm : more tests.
2003-12-21 Shiro Kawai <shiro@acm.org>
* test/test-wiliki.scm : more tests.
* src/wiliki/edit.scm: added missing </p> in the text editing help
message.
2003-12-18 Shiro Kawai <shiro@acm.org>
* aux/*, test/test-wiliki.scm : creating a scaffold for solid testing.
* src/wiliki/db.scm : fix behavior of nested with-db form.
2003-12-17 Shiro Kawai <shiro@acm.org>
* src/wiliki/wiliki.scm (<wiliki>): added 'protocol' and
'server-port' slot.
(full-script-path-of) : calculate full URL of script, with
consideration of protocol scheme and server port.
(url, url-full) : use full-script-path-of. also omit l=lang
parameter if lang matches the wiliki's default language.
(html-page) : use full-script-path-of to emit base path.
* src/wiliki/rss.scm (rss-format): use full-script-path-of to
generate page URL.
* src/wiliki/edit.scm (cmd-commit-edit) : avoid writing log and db
if the content isn't changed.
* src/wiliki/macro.scm
(define-reader-macro) : generates anchor URL without "p=", so that
browser can use cached page to hop around within the page in
normal circumstances.
* src/wiliki.scm
(debug-level): fixed bad method name.
(cmd-view): added code to workaround when top page name is changed.
2003-11-19 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm, src/wiliki/macro.scm : added missing "provide"
directives.
* src/wiliki2html : added.
2003-10-09 YAEGASHI Takeshi <t@keshi.org>
* debian: new directory: Debian packaging files.
* DIST_EXCLUDE: do not include config.status, config.log and
debian directory in the release distribution.
2003-10-07 Shiro Kawai <shiro@acm.org>
* release 0.4
* src/wiliki/format.scm : allow the InterWikiName list to
have protocol scheme (http, https, ftp, mailto).
Patch by Yaegashi Takeshi.
2003-09-01 Shiro Kawai <shiro@acm.org>
* src/wiliki/edit.scm (edit-form): added class attribute to
textareas of edit screen.
2003-08-31 Shiro Kawai <shiro@acm.org>
* src/wiliki/db.scm (wdb-search-content): use case-insensitive search
* src/wiliki.scm (expand-writer-macros): fix regexp so that args
for writer macros can be handled.
* src/wiliki/format.scm (format-colored-box): use :style attribute
instead of :bgcolor, so that it won't interfere with different
style sheets.
* src/wiliki.scm (language-link): fixed a broken url generation
* src/wiliki/edit.scm, src/wiliki/format.scm, src/wiliki/history.scm:
Incorporated auto-merge feature to conflict handling. If logging
feature is on, wiliki tries to merge both edits. Even if logging
feature is not on, it shows diff, so it's much easier to find out
what is edited.
2003-08-30 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm, src/wiliki/history.scm, src/wiliki/log.scm,
src/wiliki/format.scm:
First snapshot of integrating history module. If the log
file name is given to :log-file slot of wiliki, the history
feature is turned on. There are still some missing features.
2003-08-23 Shiro Kawai <shiro@acm.org>
* src/wiliki/format.scm : rewrote formatting engine to produce
more "correct" html (not quite, but almost correct).
* test/format.scm : added lots of patholocigal cases.
* src/wiliki-sample.css : added blockquote style.
2003-08-19 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm, src/wiliki/format.scm : Oops. Changing the default
link to pathname notation had one undesirable side effect---it
interferes with PageName begins with '/'. So the link use
old ?PageName notation now.
2003-08-18 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm, src/wiliki/format.scm : Changed precedence of
wikiname recoginition in URL. Now the pathname notation
(e.g. http://foo/bar/wiliki.cgi/PageName) is the highest precedence,
"?p=PageName" comes next, and "?PageName" is the last. The default
format of the link of formatted page is also changed to use pathname
notation.
2003-08-17 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (<wiliki>) : added customization parameter
textarea-rows and textarea-cols (Patch from knok).
* src/wiliki.scm (expand-writer-macros) : bug fix: not to expand
writer macros in verbatim block.
* src/wiliki/format.scm (format-page): changed not to show language
links (->Japanese/->English) at edit and preview pages, for it
causes problems in state tracking.
* src/wiliki.cgi, src/wiliki.scm (error-page),
src/wiliki/db.scm (db-try-open),
src/wiliki/macro.scm (handle-expansion):
Added debug-level to <wiliki>, and controls whether the diagnostic
messages should be shown on webpage or not. The default is set so
that it won't give away internal information (such as database path,
stack trace, etc).
* src/wiliki-sample.css : added "macroerror" class in pre, for
error diagnostic messages.
2003-07-09 Shiro Kawai <shiro@acm.org>
* src/wiliki/db.scm (db-try-open): fixed the bug that wiliki didn't
create intitial database.
2003-07-04 Shiro Kawai <shiro@acm.org>
* src/wiliki/db.scm (db-try-open): fixed a typo of keyword parameter
for dbm-open (Patch from kou)
* src/wiliki.scm (main): changed so that all commands except
edit will open the database in read-only mode (Suggested by kou).
2003-06-06 Shiro Kawai <shiro@acm.org>
* src/wiliki/db.scm (with-db): capture EAVAIL error from dbm-open
and retry after some delay.
* src/wiliki/format.scm (format-parts): recognize mailto: scheme
(as suggested by Hisazumi Kenji).
2003-05-11 Shiro Kawai <shiro@acm.org>
* src/wiliki/macro.scm (toc): fixed a bug in referencing the anchor
within the same page; this bug has been incorporated by adding
base element in the document in order to support pagename by
path component.
2003-05-03 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (wiliki-main): allow pagenames to be specified by
appending extra path component like "wiliki.cgi/PageName".
2003-04-21 Shiro Kawai <shiro@acm.org>
* Makefile, src/Makefile.am, test/Makefile.am, configure.in :
Removed automake dependency.
* src/wiliki.scm, src/wiliki/db.scm : separated database access layer.
2003-04-06 Shiro Kawai <shiro@acm.org>
* src/wiliki/macro.scm : fixed function call
wikiname-anchor -> format-wikiname-anchor. sort the result
of $$index and $$cindex alphabetically.
* src/wiliki.scm (wdb-search): allow optional comparison method for
sorting the result.
* Makefile.am and other files : adapted to automake
* src/wiliki.scm, src/wiliki/format.scm : separated formatting stuff
into a module.
2003-03-31 Shiro Kawai <shiro@acm.org>
* src/wiliki/macro.scm : capture error in macro expander.
* src/wiliki.scm, src/wiliki/msgs.jp.euc: fixed the text formatting
instruction message.
2003-03-05 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (format-wiki-name, cmd-view),
src/wiliki/macro.scm (handle-virtual-page, virtual-page?) :
Added "virtual page" feature (Patch from Hisazumi Kenji).
* src/wiliki.scm (format-parts): in URI formatting, omitting protocol
scheme part when a server name is not given; allows the same page
to be used from http and https (Patch from YAEGASHI Takeshi).
2003-03-04 Shiro Kawai <shiro@acm.org>
* src/wiliki/rss.scm (rss-format) : added missing rdf:about attribute
in the item element.
2003-02-26 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (format-parts) : recognize https and ftp as
valid protocols to make a link.
2003-02-21 Shiro Kawai <shiro@acm.org>
* Makefile.in : added extract target.
* src/wiliki.scm (cmd-view): show "create new page" link when
nonexitent page is specified.
2003-02-14 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (cmd-recent-changes): experimentally added
how-long-since display in "Recent Changes" page.
2003-02-13 Shiro Kawai <shiro@acm.org>
* release 0.3
2003-02-12 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (make-line-fetcher): fixed a problem with comments
and line continations in a verbatim block; the line fetcher itself
needs to recognize "{{{" and "}}}" to switch the mode.
2003-02-11 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (format-content): added comment syntax, revised
table syntax (use '||' instead of '|' as a delimiter), and
revised formatting routine to comply HTML (mostly).
2003-02-10 Shiro Kawai <shiro@acm.org>
* src/extract.scm : improved format of multiline string.
* src/wiliki.scm : allow title to be set.
* src/wiliki/msgs.jp.euc : changed some messages.
* src/wiliki/macro.scm : fixed problem related to the change
of return value of wdb-search.
2003-02-08 Shiro Kawai <shiro@acm.org>
* src/wiliki/pasttime.scm : a feature to display the time
since last modified.
* src/wiliki/rss.scm : added RSS support.
* src/wiliki.scm : Removed cgi-name slot from <wiliki>. It is
now derived from CGI metavariables SCRIPT_NAME.
Added db-type slot to <wiliki>, so that dbm system other than
gdbm can be used.
Added table support (using PukiWiki syntax, i.e. '|' as the
delimiter).
2003-02-06 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : completed charset support, using new features
of www.cgi in upcoming Gauche-0.6.7.
2002-12-26 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added charset support, as suggested by
Fumitoshi UKAI. Not completed yet.
* test/* : started writing simple tests.
2002-12-21 Shiro Kawai <shiro@acm.org>
* Makefile.in, src/wiliki/msgs.jp.euc : changed Makefile so that
the japanese message file msgs.jp is converted to the gauche's
internal encoding during make.
2002-12-18 Shiro Kawai <shiro@acm.org>
* release 0.2
* src/wiliki/macro.scm : support inline-image by $$img macro.
* src/wiliki.scm: added style-sheet support, and inline-image
allow/deny rules.
2002-12-09 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm (redirect-page) : fixed a problem of redirecting
a page whose name containing special characters such as '='.
2002-12-01 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : various fixes:
- added "{{{" and "}}}" to denote <pre> </pre>.
- used redirection to display the fresh page after editing,
to prevent multi-posting by reloading.
- swap "Preview again" and "Commit" button in the preview screen,
for consistency with the edit screen.
- show update conflict screen even in preview; it caused internal
error in the previous version.
- keep language setting across edit.
* src/wiliki/msgs.jp : modified accordingly.
* src/wiliki/macro.scm : fixed toc macro expander to accomodate
"{{{" tag.
2002-10-07 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm: fixed a problem that the text in the textarea
of preview and edit screen wasn't html-escaped.
2002-09-29 Shiro Kawai <shiro@acm.org>
* release 0.1 (alpha)
* src/wiliki.scm : removed the parameter 'page', for the same info
is available from the parameter page-format-history.
A procedure current-formatting-page is defined for the convenience.
* src/wiliki/macro.scm : escape the index line of $$toc correctly.
2002-09-26 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : adapted to Gauche 0.6.3. checks Gauche version
near the beginning. adds fragment anchor names to headings.
added 'page' parameter.
* src/wiliki/macro.scm : $$toc creates a link to the headings.
2002-05-21 Shiro Kawai <shiro@acm.org>
* src/wiliki/macro.scm : separated reader/writer macro handling
routines here. Added $$toc reader macro
* src/wiliki.scm : added a checkbox in editing screen to set
"don't update 'Recent Changes'" option (so called "sage" feature).
Also hide "Edit" link in the edit screen.
2002-03-30 Shiro Kawai <shiro@acm.org>
* emacs/wiliki.el : finish header parsing.
* src/extract.scm : adapted to Gauche-0.5.1 and later
* src/wiliki/msgs.jp : added messages
2002-03-03 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added lwp-version to the lightweight
protocol header. change the lightweight protocol command to "lv".
* emacs/wiliki.el : added (not finished yet).
2002-03-02 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added plaintext mode.
* src/wiliki.scm : made the current <wiliki> object, the current
language and the current db parameters; this simplifies the
code a lot.
* src/wiliki.scm : switch charset by the language.
* src/wiliki.scm : added $$include macro. implement simple
parameter mechanism (define-parameter and parameterize*).
* src/wiliki.scm : added $$cindex macro.
2002-03-01 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : escape special characters in wiki name
formatting.
* src/wiliki.scm (cmd-commit-edit) : delete page if it contains
only whitespace characters. (string-null? is not enough, for
some browsers sends extra \n in some cases.).
* src/wiliki.scm : added search box.
* src/wiliki.scm : added $$index reader macro.
2002-02-27 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : sort search result.
* src/wiliki.scm : enabled deletion of page. allow '<' and '>' in
WikiName.
2001-01-14 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : fixed WikiName parse routine to deal with nested
"[[" and "]]"'s for InterWikiName, and correctly escape WikiName
reference in URL.
2001-01-13 Shiro Kawai <shiro@acm.org>
* various files : autoconfiscated
* src/wiliki.scm, src/wiliki/mcatalog.scm, src/wiliki/msgs.jp :
separated language-dependent messages to the separate message
catalog.
2001-12-12 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added named url ([URL name]) formatting rule.
added InterWikiName feature.
2001-12-05 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm: fixed a bug that escapes URL twice.
fix the problem that the page named "c" couldn't be viewed.
added <h4>. allow <dt> to have colons.
2001-11-28 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added preview feature.
2001-11-27 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added back-link search feature and update conflict
detection.
2001-11-22 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added recent-changes feature, and bilingual
feature for messages.
2001-11-22 Shiro Kawai <shiro@acm.org>
* src/wiliki.scm : added per-page parameters
|