You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jspwiki.apache.org by "Florian Holeczek (JIRA)" <ji...@apache.org> on 2009/03/07 17:58:56 UTC

[jira] Commented: (JSPWIKI-437) Simultaneous editing of the same page by mutliple users.

    [ https://issues.apache.org/jira/browse/JSPWIKI-437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12679892#action_12679892 ] 

Florian Holeczek commented on JSPWIKI-437:
------------------------------------------

Hi folks,

here are two links I stumbled upon some days ago:

http://synchroedit.com/
citing their homepage: SynchroEdit is a browser-based simultaneous multiuser editor, a form of same-time, different-place groupware. It allows multiple users to edit a single web-based document at the same time, and it continuously synchronizes all changes so that users always have the same version.
It's LGPL/MPL licensed, don't know if we could use some of their code via MPL, but at least have a look at how their solution works.

http://wikiwyg.net/
A Javascript library with services towards this topic. According to http://www.socialtext.net/open/index.cgi?wikiwyg it has already been integrated successfully with TWiki, MediaWiki and some more.

Best regards
 Florian

> Simultaneous editing of the same page by mutliple users.
> --------------------------------------------------------
>
>                 Key: JSPWIKI-437
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-437
>             Project: JSPWiki
>          Issue Type: Improvement
>          Components: Editors
>    Affects Versions: 2.8
>            Reporter: Dirk Frederickx
>            Priority: Minor
>             Fix For: 3.1
>
>
> Allow multiple user to edit different sections of the same page, simulatenously.
> As a bonus, this editor could be made inline: 
> * click the [Edit] link next to a section header
> * the section is replaced by an inline editor (plain, or other)
> * when done, the editor is replaced by the rendered section.
> Need to support enhanced locking based on sections of a page.
> This feature is AJAX based:
> * AJAX call to LOCK a page section and open inline the editor
> {noformat}
> POST
> {"id":nnn,"method":"edit.lock","params":[section-id]}
> RETURN
> section-markup
> {noformat}
> * AJAX call to SAVE and keep the page Lock  (auto save -- see JSPWIKI-436]
> {noformat}
> POST
> {"id":nnn,"method":"edit.autosave","params":[section-id--or-lock-key,section-markup]}
> {noformat}
> * AJAX call to SAVE and unlock the section.
>   This should return a rendered page section.
> {noformat}
> POST
> {"id":nnn,"method":"edit.save","params":[section-id--or-lock-key,section-markup]}
> {noformat}
> * AJAX call to cancel and unlock the section.
> {noformat}
> POST
> {"id":nnn,"method":"edit.cancel","params":[section-id--or-lock-key]}
> {noformat}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.