You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jspwiki.apache.org by "Jürgen Weber (JIRA)" <ji...@apache.org> on 2008/03/13 16:32:24 UTC

[jira] Created: (JSPWIKI-209) section edit

section edit
------------

                 Key: JSPWIKI-209
                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
             Project: JSPWiki
          Issue Type: New Feature
          Components: Core & storage, Default template, Editors
    Affects Versions: 2.6.1
            Reporter: Jürgen Weber


JSPWiki should support section editing like Mediawiki.

"Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
From:
http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


Re: [jira] Commented: (JSPWIKI-209) section edit

Posted by Dirk Frederickx <di...@gmail.com>.
Cool idea !

That would problably lead to a kind of INLINE editor.   When clicking
the [EDIT] link, the section would be replaced inline by the edit
textarea.

>> This would require a new ajax call to the wiki-engine with an EDIT
request + section-#.
>> The wiki-engine would only return the wikimarkup of that section,
and freeze it for editing.

 Wiki.jsonrpc('edit.editSection', [page-name, section-number],
function(result){
      // insert inline wiki-editor with resizable textarea, and other stuff
      // wait for the save/cancel button  (still need a preview ?)
  });


When done, the section would be saved and the translate markup would
replace the edited section. But ...  the changed markup could insert
new sections or remove previous sections. So, we'd probably would need
to replace the whole page with the new content.


This approach would allow for multi-user editing of the page by multiple users
>> When a section is already in-use for editing by someone else, the
EDIT request would be failed or give a warning.



dirk

