Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-24 | pagesources might not be populated | Joey Hess | |
2008-06-24 | only convert urls if the module is installed | Joey Hess | |
2008-06-24 | formatting | Joey Hess | |
2008-06-24 | rename to txt | Joey Hess | |
2008-06-24 | initial version | Joey Hess | |
2008-06-24 | Disable handling of "bare" links by the creole plugin. | Bernd Zeimetz | |
This change needs libtext-wikicreole-perl (>= 0.05-2). Also removing custom link function, there's no need for it - if it is not defined, the unmodified markup will be returned. | |||
2008-06-21 | `template` option for aggregate.pm. | Bernd Zeimetz | |
Allows to specify the template file which is used to create the html pages. | |||
2008-06-19 | avoid creole parsing wikilinks | Joey Hess | |
ikiwiki already does, and escaped links should not be processed by creole after ikiwiki de-escapes them | |||
2008-06-19 | creole: New plugin from Bernd Zeimetz. Closes: #486930 | Joey Hess | |
2008-06-16 | textile: The Text::Textile perl module has some regexps that fail if input ↵ | Joey Hess | |
is flagged as utf-8, but contains invalid characters such as 0x92. To prevent it from crashing, re-encode the content before calling it, which will ensure that it's really utf-8. | |||
2008-06-15 | meta: Store "description" in pagestate for use by other plugins. | Joey Hess | |
map: Support show=description. | |||
2008-06-15 | bugfixes for show=title | Joey Hess | |
Can't sort by titles; the tree building logic requires that the list be sorted by page name. Setting linktext => $page is not the same as omitting it entirely. So some contortions to only set linktext when the page name is not being shown. | |||
2008-06-15 | check that parent hash exists, to avoid creating it | Joey Hess | |
2008-06-15 | note about titles and dependencies | Joey Hess | |
2008-06-15 | style changes | Joey Hess | |
Reindented, moved a TODO from page to code, trimmed some unnecessary comments, and simplified the use of mkstemp. | |||
2008-06-15 | initial add | Joey Hess | |
2008-06-15 | map: Add a "show" parameter. "show=title" can be used to display page ↵ | Joey Hess | |
titles, rather than the default page name. Based on a patch from Jaldhar H. Vyas, Closes: #484510 | |||
2008-06-13 | fix two build bugs | Joey Hess | |
* ikiwiki-mass-rebuild: Make group list comparison more robust. * search: Work around xapian bug #486138 by only stemming locales in a whitelist. | |||
2008-06-08 | Don't generate empty title attributes, etc, and allow setting defaults for ↵ | Joey Hess | |
class and id too. | |||
2008-06-07 | img: Support captions. | Joey Hess | |
2008-06-04 | finishing touches on the new search plugin | Joey Hess | |
- Add a Help link. - If the pageterm is too long, hash it. | |||
2008-06-04 | fix uninitialized value problem | Joey Hess | |
This occurred when a plugin, loaded earlier, filled out a template in its checkconfig, before recentchanges's checkconfig had run. Since such a template won't be a recentchanges template, just test for the value being uninitialized and skip processing. | |||
2008-06-04 | The search interface now allows searching for a page by title ("title:foo"), ↵ | Joey Hess | |
as well as for pages that contain a given link ("link:bar"). | |||
2008-06-04 | it's not $title, try the other variable | Joey Hess | |
2008-06-04 | don't use meta title | Joey Hess | |
Using the title obscured path info, and made search results look inconsistent. Since nothing else uses the title like that, it didn't make sense for search to. | |||
2008-06-04 | have the xapian stemmer use a language based on LANG | Joey Hess | |
2008-06-04 | also decode html entities in the title | Joey Hess | |
2008-06-04 | decode html entities | Joey Hess | |
2008-06-04 | fix clearing index on page deletion | Joey Hess | |
2008-06-04 | Pass 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-06-04 | move indexing to sanitize hook | Joey Hess | |
I think this will give better results overall. I made %IkiWiki::preprocessing accessible and used it to avoid indexing at unnecessary points. | |||
2008-06-04 | more search improvements | Joey Hess | |
2008-06-04 | more substr fixes | Joey Hess | |
2008-06-03 | add a colon to disambiguate | Joey Hess | |
The omega docs suggest doing this if the term may contain upper case, which it could here. | |||
2008-06-03 | avoid warning | Joey Hess | |
"substr outside of string" | |||
2008-06-03 | use "U" term | Joey Hess | |
this seems to be the thing to use for a unique id | |||
2008-06-03 | don't loop forever | Joey Hess | |
2008-06-03 | fixed most of the xapian todos | Joey Hess | |
2008-06-03 | prettify page names, and drop the redunadant url display | Joey Hess | |
2008-06-03 | fix toindex | Joey Hess | |
2008-06-03 | first pass at doing xapian indexing | Joey Hess | |
Still some TODOs to fill in. | |||
2008-06-03 | search: Converted to use xapian-omega. | Joey Hess | |
Everything is done except for the actual indexing. I plan to do incremental indexing as pages change. | |||
2008-05-31 | inline: The optimisation in 2.41 broke nested inlines. Detect those and ↵ | Joey Hess | |
avoid overoptimising. | |||
2008-05-30 | haiku: Generate valid xhtml. | Joey Hess | |
2008-05-30 | hashed password support, and empty password security fix | Joey Hess | |
This implements the previously documented hashed password support. While implementing that, I noticed a security hole, which this commit also fixes.. | |||
2008-05-29 | teximg: If the log isn't written, avoid ugly error messages. | Joey Hess | |
2008-05-29 | teximg: Fix logurl. | Joey Hess | |
2008-05-28 | When calling decode_utf8 on known-problimatic content in aggregate, ↵ | Joey Hess | |
explicitly pass 0 (FB_DEFAULT) as the second parameter. Apparently perl 5.8 needs this to avoid crashing on malformed utf-8, despite its docs saying it is the default. | |||
2008-05-25 | Avoid ``uninitialized value'' warning when there actually is no difference ↵ | Thomas Schwinge | |
between the two versions. | |||
2008-05-15 | inline: Display a message if the 'pages' parameter is missing, before it ↵ | Joey Hess | |
just expanded to nothing. |