Re: [xwiki-users] Deleted users not staying deleted

2009-03-13 Thread Niels Mayer
On Fri, Feb 20, 2009 at 3:56 PM, Samuel Lee  wrote:

> Weird little problem.  I am trying to purge my xwiki of a lot of users
> who have left.  But when I delete the user, go to another part of the
> XWiki and come back to the users page, all my deletions are magically
> back.
>

It's probably an instance of this (just sent to devs list). The search
engine, or some user, is restoring your removed user/document by clicking
'restore'

On Fri, Mar 13, 2009 at 6:23 PM, Niels Mayer  wrote:

> Lets say you delete a spam user, e.g. /xwiki/bin/view/XWiki/xanax via the
> administration tools.
> You then  log out as admin.
>
> Now, as an unregistered user, browse /xwiki/bin/view/XWiki/xanax
>
> You'll be given a link to 'Restore' the deleted file e.g.
> /xwiki/bin/undelete/XWiki/xanax?id=47
>
> When an unregistered user clicks 'Restore' the file is restored (!! bug
> !!).
>
> Fortunately if the "restored" account is used for login, the user can't
> view or edit any files. IMHO there ought to be an additional option on
> deleting users which will also remove the account from the recyclebin or not
> recycle accounts.
>
> Unfortunately, if there's a file you wanted deleted, apparently an
> unregistered user will be able to find out it was there (say, through a
> search engine), and restore it if they want to.
>
> This is on 1.8RC2.
>
> Niels
> http://nielsmayer.com
>
> PS: quick and dirty solution -- set "xwiki.recyclebin=0"
>
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] support for google sitemaps and webmaster tools? (and why do xwiki RDF's give "unsupported file format"?)

2009-03-13 Thread Niels Mayer
On Thu, Mar 12, 2009 at 1:44 PM, Jerome Velociter  wrote:

>  > -- 5 hours ago Errors --  xwiki/bin/view/Main/WebRss?xpage=rdf
> > -- 5 hours ago Errors
> >
> > The reported problem coming from xwiki's xpage=rdf feeds:
> >
> > *Unsupported file format*
>
> Just an idea... maybe they expect the ".xml" extension ?


Thanks for the hint.

The other feeds don't have XML extension, however, I believe your answer is
close to the problem. No matter what I did in my setup, I was getting


>

The roller blog atom feed that *does* work correctly w/ google sitemaps
returns:

> 
>

I fixed this issue by running java with -Dfile.encoding=UTF-8  (note the
lowercase setting suggested in
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances seems
incorrect?). When that alone didn't work, I also added "
-Djavax.servlet.request.encoding=UTF-8-DjavaEncoding=UTF-8" which had been
suggested in solving this problem for other Tomcat users.
(Now I run java with the following options:-server -Xms160m -Xmx1024m
-XX:PermSize=160m -XX:MaxPermSize=320m
-Djavax.servlet.request.encoding=UTF-8 -Dfile.encoding=UTF-8
-DjavaEncoding=UTF-8 -Djava.awt.headless=true)

 I also saw other suggestions to set LANG="en_US.UTF-8" in the tomcat
launching script... however, I'm not sure which of my changes "did" it, but
i believe that following two steps I'd forgotten||skipped in
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Encoding caused the
correct encoding to be used:
(1) WEB-INF> diff web.xml.~1~ web.xml
23c23
<   ISO-8859-1
---
>   UTF-8
(2) WEB-INF> diff xwiki.cfg.~2~ xwiki.cfg
29c29
< xwiki.encoding=ISO-8859-1
---
> xwiki.encoding=UTF-8

With all of the above now reconfigured, I now get the correct output for
http://nielsmayer.com/xwiki/bin/view/Main/WebRss?xpage=rdf :


I'll find out whether changing the encoding fixes the *"Unsupported file
format*" error when passing a Xwiki RDF feed to
http://www.google.com/webmasters/tools/docs/en/about.html .

-- Niels
http://nielsmayer.com

PS: Why not just have xwiki.cfg's default be: 'xwiki.encoding=UTF-8' ;
likewise have web.xml's default for
com.xpn.xwiki.web.SetCharacterEncodingFilter's 'encoding'  be UTF-8. These
encoding errors that oft go unnoticed are probably resulting in a number of
configuration errors, and perhaps other bug-reports that aren't entirely
valid, should they depend on encoding issues.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] underscore "_" character.

