Re: need wiki help

2014-06-18 Thread Andrea Pescetti

On 18/06/2014 Marcus (OOo) wrote:

Am 05/01/2014 06:45 PM, schrieb Andrea Pescetti:

https://issues.apache.org/jira/browse/INFRA-7658

I've checked with a work colleague of mine and he agreed that this is
the macro to go. There seems to be no other way in Confluence that is
built-in. Too sad there is currently a problem with the license.


Probably the problem is not with the license itself, but with the 
verification mechanism, since the Apache servers are configured to avoid 
accessing external sites/services as much as possible. However, we can 
do without it for the time being and we all know that Infra has other 
priorities at the moment.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-06-18 Thread Marcus (OOo)

Am 05/01/2014 06:45 PM, schrieb Andrea Pescetti:

Marcus (OOo) wrote:

The "Alias" is a plugin that is not installed in the company's
Confluence instance where I work.


OK, so let's see what Infra says:

https://issues.apache.org/jira/browse/INFRA-7658


I've checked with a work colleague of mine and he agreed that this is 
the macro to go. There seems to be no other way in Confluence that is 
built-in. Too sad there is currently a problem with the license.


Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-28 Thread Jürgen Schmidt
On 27/05/14 23:37, Kay Schenk wrote:
> 
> 
> On 05/27/2014 01:30 PM, Marcus (OOo) wrote:
>> @Joe:
>> See my last my mail.
>>
>> Lesson learned:
>> I've just seen what was updated in my workspace. But there is no hint
>> that other commits will be taken into account, too. Until you open this
>> link:
>> https://cms.apache.org/ooo-site/publish?diff=1
>>
>> As here the truth is shown.
>>
>> So finally, believe in your admin or burn in hell. :-)
>>
>> Marcus
> 
> Well maybe not burn in hell, but at least gain some truth. Reviewing
> this "diff" can be is very important at times. :)

I think it is a bad design that even minor changes on one page trigger a
complete update of the whole site. It might scale for smaller project
with only a few pages and less changes. But it doesn't scale for large
projects as AOO where many people in different areas would like to work
on changes without conflicting with other changes.

The question is if this is really state of the art or if a free
alternative would make more sense and would reduce in the end the
maintenance work.

I am sure their were valid reason for the CMS in the past but I believe
today better tools are in place where more than 1 man stand behind. Well
it's just my personal opinion and I don't really propose a change ;-) I
just wondering and asking this question myself whenever I have to make a
simple change.

Juergen


> 
>>
>>
>>
>> Am 05/19/2014 11:56 PM, schrieb Joe Schaefer:
>>> I think there's some confusion about what is actually happening
>>> when you click on the Update link in the webgui.  All that does
>>> is run
>>>
>>> % svn up /path/to/underlying/svn/resource
>>>
>>> on the CMS server.  When you publish you are essentially doing
>>>
>>> % svn rm
>>> https://svn.apache.org/repos/infra/websites/production/ooo-site/content
>>> % svn cp
>>> https://svn.apache.org/repos/infra/websites/staging/ooo-site/trunk/content
>>> https://svn.apache.org/repos/infra/websites/production/ooo-site/content
>>>
>>>
>>> but in a single-step using svnmucc.
>>>
>>> That's all the webgui does- it's just a wrapper around the underlying
>>> svn commands.  What you are working with in the webgui is an svn
>>> checkout of the site.  "Update" just brings your current checkout up
>>> to date within the portion of the tree that you are browsing.
>>>
>>> HTH
>>>
>>>
>>> On Monday, May 19, 2014 3:44 PM, Marcus (OOo) 
>>> wrote:
>>>
>>>


 Am 05/19/2014 09:20 PM, schrieb Joe Schaefer:
> Sorry but technically the CMS publishes all committed
> changes to the staging site.  The only way to partition
> changes is to partition your commits.


 but which data will be published: the content of the SVN repository or
 the content of the personal CMS work space?

 I guess the work space as I need to update it with the SVN content.
 Otherwise there is nothing new to publish.

 Thanks

 Marcus




>> On Monday, May 19, 2014 3:17 PM, Marcus
>> (OOo)   wrote:
>>> Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:
>>> On 29/04/2014 Marcus (OOo) wrote:
 The main point is *where you are* in the CMS Browse View when
 you click
 on the "Update" link.
>>>
>>> I tried several times, but I'm not sure it works for me. Maybe
>>> it works
>>> if we see "update" as "update this directory".
>>>
 Example to update and publish only a file:
 1. In your browser open, e.g.,
 "www.openoffice.org/my-dir/my-subdir/index.html".
 2. Open the CMS via the bookmarklet.
 3. Click on the link "[Edit]" in the row of the
>> "index.html" file.
 4. Click on the link "[Update]".
 5. Do your changes in the file.
 6. Commit your changes.
 7. On the following page click on the link "[Publish]".
>>>
>>> In the last days I tried to do this for the main index.html
>>> page and for
>>> the download/devbuilds.html page. I commit to SVN directly (so
>>> I don't
>>> use the CMS for editing pages), but the rest works as you
>>> describe. So I
>>> browse to download/ in the CMS and when I update it downloads
>>> my changed
>>> devbuilds.html page and nothing else. But then, when I
>>> publish, if I
>>
>> Then you have update the *complete directory* but *not the single
>> file*.
>>
>> OK, I'll do it again:
>>
>> 1. Open w.oo.o/index.html
>> 2. Login via CMS bookmarklet
>> 3. Click on [Edit] in the row for "index.html"
>> 4. Click on [Update] on the top
>> 5. Only this file was updated
>> 6.
>>> click "View diff" I see all the changes in "download".
>>>
>>> So maybe committing through SVN means that I'm forced to
>>> update the
>>> directory, and thus if I change the main index.html file I
>>> must publish
>>> the whole

Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-27 Thread Kay Schenk


On 05/27/2014 01:30 PM, Marcus (OOo) wrote:
> @Joe:
> See my last my mail.
> 
> Lesson learned:
> I've just seen what was updated in my workspace. But there is no hint
> that other commits will be taken into account, too. Until you open this
> link:
> https://cms.apache.org/ooo-site/publish?diff=1
> 
> As here the truth is shown.
> 
> So finally, believe in your admin or burn in hell. :-)
> 
> Marcus

