Re: [xwiki-users] myxwiki.org skinless?

2009-09-25 Thread Vincent Massol

On Sep 25, 2009, at 4:23 AM, wan...@att.net wrote:



 Yes, the skin is back. (to me, it went away for hours)

See my other mail where I explained the error you made (you  
prevented unregistered users from viewing documents in the XWiki space).

Thanks
-Vincent

 -- Original message from Vincent Massol vinc...@massol.net 
 : --


 Hi,

 On Sep 24, 2009, at 6:04 PM, wan...@att.net wrote:



 My site, parents2.myxwiki.org is skinless.

 This is what I see:
 http://tinycoke.com/_6rk1A1e9MElKw/picture_1.png

 The skin is there

 -Vincent

 Please take a look.

 -- Original message from Vincent Massol
 : --



 On Sep 24, 2009, at 4:58 PM, wan...@att.net wrote:

 Hi,
 Anyone else have problems with myxwiki.org skin?

 We've just upgraded it?
 Try ctrl+refresh on http://myxwiki.org

 If you're having pb on a subwiki please let us know.

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and unique color themes for xwiki.org

2009-09-25 Thread Vincent Massol
Thanks Cati.

I don't like that we change the text colors since I find it's hard to  
read on white for several of them. I'd prefer we only change the  
background color and leave the rest unchanged actually.

WDYT?

Thanks
-Vincent

On Sep 24, 2009, at 11:06 PM, Ecaterina Valica wrote:

 [Proposal 1]

 Color Variations for xwiki.org :

 XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
 XWATCH -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
 XMANAGER -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
 XWORKSPACES -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png
 
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] listing all users

2009-09-25 Thread Arnaud bourree
1/ I don't find any how to configure my MySQL db to be case sensitive
on query with natural language.

2/ I don't understand how I can have to page: XWiki.jdoe and
XWiki.JDOE if my query are case insensitive
It should not be able to create 2nd user.
I just made the test on fresh install of XWiki 2.0RC2:
  - I register jdoe, I'm able to login as jdoe
  - I try to register jdoe again, it is forbidden
  - I register JDOE (not forbidden), I'm able to login as JDOE but no
more as jdoe
  - I try again my groovy code to list users: only jdoe is listed

Should I create a bug in Jira?

Arnaud.

2009/9/24 Arnaud bourree arnaud.bour...@gmail.com:
 2009/9/24 Vincent Massol vinc...@massol.net:
 Hi Arnaud,

 On Sep 24, 2009, at 5:51 PM, Arnaud bourree wrote:

 Hello,

 I test it also in velocity without success.
 I try an other code
 {{groovy}}
 def sql = 
 count = 0
 for (item in xwiki.searchDocuments(sql)) {
   u = xwiki.getDocument(item)
   xu = u.getObject('XWikiUsers')
   if (null == xu) continue
   count++
   print item+\n
 }
 print **Total +count+**\n
 {{/groovy}}

 I still not found jdoe
 But if I edit XWiki.jdoe page in object mode there is XWikiUsers
 object !!!

 My take is that you're using MySQL as the database and in default mode
 which doesn't differentiate lowercase and uppercase.

 Could that be it?

 Thanks
 -Vincent

 Yes it is MySQL
 I will check its configuration tomorrow

 But I just google it and find  that on *nix system (like I am), table
 name are case sensitive: I don't need to configure it
 And query looks to be case sensitive excepted for natural language
 where additional keyword it's needed

 What it is the configuration to be sure that query will be case
 sensitive (natural language included)?

 Arnaud

 Arnaud.

 2009/9/24 Oana Tabaranu oana.tabar...@xwiki.com:
 Hi Arnaud,

 I have tested your query in velocity and it works fine for me:
 #set($users =$xwiki.searchDocuments(, BaseObject obj where
 obj.name =
 doc.fullName and obj.className = 'XWiki.XWikiUsers' and
 doc.fullName 
 'XWiki.Admin' and doc.fullName  'XWiki.TEST' and doc.fullName 
 'XWiki.dummy'))
 #foreach ($u in  $users)
  $u
 #end
 My result is:
 XWiki.JDOE
 XWiki.jdoe

 Oana

 Arnaud bourree wrote:
 Hello,

 I'm building a migration to LDAP page for my company on one XWiki
 2.0
 RC1 instance.
 For this I need to list all users registered in.
 I used the following code to list users:
 for(u in xwiki.wrapDocs(xwiki.searchDocuments(, BaseObject obj
 where
 obj.name = doc.fullName and obj.className = 'XWiki.XWikiUsers' and
 doc.fullName  'XWiki.Admin' and doc.fullName  'XWiki.TEST' and
 doc.fullName  'XWiki.dummy'))) {
 ...
 }

 That looks good, most of my users are listed.
 But at least one user is missing: one user register as JDOE one time
 and one other time as jdoe
 So there are two John Doe users: XWiki.jdoe and XWiki.JDOE but my
 loop
 only find JDOE and not jdoe

 What it is wrong in my request?

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


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


Re: [xwiki-users] listing all users

2009-09-25 Thread Arnaud bourree
OK, I find MySql configuration here
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Encoding
I just change for MySql configuration utf8_general_ci into utf8_binary
= My wiki is now broken (by chance it is test instance)

Does it mean that I have to restore my previous MYSql configuration,
dump db, change conf to utf8_binary and import back db?

Arnaud.