2009-03-13 Thread bug_juice
Hi, 
Can anyone tell me how i can get around the removal of an "_" when I attach a 
file to xwiki? Xwiki seems to remove the "_" in the file name before it 
attaches, but i need it to stay in the file name. 
Thanks in advance. 
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Class property display type issue

2009-03-13 Thread Ajdin Brandic
>>Ajdin Brandic wrote:
>> In my class I have a property which is displayed as a dropdown
select.
>> I replaced one of the values and I can still see that value together 
>> with the new one.
>> 
>> Replaced Values
>> None|CC-BY-NC-SA
>> (recommended)|CC-BY|CC-BY-NC|CC-BY-SA|CC-BY-ND|CC-BY-NC-ND|Full
>> Copyright|Other
>> 
>> With Values
>> CC0 (No rights reserved)|CC-BY-NC-SA
>> (recommended)|CC-BY|CC-BY-NC|CC-BY-SA|CC-BY-ND|CC-BY-NC-ND|Full
>> Copyright|Other
>> 
>> And HTML says
>> None 
>> CC0 (No rights reserved)
>> 
>> Anyone had this prob?

>The list also contains the currently selected value, since it would be
incorrect to show a randomly selected value instead of the one that was
previously >there. This happens on an object-by-object way, so if you
select a different value and save, "None" will no longer be present for
that object.
Only documents that are in create mode have None (inserted by XWiki), as
they never had any value in the past I cannot see how can you say
"randomly selected value instead of the one that was previously there".
There was nothing there.
 
It would be better to select whatever is the first value in the list.

>A good fix is to write a script that searches for all objects that have
"None" selected and replace it with a different one, then save back the
document. >If you need help with the script, just ask.

I hope this will be sorted in the newer versions.

At least I know what I need to do unlike the issue with Wysiwyg not
working with class properties.

Thank you

Ajdin

--
Sergiu Dumitriu
http://purl.org/net/sergiu/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
 
 


NOTICE

This message and any files transmitted with it is intended for the addressee 
only and may contain information that is confidential or privileged. 
Unauthorised use is strictly prohibited. If you are not the addressee, you 
should not read, copy, disclose or otherwise use this message, except for the 
purpose of delivery to the addressee. 

Any views or opinions expressed within this e-mail are those of the author and 
do not necessarily represent those of Coventry University.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Panel Wizard doesn't show it

2009-03-13 Thread Antonio Goncalves
Hi Sergiu,
Our wiki instance is hosted, so what can I do to upgrade the platform to a
recent version ?

Thanks,
Antonio

2009/3/13 Sergiu Dumitriu 

> Antonio Goncalves wrote:
> > Hi,
> > I'm not sure of what happen (our XWiki is hosted and I don't know all the
> > admin tasks that are made), but the Panel wizard application doesn't work
> > anymore. It looks like the XWiki version has changed (1.4.1.14796), it
> could
> > be a reason. When I go to the panel wizard, I get the following at the
> top
> > and cannot move any panels around. It's like the page doesn't include the
> > needed javascript
> >
> > Any idea ?
> > Thanks,
> > Antonio
> >
> > Glissez et déposez les panels pour les réarranger a l'intérieur des
> colonnes
> > latérales. Pour ajouter ou retirer des panels, glissez les de la liste
> des
> > panels disponibles vers une colonne ou à l'inverse, d'une colonne vers la
> > liste.
> > $xwiki.jsfx.use("js/scriptaculous/scriptaculous.js")
> > $xwiki.jsfx.use("js/xwiki/accordion/accordion.js")
> > $xwiki.jsfx.use("js/xwiki/panelwizard/Drag.js")
> > $xwiki.jsfx.use("js/xwiki/panelwizard/ieemu.js")
> > $xwiki.jsfx.use("js/xwiki/panelwizard/toolTip.js")
> >
>
> This means that you have imported a recent .xar, but didn't upgrade the
> rest of the platform accordingly. Looking at the version, I think you're
> talking about XWiki Enterprise Manager, which doesn't include the
> required plugins yet.
>
> You can either:
> - downgrade the wiki content to an equivalent version (XEM 1.4 uses XE 1.6)
> - upgrade the platform to a recent version
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



