Other languages: (de)
The versions of wiki2xhtml and its changelogs.
wiki2xhtml 3.2
Version 3.2 (Sat, Feb 16, 2008)
- wiki2xhtml is multi-lingual now!
- A long page can be split into multiple ones
- A new design, “Wide Green”
- The Style “HD” has been adjusted
- You've got the possibility to export .sh (Unix) and .bat (Windows) Scripts.
- Thumbnails can be linked directly to images (without the image page) with the argument “direct”
- {{$Pagename}} inserts the name of the current page
- #REDIRECT redirects to other pages
- .html files will be copied now (and no longer ignored) but not processed
- The comments system has been rewritten completely (concerns primarily command line; arguments
-v,--silentand--dead) - List parser completely rewritten, heading parser partially rewritten
- Tables:
| entry 1 !! entry 2is possible - The GUI has been adjusted
- The documentation has been updated (images) and structurated
- Images inserted with [[Image:path]] (without the argument thumb) are only resized with the argument width=number or w=number
- The navigation file (or index file) is now called menu file (menu.txt) for consistency reasons
- A vertical bar to separate link and Description is possible for both internal and external links surroundet with each one respectively two square brackets
-
{{ID:...}}disabled - (Obsolete) styles “Nature” and “Glass” removed
- Fixed: Unhandsome code in definition lists (
:and;) - Fixed: Direct links in parentheses are recognized now. Example:
… in parentheses (http://example.com) are … - Fixed: A tag immediately following a link (like
http://example.com<br />) isn't added to the link anymore - Fixed: Special patterns (
[[Image:followed by anything but the closing square brackets) won't lead to a crash anymore[1] - Fixed:
''the car's driver''is now recognized as italic text (antecendent the ' used to prevent this) - Fixed: Random design is again selectable in the GUI
- 3.2.1
- Wrong link recognition fixed (now without ' at the end and without " at the beginning)
- Little mistake in comments system fixed (text wasn't displayed)
wiki2xhtml 3.1.0
Version 3.1.0 (Mon Oct 1 20:42:36 UTC 2007)
- I've changed the license to LGPL
- The update checker has been extended a little bit
wiki2xhtml 3.0.4
Version 3.0.4 (Son Sep 23 14:04:55 UTC 2007)
- Check for updates in the Preferences dialogue and for the command line (argument --www)
- Compiled with Java 5 (not Java 6) again for better compatibility (runs also on PCs which aren't up-to-date)
wiki2xhtml 3.0.3
Version 3.0.3 (Sa Jul 21 14:38:30 CEST 2007)
- Fixed: Paragraphs aren't inserted anymore between the tags pre and code. If you want to prevent the text from being edited generally (e.g. links), use the nowiki-tags too. (Bug #1751697)
wiki2xhtml 3.0.2
Version 3.0.2 (Fr Jun 29 23:37:26 CEST 2007)
- A custom width for image thumbnails can be set in the css-settings.txt (in the according design directory) with {{thumb-imagewidth:value}}
- Submenu “Info” added in the GUI
- Images: w= is now an abbreviation for width=, pw= for pwidth=
- Fixed: [[Image:picture.jpg]] inserts picture.jpg and no more its thumbnail (thumbnails need the argument thumb)
- Fixed: Argument
--consistent-gallerydidn't work in the first line, if it was set to two images per line (css-settings.txt: [[Consistent-Gallery:2]]) - Fixed: If a link (without square brackets) stood at the end of a cell, the </td> was appended to the link target
- Fixed: The code paste window is working again (didn't work anymore in 3.0)
wiki2xhtml 3.0
Version 3.0 (Sa Jun 23 12:09:26 CEST 2007)
- You can use PHP files! The flag <!--nowiki--> prevents wiki2xhtml from doing anything with it. Text before the (optional) <!--endtop--> is put at the top of the page (before the html) what is required by some php functions like sessions.
- Templates for galleries and images for more design-possibilities
- New lines (<br />) can be inserted with “\\ ” (two backslashes followed by a space) like in the DokuWiki (Feature Request #1721336)
- Long image descriptions can be inserted with ld=... (only displayed on the image description pages)
- New design: GlassBorder
- You can have headers and normal cells on one line too (e.g. ! header || normal cell !! again header)
- Curly braces are allowed in the title: {{H1:Here is a } in the title}} (for use in PHP)
- Changed div in the top link to span
- Image argument “thumb” generates image pages (only S[Image:test.jpg]] does not)
- Some styles adjusted (HD, Autumn)
- Fixed: Text-only gallery entries don't have an ID any more
- Fixed: wiki2xhtml crashed when there was a single | on one line (in tables)
wiki2xhtml 2.6
Version 2.6 (Fr Mai 18 19:40:57 CEST 2007)
- The menu can contain sub-menus; you can insert them with one or two * at the beginning of the line with the target link (Feature Request #1717610)
- List entries (*, #, :, ;) may have arguments (Feature Request #1718195)
Example: * style="color: #f00;" | red text - Designs updated
- Lists are better looking (indent with spaces) (Feature Request #1651883)
- gif images in the style directory are copied too
- The first {{Language:...}} or {{Lang:...}} is taken, thus further ones don't have to be masqueraded with { (causes a { in HTML). The same for all {{something:text}} tags except AddKeywords and Meta.
wiki2xhtml 2.5.1
Version 2.5.1 (Fr 27. Apr 19:49:24 CEST 2007)
- The argument
<meta name="robots" content="all" />is added to the files (thus search engines search the files). It will be possible to determine whether that is to be appended in further releases. - {{Language:...}} is now possible too to set the document's language. (Other: {Lang:...}})
- Fixed: The last line was cut away
- Fixed: NullPointerException in the GUI
wiki2xhtml 2.5
Version 2.5 (So 22. Apr 10:37:17 CEST 2007)
- Scrollbars for the Paste/Code windows! (Feature Request #1654117)
- Buttons in the Paste Window: Open, Save, Remove Linebreaks (Feature Request #1654119)
- Added a previous/next button to image pages from galleries
- Designs have been updated
- Internal links now have to be written on one line
- <html> tag added in the designs
Footnotes
- [↑] For interested people. The (quite simplified) original regular expression:
\[\[image:([^\]]*)+\]\]. Problematic is that there is a greedy quantifier both within the parentheses and outside:([^\]]*)+(This expression means “Any character but a square bracket, any times, and all that at least one time”.) When the expression fails (that is, if there are no two final square brackets), every imaginably case is tested through here which lets the required time growing—due to the nested quantifiers—exponencially. Note that there is no problem with a successful match! See also: Mastering Regular Expressions, Jeffrey E.F. Friedl, O'Reilly, Chapter six, A Sobering Example.