Well maybe not burn in hell, but at least gain some truth. Reviewing
this "diff" can be is very important at times. :)

> 
> 
> 
> Am 05/19/2014 11:56 PM, schrieb Joe Schaefer:
>> I think there's some confusion about what is actually happening
>> when you click on the Update link in the webgui.  All that does
>> is run
>>
>> % svn up /path/to/underlying/svn/resource
>>
>> on the CMS server.  When you publish you are essentially doing
>>
>> % svn rm
>> https://svn.apache.org/repos/infra/websites/production/ooo-site/content
>> % svn cp
>> https://svn.apache.org/repos/infra/websites/staging/ooo-site/trunk/content
>> https://svn.apache.org/repos/infra/websites/production/ooo-site/content
>>
>>
>> but in a single-step using svnmucc.
>>
>> That's all the webgui does- it's just a wrapper around the underlying
>> svn commands.  What you are working with in the webgui is an svn
>> checkout of the site.  "Update" just brings your current checkout up
>> to date within the portion of the tree that you are browsing.
>>
>> HTH
>>
>>
>> On Monday, May 19, 2014 3:44 PM, Marcus (OOo) 
>> wrote:
>>
>>
>>>
>>>
>>> Am 05/19/2014 09:20 PM, schrieb Joe Schaefer:
 Sorry but technically the CMS publishes all committed
 changes to the staging site.  The only way to partition
 changes is to partition your commits.
>>>
>>>
>>> but which data will be published: the content of the SVN repository or
>>> the content of the personal CMS work space?
>>>
>>> I guess the work space as I need to update it with the SVN content.
>>> Otherwise there is nothing new to publish.
>>>
>>> Thanks
>>>
>>> Marcus
>>>
>>>
>>>
>>>
> On Monday, May 19, 2014 3:17 PM, Marcus
> (OOo)   wrote:
>> Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:
>> On 29/04/2014 Marcus (OOo) wrote:
>>> The main point is *where you are* in the CMS Browse View when
>>> you click
>>> on the "Update" link.
>>
>> I tried several times, but I'm not sure it works for me. Maybe
>> it works
>> if we see "update" as "update this directory".
>>
>>> Example to update and publish only a file:
>>> 1. In your browser open, e.g.,
>>> "www.openoffice.org/my-dir/my-subdir/index.html".
>>> 2. Open the CMS via the bookmarklet.
>>> 3. Click on the link "[Edit]" in the row of the
> "index.html" file.
>>> 4. Click on the link "[Update]".
>>> 5. Do your changes in the file.
>>> 6. Commit your changes.
>>> 7. On the following page click on the link "[Publish]".
>>
>> In the last days I tried to do this for the main index.html
>> page and for
>> the download/devbuilds.html page. I commit to SVN directly (so
>> I don't
>> use the CMS for editing pages), but the rest works as you
>> describe. So I
>> browse to download/ in the CMS and when I update it downloads
>> my changed
>> devbuilds.html page and nothing else. But then, when I
>> publish, if I
>
> Then you have update the *complete directory* but *not the single
> file*.
>
> OK, I'll do it again:
>
> 1. Open w.oo.o/index.html
> 2. Login via CMS bookmarklet
> 3. Click on [Edit] in the row for "index.html"
> 4. Click on [Update] on the top
> 5. Only this file was updated
> 6.
>> click "View diff" I see all the changes in "download".
>>
>> So maybe committing through SVN means that I'm forced to
>> update the
>> directory, and thus if I change the main index.html file I
>> must publish
>> the whole site, and if I change devbuilds.html I must publish
>> the whole
>> subtree (download/) containing it? In that setup, indeed I
>> wasn't able
>> to find a command like "Update this file only".
>
> No, SVN is outside of this. I do it like you. It's like I wrote on
> the top:
>
> The main point is *where you are* in the CMS Browse View when you
> click
> on the "Update" link.
>
> That means:
> When you are in a directory, e.g., "download/" and click on
> "Update"
> then you get every new thing of this directory.
>
> But when a single file, e.g., "devbuild.html" is shown and you click
> on
> the "Update" link then only this file is updated and nothing else.
>
> Please can you try it and confirm?
>
> Thanks
>
>
> Marcus
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffi

Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-27 Thread Marcus (OOo)

@Joe:
See my last my mail.

Lesson learned:
I've just seen what was updated in my workspace. But there is no hint 
that other commits will be taken into account, too. Until you open this 
link:

https://cms.apache.org/ooo-site/publish?diff=1

As here the truth is shown.

So finally, believe in your admin or burn in hell. :-)

Marcus



Am 05/19/2014 11:56 PM, schrieb Joe Schaefer:

I think there's some confusion about what is actually happening
when you click on the Update link in the webgui.  All that does
is run

% svn up /path/to/underlying/svn/resource

on the CMS server.  When you publish you are essentially doing

% svn rm https://svn.apache.org/repos/infra/websites/production/ooo-site/content
% svn cp 
https://svn.apache.org/repos/infra/websites/staging/ooo-site/trunk/content 
https://svn.apache.org/repos/infra/websites/production/ooo-site/content


but in a single-step using svnmucc.

That's all the webgui does- it's just a wrapper around the underlying
svn commands.  What you are working with in the webgui is an svn
checkout of the site.  "Update" just brings your current checkout up
to date within the portion of the tree that you are browsing.

HTH


On Monday, May 19, 2014 3:44 PM, Marcus (OOo)  wrote:





Am 05/19/2014 09:20 PM, schrieb Joe Schaefer:

Sorry but technically the CMS publishes all committed
changes to the staging site.  The only way to partition
changes is to partition your commits.



but which data will be published: the content of the SVN repository or
the content of the personal CMS work space?

I guess the work space as I need to update it with the SVN content.
Otherwise there is nothing new to publish.

Thanks

Marcus





On Monday, May 19, 2014 3:17 PM, Marcus (OOo)   wrote:

Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:
On 29/04/2014 Marcus (OOo) wrote:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.


