aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
Commit message (Collapse)AuthorAge
...
* inline: Avoid using %links to test for page existenceJoey Hess2009-11-30
| | | | | %links is populated even for just-deleted pages, so %pagesources should be used for such tests instead.
* calendar: Add title attributes for all links in the calendars.Joey Hess2009-11-26
|
* fix hook namesJoey Hess2009-11-25
|
* date: New plugin that allows inserting date directives that expand to ↵Joey Hess2009-11-25
| | | | pretty-printed dates, using the same formatting as used for page modification date display, etc.
* inline: Use caching of inlined pages to speed up builds of inlines that ↵Joey Hess2009-11-17
| | | | | | | | | | | | | include feeds. Speedup of about 25% for small inlines; could be much larger for inlines of many, or complex pages. Not bloating memory with excessive memoization data was the key to this. The method chosen does not squeeze out every erg of speed possible when inlines are nested, but that's rare. It uses less memory than other optimisation hacks (I'm looking at you, f937c1fb8074a512d8bb788fa275f5e90595cd47 !) already used in inline.pm.
* meta: Allow use of DESCRIPTION in templates to get at the meta description ↵Joey Hess2009-11-16
| | | | value. (Thanks, NicolasLimare)
* meta: Generate meta description tags even when the html scrubber is enabled.Joey Hess2009-11-16
| | | | | | | Unlike generic meta foo tags, meta description is known to be safe, so can be special cased to be allowed despite the html scrubber. This makes meta description much more useful, since it is otherwise limited to being used by other plugins like map.
* avoid fallthrough to default meta header addition for titleJoey Hess2009-11-16
| | | | | With the htmlscrubber disabled, it was adding a <meta name=title> tag for the title, which is pointless.
* inline: Fix display of all pages when archive=yes or show=0 are used.Joey Hess2009-11-13
|
* inline: Allow direct inclusion of non-page files in raw mode.Joey Hess2009-11-13
|
* inline: Do not generated feeds for nested inlines.Joey Hess2009-11-13
| | | | | | | | | | | | My experience is that when inlines are nested, the old behavior of generating feeds for the nested inlines was never really desired. Since the feeds were numbered sequentially, the numbers could easily change, and it did not make sense to subscribe to or use those feeds. And generating those nested feeds often meant a lot of unnecessary calculation, and data being written. So, I dropped them. Looking back, nested feeds originally were a free side effect of properly handing multiple feeds on one page. Of course, that is still supported.
* typoJoey Hess2009-11-10
|
* httpauth: Add cgiauthurl setting that can be used to do http basic auth only ↵Joey Hess2009-11-10
| | | | when ikiwiki needs authentication, rather than for any access to the cgi/wiki.
* localstyle: New plugin, allows overrding the toplevel local.css with one ↵Joey Hess2009-11-09
| | | | | | | | | | | | | | | | | | | | that is closer to a page. I chose not to have it override style.css, because style.css is not really intended to be edited; the one from the underlay is intended to be used as a base that local.css overrides. I chose to use a plugin rather than changing the default behavior, both because I didn't want to have to worry about possibly breaking backwards compatability (though this seems unlikely), and because it seemed cleaner to not include style template parameters in the main page template code. I suppose someone might want a way to not override the toplevel local.css, but instead include it as well as foo/local.css. Probably the best way to do that would be to have foo/local.css @import ../local.css (modulo browser compatability issues). Alternatively, edit page.tmpl to always include the toplevel local.css, or swap out this plugin for another one.
* underlay: Avoid crashing if lists of underlays (or template directories) are ↵Joey Hess2009-11-07
| | | | not configured.
* underlay: Fix example values put in setup file to be array references.Joey Hess2009-11-06
|
* google: Pass the whole wiki url to google, not just the domain, so that ↵Joey Hess2009-10-29
| | | | search works correctly for wikis that are located in subdirectories of domains.
* moderatedcomments: New plugin to allow comment moderation w/o relying on ↵Joey Hess2009-10-26
| | | | blogspam.net.
* mdwn: Avoid trying to use multimarkdown if it is not installed.Joey Hess2009-10-26
|
* po: Fix breakage caused by changes to render code.Joey Hess2009-10-26
|
* inline: Fix raw mode. Closes: #552114Joey Hess2009-10-23
|
* meta: Gather permalink info on scan pass so it is available to inline when ↵Joey Hess2009-10-21
| | | | using a template that does not include page content.
* edittemplate: Work around bug #551499 in CGI::FormBuilder.Joey Hess2009-10-18
|
* edittemplate: Allow template page name to be specified using anything legal ↵Joey Hess2009-10-18
| | | | | | | | for a wikilink (including eg, leading slashes). Before, the htmllink would display the link to the template as if it were a wikilink, but what was stored was not, which could lead to confusing situations.
* fix logic errorJoey Hess2009-10-17
| | | | | This sometimes caused infinite recursion when rebuilding a wiki with po files.
* slight optimisationJoey Hess2009-10-15
|
* inline: Optimize generation of archives, etcJoey Hess2009-10-15
| | | | Don't generate inlined page content if the template does not use it.
* sparkline: show error if php does not runJoey Hess2009-10-14
|
* year calendar: Avoid highlighting the current month in a different yearJoey Hess2009-10-12
|
* year calendar: only link to months that have postsJoey Hess2009-10-12
| | | | | This does mean the year calendars depend on existence of all posts made in the year and have to be updated.
* remove whitespace from within arrow linksJoey Hess2009-10-12
|
* calendar: Add creation time limits to user's pagespecJoey Hess2009-10-12
| | | | | This avoids all calendars rebuilding when a new page is added that will only show in one of them.
* calendar: Fix CSS for year calendar to match the plugin documentation.Joey Hess2009-10-12
| | | | | The names in the documentation were completly different, but also seemed better chosen than the names in the code.
* skip mergesJoey Hess2009-10-12
| | | | | | git log --follow seems to sometimes show merges from before the file was ever created. So, skip them, a file shouldn't be first created during a merge anyway.
* can't use --reverse with git log --followJoey Hess2009-10-11
| | | | Meh, git.
* Merge branch 'master' into dependency-typesJoey Hess2009-10-11
|\ | | | | | | | | Conflicts: debian/changelog
| * git: --getctime will now follow renames back to the original creation of a file.Joey Hess2009-10-11
| | | | | | | | | | | | This will be a bit more expensive, but --getctime does not need to be fast. And getting the real creation time a very useful when untangling blog histories that involve renames.
* | calendar: avoid inline images in linksJoey Hess2009-10-11
| |
* | calendar: use left and right arrows for next/prev monthsJoey Hess2009-10-11
| | | | | | | | | | This is consistent with the year display, and I think it is less visually confusing than using the full month names.
* | fix next/prev month padding bugJoey Hess2009-10-11
| |
* | fix day linksJoey Hess2009-10-11
| | | | | | | | I broke this recently.
* | calendar: Fix bug in next/previous year/month links, which sometimes linked ↵Joey Hess2009-10-11
| | | | | | | | to an archive page from the wrong year.
* | calendar: Fix midnight rebuild trigger of calendars with explicit month/year.Joey Hess2009-10-11
| | | | | | | | | | | | | | It was just broken for calendars with an explicit month or year, not triggering at all. Now it will update those at appropriate times.
* | avoid temporary variablesJoey Hess2009-10-11
| | | | | | | | and fix a bug in pagespec variable name
* | add_depends: optimise influence calculationJoey Hess2009-10-09
| | | | | | | | | | | | | | | | I made match_* functions whose influences can vary depending on the page matched set a special "" influence to indicate this. Then add_depends can try just one page, and if static influences are found, stop there.
* | img: use presence dependency when linking to a pageJoey Hess2009-10-09
| |
* | brokenlinks: use pagespec_match_listJoey Hess2009-10-09
| |
* | pagespec_match_list: change limit to filterJoey Hess2009-10-09
| |
* | conditional: use pagespec_match_listJoey Hess2009-10-09
| |
* | indentationJoey Hess2009-10-09
| |