2009/9/25 Arnaud bourree arnaud.bour...@gmail.com:
 1/ I don't find any how to configure my MySQL db to be case sensitive
 on query with natural language.

 2/ I don't understand how I can have to page: XWiki.jdoe and
 XWiki.JDOE if my query are case insensitive
 It should not be able to create 2nd user.
 I just made the test on fresh install of XWiki 2.0RC2:
  - I register jdoe, I'm able to login as jdoe
  - I try to register jdoe again, it is forbidden
  - I register JDOE (not forbidden), I'm able to login as JDOE but no
 more as jdoe
  - I try again my groovy code to list users: only jdoe is listed

 Should I create a bug in Jira?

 Arnaud.

 2009/9/24 Arnaud bourree arnaud.bour...@gmail.com:
 2009/9/24 Vincent Massol vinc...@massol.net:
 Hi Arnaud,

 On Sep 24, 2009, at 5:51 PM, Arnaud bourree wrote:

 Hello,

 I test it also in velocity without success.
 I try an other code
 {{groovy}}
 def sql = 
 count = 0
 for (item in xwiki.searchDocuments(sql)) {
   u = xwiki.getDocument(item)
   xu = u.getObject('XWikiUsers')
   if (null == xu) continue
   count++
   print item+\n
 }
 print **Total +count+**\n
 {{/groovy}}

 I still not found jdoe
 But if I edit XWiki.jdoe page in object mode there is XWikiUsers
 object !!!

 My take is that you're using MySQL as the database and in default mode
 which doesn't differentiate lowercase and uppercase.

 Could that be it?

 Thanks
 -Vincent

 Yes it is MySQL
 I will check its configuration tomorrow

 But I just google it and find  that on *nix system (like I am), table
 name are case sensitive: I don't need to configure it
 And query looks to be case sensitive excepted for natural language
 where additional keyword it's needed

 What it is the configuration to be sure that query will be case
 sensitive (natural language included)?

 Arnaud

 Arnaud.

 2009/9/24 Oana Tabaranu oana.tabar...@xwiki.com:
 Hi Arnaud,

 I have tested your query in velocity and it works fine for me:
 #set($users =$xwiki.searchDocuments(, BaseObject obj where
 obj.name =
 doc.fullName and obj.className = 'XWiki.XWikiUsers' and
 doc.fullName 
 'XWiki.Admin' and doc.fullName  'XWiki.TEST' and doc.fullName 
 'XWiki.dummy'))
 #foreach ($u in  $users)
  $u
 #end
 My result is:
 XWiki.JDOE
 XWiki.jdoe

 Oana

 Arnaud bourree wrote:
 Hello,

 I'm building a migration to LDAP page for my company on one XWiki
 2.0
 RC1 instance.
 For this I need to list all users registered in.
 I used the following code to list users:
 for(u in xwiki.wrapDocs(xwiki.searchDocuments(, BaseObject obj
 where
 obj.name = doc.fullName and obj.className = 'XWiki.XWikiUsers' and
 doc.fullName  'XWiki.Admin' and doc.fullName  'XWiki.TEST' and
 doc.fullName  'XWiki.dummy'))) {
 ...
 }

 That looks good, most of my users are listed.
 But at least one user is missing: one user register as JDOE one time
 and one other time as jdoe
 So there are two John Doe users: XWiki.jdoe and XWiki.JDOE but my
 loop
 only find JDOE and not jdoe

 What it is wrong in my request?

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



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


Re: [xwiki-users] [xwiki-devs] Who can design nice and unique color themes for xwiki.org

2009-09-25 Thread Jean-Vincent Drean
+1 with that.
Personal preference: I would prefer colorful backgrounds instead of a
dark one (sad).

Thanks,
JV.

On Fri, Sep 25, 2009 at 8:23 AM, Vincent Massol vinc...@massol.net wrote:
 Thanks Cati.

 I don't like that we change the text colors since I find it's hard to
 read on white for several of them. I'd prefer we only change the
 background color and leave the rest unchanged actually.

 WDYT?

 Thanks
 -Vincent

 On Sep 24, 2009, at 11:06 PM, Ecaterina Valica wrote:

 [Proposal 1]

 Color Variations for xwiki.org :

 XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
 XWATCH -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
 XMANAGER -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
 XWORKSPACES -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and unique color themes for xwiki.org

2009-09-25 Thread Ecaterina Valica
[Proposal 1] Colors on dark bg

XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
XMANAGER -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
XWORKSPACES -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png

[Proposal 2] Same colors as xwiki.org toucan

XE -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
XMANAGER -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
XWORKSPACES -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png

[Proposal 3] Brighter colors

XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
XMANAGER -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
XWORKSPACES -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png

[Proposal 4] Gradient - I could try make some gradient proposal. This would
add images for the page bakcground gradient

XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and unique color themes for xwiki.org

2009-09-25 Thread Guillaume Lerouge
Hi,

On Fri, Sep 25, 2009 at 2:34 PM, Ecaterina Valica vali...@gmail.com wrote:

 [Proposal 1] Colors on dark bg

 XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png

 [Proposal 2] Same colors as xwiki.org toucan

 XE -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png

 [Proposal 3] Brighter colors

 XE -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
 XWATCH -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png


I like the one with bright colors.

Guillaume

[Proposal 4] Gradient - I could try make some gradient proposal. This would
 add images for the page bakcground gradient

 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png

 Thanks,
 Caty
 ___
 devs mailing list
 d...@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/devs




-- 
Guillaume Lerouge
Product Manager - XWiki
Skype: wikibc
Twitter: glerouge
http://guillaumelerouge.com/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] Who can design nice and unique color themes for xwiki.org

2009-09-25 Thread Jerome Velociter
Jean-Vincent Drean wrote:
 +1 with that.
 Personal preference: I would prefer colorful backgrounds instead of a
 dark one (sad).
   