I tried several times, but I'm not sure it works for me. Maybe it works
if we see "update" as "update this directory".


Example to update and publish only a file:
1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the

"index.html" file.

4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".


In the last days I tried to do this for the main index.html page and for
the download/devbuilds.html page. I commit to SVN directly (so I don't
use the CMS for editing pages), but the rest works as you describe. So I
browse to download/ in the CMS and when I update it downloads my changed
devbuilds.html page and nothing else. But then, when I publish, if I


Then you have update the *complete directory* but *not the single file*.

OK, I'll do it again:

1. Open w.oo.o/index.html
2. Login via CMS bookmarklet
3. Click on [Edit] in the row for "index.html"
4. Click on [Update] on the top
5. Only this file was updated
6.

click "View diff" I see all the changes in "download".

So maybe committing through SVN means that I'm forced to update the
directory, and thus if I change the main index.html file I must publish
the whole site, and if I change devbuilds.html I must publish the whole
subtree (download/) containing it? In that setup, indeed I wasn't able
to find a command like "Update this file only".


No, SVN is outside of this. I do it like you. It's like I wrote on the top:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.

That means:
When you are in a directory, e.g., "download/" and click on
"Update"
then you get every new thing of this directory.

But when a single file, e.g., "devbuild.html" is shown and you click
on
the "Update" link then only this file is updated and nothing else.

Please can you try it and confirm?

Thanks


Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-27 Thread Marcus (OOo)

Am 05/27/2014 10:15 PM, schrieb Andrea Pescetti:

On 26/05/2014 Marcus (OOo) wrote:

Am 05/26/2014 10:34 PM, schrieb Andrea Pescetti:

I read his mail in this discussion as "when you publish, you always
publish the whole thing" ...

Sorry, I still can edit, update and publish a single file.
What's the problem to try again on your side?


OK, so I did this:
1) Committed a change to the Danish home page:
http://svn.apache.org/r1597866 directly with svn
2) http://www.openoffice.org/da/index.html (I manually added
"index.html" just in case)
3) Login via CMS bookmarklet
4) Click on [Edit] in the row for "index.html"
5) Click on [Update] on the top

Here the URL becomes
"https://cms.apache.org/ooo-site/wc/update/pescetti-XXYYZZ/trunk/content/da/index.html
and I get:

Update complete
Status

Updating
'usr/local/cms/wc/ooo-site/pescetti-XXYYZZ/trunk/content/da/index.html':
U usr/local/cms/wc/ooo-site/pescetti-XXYYZZ/trunk/content/da/index.html
Updated to revision 1597866.

And if I go to http://ooo-site.staging.apache.org/da/index.html I see my
change.

But then if I go to https://cms.apache.org/ooo-site/publish?diff=1 I see
many more differences than my change, including for example changes in
content/download/test/index_droplist.html

I didn't publish. But are you able now to do any other edits to the
website and get them published without publishing my changes to
http://www.openoffice.org/da/index.html ? This would show that selective
publication is possible.


I've seen your changes as I've done mine in the same minutes. Great for 
testing this.


Now I've updated only my edited files. However in the diff (with your 
mentioned link above) I can see also your edits on the Danish webpage. 
And after my publish the Danish webpage has your changes.


So, I've not uncovered a hidden feature. Too bad. ;-)

But OK, mystery solved.

Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-27 Thread Andrea Pescetti

On 26/05/2014 Marcus (OOo) wrote:

Am 05/26/2014 10:34 PM, schrieb Andrea Pescetti:

I read his mail in this discussion as "when you publish, you always
publish the whole thing"  ...

Sorry, I still can edit, update and publish a single file.
What's the problem to try again on your side?


OK, so I did this:
1) Committed a change to the Danish home page: 
http://svn.apache.org/r1597866 directly with svn
2) http://www.openoffice.org/da/index.html (I manually added 
"index.html" just in case)

3) Login via CMS bookmarklet
4) Click on [Edit] in the row for "index.html"
5) Click on [Update] on the top

Here the URL becomes 
"https://cms.apache.org/ooo-site/wc/update/pescetti-XXYYZZ/trunk/content/da/index.html 
and I get:


Update complete
Status

Updating 
'usr/local/cms/wc/ooo-site/pescetti-XXYYZZ/trunk/content/da/index.html':

Uusr/local/cms/wc/ooo-site/pescetti-XXYYZZ/trunk/content/da/index.html
Updated to revision 1597866.

And if I go to http://ooo-site.staging.apache.org/da/index.html I see my 
change.


But then if I go to https://cms.apache.org/ooo-site/publish?diff=1 I see 
many more differences than my change, including for example changes in 
content/download/test/index_droplist.html


I didn't publish. But are you able now to do any other edits to the 
website and get them published without publishing my changes to 
http://www.openoffice.org/da/index.html ? This would show that selective 
publication is possible.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-26 Thread Marcus (OOo)

Am 05/26/2014 10:34 PM, schrieb Andrea Pescetti:

Marcus (OOo) wrote:

But when a single file, e.g., "devbuild.html" is shown and you click on
the "Update" link then only this file is updated and nothing else.
Please can you try it and confirm?

had you already a chance to retry?


I believe Joe made it clear that this won't work either. To be precise,


then it must be a bug because it's working for me. ;-)


I read his mail in this discussion as "when you publish, you always
publish the whole thing" since we have one workspace per user (and this
would be OK as per your interpretation/instructions), but after
committing things go to one staging server (a single server shared among
everybody, so my changes and your changes get mixed there already) and
publishing will copy pages from that single staging server to the single
production server.


Sorry, I still can edit, update and publish a single file.

What's the problem to try again on your side?

Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-26 Thread Andrea Pescetti

Marcus (OOo) wrote:

But when a single file, e.g., "devbuild.html" is shown and you click on
the "Update" link then only this file is updated and nothing else.
Please can you try it and confirm?

had you already a chance to retry?


I believe Joe made it clear that this won't work either. To be precise, 
I read his mail in this discussion as "when you publish, you always 
publish the whole thing" since we have one workspace per user (and this 
would be OK as per your interpretation/instructions), but after 
committing things go to one staging server (a single server shared among 
everybody, so my changes and your changes get mixed there already) and 
publishing will copy pages from that single staging server to the single 
production server.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-26 Thread Marcus (OOo)