-- 
--
Antonio Goncalves (antonio.goncal...@gmail.com)
Software architect

Paris JUG leader : www.parisjug.org
Web site : www.antoniogoncalves.org
Blog: jroller.com/agoncal
LinkedIn: www.linkedin.com/in/agoncal
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Fields of XWiki.XWikiSkins in XWiki.DefaultSkin are empty and changes are not applied in them. Xwiki version 1.7.1

2009-03-13 Thread Remi

No, i already check this with each tests. No browser's cache problem.


Sergiu Dumitriu-2 wrote:
> 
> Remi wrote:
>> Hi,
>> 
>> We use 1.7.1 version of Xwiki and i'm looking for create new skins with
>> help
>> of  http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins this Skins
>> Admin guide :
>> 
>> First it was not easy to understand how to modify the style and others
>> fields... (Copy/paste of .css and .vm files, links to .css and .vm files,
>> attach .css and .vm files or other???). I tried lot of things but they
>> don't
>> works..
>> 
>> Then, and search in lot of topics of forum and i read from sure source
>> that
>> i must copy/paste the code of .css and .vm files, OR, copy paste fields
>> of
>> the XWiki.XwikiSkins object of the XWiki.DefaultSkin !
>> 
>> But in my 1.7.1 version, theses fields are empty, and changes done in my
>> style code when i copy/paste it from style.css file are not applied when
>> i
>> test the skin. 
>> 
>> I test it with "?skin=XWiki.MySkin" parameter, and i'm sure he's applied
>> because i change the logo inside and it works.
>> 
>> Where could be the problem? Is this Guide still good with 1.7.1 version ?
>> 
> 
> A problem could be browser cache. Try opening the URL to the skin in a 
> different tab and Shift Refresh it after each change.
> 
> -- 
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/Fields-of-XWiki.XWikiSkins-in-XWiki.DefaultSkin-are-empty-and-changes-are-not-applied-in-them.-Xwiki-version-1.7.1-tp2474194p2474362.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Panel Wizard doesn't show it

2009-03-13 Thread Sergiu Dumitriu
Antonio Goncalves wrote:
> Hi,
> I'm not sure of what happen (our XWiki is hosted and I don't know all the
> admin tasks that are made), but the Panel wizard application doesn't work
> anymore. It looks like the XWiki version has changed (1.4.1.14796), it could
> be a reason. When I go to the panel wizard, I get the following at the top
> and cannot move any panels around. It's like the page doesn't include the
> needed javascript
> 
> Any idea ?
> Thanks,
> Antonio
> 
> Glissez et déposez les panels pour les réarranger a l'intérieur des colonnes
> latérales. Pour ajouter ou retirer des panels, glissez les de la liste des
> panels disponibles vers une colonne ou à l'inverse, d'une colonne vers la
> liste.
> $xwiki.jsfx.use("js/scriptaculous/scriptaculous.js")
> $xwiki.jsfx.use("js/xwiki/accordion/accordion.js")
> $xwiki.jsfx.use("js/xwiki/panelwizard/Drag.js")
> $xwiki.jsfx.use("js/xwiki/panelwizard/ieemu.js")
> $xwiki.jsfx.use("js/xwiki/panelwizard/toolTip.js")
> 

This means that you have imported a recent .xar, but didn't upgrade the 
rest of the platform accordingly. Looking at the version, I think you're 
talking about XWiki Enterprise Manager, which doesn't include the 
required plugins yet.

You can either:
- downgrade the wiki content to an equivalent version (XEM 1.4 uses XE 1.6)
- upgrade the platform to a recent version

-- 
Sergiu Dumitriu
http://purl.org/net/sergiu/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Fields of XWiki.XWikiSkins in XWiki.DefaultSkin are empty and changes are not applied in them. Xwiki version 1.7.1