+1.

Could not we keep something close to the color scheme we already have 
(for backgrounds) ? (red for watch, blue for manager, green for XWS, etc.)

Jerome.

 Thanks,
 JV.

 On Fri, Sep 25, 2009 at 8:23 AM, Vincent Massol vinc...@massol.net wrote:
   
 Thanks Cati.

 I don't like that we change the text colors since I find it's hard to
 read on white for several of them. I'd prefer we only change the
 background color and leave the rest unchanged actually.

 WDYT?

 Thanks
 -Vincent

 On Sep 24, 2009, at 11:06 PM, Ecaterina Valica wrote:

 
 [Proposal 1]

 Color Variations for xwiki.org :

 XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
 XWATCH -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
 XMANAGER -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
 XWORKSPACES -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png
 
   
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

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

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and unique colorthemes for xwiki.org

2009-09-25 Thread roman.friesen
Hi Caty,

I suppose you have changed css, haven't you? Can you post the settings you have 
changed? Or probably best put it in the xwiki documentation directly:
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins

Thank you,
Roman


-Ursprüngliche Nachricht-
Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im Auftrag von 
Ecaterina Valica
Gesendet: Freitag, 25. September 2009 14:35
An: XWiki Users
Cc: XWiki Developers
Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and unique 
colorthemes for xwiki.org

[Proposal 1] Colors on dark bg

XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
XMANAGER -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
XWORKSPACES -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png

[Proposal 2] Same colors as xwiki.org toucan

XE -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
XMANAGER -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
XWORKSPACES -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png

[Proposal 3] Brighter colors

XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
XMANAGER -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
XWORKSPACES -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png

[Proposal 4] Gradient - I could try make some gradient proposal. This would
add images for the page bakcground gradient

XWATCH -
http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png

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


[xwiki-users] GWT-WYSIWYG Bug

2009-09-25 Thread hel-o

Hi,

Just found something new:

//Text://