Am 05/19/2014 09:17 PM, schrieb Marcus (OOo):

Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:

On 29/04/2014 Marcus (OOo) wrote:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.


I tried several times, but I'm not sure it works for me. Maybe it works
if we see "update" as "update this directory".


Example to update and publish only a file:
1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the "index.html" file.
4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".


In the last days I tried to do this for the main index.html page and for
the download/devbuilds.html page. I commit to SVN directly (so I don't
use the CMS for editing pages), but the rest works as you describe. So I
browse to download/ in the CMS and when I update it downloads my changed
devbuilds.html page and nothing else. But then, when I publish, if I


Then you have update the *complete directory* but *not the single file*.

OK, I'll do it again:

1. Open w.oo.o/index.html
2. Login via CMS bookmarklet
3. Click on [Edit] in the row for "index.html"
4. Click on [Update] on the top
5. Only this file was updated
6.

click "View diff" I see all the changes in "download".

So maybe committing through SVN means that I'm forced to update the
directory, and thus if I change the main index.html file I must publish
the whole site, and if I change devbuilds.html I must publish the whole
subtree (download/) containing it? In that setup, indeed I wasn't able
to find a command like "Update this file only".


No, SVN is outside of this. I do it like you. It's like I wrote on the top:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.

That means:
When you are in a directory, e.g., "download/" and click on "Update"
then you get every new thing of this directory.

But when a single file, e.g., "devbuild.html" is shown and you click on
the "Update" link then only this file is updated and nothing else.

Please can you try it and confirm?


had you already a chance to retry?

Thanks

Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-20 Thread Oliver-Rainer Wittmann

Hi,

On 19.05.2014 23:56, Joe Schaefer wrote:

I think there's some confusion about what is actually happening
when you click on the Update link in the webgui.  All that does
is run

% svn up /path/to/underlying/svn/resource

on the CMS server.  When you publish you are essentially doing

% svn rm https://svn.apache.org/repos/infra/websites/production/ooo-site/content
% svn cp 
https://svn.apache.org/repos/infra/websites/staging/ooo-site/trunk/content 
https://svn.apache.org/repos/infra/websites/production/ooo-site/content



Thus, if I want to publish specific files I have to use the two above 
svn commands restricted on the the specific files.

Right?


Best regards, Oliver.



but in a single-step using svnmucc.

That's all the webgui does- it's just a wrapper around the underlying
svn commands.  What you are working with in the webgui is an svn
checkout of the site.  "Update" just brings your current checkout up
to date within the portion of the tree that you are browsing.

HTH


On Monday, May 19, 2014 3:44 PM, Marcus (OOo)  wrote:





Am 05/19/2014 09:20 PM, schrieb Joe Schaefer:

Sorry but technically the CMS publishes all committed
changes to the staging site.  The only way to partition
changes is to partition your commits.



but which data will be published: the content of the SVN repository or
the content of the personal CMS work space?

I guess the work space as I need to update it with the SVN content.
Otherwise there is nothing new to publish.

Thanks

Marcus





On Monday, May 19, 2014 3:17 PM, Marcus (OOo)  wrote:

Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:
On 29/04/2014 Marcus (OOo) wrote:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.


I tried several times, but I'm not sure it works for me. Maybe it works
if we see "update" as "update this directory".


Example to update and publish only a file:
1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the

"index.html" file.

4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".


In the last days I tried to do this for the main index.html page and for
the download/devbuilds.html page. I commit to SVN directly (so I don't
use the CMS for editing pages), but the rest works as you describe. So I
browse to download/ in the CMS and when I update it downloads my changed
devbuilds.html page and nothing else. But then, when I publish, if I


Then you have update the *complete directory* but *not the single file*.

OK, I'll do it again:

1. Open w.oo.o/index.html
2. Login via CMS bookmarklet
3. Click on [Edit] in the row for "index.html"
4. Click on [Update] on the top
5. Only this file was updated
6.

click "View diff" I see all the changes in "download".

So maybe committing through SVN means that I'm forced to update the
directory, and thus if I change the main index.html file I must publish
the whole site, and if I change devbuilds.html I must publish the whole
subtree (download/) containing it? In that setup, indeed I wasn't able
to find a command like "Update this file only".


No, SVN is outside of this. I do it like you. It's like I wrote on the top:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.

That means:
When you are in a directory, e.g., "download/" and click on
"Update"
then you get every new thing of this directory.

But when a single file, e.g., "devbuild.html" is shown and you click
on
the "Update" link then only this file is updated and nothing else.

Please can you try it and confirm?

Thanks


Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org






-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-19 Thread Joe Schaefer
I think there's some confusion about what is actually happening
when you click on the Update link in the webgui.  All that does
is run 

% svn up /path/to/underlying/svn/resource

on the CMS server.  When you publish you are essentially doing

% svn rm https://svn.apache.org/repos/infra/websites/production/ooo-site/content
% svn cp 
https://svn.apache.org/repos/infra/websites/staging/ooo-site/trunk/content 
https://svn.apache.org/repos/infra/websites/production/ooo-site/content


but in a single-step using svnmucc.

That's all the webgui does- it's just a wrapper around the underlying
svn commands.  What you are working with in the webgui is an svn
checkout of the site.  "Update" just brings your current checkout up
to date within the portion of the tree that you are browsing.

HTH


On Monday, May 19, 2014 3:44 PM, Marcus (OOo)  wrote:
 

>
>
>Am 05/19/2014 09:20 PM, schrieb Joe Schaefer:
>> Sorry but technically the CMS publishes all committed
>> changes to the staging site.  The only way to partition
>> changes is to partition your commits.
>
>
>but which data will be published: the content of the SVN repository or 
>the content of the personal CMS work space?
>
>I guess the work space as I need to update it with the SVN content. 
>Otherwise there is nothing new to publish.
>
>Thanks
>
>Marcus
>
>
>
>
>>> On Monday, May 19, 2014 3:17 PM, Marcus (OOo)  wrote:
 Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:
   On 29/04/2014 Marcus (OOo) wrote:
>   The main point is *where you are* in the CMS Browse View when you click
>   on the "Update" link.

   I tried several times, but I'm not sure it works for me. Maybe it works
   if we see "update" as "update this directory".

>   Example to update and publish only a file:
>   1. In your browser open, e.g.,
>   "www.openoffice.org/my-dir/my-subdir/index.html".
>   2. Open the CMS via the bookmarklet.
>   3. Click on the link "[Edit]" in the row of the
>>> "index.html" file.
>   4. Click on the link "[Update]".
>   5. Do your changes in the file.
>   6. Commit your changes.
>   7. On the following page click on the link "[Publish]".

   In the last days I tried to do this for the main index.html page and for
   the download/devbuilds.html page. I commit to SVN directly (so I don't
   use the CMS for editing pages), but the rest works as you describe. So I
   browse to download/ in the CMS and when I update it downloads my changed
   devbuilds.html page and nothing else. But then, when I publish, if I
>>>
>>> Then you have update the *complete directory* but *not the single file*.
>>>
>>> OK, I'll do it again:
>>>
>>> 1. Open w.oo.o/index.html
>>> 2. Login via CMS bookmarklet
>>> 3. Click on [Edit] in the row for "index.html"
>>> 4. Click on [Update] on the top
>>> 5. Only this file was updated
>>> 6.
   click "View diff" I see all the changes in "download".

   So maybe committing through SVN means that I'm forced to update the
   directory, and thus if I change the main index.html file I must publish
   the whole site, and if I change devbuilds.html I must publish the whole
   subtree (download/) containing it? In that setup, indeed I wasn't able
   to find a command like "Update this file only".
>>>
>>> No, SVN is outside of this. I do it like you. It's like I wrote on the top:
>>>
>>> The main point is *where you are* in the CMS Browse View when you click
>>> on the "Update" link.
>>>
>>> That means:
>>> When you are in a directory, e.g., "download/" and click on
>>> "Update"
>>> then you get every new thing of this directory.
>>>
>>> But when a single file, e.g., "devbuild.html" is shown and you click
>>> on
>>> the "Update" link then only this file is updated and nothing else.
>>>
>>> Please can you try it and confirm?
>>>
>>> Thanks
>>>
>>>
>>> Marcus
>
>-
>To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>
>
>

Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-19 Thread Marcus (OOo)

Am 05/19/2014 09:20 PM, schrieb Joe Schaefer:

Sorry but technically the CMS publishes all committed
changes to the staging site.  The only way to partition
changes is to partition your commits.



but which data will be published: the content of the SVN repository or 
the content of the personal CMS work space?


I guess the work space as I need to update it with the SVN content. 
Otherwise there is nothing new to publish.


Thanks

Marcus




On Monday, May 19, 2014 3:17 PM, Marcus (OOo)  wrote:

Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:
  On 29/04/2014 Marcus (OOo) wrote:

  The main point is *where you are* in the CMS Browse View when you click
  on the "Update" link.


  I tried several times, but I'm not sure it works for me. Maybe it works
  if we see "update" as "update this directory".


  Example to update and publish only a file:
  1. In your browser open, e.g.,
  "www.openoffice.org/my-dir/my-subdir/index.html".
  2. Open the CMS via the bookmarklet.
  3. Click on the link "[Edit]" in the row of the

"index.html" file.

  4. Click on the link "[Update]".
  5. Do your changes in the file.
  6. Commit your changes.
  7. On the following page click on the link "[Publish]".


  In the last days I tried to do this for the main index.html page and for
  the download/devbuilds.html page. I commit to SVN directly (so I don't
  use the CMS for editing pages), but the rest works as you describe. So I
  browse to download/ in the CMS and when I update it downloads my changed
  devbuilds.html page and nothing else. But then, when I publish, if I


Then you have update the *complete directory* but *not the single file*.

OK, I'll do it again:

1. Open w.oo.o/index.html
2. Login via CMS bookmarklet
3. Click on [Edit] in the row for "index.html"
4. Click on [Update] on the top
5. Only this file was updated
6.

  click "View diff" I see all the changes in "download".

  So maybe committing through SVN means that I'm forced to update the
  directory, and thus if I change the main index.html file I must publish
  the whole site, and if I change devbuilds.html I must publish the whole
  subtree (download/) containing it? In that setup, indeed I wasn't able
  to find a command like "Update this file only".


No, SVN is outside of this. I do it like you. It's like I wrote on the top:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.

That means:
When you are in a directory, e.g., "download/" and click on
"Update"
then you get every new thing of this directory.

But when a single file, e.g., "devbuild.html" is shown and you click
on
the "Update" link then only this file is updated and nothing else.

Please can you try it and confirm?

Thanks


Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-19 Thread Joe Schaefer
Sorry but technically the CMS publishes all committed
changes to the staging site.  The only way to partition
changes is to partition your commits.





> On Monday, May 19, 2014 3:17 PM, Marcus (OOo)  wrote:
> > Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:
>>  On 29/04/2014 Marcus (OOo) wrote:
>>>  The main point is *where you are* in the CMS Browse View when you click
>>>  on the "Update" link.
>> 
>>  I tried several times, but I'm not sure it works for me. Maybe it works
>>  if we see "update" as "update this directory".
>> 
>>>  Example to update and publish only a file:
>>>  1. In your browser open, e.g.,
>>>  "www.openoffice.org/my-dir/my-subdir/index.html".
>>>  2. Open the CMS via the bookmarklet.
>>>  3. Click on the link "[Edit]" in the row of the 
> "index.html" file.
>>>  4. Click on the link "[Update]".
>>>  5. Do your changes in the file.
>>>  6. Commit your changes.
>>>  7. On the following page click on the link "[Publish]".
>> 
>>  In the last days I tried to do this for the main index.html page and for
>>  the download/devbuilds.html page. I commit to SVN directly (so I don't
>>  use the CMS for editing pages), but the rest works as you describe. So I
>>  browse to download/ in the CMS and when I update it downloads my changed
>>  devbuilds.html page and nothing else. But then, when I publish, if I
> 
> Then you have update the *complete directory* but *not the single file*.
> 
> OK, I'll do it again:
> 
> 1. Open w.oo.o/index.html
> 2. Login via CMS bookmarklet
> 3. Click on [Edit] in the row for "index.html"
> 4. Click on [Update] on the top
> 5. Only this file was updated
> 6.
>>  click "View diff" I see all the changes in "download".
>> 
>>  So maybe committing through SVN means that I'm forced to update the
>>  directory, and thus if I change the main index.html file I must publish
>>  the whole site, and if I change devbuilds.html I must publish the whole
>>  subtree (download/) containing it? In that setup, indeed I wasn't able
>>  to find a command like "Update this file only".
> 
> No, SVN is outside of this. I do it like you. It's like I wrote on the top:
> 
> The main point is *where you are* in the CMS Browse View when you click 
> on the "Update" link.
> 
> That means:
> When you are in a directory, e.g., "download/" and click on 
> "Update" 
> then you get every new thing of this directory.
> 
> But when a single file, e.g., "devbuild.html" is shown and you click 
> on 
> the "Update" link then only this file is updated and nothing else.
> 
> Please can you try it and confirm?
> 
> Thanks
> 
> 
> Marcus
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-19 Thread Marcus (OOo)

