Emacs modespmwiki-modeAn Emacs-mode for editing wiki pages Note: These pages are under construction! Edit linksPmWiki/PmWiki
|
Development<< Longlines | Pages | ChangeLog >> Testing and development of pmwiki-modeThis page is dedicated to development and testing of the PmWiki-mode?. You are welcome to contribute of course. Check out the new version of PmWiki-mode. The download-links below point to development-archives, that include some additional files. At the time of writing this, the archive contains the following additional files:
Links
DownloadThe releases below are the development versions of the archives, i.e. with some extra files. Also see PmWikiModeChanges. New featuresChristian: Since I primarily designed this mode for working with the Lyx Wiki, I don't really plan to implement more features. However, if I receive nice and concise bug reports, I might try to fix them :-) See PmWikiModeNewFeatures. LukStafi: I'm working currently on my "branch" of pmwiki-mode. Current features:
Pages about new mode:
Limitations, known problems and bugsAdd bugs below... and send a mail to the maintainer. Also see PmWikiModeChanges.
Adding Basic Authentication to pmwiki-modeSvogel You have to patch http-post.el and pmwiki.el with the patches below (used with pmwiki 1.4 pre). chr: I think I've integrated the patch that could be found below into 1.4-pre1. One drawback is that You can now open pages which are password protected with ( http://username:password@www.xyz.com/Main/HomePage
Where username is not used in PmWiki. Bug ReportsSaving pages does not work in 1.4-pre2 (patch included)Hi Christian! (list (cons "pagename" pagename)
(cons "action" "post")
(cons "diffclass" diffclass)
(cons "author" pmwiki-author)
(cons "text" (buffer-string)))
to (list (cons "n" pagename) (cons "action" "edit") (cons "diffclass" diffclass) (cons "author" pmwiki-author) (cons "text" (buffer-string)) (cons "post" "post")) I think you have to patch it this way, since the PmWiki.ChangeLog says "Changed ?pagename= to ?n= for urls" for Version 2.0.beta8 (13-Dec-2004). And, according to PmWiki.AvailableActions, there is no action called post. |