| Commit message (Collapse) | Author | Age |
| |
|
| |
|
| |
|
|
|
|
| |
(ie, otl inside a mdwn page, or syntax highlighted code inside a page).
|
|
|
|
| |
In this mode, rebuild mode should not be on
|
|
|
|
|
|
|
| |
The syslog value from the setup file is purposfully ignored when doing
ikiwiki -setup, so that it will output to stdout (while generating wrappers
that do use the syslog). But that caused -dumpsetup to not preserve
the syslog value from the setup file.
|
|
|
|
|
| |
Move shortcut processing back to checkconfig, and avoid it failing if the
srcdir is not defined.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This speeds up web commits by 1/4th of a second or so, since perl does
not have to start up for the post commit hook.
perl's locking is completly FuBar, since it's impossible to tell what perl
flock() really does, and thus difficult to write code in other languages
that interoperates with perl's locking. (Let alone interoperating with
existing fcntl locking from perl...)
In this particular case, I think I was able to find a way to avoid the
insanity, mostly. The C code does a true flock(2), and if perl is using an
incompatable lock method that does not use the same locking primative at
the kernel level, then the C code's test will fail, and it will go ahead
and run the perl code. Then the perl code's test will test the right thing.
On Debian, at least lately, perl's flock() does a true flock(2), so the
optimisation does work.
|
|
|
|
| |
Still need to investigate possible races, and test some more.
|
|
|
|
| |
plugins. (Particularly a win when using external plugins.)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Add an inject function, that can be used by plugins that want to replace
one of ikiwiki's functions with their own version. (This is a scary thing
that grubs through the symbol table, and replaces all exported occurances
of a function with the injected version.)
external: RPC functions can be injected to replace exported functions.
Removed the stupid displaytime hook, and use injection instead.
|
|
|
|
|
|
|
|
|
|
|
|
| |
toplevel tagpage, and not closer subpages.
The html links already went there, but internally the links were not
recorded as absolute, which could cause confusing backlinks etc.
For example, with tagbase=tags, if blog/tags/bar existed and blog/foo was
tagged bar, it would link to /tags/bar. But, the link would be recorded
simply as a link to tags/bar, and so later blog/tags/bar would appear to
have the backlink.
|
|
|
|
| |
feed links. So rss will be included along with atom, and pages with multiple feeds will get links added for all feeds.
|
|
|
|
|
|
|
| |
utf-8 characters are written out as such, and not as the encoded perl strings the C Data::Dumper produces.
Note that the text produced by the C version was interpreted fine
when ikiwiki loaded the setup file. But it was not user-friendly.
|
|
|
|
| |
entity-encoding the wikiname in the session cookie.
|
|
|
|
|
|
| |
The machine parseable date needs to include a timezone.
Also, simplified the interface for date display.
|
| |
|
|
|
|
| |
Need to handle the case where url is not set.
|
|
|
|
| |
relative, in a very nice way, if I say so myself.
|
|
|
|
|
|
|
| |
* Add an underlay for javascript, and add ikiwiki.js containing some utility
code.
* toggle: Stop embedding the full toggle code on each page using it, and
move it to toggle.js in the javascript underlay.
|
| |
|
|
|
|
| |
in the future.
|
| |
|
| |
|
|
|
|
| |
plugins. Closes: #502047
|
| |
|
| |
|
|
|
|
| |
for. This supports most of the ACL type things users have been wanting to be done. Closes: #443346 (It does not control who can read a page, but that's out of scope for ikiwiki.)
|
| |
|
|
|
|
|
| |
This avoids another one of those $_ scoping issues where a deep call to a
function that changes $_ clobbers the array that is being looped over.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
It makes sense to use bestlink to determine which page rootpage refers to,
but if no page matches, just use the raw value.
|
|\
| |
| |
| |
| |
| | |
Conflicts:
debian/changelog
|
| |
| |
| |
| | |
authentication. Closes: #500524
|
| | |
|
|/
|
|
|
|
|
|
|
|
| |
This is the easy part of supporting foo/index.mdwn sources for page foo.
Note that if foo.mdwn exists too, there will be a warning about multiple
sources for the same page, and which is used is indeterminate.
indexpages should also cause web based editing to create index source pages
by default; this and other fallout of the option not yet implemented.
|
|
|
|
| |
files rendered during page preview.
|
|
|
|
| |
page, and is preserved across rebuilds.
|
|
|
|
|
|
|
|
|
|
| |
Upgrades to the new index format should be transparent.
The version field is 3, because 1 was the old textual index, 2 was the
pre-versioned format.
This also includes some efficiency improvements to index loading, by
not copying a hash and using a reference.
|
|
|
|
| |
toplevel templates directory.
|
|
|
|
|
|
|
| |
* htmltidy: Avoid returning undef if tidy fails. Also avoid returning the
untidied content if tidy crashes. In either case, it seems best to tidy
the content to nothing.
* htmltidy: Avoid spewing tidy errors to stderr.
|
| |
|