becomes a hypelink ( http://Text:// Text:// ) and not an italic Text:

hel.

-
semantic-web.hel.at
h...@hel.at

-- 
View this message in context: 
http://n2.nabble.com/GWT-WYSIWYG-Bug-tp3712311p3712311.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] GWT-WYSIWYG Bug

2009-09-25 Thread hel-o

Works when i edit in Wiki-Mode.

Just found something else when you change 

Text: to italic in WYSIWYG and Save it // is added

- Display Text://
 Code //Text:

When you open it in WYSIWYG and save again another // is added

- Display Text:
 Code //Text://

and so on

hel.





Guillaume Lerouge wrote:
 
 Hi,
 
 On Fri, Sep 25, 2009 at 3:19 PM, hel-o h...@hel.at wrote:
 

 Hi,

 Just found something new:

 //Text://

 
 Try //Text~://
 
 Guillaume
 
 

 becomes a hypelink ( http://Text:// Text:// ) and not an italic Text:

 hel.

 -
 semantic-web.hel.at
 h...@hel.at

 --
 View this message in context:
 http://n2.nabble.com/GWT-WYSIWYG-Bug-tp3712311p3712311.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

 
 
 
 -- 
 Guillaume Lerouge
 Product Manager - XWiki
 Skype: wikibc
 Twitter: glerouge
 http://guillaumelerouge.com/
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 


-
semantic-web.hel.at
h...@hel.at

-- 
View this message in context: 
http://n2.nabble.com/GWT-WYSIWYG-Bug-tp3712311p3712447.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] GWT-WYSIWYG Bug

2009-09-25 Thread Guillaume Lerouge
Hi,

On Fri, Sep 25, 2009 at 3:46 PM, hel-o h...@hel.at wrote:


 Works when i edit in Wiki-Mode.

 Just found something else when you change

 Text: to italic in WYSIWYG and Save it // is added

 - Display Text://
 Code //Text:

 When you open it in WYSIWYG and save again another // is added

 - Display Text:
 Code //Text://

 and so on


Looks like a bug.

Can you create the JIRA issue?

Thanks,
Guillaume



 hel.





 Guillaume Lerouge wrote:
 
  Hi,
 
  On Fri, Sep 25, 2009 at 3:19 PM, hel-o h...@hel.at wrote:
 
 
  Hi,
 
  Just found something new:
 
  //Text://
 
 
  Try //Text~://
 
  Guillaume
 
 
 
  becomes a hypelink ( http://Text:// Text:// ) and not an italic Text:
 
  hel.
 
  -
  semantic-web.hel.at
  h...@hel.at
 
  --
  View this message in context:
  http://n2.nabble.com/GWT-WYSIWYG-Bug-tp3712311p3712311.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
 
 
 
 
  --
  Guillaume Lerouge
  Product Manager - XWiki
  Skype: wikibc
  Twitter: glerouge
  http://guillaumelerouge.com/
  ___
  users mailing list
  users@xwiki.org
  http://lists.xwiki.org/mailman/listinfo/users
 
 


 -
 semantic-web.hel.at
 h...@hel.at

 --
 View this message in context:
 http://n2.nabble.com/GWT-WYSIWYG-Bug-tp3712311p3712447.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




-- 
Guillaume Lerouge
Product Manager - XWiki
Skype: wikibc
Twitter: glerouge
http://guillaumelerouge.com/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] Who can design nice and unique colorthemes for xwiki.org

2009-09-25 Thread Ecaterina Valica
Hi Roman,

The proposals are made in the Colibri skin with the help of ColorThemes (no
CSS changes beside that). For now they are just proposals and nothing has
changed for xwiki.org.

Thanks,
Caty

On Fri, Sep 25, 2009 at 15:53, roman.frie...@ropardo.de wrote:

 Hi Caty,

 I suppose you have changed css, haven't you? Can you post the settings you
 have changed? Or probably best put it in the xwiki documentation directly:
  http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins

 Thank you,
 Roman


 -Ursprüngliche Nachricht-
 Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im Auftrag
 von Ecaterina Valica
 Gesendet: Freitag, 25. September 2009 14:35
 An: XWiki Users
 Cc: XWiki Developers
 Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and unique
 colorthemes for xwiki.org

 [Proposal 1] Colors on dark bg

 XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png

 [Proposal 2] Same colors as xwiki.org toucan

 XE -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png

 [Proposal 3] Brighter colors

 XE -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
 XWATCH -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png

 [Proposal 4] Gradient - I could try make some gradient proposal. This would
 add images for the page bakcground gradient

 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png

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

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and uniquecolorthemes for xwiki.org

2009-09-25 Thread roman.friesen
Hi Caty,

I would just like to know how can I change background colors without hard :) 
searching for related css properties in skin files... And as it's a common task 
(I think), it would be nice to have the related description (howto) in the 
xwiki documentation. That's all :)

Should I use something like server/xwiki/skins/toucan/css/colors/blue.css?

Thanks,
Roman

-Ursprüngliche Nachricht-
Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im Auftrag von 
Ecaterina Valica
Gesendet: Freitag, 25. September 2009 16:06
An: XWiki Users
Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and 
uniquecolorthemes for xwiki.org

Hi Roman,

The proposals are made in the Colibri skin with the help of ColorThemes (no
CSS changes beside that). For now they are just proposals and nothing has
changed for xwiki.org.

Thanks,
Caty

On Fri, Sep 25, 2009 at 15:53, roman.frie...@ropardo.de wrote:

 Hi Caty,

 I suppose you have changed css, haven't you? Can you post the settings you
 have changed? Or probably best put it in the xwiki documentation directly:
  http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins

 Thank you,
 Roman


 -Ursprüngliche Nachricht-
 Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im Auftrag
 von Ecaterina Valica
 Gesendet: Freitag, 25. September 2009 14:35
 An: XWiki Users
 Cc: XWiki Developers
 Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and unique
 colorthemes for xwiki.org

 [Proposal 1] Colors on dark bg

 XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png

 [Proposal 2] Same colors as xwiki.org toucan

 XE -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png

 [Proposal 3] Brighter colors

 XE -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
 XWATCH -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png

 [Proposal 4] Gradient - I could try make some gradient proposal. This would
 add images for the page bakcground gradient

 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png

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

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and uniquecolorthemes for xwiki.org

2009-09-25 Thread Vincent Massol
Hi,

On Sep 25, 2009, at 4:50 PM, roman.frie...@ropardo.de 
roman.frie...@ropardo.de 
  wrote:

 Hi Caty,

 I would just like to know how can I change background colors without  
 hard :) searching for related css properties in skin files... And as  
 it's a common task (I think), it would be nice to have the related  
 description (howto) in the xwiki documentation. That's all :)

 Should I use something like server/xwiki/skins/toucan/css/colors/ 
 blue.css?

Just wait for the 2.0 release and use the colibri skin. It'll be simple.

Thanks
-Vincent


 Thanks,
 Roman

 -Ursprüngliche Nachricht-
 Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im  
 Auftrag von Ecaterina Valica
 Gesendet: Freitag, 25. September 2009 16:06
 An: XWiki Users
 Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and  
 uniquecolorthemes for xwiki.org

 Hi Roman,

 The proposals are made in the Colibri skin with the help of  
 ColorThemes (no
 CSS changes beside that). For now they are just proposals and  
 nothing has
 changed for xwiki.org.

 Thanks,
 Caty

 On Fri, Sep 25, 2009 at 15:53, roman.frie...@ropardo.de wrote:

 Hi Caty,

 I suppose you have changed css, haven't you? Can you post the  
 settings you
 have changed? Or probably best put it in the xwiki documentation  
 directly:
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins

 Thank you,
 Roman


 -Ursprüngliche Nachricht-
 Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im  
 Auftrag
 von Ecaterina Valica
 Gesendet: Freitag, 25. September 2009 14:35
 An: XWiki Users
 Cc: XWiki Developers
 Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and  
 unique
 colorthemes for xwiki.org

 [Proposal 1] Colors on dark bg

 XE - http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png

 [Proposal 2] Same colors as xwiki.org toucan

 XE -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png

 [Proposal 3] Brighter colors

 XE -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
 XWATCH -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
 XMANAGER -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
 XWORKSPACES -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png

 [Proposal 4] Gradient - I could try make some gradient proposal.  
 This would
 add images for the page bakcground gradient

 XWATCH -

 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and uniquecolorthemes for xwiki.org

2009-09-25 Thread Ecaterina Valica
Hi Roman,

You need to use colibri skin + ColorThemes to be easier to change colors.
I'll make a documentation about using them. It's very simple, you'll see :P
they are gonna be release these days in the 2.0 release.

Thanks,
Caty

On Fri, Sep 25, 2009 at 17:55, Vincent Massol vinc...@massol.net wrote:

 Hi,

 On Sep 25, 2009, at 4:50 PM, roman.frie...@ropardo.de 
 roman.frie...@ropardo.de
   wrote:

  Hi Caty,
 
  I would just like to know how can I change background colors without
  hard :) searching for related css properties in skin files... And as
  it's a common task (I think), it would be nice to have the related
  description (howto) in the xwiki documentation. That's all :)
 
  Should I use something like server/xwiki/skins/toucan/css/colors/
  blue.css?

 Just wait for the 2.0 release and use the colibri skin. It'll be simple.

 Thanks
 -Vincent

 
  Thanks,
  Roman
 
  -Ursprüngliche Nachricht-
  Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im
  Auftrag von Ecaterina Valica
  Gesendet: Freitag, 25. September 2009 16:06
  An: XWiki Users
  Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and
  uniquecolorthemes for xwiki.org
 
  Hi Roman,
 
  The proposals are made in the Colibri skin with the help of
  ColorThemes (no
  CSS changes beside that). For now they are just proposals and
  nothing has
  changed for xwiki.org.
 
  Thanks,
  Caty
 
  On Fri, Sep 25, 2009 at 15:53, roman.frie...@ropardo.de wrote:
 
  Hi Caty,
 
  I suppose you have changed css, haven't you? Can you post the
  settings you
  have changed? Or probably best put it in the xwiki documentation
  directly:
  http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins
 
  Thank you,
  Roman
 
 
  -Ursprüngliche Nachricht-
  Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im
  Auftrag
  von Ecaterina Valica
  Gesendet: Freitag, 25. September 2009 14:35
  An: XWiki Users
  Cc: XWiki Developers
  Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and
  unique
  colorthemes for xwiki.org
 
  [Proposal 1] Colors on dark bg
 
  XE -
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
  XWATCH -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
  XMANAGER -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
  XWORKSPACES -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png
 
  [Proposal 2] Same colors as xwiki.org toucan
 
  XE -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
  XWATCH -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
  XMANAGER -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
  XWORKSPACES -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png
 
  [Proposal 3] Brighter colors
 
  XE -
  http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
  XWATCH -
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
  XMANAGER -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
  XWORKSPACES -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png
 
  [Proposal 4] Gradient - I could try make some gradient proposal.
  This would
  add images for the page bakcground gradient
 
  XWATCH -
 
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png
 
  Thanks,
  Caty
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

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