2009-03-13 Thread Sergiu Dumitriu
Remi wrote:
> Hi,
> 
> We use 1.7.1 version of Xwiki and i'm looking for create new skins with help
> of  http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins this Skins
> Admin guide :
> 
> First it was not easy to understand how to modify the style and others
> fields... (Copy/paste of .css and .vm files, links to .css and .vm files,
> attach .css and .vm files or other???). I tried lot of things but they don't
> works..
> 
> Then, and search in lot of topics of forum and i read from sure source that
> i must copy/paste the code of .css and .vm files, OR, copy paste fields of
> the XWiki.XwikiSkins object of the XWiki.DefaultSkin !
> 
> But in my 1.7.1 version, theses fields are empty, and changes done in my
> style code when i copy/paste it from style.css file are not applied when i
> test the skin. 
> 
> I test it with "?skin=XWiki.MySkin" parameter, and i'm sure he's applied
> because i change the logo inside and it works.
> 
> Where could be the problem? Is this Guide still good with 1.7.1 version ?
> 

A problem could be browser cache. Try opening the URL to the skin in a 
different tab and Shift Refresh it after each change.

-- 
Sergiu Dumitriu
http://purl.org/net/sergiu/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Class property display type issue

2009-03-13 Thread Sergiu Dumitriu
Ajdin Brandic wrote:
> In my class I have a property which is displayed as a dropdown select.
> I replaced one of the values and I can still see that value together
> with the new one.
> 
> Replaced Values
> None|CC-BY-NC-SA
> (recommended)|CC-BY|CC-BY-NC|CC-BY-SA|CC-BY-ND|CC-BY-NC-ND|Full
> Copyright|Other
> 
> With Values
> CC0 (No rights reserved)|CC-BY-NC-SA
> (recommended)|CC-BY|CC-BY-NC|CC-BY-SA|CC-BY-ND|CC-BY-NC-ND|Full
> Copyright|Other
> 
> And HTML says
> None
> CC0 (No rights reserved)
> 
> Anyone had this prob?

The list also contains the currently selected value, since it would be 
incorrect to show a randomly selected value instead of the one that was 
previously there. This happens on an object-by-object way, so if you 
select a different value and save, "None" will no longer be present for 
that object.

A good fix is to write a script that searches for all objects that have 
"None" selected and replace it with a different one, then save back the 
document. If you need help with the script, just ask.
-- 
Sergiu Dumitriu
http://purl.org/net/sergiu/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Fields of XWiki.XWikiSkins in XWiki.DefaultSkin are empty and changes are not applied in them. Xwiki version 1.7.1

2009-03-13 Thread Remi

Hi,

We use 1.7.1 version of Xwiki and i'm looking for create new skins with help
of  http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins this Skins
Admin guide :

First it was not easy to understand how to modify the style and others
fields... (Copy/paste of .css and .vm files, links to .css and .vm files,
attach .css and .vm files or other???). I tried lot of things but they don't
works..

Then, and search in lot of topics of forum and i read from sure source that
i must copy/paste the code of .css and .vm files, OR, copy paste fields of
the XWiki.XwikiSkins object of the XWiki.DefaultSkin !

But in my 1.7.1 version, theses fields are empty, and changes done in my
style code when i copy/paste it from style.css file are not applied when i
test the skin. 

I test it with "?skin=XWiki.MySkin" parameter, and i'm sure he's applied
because i change the logo inside and it works.

Where could be the problem? Is this Guide still good with 1.7.1 version ?

Thanks


-- 
View this message in context: 
http://n2.nabble.com/Fields-of-XWiki.XWikiSkins-in-XWiki.DefaultSkin-are-empty-and-changes-are-not-applied-in-them.-Xwiki-version-1.7.1-tp2474194p2474194.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Editor set to Wysiwyg but page show textbox only

2009-03-13 Thread Ajdin Brandic
All of mine class properties that have Editor attrib set Wysiwyg only
display textbox.  This is since 1.8 upgrade.
I'm using the latest .xar.

Ajdin
 
 


NOTICE

This message and any files transmitted with it is intended for the addressee 
only and may contain information that is confidential or privileged. 
Unauthorised use is strictly prohibited. If you are not the addressee, you 
should not read, copy, disclose or otherwise use this message, except for the 
purpose of delivery to the addressee. 

Any views or opinions expressed within this e-mail are those of the author and 
do not necessarily represent those of Coventry University.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Class property display type issue