On Thu, Apr 10, 2008 at 5:32 PM, Jürgen Weber (JIRA) <ji...@apache.org> wrote:
>
>     [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12587675#action_12587675 ]
>
>  Jürgen Weber commented on JSPWIKI-209:
>  --------------------------------------
>
>  I tried out section editing in v2.7.0-svn-9. Works great. Congrats.
>
>  Thought it would be nice if you could see the not edited sections in rendered form above and below the edit field, or even better if you could see the rendered page and the edit field were put below the corresponding section in the rendered page.
>
>  Maybe it would be simpler, if the edit field came up in a popup that would float above the rendered page, so you could compare with the original.
>
>
>
>  > section edit
>  > ------------
>  >
>  >                 Key: JSPWIKI-209
>  >                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>  >             Project: JSPWiki
>  >          Issue Type: New Feature
>  >          Components: Core & storage, Default template, Editors
>  >    Affects Versions: 2.6.1
>  >            Reporter: Jürgen Weber
>  >            Assignee: Dirk Frederickx
>  >
>  > JSPWiki should support section editing like Mediawiki.
>  > "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
>  > From:
>  > http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage
>
>  --
>  This message is automatically generated by JIRA.
>  -
>  You can reply to this email to add a comment to the issue online.
>
>

Re: [jira] Commented: (JSPWIKI-209) section edit

Posted by Dirk Frederickx <di...@gmail.com>.
FCK support should be back OK in 2.7.0-svn-25

dirk

On Sun, May 18, 2008 at 11:18 AM, Florian Holeczek (JIRA)
<ji...@apache.org> wrote:
>
>    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12597793#action_12597793 ]
>
> Florian Holeczek commented on JSPWIKI-209:
> ------------------------------------------
>
> {quote}
> Indeed, FCKeditor 2.4.3 is broken in FF since 2.70-svn4. I'll check that out.
> {quote}
> @Dirk: Any news on this? Should this maybe be tracked in a separate issue?
>
>> section edit
>> ------------
>>
>>                 Key: JSPWIKI-209
>>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>>             Project: JSPWiki
>>          Issue Type: New Feature
>>          Components: Core & storage, Default template, Editors
>>    Affects Versions: 2.6.1
>>            Reporter: Jürgen Weber
>>            Assignee: Dirk Frederickx
>>             Fix For: 2.8
>>
>>
>> JSPWiki should support section editing like Mediawiki.
>> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
>> From:
>> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage
>
> --
> This message is automatically generated by JIRA.
> -
> You can reply to this email to add a comment to the issue online.
>
>

Re: [jira] Commented: (JSPWIKI-209) section edit

Posted by Florian Holeczek <fl...@holeczek.de>.
JSPWIKI-107 is related to this topic, too.

Overall, I think section editing is a feature which has to be planned
thoroughly, because it might overstrain the user when it comes to
version conflicts.

 Florian

Ursprüngliche Nachricht vom 10.04.2008 um 22:11:
>> That would problably lead to a kind of INLINE editor.   When clicking
>> the [EDIT] link, the section would be replaced inline by the edit
>> textarea.

> Yes, exactly what I was thinking.

> It would *also* allow multiple people editing the same page - locks  
> would then work in an individual section/paragraph level.

> A JSON interface would also allow "autosaving" of documents.

> It'll need a bit of thinking on the backend though - what kind of  
> functionality would we need?

> /Janne

Re: [jira] Commented: (JSPWIKI-209) section edit

Posted by Janne Jalkanen <Ja...@ecyrd.com>.
> That would problably lead to a kind of INLINE editor.   When clicking
> the [EDIT] link, the section would be replaced inline by the edit
> textarea.

Yes, exactly what I was thinking.

It would *also* allow multiple people editing the same page - locks  
would then work in an individual section/paragraph level.

A JSON interface would also allow "autosaving" of documents.

It'll need a bit of thinking on the backend though - what kind of  
functionality would we need?

/Janne

Re: [jira] Commented: (JSPWIKI-209) section edit

Posted by Dirk Frederickx <di...@gmail.com>.
Cool idea !

That would problably lead to a kind of INLINE editor.   When clicking
the [EDIT] link, the section would be replaced inline by the edit
textarea.

>> This would require a new ajax call to the wiki-engine with an EDIT
request + section-#.
>> The wiki-engine would only return the wikimarkup of that section,
and freeze it for editing.

  Wiki.jsonrpc('edit.editSection', [page-name, section-number],
function(result){
       // insert inline wiki-editor with resizable textarea, and other stuff
       // wait for the save/cancel button  (still need a preview ?)
   });


When done, the section would be saved and the translate markup would
replace the edited section. But ...  the changed markup could insert
new sections or remove previous sections. So, we'd probably would need
to replace the whole page with the new content.


This approach would allow for multi-user editing of the page by multiple users
>> When a section is already in-use for editing by someone else, the
EDIT request would be failed or give a warning.





dirk

On Thu, Apr 10, 2008 at 5:32 PM, Jürgen Weber (JIRA) <ji...@apache.org> wrote:
>
>     [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12587675#action_12587675 ]
>
>  Jürgen Weber commented on JSPWIKI-209:
>  --------------------------------------
>
>  I tried out section editing in v2.7.0-svn-9. Works great. Congrats.
>
>  Thought it would be nice if you could see the not edited sections in rendered form above and below the edit field, or even better if you could see the rendered page and the edit field were put below the corresponding section in the rendered page.
>
>  Maybe it would be simpler, if the edit field came up in a popup that would float above the rendered page, so you could compare with the original.
>
>
>
>  > section edit
>  > ------------
>  >
>  >                 Key: JSPWIKI-209
>  >                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>  >             Project: JSPWiki
>  >          Issue Type: New Feature
>  >          Components: Core & storage, Default template, Editors
>  >    Affects Versions: 2.6.1
>  >            Reporter: Jürgen Weber
>  >            Assignee: Dirk Frederickx
>  >
>  > JSPWiki should support section editing like Mediawiki.
>  > "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
>  > From:
>  > http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage
>
>  --
>  This message is automatically generated by JIRA.
>  -
>  You can reply to this email to add a comment to the issue online.
>
>

[jira] Commented: (JSPWIKI-209) section edit

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586010#action_12586010 ] 

Dirk Frederickx commented on JSPWIKI-209:
-----------------------------------------

@Janne,

Good point on the hard-coded Edit.jsp link.  But that issue is not too hard to fix.

I will add an extra meta element with the Edit link to the common-header.jsp (just like the other js parameters), and remove the hardcoded reference to Edit.jsp.
{{{
<meta name="wikiEditUrl" content='<wiki:EditLink format="url" />' />
}}}


dirk

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Janne Jalkanen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12585999#action_12585999 ] 

Janne Jalkanen commented on JSPWIKI-209:
----------------------------------------

URLs are of the form

http://127.0.0.1:8080/JSPWiki/wiki/Edit.jsp?page=N%C3%A4inP%C3%A4%C3%A4setAlkuun&section=0

Edit.jsp is hard-coded, and not guaranteed to work with anything else except DefaultURLProvider.  You should use the <wiki:Link> tag in order to get the correct URL.

Yes, server-side could be changed into something which allowed editing multiple sections during the same session.  I think we should gather some requirements first, then see how we can implement this properly.

The chief problem is that now section editing needs to be added to each editor separately.  We could move quite a lot of the code to the server-side to make it common, and e.g. use AJAX to allow all editors to take advantage of it easily.

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12585987#action_12585987 ] 

Dirk Frederickx commented on JSPWIKI-209:
-----------------------------------------


Section Edit, as committed to 2.7.0-svn-4 is indeed based on client-side javascript. 
The 'edit section' buttons and links will only be visible when javascript is turned on on your browser.

This has the advantage that you can still edit the whole page or switch between sections during the same edit session.

Server-side section handling would not allow that, as each edit session would only offer one section to the browser.
Actually, the current implementation is transparent to the server; it is onyly a usability improvement.


= = = =
Janne,
Can you give more info on why this impl. doesn't work with the ShortViewURLProvider.  Possibly that just a bug in the implementation.



dirk

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Reopened: (JSPWIKI-209) section edit

Posted by "Janne Jalkanen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Janne Jalkanen reopened JSPWIKI-209:
------------------------------------


Unfortunately the functionality is inherently broken.  It does not e.g. work with the ShortViewURLProvider, and relies on Javascript to create section editing functionality.

So I think we should probably create a server-side solution instead of relying on Javascript.  I have some ideas on how this could be developed further, to e.g. allow proper multi-editing of the pages.

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Florian Holeczek (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12597793#action_12597793 ] 

Florian Holeczek commented on JSPWIKI-209:
------------------------------------------

{quote}
Indeed, FCKeditor 2.4.3 is broken in FF since 2.70-svn4. I'll check that out.
{quote}
@Dirk: Any news on this? Should this maybe be tracked in a separate issue?

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>             Fix For: 2.8
>
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "David Au (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12591156#action_12591156 ] 

David Au commented on JSPWIKI-209:
----------------------------------

Hmm, I believe the addition of this feature may have broken FCKeditor integration. After switching around to several of the 2.7.0-svn-x revisions, I discovered that the Javascript changes made in 2.7.0-svn-4 is somehow preventing FCKeditor from initializing. However, I'm not sure what is going on as I haven't been able to wrap my head around all this Javascript.

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>             Fix For: 2.8
>
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Resolved: (JSPWIKI-209) section edit

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dirk Frederickx resolved JSPWIKI-209.
-------------------------------------

    Resolution: Fixed

Resolved in 2.7.0-svn-41
Also FCK support should be ok now.

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>             Fix For: 2.8
>
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Florian Holeczek (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586000#action_12586000 ] 

Florian Holeczek commented on JSPWIKI-209:
------------------------------------------

Maybe position the edit section links right-aligned?

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12591681#action_12591681 ] 

Dirk Frederickx commented on JSPWIKI-209:
-----------------------------------------

Indeed, FCKeditor 2.4.3 is broken in FF since 2.70-svn4. I'll check that out.
dirk

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>             Fix For: 2.8
>
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Jürgen Weber (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12587675#action_12587675 ] 

Jürgen Weber commented on JSPWIKI-209:
--------------------------------------

I tried out section editing in v2.7.0-svn-9. Works great. Congrats.

Thought it would be nice if you could see the not edited sections in rendered form above and below the edit field, or even better if you could see the rendered page and the edit field were put below the corresponding section in the rendered page.

Maybe it would be simpler, if the edit field came up in a popup that would float above the rendered page, so you could compare with the original.

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Resolved: (JSPWIKI-209) section edit

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dirk Frederickx resolved JSPWIKI-209.
-------------------------------------

    Resolution: Fixed

Fixed in 2.7.0-svn-4

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Florian Holeczek (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12587677#action_12587677 ] 

Florian Holeczek commented on JSPWIKI-209:
------------------------------------------

@Jürgen: You may simply want to open the edit page in a new window or tab!

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Harry Metske (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12578392#action_12578392 ] 

Harry Metske commented on JSPWIKI-209:
--------------------------------------

I'd like to see this coming back again too, we liked this in the old BrushedTemplate.

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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


[jira] Commented: (JSPWIKI-209) section edit

Posted by "Janne Jalkanen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-209?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586013#action_12586013 ] 

Janne Jalkanen commented on JSPWIKI-209:
----------------------------------------

Well, adding parameters is still a problem - you cannot guarantee that the editlink is taking parameters in a particular way.  So you can't really concatenate, but you actually have to parse the link to know how you add parameters.  The EditLink takes care of everything in a forward-compatible manner, but constructing the URLs in Javascript is, well, worrying.  Especially since we don't have an unit test suite for Javascript.

> section edit
> ------------
>
>                 Key: JSPWIKI-209
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-209
>             Project: JSPWiki
>          Issue Type: New Feature
>          Components: Core & storage, Default template, Editors
>    Affects Versions: 2.6.1
>            Reporter: Jürgen Weber
>            Assignee: Dirk Frederickx
>
> JSPWiki should support section editing like Mediawiki.
> "Let's make it possible to edit one single section of a page instead of the hole page. This should be an alternative way of editing pages in addition to the current one. "
> From:
> http://www.jspwiki.org/wiki/IdeaEditOnlyOneSectionOfAPage

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