Am 05/19/2014 01:39 AM, schrieb Kay Schenk:

On Sun, May 18, 2014 at 3:58 PM, Marcus (OOo)  wrote:


Re-post

This mail has not got the attention it deserves as everybody is looking
for this. ;-)

Marcus



Am 04/29/2014 08:52 PM, schrieb Marcus (OOo):

  Am 04/29/2014 03:45 PM, schrieb Jürgen Schmidt:



Keep in mind that when you publish a page all pending changes will be
published as well. It is no local update of your changes only. Just as
reminder, it's a not so nice side effect of the CMS



It seems this wonderful feature is unknown. So let me explain how to
publish only your updates: :-)

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.

Example to update and publish only a file:

1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the "index.html" file.
4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".

Now only the changed "index.html" file is published.

Why? Because you have only updated this file in your local workspace
repository on the Apache CMS server [1].

Example to update and publish only the content of a specific sub-dir:

1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Update this directory]".
4. Do your changes in one or more files.
5. Commit your changes.
6. On the following page click on the link "[Publish]".

Now only the changed files in this directory are published.

Why? Because you have only updated this drectory in your local workspace
repository on the Apache CMS server [1].

[1] You can see your local repo on the top right. Example:
marcus-  >  trunk>  content>  download>  index.html

HTH

Marcus



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Any chance you'd like to update the instructions we have already? :)

http://openoffice.apache.org/docs/edit-cms.html

What you're describing can be used whether do command line svn or not. It
pertains to publishing.


Sure I will document this. But first I want some confirmations as it 
seems it's an undocumented feature of the CMS.


Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-19 Thread Marcus (OOo)

Am 05/19/2014 09:51 AM, schrieb Andrea Pescetti:

On 29/04/2014 Marcus (OOo) wrote:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.


I tried several times, but I'm not sure it works for me. Maybe it works
if we see "update" as "update this directory".


Example to update and publish only a file:
1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the "index.html" file.
4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".


In the last days I tried to do this for the main index.html page and for
the download/devbuilds.html page. I commit to SVN directly (so I don't
use the CMS for editing pages), but the rest works as you describe. So I
browse to download/ in the CMS and when I update it downloads my changed
devbuilds.html page and nothing else. But then, when I publish, if I


Then you have update the *complete directory* but *not the single file*.

OK, I'll do it again:

1. Open w.oo.o/index.html
2. Login via CMS bookmarklet
3. Click on [Edit] in the row for "index.html"
4. Click on [Update] on the top
5. Only this file was updated
6.

click "View diff" I see all the changes in "download".

So maybe committing through SVN means that I'm forced to update the
directory, and thus if I change the main index.html file I must publish
the whole site, and if I change devbuilds.html I must publish the whole
subtree (download/) containing it? In that setup, indeed I wasn't able
to find a command like "Update this file only".


No, SVN is outside of this. I do it like you. It's like I wrote on the top:

The main point is *where you are* in the CMS Browse View when you click 
on the "Update" link.


That means:
When you are in a directory, e.g., "download/" and click on "Update" 
then you get every new thing of this directory.


But when a single file, e.g., "devbuild.html" is shown and you click on 
the "Update" link then only this file is updated and nothing else.


Please can you try it and confirm?

Thanks

Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-19 Thread Andrea Pescetti

On 29/04/2014 Marcus (OOo) wrote:

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.


I tried several times, but I'm not sure it works for me. Maybe it works 
if we see "update" as "update this directory".



Example to update and publish only a file:
1. In your browser open, e.g.,
   "www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the "index.html" file.
4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".


In the last days I tried to do this for the main index.html page and for 
the download/devbuilds.html page. I commit to SVN directly (so I don't 
use the CMS for editing pages), but the rest works as you describe. So I 
browse to download/ in the CMS and when I update it downloads my changed 
devbuilds.html page and nothing else. But then, when I publish, if I 
click "View diff" I see all the changes in "download".


So maybe committing through SVN means that I'm forced to update the 
directory, and thus if I change the main index.html file I must publish 
the whole site, and if I change devbuilds.html I must publish the whole 
subtree (download/) containing it? In that setup, indeed I wasn't able 
to find a command like "Update this file only".


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-18 Thread Kay Schenk
On Sun, May 18, 2014 at 3:58 PM, Marcus (OOo)  wrote:

