summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/table.pm
AgeCommit message (Collapse)Author
2010-08-30call preprocess in scan mode hooks before scan hooksJoey Hess
Following along with change in Render.pm
2010-02-12setup file orderingJoey Hess
2009-01-06table: Find links in external files in scan pass.Joey Hess
2009-01-06table: Fix misparsed links in external filesJoey Hess
linkify data from external files at the same time as data from an inlined table would be linkified.
2008-12-23finalise version 3.00 of the plugin apiJoey Hess
2008-12-17Coding style change: Remove explcit vim folding markers.Joey Hess
2008-09-02use yesnoJoey Hess
2008-09-02table: Support header=column to make the table header be the first column of ↵Joey Hess
the data. (AlexandreDupas)
2008-08-03add plugin safe/rebuild info (part 3 of 3)Joey Hess
2008-07-13switch preprocess hooks to use error functionJoey Hess
2008-06-04Pass a destpage parameter to the sanitize hook.Joey Hess
Because the search plugin needed it, also because it's one of the few plugins that didn't already have it. I also considered adding it to htmlize, but I really cannot imagine caring what the destpage is when htmlizing. (I'll probably be poven wrong later.)
2008-01-09* mdwn: When htmlizing text, if it's a single line with no newline,Joey Hess
remove the enclosing paragraph and newline markdown wraps it in. This allows removing several hacks around this markdown behavior from other plugins that htmlize fragements of pages.
2008-01-05* aggregate: Only save state if it was already loaded. This didn't used toJoey Hess
* table: Fix dependency tracking for external data files. Closes: #458387
2007-11-08Fix table plugin to not generate an unbalanced tbody tag with header=noJosh Triplett
The table plugin omitted </tbody> with header=no, but always generated <tbody>, resulting in an unbalanced tag. Fix that by omitting <tbody> too.
2007-09-16* table plugin: Actually specify the delimiter when parsing CSV.joey
* table plugin: The previous version broke WikiLinks inside quoted values. Fix this by linkifying CSV data after parsing it, while DSV data is still linkified before parsing.
2007-09-16* table plugin: Actually specify the delimiter.joey
2007-09-05* table: Text::CSV doesn't return decoded unicode (XS module); decode itsjoey
return values.
2007-08-28* Tables containing links with a link text were misparsed, because the "|"joey
in the wikilink looked like a table field separator. Avoid this ambiguity by linkifying the data before parsing it as a table. * Turn on allow_loose_quotes in the table plugin's Text::CSV object, so that links from wikilinks don't confuse the parser.
2007-04-27* pagespec_match() has changed to take named parameters, to better allowjoey
for extended pagespecs. The old calling convention will still work for back-compat for now. * The calling convention for functions in the IkiWiki::PageSpec namespace has changed so they are passed named parameters. * Plugin interface version increased to 2.00 since I don't anticipate any more interface changes before 2.0.
2007-03-07add colspan supportjoey
2007-03-07cleanupjoey
2007-03-07missed a fewjoey
2007-03-07further refinementjoey
2007-03-07further refinementjoey
fix a regexp injection hole
2007-03-07more i18n improvementsjoey
2007-03-07* Add a table plugin, derived from the one written by Victor Moral.joey