Re: [xwiki-users] [xwiki-devs] Who can design nice and uniquecolorthemes for xwiki.org

2009-09-25 Thread Guillaume Lerouge
Hi Roman,

On Fri, Sep 25, 2009 at 5:23 PM, Ecaterina Valica vali...@gmail.com wrote:

 Hi Roman,

 You need to use colibri skin + ColorThemes to be easier to change colors.
 I'll make a documentation about using them. It's very simple, you'll see :P
 they are gonna be release these days in the 2.0 release.


Actually you can already find the relevant documentation here:

http://code.xwiki.org/xwiki/bin/view/Skins/ColibriSkin

Guillaume


 Thanks,
 Caty

 On Fri, Sep 25, 2009 at 17:55, Vincent Massol vinc...@massol.net wrote:

  Hi,
 
  On Sep 25, 2009, at 4:50 PM, roman.frie...@ropardo.de 
  roman.frie...@ropardo.de
wrote:
 
   Hi Caty,
  
   I would just like to know how can I change background colors without
   hard :) searching for related css properties in skin files... And as
   it's a common task (I think), it would be nice to have the related
   description (howto) in the xwiki documentation. That's all :)
  
   Should I use something like server/xwiki/skins/toucan/css/colors/
   blue.css?
 
  Just wait for the 2.0 release and use the colibri skin. It'll be simple.
 
  Thanks
  -Vincent
 
  
   Thanks,
   Roman
  
   -Ursprüngliche Nachricht-
   Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im
   Auftrag von Ecaterina Valica
   Gesendet: Freitag, 25. September 2009 16:06
   An: XWiki Users
   Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and
   uniquecolorthemes for xwiki.org
  
   Hi Roman,
  
   The proposals are made in the Colibri skin with the help of
   ColorThemes (no
   CSS changes beside that). For now they are just proposals and
   nothing has
   changed for xwiki.org.
  
   Thanks,
   Caty
  
   On Fri, Sep 25, 2009 at 15:53, roman.frie...@ropardo.de wrote:
  
   Hi Caty,
  
   I suppose you have changed css, haven't you? Can you post the
   settings you
   have changed? Or probably best put it in the xwiki documentation
   directly:
   http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins
  
   Thank you,
   Roman
  
  
   -Ursprüngliche Nachricht-
   Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im
   Auftrag
   von Ecaterina Valica
   Gesendet: Freitag, 25. September 2009 14:35
   An: XWiki Users
   Cc: XWiki Developers
   Betreff: Re: [xwiki-users] [xwiki-devs] Who can design nice and
   unique
   colorthemes for xwiki.org
  
   [Proposal 1] Colors on dark bg
  
   XE -
  http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE/XE.png
   XWATCH -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWATCH/XWATCH.png
   XMANAGER -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER/XMANAGER.png
   XWORKSPACES -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES/XWORKSPACES.png
  
   [Proposal 2] Same colors as xwiki.org toucan
  
   XE -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XE2.png
   XWATCH -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWATCH2.png
   XMANAGER -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XMANAGER2.png
   XWORKSPACES -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XWORKSPACES2/XWORKSPACES2.png
  
   [Proposal 3] Brighter colors
  
   XE -
  
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XE3.png
   XWATCH -
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWATCH3.png
   XMANAGER -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XMANAGER3.png
   XWORKSPACES -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XE3/XWORKSPACES3.png
  
   [Proposal 4] Gradient - I could try make some gradient proposal.
   This would
   add images for the page bakcground gradient
  
   XWATCH -
  
  
 
 http://incubator.myxwiki.org/xwiki/bin/download/ColorThemes/XMANAGER4/XMANAGER4.png
  
   Thanks,
   Caty
  ___
  users mailing list
  users@xwiki.org
  http://lists.xwiki.org/mailman/listinfo/users
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
Guillaume Lerouge
Product Manager - XWiki
Skype: wikibc
Twitter: glerouge
http://guillaumelerouge.com/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Continuing XWiki experiments ... Was: The missing quality of xwiki?

