Emacs modespmwiki-modeAn Emacs-mode for editing wiki pages Note: These pages are under construction! Edit linksPmWiki/PmWiki
|
ReleaseTesting2007-03-24<< | Pages | >> Notes from testing CVS version of pmwiki-mode from 2007-03-24. (:toc:) Notes on testing procedureVarious steps of the testingOpening and editing pmwiki.org/wiki/Main/WikiSandboxTest that it is possible to open, edit, save and reload changes to http://pmwiki.org/wiki/Main/WikiSandbox Test code, partial: (pmwiki-open "http://pmwiki.org/wiki/Main/WikiSandbox") (end-of-buffer) ;; Hmm... need code to insert some text here (pmwiki-save) (pmwiki-reload) ; Visually verify that changed was saved Status: ok
Test saving with and without having to give a comment.The default when saving a page is that you give a comment. This happens when
you execute the command Test procedure:
(set-variable 'pmwiki-no-summary nil)
You should be asked for a comment.
You should not be asked for a comment
Status: ok
Test reversing summary setting for giving a comment while savingTest procedure:
(set-variable 'pmwiki-no-summary t)
You should not be asked for a comment
You should be asked for a comment.
Status: ok
General commentsThings to testEdit conflict 1Test procedure:
(pmwiki-open "http://pmwiki.org/wiki/EmacsModes/TestEditConflict")
error in process sentinel: progn: Page EmacsModes/TestEditConflict
couldn't be saved, server said: nilEditing conflict. Resolve by calling
<M-x pmwiki-merge-current>
error in process sentinel: Page EmacsModes/TestEditConflict couldn't be
saved, server said: nilEditing conflict. Resolve by calling <M-x
pmwiki-merge-current>
Status: fail
Specific issuesIssue 1 - undesired splitting into menu sublevels based on wiki wordsWhen using e.g. the menu PmWiki->OpenedPages there is a splitting of wiki words that I think is probably undesirable, i.e. I haven't seen any advantage to it yet. For instance, after having opened Main.WikiSandbox, the menu for opened pages let's me navigate to it through this sequence: www.pmwiki.org/ -> Main -> Wiki -> Sandbox rather than what I would have expected, i.e. www.pmwiki.org/ -> Main -> WikiSandbox or www.pmwiki.org/ -> Main -> Wiki Sandbox Issue 2 - Deleting a page does not delete the bufferTest procedure:
The page is deleted from the wiki, but the buffer is still open in
Emacs (making you think the page was never deleted)
Status: Reported to LukaszS
Issue 3 - Unable to open wiki page from sourceforge shell serverI logged in to a shell server at sourceforge. Then installed pmwiki mode by checking out latest CVS. Finally I started Emacs there and executed (add-to-list 'load-path "~/.emacs.d/pmwiki-mode")
(require 'pmwiki-mode)
(pmwiki-open "Main/WikiSandbox")
This results in the error message: setq: connection failed: connection refused, www.pmwiki.org,
HTTP GET http://ww(approve links)\w.pmwiki.org/wiki/Main/WikiSandbox?author=&action=ed$
What's going on? |