aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Collapse)AuthorAge
* updated jquery and made it its own underlayJoey Hess2011-06-15
|
* load attachment javascript into template the clean wayJoey Hess2011-06-15
|
* WIPJoey Hess2011-06-15
|
* fix removal of staged attachmentsJoey Hess2011-06-15
|
* WIPJoey Hess2011-06-15
|
* implement renaming of held attachmentsJoey Hess2011-06-14
| | | | | This is somewhat suboptimal, it does not update links to the renamed file, or show a result message.
* remove trailing slash from attachment_holding_dirJoey Hess2011-06-14
| | | | | If it's passed a filename, it should return the filename inside the holding dir. If passed a page, the directory sans slash. All code adds the slash.
* more generic interfaceJoey Hess2011-06-14
|
* bugfixesJoey Hess2011-06-14
|
* bugfix for attachments of non-index pagesJoey Hess2011-06-14
|
* fix removal of helf attachmentsJoey Hess2011-06-14
| | | | | | | | | | | | | | Left out confirmation of removal for held attachments because a) they're not in the wiki yet, so confirmation is a bit unnecessary b) it would be hard c) eases later integration of jquery file upload interface Also changed where attachments of index are held (to match where they're stored in the srcdir). Note that the attachment formbuilder hook was made to run last, so that the list of attachments is not generated before removal, in the fast path w/o confirm.
* fixed previewing of attachments from holding areaJoey Hess2011-06-14
|
* fixed saving attachments on page saveJoey Hess2011-06-14
| | | | | Also saved on preview, but previewing is a bit broken, does not see the newly saved attachment yet.
* attachment list includes new attachments in holding areaJoey Hess2011-06-14
| | | | | | | | | | | | | | | Note that it's possible for an attachment in the holding area to be older than an attachemnt in the wiki with the same name. I intentionally show the one in the holding area in this (unlikely) case, since saving the page will overwrite the wiki's file with the held attachment. It does not seem worth the bother of doing something more intelligent, since in this case two people have basically conflicted with one-another.. and both attachment contents will be stored in revision control in case it needs to be sorted out. I had to remove the hyperlink for attachments in the holding area, since they're not yet live on the web. This could be annoying/confusing. Added a moseover notice instead.
* untaint and linkpage the page name used in attachment holding directoryJoey Hess2011-06-14
|
* store filename in holding dir in linkpage formJoey Hess2011-06-14
| | | | | Avoids any unpleasantness with .. or other special chars in the attachment filename.
* store attachments in holding area; commit to wiki on page saveJoey Hess2011-06-14
| | | | | | | | | | | | | | | | | | | | | This makes uploading a lot of attachments somewhat faster, because the user does not need to wait for a long website refresh after each upload. Still probably somewhat slow, since ikiwiki has to run for each upload. More importantly, this opens the door for integration of things like the jquery file upload interface, which allow drag-n-drop and multiple file uploads to be queued and then ran. It uses rcs_commit_staged, which leaves out tla and mercurual which lack that, but since rename, remove, autoindex, etc also use that, I think it's fine for attachments to also depend on it. The attachment list is currently broken; it does not look in the holding area yet, and its links to the attached files won't work since they're not yet in the wiki. previewing is also currently broken. Work sponsored by TOVA.
* refactorJoey Hess2011-06-14
|
* better long filename detection methodJoey Hess2011-06-10
| | | | Let's just try to write and fall back to a short ugly filename on error.
* aggregate: Improve checking for too long aggregated filenames.Joey Hess2011-06-10
| | | | | | | | Two problems fixed: 1. Files are written with a .ikiwiki-new suffix, which has to be taken into account. 2. Need to count length of bytes, not of unicode characters.
* record email of new users in userinfo for userlistJoey Hess2011-06-09
|
* encode htmlJoey Hess2011-06-09
|
* userlist: New plugin, lets admins see a list of users and their info.Joey Hess2011-06-09
|
* search: Update search page when page.tmpl or searchquery.tmpl are locally ↵Joey Hess2011-06-03
| | | | modified.
* let's assume some web server will think OFF is a good idea..Joey Hess2011-06-03
|
* Support the Hiawatha web server which sets HTTPS=off rather than not setting ↵Joey Hess2011-06-03
| | | | it. (There does not seem to be a standard here.)
* Merge remote-tracking branch 'intrigeri/po'Joey Hess2011-06-03
|\
| * po: set Locale::Po4a::Xml's ontagerror option to warn only.intrigeri2011-05-26
| |
* | po: support language codes in the form of 'es_AR', and 'arn'.intrigeri2011-05-26
| | | | | | | | ... additionally to the previously supported two-letters codes.
* | allow for a html formatted description in websetupJoey Hess2011-05-13
|/ | | | w/o polluting setup file with the html
* Support YAML::XS by not passing decoded unicode to Load. Closes: #625713Joey Hess2011-05-12
|
* openid: also use Net::INET6Glue if availableJoey Hess2011-05-09
|
* aggregate, pinger: Use Net::INET6Glue if available to support making ipv6 ↵Joey Hess2011-05-09
| | | | | | | connections. Making outgoing ipv6 connections for openid auth is still broken; the glue module does not seem to solve that, so I did not make openid use it.
* HTML::Entities::encode_numeric is not exportedJoey Hess2011-04-30
|
* tag: Avoid autocreating multiple tag pages that vary only in capitalization. ↵Joey Hess2011-04-30
| | | | | | | | | | The first capitalization seen of a tag will be used for the tag page. Arguably, the real bug is in the interface to add_autofile, but since that does take a filename, not a page name, it cannot really do case handling on its own. The only other users of add_autofile in ikiwiki proper is autoindex, and it always uses one case. Other third party plugins might also need to add similar workarounds though.
* meta: Add FOAF support. Closes: #623156 (Jonas Smedegaard)Joey Hess2011-04-21
|
* fix use of debug() without sprintf()Jon Dowland2011-04-20
| | | | | Previous commit substituted a printf call (two arguments) for debug (accepts only one). Interleave an sprintf call to resolve.
* use debug() for wrapper-generation print outsJon Dowland2011-04-20
| | | | | | Use the debug() subroutine for printing out when wrappers are generated. This has the effect of hiding the messages unless verbose mode is enabled.
* Fix syntax of recently added JavaScript syntax in meta.pm (<script /> ↵Jonas Smedegaard2011-04-17
| | | | apparently does not work).
* meta: Fix bug in loading of HTML::Entities that can break inline archive=yes ↵Joey Hess2011-04-12
| | | | (mostly masked by other plugins that load the module).
* Merge remote-tracking branch 'levitte/master'Joey Hess2011-03-30
|\
| * * IkiWiki/Plugin/monotone.pm: monotone v0.48 has a small error thatRichard Levitte2011-03-30
| | | | | | | | affects rcs_getctime. A small adjustment takes care of that.
| * * IkiWiki/Plugin/monotone.pm: implement rcs_getmtimeRichard Levitte2011-03-30
| |
* | look up avatar at comment post timeJoey Hess2011-03-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a tension between looking up the avatar at post time and build time. I have not yet decided which is better. Lookup at build time has the benefit that if a user changes their email address, or sets up their own federated libravatar server, on rebuild their new avatar will show up. It also allows getting a https version of the avatar easily if the site was using http but was changed to use https. And it can look up avatars for posts that have already been made. Which is a nice thing, especially as we roll this out, eh? But it has a drawback, that it depends on the sessiondb contents for emails and so rebuilding a site w/o that will lose info. And, it means dns lookups every time a comment is rendered. A page with a lot of comments on it would render them all whenever another is posted or the page is changed, and that could significantly slow things down. (This could be amelorated by caching the lookups.) Since I'm undecided, I have moved it into a function that could be called either way. Currently looking up only at post time.
* | check site url for httpsJoey Hess2011-03-30
| | | | | | | | HTTPS won't be set when rebuilding a site at the command line
* | robustness fixJoey Hess2011-03-30
| | | | | | | | | | | | | | | | Don't fail if libravatar fails for some reason. Reasons I can think of: * too old version to do openid lookups (fall back to email lookup) * network problem perhaps
* | indentationJoey Hess2011-03-30
| |
* | comments: add OpenID-based avatars (libravatar.org)Francois Marier2011-03-30
| | | | | | | | This requires version 1.04 or later of Libravatar::URL.
* | comments: serve avatars over https in https wikisFrancois Marier2011-03-30
| |
* | comments: add avatar picture of comment authorFrancois Marier2011-03-30
|/ | | | | Use Libravatar::URL to pull the avatar picture for the comment author if we have an email address for him/her.