2009-09-25 Thread Carsten Heyl
Hi XWiki Users!

First a big thanks to Jerome and Vincent who encouraged me to keep on 
trying with xwiki!

I downloaded the 2.0rc2 and tested some more stuff.

1. A small bug in the blog area
I added a blog on my own and got a page containing 
#includeForm('Blog.CategorySheet').
That form seems to be missing.

2. We currently use TWiki and would need to migrate to TWIki.

I found TWiki-Syntax-Support mentioned but could not find doc about how 
to activate it.
I would like to convert pages from TWiki-Syntax to XWiki 2.0-Syntax.
Would that be possible to do wirh XWiki?
Perhaps by going TWiki Syntax - HTML - XWiki 2.0 Syntax?

(We have about 5000 TWIki-Pages and no classes of idle students around ...)

3. I'm missing monospace in WYSIWYG-Editor? Anywhere hidden?

4. Forms

We use TWiki-Forms for structured Metadata.
I guess I could implement my own class in java to get something similiar 
in XWiki?
Does XWiki have something to add and edit structured meta data to pages 
without going through java?
Maybe using groovy?

Greetings and thanks in advance,
Carsten





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


Re: [xwiki-users] Continuing XWiki experiments ... Was: The missing quality of xwiki?

2009-09-25 Thread Marius Dumitru Florea
Hi

Carsten Heyl wrote:
 Hi XWiki Users!
 
 First a big thanks to Jerome and Vincent who encouraged me to keep on 
 trying with xwiki!
 
 I downloaded the 2.0rc2 and tested some more stuff.
 
 1. A small bug in the blog area
 I added a blog on my own and got a page containing 
 #includeForm('Blog.CategorySheet').
 That form seems to be missing.
 
 2. We currently use TWiki and would need to migrate to TWIki.
 
 I found TWiki-Syntax-Support mentioned but could not find doc about how 
 to activate it.
 I would like to convert pages from TWiki-Syntax to XWiki 2.0-Syntax.
 Would that be possible to do wirh XWiki?
 Perhaps by going TWiki Syntax - HTML - XWiki 2.0 Syntax?
 
 (We have about 5000 TWIki-Pages and no classes of idle students around ...)
 
 3. I'm missing monospace in WYSIWYG-Editor? Anywhere hidden?

See 
http://www.xwiki.org/xwiki/bin/view/FAQ/EnableAligntoolbaronWYSIWYGeditor 
. The same solution applies for monospace. You just have to add 
teletype  to the toolbar configuration parameter/property.

Hope this helps,
Marius

 
 4. Forms
 
 We use TWiki-Forms for structured Metadata.
 I guess I could implement my own class in java to get something similiar 
 in XWiki?
 Does XWiki have something to add and edit structured meta data to pages 
 without going through java?
 Maybe using groovy?
 
 Greetings and thanks in advance,
 Carsten
 
 
 
 
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Continuing XWiki experiments ... Was: The missing quality of xwiki?

2009-09-25 Thread Vincent Massol
Hi Carsten,

On Sep 25, 2009, at 5:33 PM, Carsten Heyl wrote:

 Hi XWiki Users!

 First a big thanks to Jerome and Vincent who encouraged me to keep  
 on trying with xwiki!

And you can now try http://playground.xwiki.org/xwiki/bin/view/Main/  
with the new XWiki 2.0 final version :)
Note that I've applied what I suggested re the banner.

 I downloaded the 2.0rc2 and tested some more stuff.

 1. A small bug in the blog area
 I added a blog on my own and got a page containing  
 #includeForm('Blog.CategorySheet').
 That form seems to be missing.

We need to know more about what you did. Also when you say blog do you  
mean blog post or a full-fledged blog system?

 2. We currently use TWiki and would need to migrate to TWIki.

 I found TWiki-Syntax-Support mentioned but could not find doc about  
 how to activate it.
 I would like to convert pages from TWiki-Syntax to XWiki 2.0-Syntax.
 Would that be possible to do wirh XWiki?
 Perhaps by going TWiki Syntax - HTML - XWiki 2.0 Syntax?

We have some converted but it's not perfect. You can try it and report  
issue though.
To activate it see:
http://platform.xwiki.org/xwiki/bin/view/Features/PageEditing

 (We have about 5000 TWIki-Pages and no classes of idle students  
 around ...)

Hehe We're building full wiki importer but it's not fully ready yet.
Right now you can write some REST script to take your twiki content  
and put is a xwiki page content and then xwiki can convert it or  
display it natively in twiki-syntax (but with limitations). Conversion  
is recommended.

 3. I'm missing monospace in WYSIWYG-Editor? Anywhere hidden?

 4. Forms

 We use TWiki-Forms for structured Metadata.
 I guess I could implement my own class in java to get something  
 similiar in XWiki?
 Does XWiki have something to add and edit structured meta data to  
 pages without going through java?
 Maybe using groovy?

Yes definitely, see the DevGuide (which will be updated for 2.0 in a  
few days):
http://platform.xwiki.org/xwiki/bin/view/DevGuide/

More specifically:
http://platform.xwiki.org/xwiki/bin/view/DevGuide/FAQTutorial
http://www.theserverside.com/tt/articles/article.tss?l=XWiki

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


