Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danp/confluence-el
confluence emacs integration
https://github.com/danp/confluence-el
Last synced: 26 days ago
JSON representation
confluence emacs integration
- Host: GitHub
- URL: https://github.com/danp/confluence-el
- Owner: danp
- Created: 2008-12-10T03:46:33.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2008-12-10T03:53:56.000Z (almost 16 years ago)
- Last Synced: 2023-04-12T16:10:57.655Z (over 1 year ago)
- Language: Emacs Lisp
- Homepage: http://code.google.com/p/confluence-el/
- Size: 165 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
OVERVIEW
======================================================================This is an Emacs lisp library for interacting with the Confluence Wiki
Software from Atlassian:http://www.atlassian.com/software/confluence/
It allows you to pull and edit the wiki-markup for a page and store it
back into your confluence instance.This mode can be downloaded from:
http://code.google.com/p/confluence-el/
INSTALLATION
======================================================================You must set confluence-url in your .emacs file before using the
functions in this moudule.Some examples:
(load (expand-file-name "~/software/emacs/confluence-el/xml-rpc.el"))
(load (expand-file-name "~/software/emacs/confluence-el/confluence.el"))
(setf confluence-url "http://intranet/confluence/rpc/xmlrpc")USING CONFLUENCE MODE
======================================================================To open a page, M-x confluence-get-page and enter the path to the
page, for example, to open a page in your home space: ~username/TasksIt is often convienient to bind this to a global key \C-xwf in your .emacs file:
(global-set-key "\C-xwf")Once you have opened a page, made changes, simply saving the page
("\C-x\C-f") will push the changes back to the wiki.To view the chagnes in your page versus what is in the wiki, type \C-xwd
Changes
--------------------------------------------------------------------------------
* 1.0 : Wed Nov 19 10:39:31 EST 2008
- confluence.el: created by James Ahlborn, eliminates the need for
JScheme for xmlrpc, now includes xml-rpc.el
* 0.2 : Wed Sep 19 09:18:18 EDT 2007
- confluence.scm: removed '.page' suffix on binary page file storage
this fixes bugs in the earlier tgz
* 0.1 : Wed Oct 18 12:38:45 EDT 2006
- confluence.scm: added page info functions
- confluence.el: added diff function and keybinding
- confluence.el: added revert-buffer call to open/save, disabling of
auto-fill-mode on open, and preservation of buffer modes after
storage (and subsequent reversion).