> Re-post
>
> This mail has not got the attention it deserves as everybody is looking
> for this. ;-)
>
> Marcus
>
>
>
> Am 04/29/2014 08:52 PM, schrieb Marcus (OOo):
>
>  Am 04/29/2014 03:45 PM, schrieb Jürgen Schmidt:
>>
>>> Keep in mind that when you publish a page all pending changes will be
>>> published as well. It is no local update of your changes only. Just as
>>> reminder, it's a not so nice side effect of the CMS
>>>
>>
>> It seems this wonderful feature is unknown. So let me explain how to
>> publish only your updates: :-)
>>
>> The main point is *where you are* in the CMS Browse View when you click
>> on the "Update" link.
>>
>> Example to update and publish only a file:
>>
>> 1. In your browser open, e.g.,
>> "www.openoffice.org/my-dir/my-subdir/index.html".
>> 2. Open the CMS via the bookmarklet.
>> 3. Click on the link "[Edit]" in the row of the "index.html" file.
>> 4. Click on the link "[Update]".
>> 5. Do your changes in the file.
>> 6. Commit your changes.
>> 7. On the following page click on the link "[Publish]".
>>
>> Now only the changed "index.html" file is published.
>>
>> Why? Because you have only updated this file in your local workspace
>> repository on the Apache CMS server [1].
>>
>> Example to update and publish only the content of a specific sub-dir:
>>
>> 1. In your browser open, e.g.,
>> "www.openoffice.org/my-dir/my-subdir/".
>> 2. Open the CMS via the bookmarklet.
>> 3. Click on the link "[Update this directory]".
>> 4. Do your changes in one or more files.
>> 5. Commit your changes.
>> 6. On the following page click on the link "[Publish]".
>>
>> Now only the changed files in this directory are published.
>>
>> Why? Because you have only updated this drectory in your local workspace
>> repository on the Apache CMS server [1].
>>
>> [1] You can see your local repo on the top right. Example:
>> marcus- > trunk > content > download > index.html
>>
>> HTH
>>
>> Marcus
>>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>
Any chance you'd like to update the instructions we have already? :)

http://openoffice.apache.org/docs/edit-cms.html

What you're describing can be used whether do command line svn or not. It
pertains to publishing.


-- 
-
MzK

"Life is either a daring adventure, or nothing."
-- Helen Keller


Re: How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-05-18 Thread Marcus (OOo)

Re-post

This mail has not got the attention it deserves as everybody is looking 
for this. ;-)


Marcus



Am 04/29/2014 08:52 PM, schrieb Marcus (OOo):

Am 04/29/2014 03:45 PM, schrieb Jürgen Schmidt:

Keep in mind that when you publish a page all pending changes will be
published as well. It is no local update of your changes only. Just as
reminder, it's a not so nice side effect of the CMS


It seems this wonderful feature is unknown. So let me explain how to
publish only your updates: :-)

The main point is *where you are* in the CMS Browse View when you click
on the "Update" link.

Example to update and publish only a file:

1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the "index.html" file.
4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".

Now only the changed "index.html" file is published.

Why? Because you have only updated this file in your local workspace
repository on the Apache CMS server [1].

Example to update and publish only the content of a specific sub-dir:

1. In your browser open, e.g.,
"www.openoffice.org/my-dir/my-subdir/".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Update this directory]".
4. Do your changes in one or more files.
5. Commit your changes.
6. On the following page click on the link "[Publish]".

Now only the changed files in this directory are published.

Why? Because you have only updated this drectory in your local workspace
repository on the Apache CMS server [1].

[1] You can see your local repo on the top right. Example:
marcus- > trunk > content > download > index.html

HTH

Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-05-01 Thread Andrea Pescetti

Marcus (OOo) wrote:

The "Alias" is a plugin that is not installed in the company's
Confluence instance where I work.


OK, so let's see what Infra says:

https://issues.apache.org/jira/browse/INFRA-7658

Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-05-01 Thread Marcus (OOo)

Am 04/29/2014 09:23 PM, schrieb Marcus (OOo):

Am 04/29/2014 12:18 PM, schrieb Andrea Pescetti:

On 29/04/2014 Jürgen Schmidt wrote:

our release notes are under
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes


but the download page generates a link based on the complete version
4.1.0, means
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes




The best way is to use an alias (Insert - Other Macros). I tried but it
isn't working for me. I don't know if I'm doing something wrong or if
our cwiki has problems. I left the broken alias in the page, in case
someone figures out how to do it properly (it's invisible unless one is
editing the page anyway).


Me too. Maybe the macro is not correctly configured.

- It's not listed in the sub-categories. Only when listing "All" or
searching for it.
- When entering the term "@self" for telling to use the current webpage
as root webpage, I get a list of files even not located in the AOO project.

I'll try to ask tomorrow my colleague @ work.


The "Alias" is a plugin that is not installed in the company's 
Confluence instance where I work. So, no fast help from here. :-(

We have no

Marcus

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-04-29 Thread Andrea Pescetti

Keith N. McKenna wrote:

My first reaction would be to remove the alias until such time as we can
determine how to configure the macro properly.


Thanks, I removed my test since it's not working anyway. And we can 
definitely test the alias macro on a dedicated test page and not on the 
most visited page.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-04-29 Thread Juergen Schmidt
Am Dienstag, 29. April 2014 um 19:48 schrieb Marcus (OOo):
> Am 04/29/2014 11:30 AM, schrieb Jürgen Schmidt:
> > On 4/29/14 11:23 AM, Jürgen Schmidt wrote:
> > > Hi,
> > >  
> > > our release notes are under
> > > https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes
> > >  
> > > but the download page generates a link based on the complete version
> > > 4.1.0, means
> > >  
> > > https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes
> > >  
> > > What is the best way to change the wiki page? Copy the page and preserve
> > > both links because we have referenced the former link already from
> > > several places.
> > >  
> >  
> >  
> > we have already several translation as sub pages, I think the best way
> > is to fix it directly on the download page...
> >  
>  
>  
> the real way to fix this is to fix the root cause - therefore in the  
> wiki. Otherwise we just build something around the error. ;-)
>  
>  

sure I agree if this fix would be easy but it isn't or even don't work at the 
moment.

Juergen
>  
> Marcus
>  
>  
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>  
>  




Re: need wiki help

2014-04-29 Thread Keith N. McKenna
Marcus (OOo) wrote:
> Am 04/29/2014 12:18 PM, schrieb Andrea Pescetti:
>> On 29/04/2014 Jürgen Schmidt wrote:
 our release notes are under
 https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes


 but the download page generates a link based on the complete version
 4.1.0, means
 https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes


>>
>> The best way is to use an alias (Insert - Other Macros). I tried but it
>> isn't working for me. I don't know if I'm doing something wrong or if
>> our cwiki has problems. I left the broken alias in the page, in case
>> someone figures out how to do it properly (it's invisible unless one is
>> editing the page anyway).
> 
> Me too. Maybe the macro is not correctly configured.
> 
> - It's not listed in the sub-categories. Only when listing "All" or
> searching for it.
> - When entering the term "@self" for telling to use the current webpage
> as root webpage, I get a list of files even not located in the AOO project.
> 
> I'll try to ask tomorrow my colleague @ work.
> 
> Marcus
Just an FYI in case it was not seen by others. There is now the
following text in the release notes where the alias has been set. "The
license could not be verified: There is no license certificate installed
for CustomWare Redirection Plugin for Confluence". I believe that it
will cause confusion among people reading it in that it appears with
absolutely no context just below the links to follow the project on
Twitter etc.

My first reaction would be to remove the alias until such time as we can
determine how to configure the macro properly. However not knowing the
impact it could have I felt it best to check in here first.

Regards
Keith



signature.asc
Description: OpenPGP digital signature


Re: need wiki help

2014-04-29 Thread Marcus (OOo)

Am 04/29/2014 12:18 PM, schrieb Andrea Pescetti:

On 29/04/2014 Jürgen Schmidt wrote:

our release notes are under
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes

but the download page generates a link based on the complete version
4.1.0, means
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes



The best way is to use an alias (Insert - Other Macros). I tried but it
isn't working for me. I don't know if I'm doing something wrong or if
our cwiki has problems. I left the broken alias in the page, in case
someone figures out how to do it properly (it's invisible unless one is
editing the page anyway).


Me too. Maybe the macro is not correctly configured.

- It's not listed in the sub-categories. Only when listing "All" or 
searching for it.
- When entering the term "@self" for telling to use the current webpage 
as root webpage, I get a list of files even not located in the AOO project.


I'll try to ask tomorrow my colleague @ work.

Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



How to update, commit and publish only a single file/directory? [WAS: Re: need wiki help]

2014-04-29 Thread Marcus (OOo)

Am 04/29/2014 03:45 PM, schrieb Jürgen Schmidt:

Keep in mind that when you publish a page all pending changes will be
published as well. It is no local update of your changes only. Just as
reminder, it's a not so nice side effect of the CMS


It seems this wonderful feature is unknown. So let me explain how to 
publish only your updates: :-)


The main point is *where you are* in the CMS Browse View when you click 
on the "Update" link.


Example to update and publish only a file:

1. In your browser open, e.g.,
   "www.openoffice.org/my-dir/my-subdir/index.html".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Edit]" in the row of the "index.html" file.
4. Click on the link "[Update]".
5. Do your changes in the file.
6. Commit your changes.
7. On the following page click on the link "[Publish]".

Now only the changed "index.html" file is published.

Why? Because you have only updated this file in your local workspace 
repository on the Apache CMS server [1].


Example to update and publish only the content of a specific sub-dir:

1. In your browser open, e.g.,
   "www.openoffice.org/my-dir/my-subdir/".
2. Open the CMS via the bookmarklet.
3. Click on the link "[Update this directory]".
4. Do your changes in one or more files.
5. Commit your changes.
6. On the following page click on the link "[Publish]".

Now only the changed files in this directory are published.

Why? Because you have only updated this drectory in your local workspace 
repository on the Apache CMS server [1].


[1] You can see your local repo on the top right. Example:
marcus- > trunk > content > download > index.html

HTH

Marcus

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-04-29 Thread Marcus (OOo)

Am 04/29/2014 11:30 AM, schrieb Jürgen Schmidt:

On 4/29/14 11:23 AM, Jürgen Schmidt wrote:

Hi,

our release notes are under
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes

but the download page generates a link based on the complete version
4.1.0, means

https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes

What is the best way to change the wiki page? Copy the page and preserve
both links because we have referenced the former link already from
several places.



we have already several translation as sub pages, I think the best way
is to fix it directly on the download page...


the real way to fix this is to fix the root cause - therefore in the 
wiki. Otherwise we just build something around the error. ;-)


Marcus


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-04-29 Thread Jürgen Schmidt
On 4/29/14 12:18 PM, Andrea Pescetti wrote:
> On 29/04/2014 Jürgen Schmidt wrote:
>>> our release notes are under
>>> https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes
>>>
>>> but the download page generates a link based on the complete version
>>> 4.1.0, means
>>> https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes
>>>
> 
> The best way is to use an alias (Insert - Other Macros). I tried but it
> isn't working for me. I don't know if I'm doing something wrong or if
> our cwiki has problems. I left the broken alias in the page, in case
> someone figures out how to do it properly (it's invisible unless one is
> editing the page anyway).

as mentioned in my last mail I can fix it on the download page. In the
future we can take of it and can make the dependencies more clear. I
wasn't aware of this and was also surprised.

Juergen

> 
> Regards,
>   Andrea.
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-04-29 Thread Andrea Pescetti

On 29/04/2014 Jürgen Schmidt wrote:

our release notes are under
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes
but the download page generates a link based on the complete version
4.1.0, means
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes


The best way is to use an alias (Insert - Other Macros). I tried but it 
isn't working for me. I don't know if I'm doing something wrong or if 
our cwiki has problems. I left the broken alias in the page, in case 
someone figures out how to do it properly (it's invisible unless one is 
editing the page anyway).


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: need wiki help

2014-04-29 Thread Jürgen Schmidt
On 4/29/14 11:23 AM, Jürgen Schmidt wrote:
> Hi,
> 
> our release notes are under
> https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes
> 
> but the download page generates a link based on the complete version
> 4.1.0, means
> 
> https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes
> 
> What is the best way to change the wiki page? Copy the page and preserve
> both links because we have referenced the former link already from
> several places.
> 

we have already several translation as sub pages, I think the best way
is to fix it directly on the download page...

Juergen


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



need wiki help

2014-04-29 Thread Jürgen Schmidt
Hi,

our release notes are under
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes

but the download page generates a link based on the complete version
4.1.0, means

https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.0+Release+Notes

What is the best way to change the wiki page? Copy the page and preserve
both links because we have referenced the former link already from
several places.

Juergen

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org