2009-03-13 Thread Ajdin Brandic
In my class I have a property which is displayed as a dropdown select.
I replaced one of the values and I can still see that value together
with the new one.

Replaced Values
None|CC-BY-NC-SA
(recommended)|CC-BY|CC-BY-NC|CC-BY-SA|CC-BY-ND|CC-BY-NC-ND|Full
Copyright|Other

With Values
CC0 (No rights reserved)|CC-BY-NC-SA
(recommended)|CC-BY|CC-BY-NC|CC-BY-SA|CC-BY-ND|CC-BY-NC-ND|Full
Copyright|Other

And HTML says
None
CC0 (No rights reserved)

Anyone had this prob?

Ajdin
 
 


NOTICE

This message and any files transmitted with it is intended for the addressee 
only and may contain information that is confidential or privileged. 
Unauthorised use is strictly prohibited. If you are not the addressee, you 
should not read, copy, disclose or otherwise use this message, except for the 
purpose of delivery to the addressee. 

Any views or opinions expressed within this e-mail are those of the author and 
do not necessarily represent those of Coventry University.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] GWT-WYSIWYG Bugs

2009-03-13 Thread Marius Dumitru Florea
Hi,

I opened http://jira.xwiki.org/jira/browse/XWIKI-3345 .

Thanks for reporting!
Marius

hel-o wrote:
> Hi,
> 
> new thing i found:
> 
> When you reach the end of the editor box and you make a new Paragraph the
> Cursor disappears and you have to scroll to see the new paragraph.
> 
> When you start writing text, the display is updated and you see your
> paragraph but shouldnt that happen as soon as you start the new paragraph
> (type return)?
> 
> Also tried with the old editor, there it worked that way.
> 
> hel.
> 
> -
> hel.
> h...@hel.at
> 
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] GWT-WYSIWYG Bugs

2009-03-13 Thread hel-o

Hi,

new thing i found:

When you reach the end of the editor box and you make a new Paragraph the
Cursor disappears and you have to scroll to see the new paragraph.

When you start writing text, the display is updated and you see your
paragraph but shouldnt that happen as soon as you start the new paragraph
(type return)?

Also tried with the old editor, there it worked that way.

hel.

-
hel.
h...@hel.at

-- 
View this message in context: 
http://n2.nabble.com/GWT-WYSIWYG-Bugs-tp2441118p2472270.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Export (Pictures, 1.8RC2)

2009-03-13 Thread hel-o

Great =)

hel.


Sergiu Dumitriu-2 wrote:
> 
> Sergiu Dumitriu wrote:
>> hel-o wrote:
>>> Hi,
>>>
>>> and export again. Tried to export a page with to pics included (one 
>>> attached
>>> to the page, one attached to another page) and got an error both for 
>>> pdf and
>>> for rtf export.
>>>
>>> 16:37:21,446
>>> [http://semantic-web.hel.at/xwiki/bin/export/Da/KMKnowledgeDiw?format=rtf] 
>>>
>>> [http-8180-Processor24] WARN  web.XWikiAction - Uncaught
>>> exception: Error number 11015 in 11: Exception while exporting
>>> Wrapped Exception: Error number 12002 in 12: Exception while exporting 
>>> PDF
>>> Wrapped Exception: org.apache.fop.fo.ValidationException: null:44:232:
>>> Error(44/232): fo:external-graphic, Invalid property name 'display'. 
>> 
>> As the error says, there's a CSS property that says "display: block;" on 
>> the image, and the FOP engine doesn't like it. A quick solution is to 
>> edit the document and remove this rule.
>> 
>> Did you manually add the display property, or was it added by the 
>> WYSIWYG editor?
>> 
>> I'm working on fixing it, I'll keep you posted on the progress.
> 
> This was fixed, see http://jira.xwiki.org/jira/browse/XWIKI-3332
> 
> -- 
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> 
> 


-
hel.
h...@hel.at

-- 
View this message in context: 
http://n2.nabble.com/Export-%28Pictures%2C-1.8RC2%29-tp2455946p2472169.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Panel Wizard doesn't show it

2009-03-13 Thread Antonio Goncalves
Hi,
I'm not sure of what happen (our XWiki is hosted and I don't know all the
admin tasks that are made), but the Panel wizard application doesn't work
anymore. It looks like the XWiki version has changed (1.4.1.14796), it could
be a reason. When I go to the panel wizard, I get the following at the top
and cannot move any panels around. It's like the page doesn't include the
needed javascript