Re: [xwiki-users] Continuing XWiki experiments ... Was: The missing quality of xwiki?

2009-09-25 Thread Guillaume Lerouge
Hi Carsten,

On Fri, Sep 25, 2009 at 5:51 PM, Marius Dumitru Florea 
mariusdumitru.flo...@xwiki.com wrote:

 Hi

 Carsten Heyl wrote:
  Hi XWiki Users!
 
  First a big thanks to Jerome and Vincent who encouraged me to keep on
  trying with xwiki!
 
  I downloaded the 2.0rc2 and tested some more stuff.
 
  1. A small bug in the blog area
  I added a blog on my own and got a page containing
  #includeForm('Blog.CategorySheet').
  That form seems to be missing.


That's because you need to switch the blog homepage to XWiki 1.0 syntax for
now. We'll correct this in the near future. Also, check that you added a
Blog.BlogClass object to your page and filled-in its values.


 
  2. We currently use TWiki and would need to migrate to TWIki.
 
  I found TWiki-Syntax-Support mentioned but could not find doc about how
  to activate it.
  I would like to convert pages from TWiki-Syntax to XWiki 2.0-Syntax.
  Would that be possible to do wirh XWiki?
  Perhaps by going TWiki Syntax - HTML - XWiki 2.0 Syntax?
 
  (We have about 5000 TWIki-Pages and no classes of idle students around
 ...)
 
  3. I'm missing monospace in WYSIWYG-Editor? Anywhere hidden?

 See
 http://www.xwiki.org/xwiki/bin/view/FAQ/EnableAligntoolbaronWYSIWYGeditor
 . The same solution applies for monospace. You just have to add
 teletype  to the toolbar configuration parameter/property.

 Hope this helps,
 Marius

 
  4. Forms
 
  We use TWiki-Forms for structured Metadata.
  I guess I could implement my own class in java to get something similiar
  in XWiki?
  Does XWiki have something to add and edit structured meta data to pages
  without going through java?
  Maybe using groovy?


You need neither Groovy nor Java to do this in XWiki. You can use XClasses
and XObjects to create structured documents right into your wiki. Look at
the following pages for more information:

   - http://platform.xwiki.org/xwiki/bin/view/Main/SecondGenerationWiki
   - http://platform.xwiki.org/xwiki/bin/view/DevGuide/DataModel
   - http://platform.xwiki.org/xwiki/bin/view/DevGuide/FAQTutorial

Guillaume


 
  Greetings and thanks in advance,
  Carsten
 
 
 
 
 
  ___
  users mailing list
  users@xwiki.org
  http://lists.xwiki.org/mailman/listinfo/users
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users




-- 
Guillaume Lerouge
Product Manager - XWiki
Skype: wikibc
Twitter: glerouge
http://guillaumelerouge.com/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] xwiki documentation relaunch

2009-09-25 Thread roman.friesen
Hello,

in my opinion, the current xwiki documentation is not optimal in many
ways:
- not well structured
- not up-to-date
- unclear where/who/how should take care about that (it's for everyone
editable now, but it doesn't seem to be a really good approach...)

I would suggest to separate the final documentation and writing of the
documentation, for example with two spaces:
1) final docs
   - no comments
   - editable only for the doc team
2) staging (writing, reviewing etc.)
   - with comments
   - editable for all registered users
Among other things (quality), in this way all users can contribute to
the documentation without having fear to make mistakes.

If you like, please create a staging space for the Xwiki Enterprise
documentation, then I could start with a basic structure, process
description etc.

Best regards,
Roman
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] xwiki documentation relaunch

2009-09-25 Thread Vincent Massol
Hi,

On Sep 25, 2009, at 6:19 PM, roman.frie...@ropardo.de 
roman.frie...@ropardo.de 
  wrote:

 Hello,

 in my opinion, the current xwiki documentation is not optimal in many
 ways:
 - not well structured
 - not up-to-date
 - unclear where/who/how should take care about that (it's for everyone
 editable now, but it doesn't seem to be a really good approach...)

 I would suggest to separate the final documentation and writing of the
 documentation, for example with two spaces:
 1) final docs
   - no comments
   - editable only for the doc team
 2) staging (writing, reviewing etc.)
   - with comments
   - editable for all registered users
 Among other things (quality), in this way all users can contribute to
 the documentation without having fear to make mistakes.

 If you like, please create a staging space for the Xwiki Enterprise
 documentation, then I could start with a basic structure, process
 description etc.

We already have a staging area:
http://dev.xwiki.org/xwiki/bin/view/Drafts/

Thanks
-Vincent

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


Re: [xwiki-users] xwiki documentation relaunch

2009-09-25 Thread Vincent Massol

On Sep 25, 2009, at 6:19 PM, roman.frie...@ropardo.de 
roman.frie...@ropardo.de 
  wrote:

 Hello,

 in my opinion, the current xwiki documentation is not optimal in many
 ways:
 - not well structured
 - not up-to-date
 - unclear where/who/how should take care about that (it's for everyone
 editable now, but it doesn't seem to be a really good approach...)

 I would suggest to separate the final documentation and writing of the
 documentation, for example with two spaces:
 1) final docs
   - no comments
   - editable only for the doc team

This is anti-wiki... :)

-Vincent

 2) staging (writing, reviewing etc.)
   - with comments
   - editable for all registered users
 Among other things (quality), in this way all users can contribute to
 the documentation without having fear to make mistakes.

 If you like, please create a staging space for the Xwiki Enterprise
 documentation, then I could start with a basic structure, process
 description etc.

 Best regards,
 Roman
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] xwiki documentation relaunch

2009-09-25 Thread roman.friesen
 This is anti-wiki... :)
the main thing is, it is not anti-Xwiki ;)

Roman

-Ursprüngliche Nachricht-
Von: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] Im Auftrag von 
Vincent Massol
Gesendet: Freitag, 25. September 2009 18:24
An: XWiki Users
Betreff: Re: [xwiki-users] xwiki documentation relaunch


On Sep 25, 2009, at 6:19 PM, roman.frie...@ropardo.de 
roman.frie...@ropardo.de 
  wrote:

 Hello,

 in my opinion, the current xwiki documentation is not optimal in many
 ways:
 - not well structured
 - not up-to-date
 - unclear where/who/how should take care about that (it's for everyone
 editable now, but it doesn't seem to be a really good approach...)

 I would suggest to separate the final documentation and writing of the
 documentation, for example with two spaces:
 1) final docs
   - no comments
   - editable only for the doc team

This is anti-wiki... :)

-Vincent

 2) staging (writing, reviewing etc.)
   - with comments
   - editable for all registered users
 Among other things (quality), in this way all users can contribute to
 the documentation without having fear to make mistakes.

 If you like, please create a staging space for the Xwiki Enterprise
 documentation, then I could start with a basic structure, process
 description etc.

 Best regards,
 Roman
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] [ANN] XWiki Enterprise and XWiki Enterprise Manager 2.0 released

2009-09-25 Thread Thomas Mortagne
The XWiki development team is pleased to announce the release of XWiki
Enterprise and XWiki Enterprise Manager 2.0.

Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download

More than 400 issues were fixed from XWiki Enterprise 1.9.3 to XWiki
Enterprise 2.0.

Many thanks to the very active community for all the reports and the
contributions !

Main changes from 1.9.3:
* new Colibri skin and easy color modifications
* many new 2.0 macro and improvements on existing macros
* new wiki based 2.0 macros
* new event distribution and clustering support
* many WYSIWYG improvements
* many rendering improvements
* many general UI improvements
* new Swedish and Korean translation and updated translations for lots
of other languages

For more informations see the releases notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise20
and http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM20

Thanks
 -The XWiki dev team
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [xwiki-devs] [ANN] XWiki Enterprise and XWiki Enterprise Manager 2.0 released

2009-09-25 Thread Vincent Massol
Woohooo!

I'd like to congratulate the whole dev team and all the contributors.  
There's been some very hard work and late nights to achieve this  
result and we can all be proud of it!

-Vincent

On Sep 25, 2009, at 6:49 PM, Thomas Mortagne wrote:

 The XWiki development team is pleased to announce the release of XWiki
 Enterprise and XWiki Enterprise Manager 2.0.

 Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download

 More than 400 issues were fixed from XWiki Enterprise 1.9.3 to XWiki
 Enterprise 2.0.

 Many thanks to the very active community for all the reports and the
 contributions !

 Main changes from 1.9.3:
 * new Colibri skin and easy color modifications
 * many new 2.0 macro and improvements on existing macros
 * new wiki based 2.0 macros
 * new event distribution and clustering support
 * many WYSIWYG improvements
 * many rendering improvements
 * many general UI improvements
 * new Swedish and Korean translation and updated translations for lots
 of other languages

 For more informations see the releases notes at:
 http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise20
 and http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM20

 Thanks
 -The XWiki dev team
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] [ANN] XWiki Enterprise and XWiki Enterprise Manager 2.0 released

2009-09-25 Thread Roman Friesen
I have just read the release notes... I'm really impressed...

Thank you very much!
Roman


Am Freitag, den 25.09.2009, 18:49 +0200 schrieb Thomas Mortagne:
 The XWiki development team is pleased to announce the release of XWiki
 Enterprise and XWiki Enterprise Manager 2.0.
 
 Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
 
 More than 400 issues were fixed from XWiki Enterprise 1.9.3 to XWiki
 Enterprise 2.0.
 
 Many thanks to the very active community for all the reports and the
 contributions !
 
 Main changes from 1.9.3:
 * new Colibri skin and easy color modifications
 * many new 2.0 macro and improvements on existing macros
 * new wiki based 2.0 macros
 * new event distribution and clustering support
 * many WYSIWYG improvements
 * many rendering improvements
 * many general UI improvements
 * new Swedish and Korean translation and updated translations for lots
 of other languages
 
 For more informations see the releases notes at:
 http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise20
 and http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM20
 
 Thanks
  -The XWiki dev team
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

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


[xwiki-users] XWiki Enterprise and XWiki Enterprise Manager 2.0 released

2009-09-25 Thread Rieken, Joshua
The new release looks great! Thank you for all the hard work, and I look 
forward to contributing as well!

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


Re: [xwiki-users] XWiki Enterprise and XWiki Enterprise Manager 2.0 released

2009-09-25 Thread Vincent Massol

On Sep 25, 2009, at 10:02 PM, Rieken, Joshua wrote:

 The new release looks great! Thank you for all the hard work, and I  
 look forward to contributing as well!

great, we're eagerly waiting :)

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


Re: [xwiki-users] XWiki Enterprise and XWiki Enterprise Manager 2.0 released

2009-09-25 Thread Ecaterina Valica
there are still lots of things to be improved, so any contribution is
welcomed :)

Thanks,
Caty

On Fri, Sep 25, 2009 at 23:08, Vincent Massol vinc...@massol.net wrote:


 On Sep 25, 2009, at 10:02 PM, Rieken, Joshua wrote:

  The new release looks great! Thank you for all the hard work, and I
  look forward to contributing as well!

 great, we're eagerly waiting :)

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

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