Any idea ?
Thanks,
Antonio

Glissez et déposez les panels pour les réarranger a l'intérieur des colonnes
latérales. Pour ajouter ou retirer des panels, glissez les de la liste des
panels disponibles vers une colonne ou à l'inverse, d'une colonne vers la
liste.
$xwiki.jsfx.use("js/scriptaculous/scriptaculous.js")
$xwiki.jsfx.use("js/xwiki/accordion/accordion.js")
$xwiki.jsfx.use("js/xwiki/panelwizard/Drag.js")
$xwiki.jsfx.use("js/xwiki/panelwizard/ieemu.js")
$xwiki.jsfx.use("js/xwiki/panelwizard/toolTip.js")


2009/2/17 Antonio Goncalves 

> Thanks Vincent. I've installed the new Panel application (
> http://code.xwiki.org/xwiki/bin/view/Applications/PanelsApplicationDownloads)
> and it works fine.
> Antonio
>
> 2009/2/13 Vincent Massol 
>
> Hi Antonio,
>>
>> On Feb 8, 2009, at 10:32 AM, Antonio Goncalves wrote:
>>
>> > Yes Vincent, you can check by yourself on the Paris JUG website. I
>> > can't see
>> > any logs, I've tried with 3 different browsers but I've found a
>> > strange
>> > work around.
>> > When I am on the
>> > http://www.parisjug.org/xwiki/bin/admin/XWiki/XWikiPreferences page
>> > and that
>> > I click on Panel Wizard, nothing happens. But I can access the
>> > wizard from
>> > the page http://www.parisjug.org/xwiki/bin/view/XWiki/.
>> >
>> > Do you have any idea ?
>>
>> Are you sure you have upgraded the panels pages ?
>> I've checked the page Panels.PanelWizard and its content looks old.
>>
>> Could you explain how you've done the last XAR upgrade?
>>
>> Can you try reimporting the Panels application that corresponds to you
>> wiki version (you're on XEM 1.4.1 which means XE 1.6.2) ?
>> I could do it but I don't know if you've changed any panels page so
>> I'll let you do it instead.
>>
>> Thanks
>> -Vincent
>>
>> >
>> > Antonio
>> >
>> > 2009/2/7 Vincent Massol 
>> >
>> >> Hi Antonio,
>> >>
>> >> On Feb 7, 2009, at 9:07 AM, Antonio Goncalves wrote:
>> >>
>> >>> Hi,
>> >>>
>> >>> I'm using XE 1.6.2 / XEM 1.4.1 and when I click on the Panel Wizard
>> >>> it just
>> >>> doesn't show up. I click on the link, but nothing happens.
>> >>
>> >> hmmm we need to look into this since I've heard this problem reported
>> >> twice over one week.
>> >>
>> >> If you agree, I'll ask Raffaello to give me the rights to go the
>> >> Paris
>> >> JUG wiki and try it myself from there.
>> >>
>> >>> Is there a way to skip the wizard and set up the panels layout
>> >>> manually like
>> >>> the previous versions of XWiki ?
>> >>
>> >> Yes. Just go to the wiki administration page and then select edit -->
>> >> Objects. Find the XWikiPreferences object and find the property for
>> >> panels location and put the values you want in there.
>> >>
>> >> Thanks
>> >> -Vincent
>> >> http://xwiki.com
>> >> http://xwiki.org
>> >> http://massol.net
>> ___
>> users mailing list
>> users@xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
>
>
>
> --
> --
> Antonio Goncalves (antonio.goncal...@gmail.com)
> Software architect
>
> Paris JUG leader : www.parisjug.org
> Web site : www.antoniogoncalves.org
> Blog: jroller.com/agoncal
> LinkedIn: www.linkedin.com/in/agoncal
>



-- 
--
Antonio Goncalves (antonio.goncal...@gmail.com)
Software architect

Paris JUG leader : www.parisjug.org
Web site : www.antoniogoncalves.org
Blog: jroller.com/agoncal
LinkedIn: www.linkedin.com/in/agoncal
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users