Re: [xwiki-users] 3 x XWiki questions from a newbie

2009-09-16 Thread Sergiu Dumitriu
Christophe FRAULE wrote:
> Hello,
> 
>  
> 
> I'm a newbie with XWiki and I'm mostly experimenting with it so see if and
> how we could use it internally.
> 
>  
> 
> I'm running XWiki 1.9.3.22597 on Tomcat6 with Fedora 11/MySQL 5.1.37 and had
> encountered no particular problem except that I have to launch and run the
> OpenOffice server externally on a regular account because it would not start
> when launched by XWiki. I suspect it's a memory access right issue because
> launching manually from the tomcat account I get this
> 
>  
> 
> -sh-4.0$ /usr/bin/soffice -headless
> -accept=socket,host=127.0.0.1,port=8100;urp; -nofirststartwizard
> 
> creation of executable memory area failed: Permission denied
> 
> creation of executable memory area failed: Permission denied
> 
> creation of executable memory area failed: Permission denied
> 
> creation of executable memory area failed: Permission denied
> 
> creation of executable memory area failed: Permission denied
> 
> creation of executable memory area failed: Permission denied
> 
> creation of executable memory area failed: Permission denied
> 
>  
> 
> It's just the way the tomcat account is set I believe. (Seeing no xwiki
> user, I assume xwiki is using the tomcat account to launch soffice).
> 
>  
> 
> I have 3 x questions regarding XWiki:
> 
>  
> 
> 1)  We want to use 'spaces' (no virtual XWiki) to create boundaries
> between what users can see. I have created Space A, User A and configured
> access rights so that User A can access Space A only. The problem is that
> when User A log into XWiki, XWiki returns and error message because User A
> tries to land on the main page =>
> 
> a.   Can we configure XWiki so that User A automatically lands on Space
> A when login ? If yes, how ?

You can write a little script instead of the default content of 
Main.WebHome, one which computes the right space for the current user, 
and redirects there. Something like:

#set($space = $context.user.substring($context.user.indexOf('.')))
#set($space = "${space.substring(1)}.WebHome")
$response.sendRedirect($xwiki.getURL($space))

> b.  I assume also that performing a search User A will not be able to
> see anything out of his user space A. Right ?

It depends. The default search pages filter documents according to the 
user rights, but a user can write his own query to retrieve all document 
names, although he won't be able to access the content of those 
documents. If document names should also be private, it can easily be 
fixed by changing the Java code a bit (and actually it should).

> 
> 2)  I have made a quick Groovy/SQL test polling a rather large table out
> of an external database and displaying the result into HTML on XWiki.
> Scrolling down the dynamically generated XWiki HTML table, I suddenly got
> into a black hole or let's say the end of the XWiki web page =>
> 
> a.What is the way in XWiki to control the maximum length/size (or
> maximum characters ?) of a Web page ?

The limit for the document content is a soft one: at least 200k 
characters, which is rounded up to the equivalent database data type, 
which for MySQL becomes mediumtext, large enough to hold 16M. Then, 
there is the max packet size, which is configured on the server, and it 
is not set by XWiki.

If you're talking about a skin issue, meaning that the page suddenly 
ends, I think somebody else reported a similar problem a long time ago, 
but I don't remember what was the cause, and whether it was fixed or 
not. Can you be more specific about what's happening?

> 
> 3)  Is it possible to programmatically add pages into Xwiki based on the
> content of an external database. The idea here is to run a script (via Xwiki
> scheduler ?) to pull records out of an external database. For each (new)
> record, then a new XWiki page would be created which users could edit to
> bind their own additional pieces of information. When a database record is
> deleted, the corresponding XWiki pages would be move to the 'gone' space.
> 

Yes, it is possible, but this requires more time to write. A few 
pointers: there is an SQL plugin for XWiki which allows you to connect 
to an external database, there is the task scheduler which allows you to 
execute jobs at a given time/period, and the API allows you to 
manipulate documents as you like: create, rename, change, delete, etc.

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


[xwiki-users] Changing Color Themes in Colibri

2009-09-16 Thread Baratóvsk
Hi,

Sorry if I'm missing something but, how can I change the ColorTheme of the
Colibri skin?
Is it possible to change the theme on a Space level?

Also, I'd like to congratulate on the new skin. It's light and clean,
perfect as the default skin for the wiki, and a perfect starting point for a
custom skin.

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


[xwiki-users] 3 x XWiki questions from a newbie

2009-09-16 Thread Christophe FRAULE
Hello,

 

I'm a newbie with XWiki and I'm mostly experimenting with it so see if and
how we could use it internally.

 

I'm running XWiki 1.9.3.22597 on Tomcat6 with Fedora 11/MySQL 5.1.37 and had
encountered no particular problem except that I have to launch and run the
OpenOffice server externally on a regular account because it would not start
when launched by XWiki. I suspect it's a memory access right issue because
launching manually from the tomcat account I get this

 

-sh-4.0$ /usr/bin/soffice -headless
-accept=socket,host=127.0.0.1,port=8100;urp; -nofirststartwizard

creation of executable memory area failed: Permission denied

creation of executable memory area failed: Permission denied

creation of executable memory area failed: Permission denied

creation of executable memory area failed: Permission denied

creation of executable memory area failed: Permission denied

creation of executable memory area failed: Permission denied

creation of executable memory area failed: Permission denied

 

It's just the way the tomcat account is set I believe. (Seeing no xwiki
user, I assume xwiki is using the tomcat account to launch soffice).

 

I have 3 x questions regarding XWiki:

 

1)  We want to use 'spaces' (no virtual XWiki) to create boundaries
between what users can see. I have created Space A, User A and configured
access rights so that User A can access Space A only. The problem is that
when User A log into XWiki, XWiki returns and error message because User A
tries to land on the main page =>

a.   Can we configure XWiki so that User A automatically lands on Space
A when login ? If yes, how ?

b.  I assume also that performing a search User A will not be able to
see anything out of his user space A. Right ?

 

2)  I have made a quick Groovy/SQL test polling a rather large table out
of an external database and displaying the result into HTML on XWiki.
Scrolling down the dynamically generated XWiki HTML table, I suddenly got
into a black hole or let's say the end of the XWiki web page =>

a.What is the way in XWiki to control the maximum length/size (or
maximum characters ?) of a Web page ?

 

3)  Is it possible to programmatically add pages into Xwiki based on the
content of an external database. The idea here is to run a script (via Xwiki
scheduler ?) to pull records out of an external database. For each (new)
record, then a new XWiki page would be created which users could edit to
bind their own additional pieces of information. When a database record is
deleted, the corresponding XWiki pages would be move to the 'gone' space.

 

Many Many thanks for your help and for providing us such a powerful tool.

 

Regards,

 

Christobald.

 

 

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


[xwiki-users] need help for a new project

2009-09-16 Thread Bodin Grégory

Hello! (excuse my broken English) 


I embarked on a project Xwiki (knowledge base). 
I am a beginner, I know nothing about Java and other ... 


So I need help, here are my questions: 


- What is the database used by XWIKI? 


- How do I create a page template? How to make a form? 


- How to view a list of pages in a space (home page)? Can I put a menu listing? 


- Can I get a different display of on page under different user? 


thank you for the help you can give me!
_
Messenger débarque dans Hotmail ! Essayez-le !
http://www.windowslive.fr/hotmail/web-messenger/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] problem connceting to openoffice server

2009-09-16 Thread Asiri Rathnayake
Hi Paul,

On Wed, Sep 16, 2009 at 9:08 PM, Paul Rijnhout  wrote:

> Hi,
>
> I' running Xwiki (XWiki Enterprise 1.9.3.22597) on a windows machine with
> Tomcat 5.5.28 and MySQL 5.1. I've also installed openoffice 3.1.1 and have
> it run as a service with the command  'soffice -headless
> -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard'. Still
> XE can not start/connect to the server. I've checked and changed de
> xwiki.properties file, but no changes are picked up by XE. Anyone, who can
> help me get this thing to work?
>
>
can you post your xwiki.log messages corresponding to this behavior?

Normally you get an indication of what went wrong when trying to connect to
openoffice server.

- Asiri


> Thanks
>
> Paul
>
>
> ___
> 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] problem connceting to openoffice server

2009-09-16 Thread Paul Rijnhout
Hi,

I' running Xwiki (XWiki Enterprise 1.9.3.22597) on a windows machine with 
Tomcat 5.5.28 and MySQL 5.1. I've also installed openoffice 3.1.1 and have it 
run as a service with the command  'soffice -headless 
-accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard'. Still XE 
can not start/connect to the server. I've checked and changed de 
xwiki.properties file, but no changes are picked up by XE. Anyone, who can help 
me get this thing to work?

Thanks

Paul


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


Re: [xwiki-users] xoffice2003 installation problem

2009-09-16 Thread Florin Ciubotaru
Hi Michael,

On 09/16/2009 10:14 AM, Michael Beetz wrote:
> Hi Teofil,
>
> May I kindly ask you for an expected solution date - like "within 1 
> day, 1 week, 1 month, 1 year" - I have to schedule some of my 
> activities around it.
>
> Thanks
> mb

We'll provide a solution in one week.
The installer will be fixed as soon as we sign all assemblies with a 
strong name. It may take a few days to get approval to sign some of the 
third party dependencies ourselves or to replace them with already 
existing ones. This is something we managed to skip for the 2007 
version, but it's a requirement for Office 2003.

If you're interested in the roadmap: XWord-2003 is in its' alpha stage. 
The first official release (milestone 1) will be in the first half of 
October.

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


Re: [xwiki-users] livetable broken if I use MyClas.property

2009-09-16 Thread oana . tabaranu
Hi Rune,

This problem was just resolved and will be included in the next release:
http://jira.xwiki.org/jira/browse/XWIKI-4349

Oana

> Well, I am using v1.0.
> But I have now located the error:
> If I don't uses the _avatar or _image column, it works fine.
> If I look in the JSON page being used there seems to be a ',' too much.
> Right after the _avatar line.
>
> First the faulty JSON >>>
> "doc_creator" : "Administrator"
> ,
> "_avatar" : " alt='XWiki.Admin' title='XWiki.Admin'/>",
> ,
> "first_name" : "Administrator",
> "first_name_value" : "Administrator",
> "first_name_url" : ""
> ,
> "last_name" : "xe.index.users.emptyvalue",
> "last_name_value" : "",
> "last_name_url" : ""
> ,
> "email" : "webmas...@xwiki.org",
> "email_value" : "webmas...@xwiki.org",
> "email_url" : ""
> }
> ,  {
> <<<
> And then the one without the _avatar

> "doc_creator" : "Administrator"
> ,
> "first_name" : "Administrator",
> "first_name_value" : "Administrator",
> "first_name_url" : ""
> ,
> "last_name" : "xe.index.users.emptyvalue",
> "last_name_value" : "",
> "last_name_url" : ""
> ,
> "email" : "webmas...@xwiki.org",
> "email_value" : "webmas...@xwiki.org",
> "email_url" : ""
> }
> <<<
> It is easy enough to fix, in the XWiki.LiveTableResultsMacros you should
> remove the ',' after the lines actually printing the _(columnname)
>
> I hope someone in the development team reads this and can apply this
> changes.
>
> -Rune
>
>
> -Oprindelig meddelelse-
> Fra: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] På vegne af
> Oana Tabaranu
> Sendt: 14. september 2009 14:21
> Til: XWiki Users
> Emne: Re: [xwiki-users] livetable broken if I use MyClas.property
>
> Hi Rune,
>
> Which xwiki syntax are you using? Try using 1.0 for the page which
> contains the code below.
>
> Oana
>
> Rune Hylleberg wrote:
>> First I got in trouble using my own class, but even if I copy  the code
>> from the livetable macro inline documentation :
>>
>>
>>
>> #set($columns = [ "_avatar", "first_name", "last_name", "email"])
>>
>> #set($columnsProperties = {
>>
>>  "first_name" : { "type" : "text" , "size" : 10, "link"
>> : "view"},
>>
>>  "last_name" : { "type" : "text" , "size" : 10, "link" :
>> "view"},
>>
>>  "email" : { "type" : "text" , "size" : 20, "link" :
>> "editor"},
>>
>>  "_avatar" : { "type" : "none" , "size" : 20, "link" :
>> "none", "html" : "true", "sortable":false }
>>
>>})
>>
>> #set($options = { "className":"XWiki.XWikiUsers",
>>
>>"translationPrefix" : "xe.index.users.",
>>
>>"tagCloud" : true,
>>
>>"rowCount": 15 })
>>
>> #livetable("userstable" $columns $columnsProperties $options)
>>
>>
>>
>> I get a empty table.  It happens in both XE 2.0 M 4 and XE 2.0 RC 1
>>
>> Am I doing something wrong or is it a bug?
>>
>>
>>
>> -Rune
>>
>> ___
>> 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


[xwiki-users] uploading and saving attachments

2009-09-16 Thread Rune Hylleberg
I've made my own upload form because I need to intercept an upload and
save it different places at once, potentially resize it in the process.

Essentially I use the fileupload plugin. Grep the data  and  use the
$doc.addAttachment(filename, byte[]) function. 

I do however  run into trouble. First It all goes fine, I can upload
fine and the attachment is present  in both document. But after some
time it simply disappears. Ether it is not saved correctly (only in
cache?) or something else is  terribly wrong. 

Do I need to call some kind of save function?

In the admin dashboard I can see that I made some new documents and
uploaded files to them. But on the Document itself there doesn't seem to
be history of when the file was uploaded, nor a option to role back.

So any help or ideas  would be appreciated.

 

Here is the attachment saving part of the code (don't mind the file
naming code it works!):

  #set( $up = $xwiki.getPlugin("fileupload"))

  #set( $wallCardData  = $up.getFileItemData(
$wallCardName.toLowerCase() ) )

  #if($listtool.size($wallCardData) > 0)

#set( $ext =
"#fileextension($up.getFileName($wallCardName.toLowerCase()))")

## Store the original file in XWiki.WallCards as
--

#set( $oriFileName =
"${doc.getSpace()}-${doc.getName()}-$wallCardName$ext" )

#set( $oriatt = $xwiki.getDocument( $oriFileDocument
).addAttachment($oriFileName,
$up.getFileItemData($wallCardName.toLowerCase()) ) )

#set( $att= $doc.addAttachment( "$wallCardName$ext",
$up.getFileItemData($wallCardName.toLowerCase())) )

  #end 

 

-Rune

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


Re: [xwiki-users] livetable broken if I use MyClas.property

2009-09-16 Thread Rune Hylleberg
Well, I am using v1.0.
But I have now located the error:
If I don't uses the _avatar or _image column, it works fine.
If I look in the JSON page being used there seems to be a ',' too much. Right 
after the _avatar line.

First the faulty JSON >>>
"doc_creator" : "Administrator"
,
"_avatar" : "",
,
"first_name" : "Administrator",
"first_name_value" : "Administrator",
"first_name_url" : ""
,
"last_name" : "xe.index.users.emptyvalue",
"last_name_value" : "",
"last_name_url" : ""
,
"email" : "webmas...@xwiki.org",
"email_value" : "webmas...@xwiki.org",
"email_url" : ""
}
,  {
<<<
And then the one without the _avatar
>>>
"doc_creator" : "Administrator"
,
"first_name" : "Administrator",
"first_name_value" : "Administrator",
"first_name_url" : ""
,
"last_name" : "xe.index.users.emptyvalue",
"last_name_value" : "",
"last_name_url" : ""
,
"email" : "webmas...@xwiki.org",
"email_value" : "webmas...@xwiki.org",
"email_url" : ""
}
<<<
It is easy enough to fix, in the XWiki.LiveTableResultsMacros you should remove 
the ',' after the lines actually printing the _(columnname)

I hope someone in the development team reads this and can apply this changes.

-Rune


-Oprindelig meddelelse-
Fra: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] På vegne af Oana 
Tabaranu
Sendt: 14. september 2009 14:21
Til: XWiki Users
Emne: Re: [xwiki-users] livetable broken if I use MyClas.property

Hi Rune,

Which xwiki syntax are you using? Try using 1.0 for the page which 
contains the code below.

Oana

Rune Hylleberg wrote:
> First I got in trouble using my own class, but even if I copy  the code
> from the livetable macro inline documentation :
>
>  
>
> #set($columns = [ "_avatar", "first_name", "last_name", "email"])
>
> #set($columnsProperties = {
>
>  "first_name" : { "type" : "text" , "size" : 10, "link"
> : "view"},
>
>  "last_name" : { "type" : "text" , "size" : 10, "link" :
> "view"},
>
>  "email" : { "type" : "text" , "size" : 20, "link" :
> "editor"},
>
>  "_avatar" : { "type" : "none" , "size" : 20, "link" :
> "none", "html" : "true", "sortable":false }
>
>})
>
> #set($options = { "className":"XWiki.XWikiUsers",
>
>"translationPrefix" : "xe.index.users.",
>
>"tagCloud" : true,
>
>"rowCount": 15 })
>
> #livetable("userstable" $columns $columnsProperties $options)
>
>  
>
> I get a empty table.  It happens in both XE 2.0 M 4 and XE 2.0 RC 1
>
> Am I doing something wrong or is it a bug?
>
>  
>
> -Rune
>
> ___
> 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


[xwiki-users] Could not create a DBCP pool

2009-09-16 Thread mogruith


Hi all,

I'm a newbie on xwiki. I would like to use xwiki entreprise with an oracle
(10.2.0.4) database. Because of using oracle, I put jdbc drivers (ojdbc14.jar)
in $TOMCAT_HOME/lib/ (by the way, I ve an another error : no ocijdbc10 in
java.library.path (where I set it ?))


When I start xwiki, I've several errors.

Last one is : Wrapped Exception: Could not create a DBCP pool. There is an error
in the hibernate configuration file, please review it.


Here is my hibernate.cfg.xml :


http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd";>


  

false
true

false
50
5
3
1
1
20
12
20











jdbc:oracle:oci:@xwiki-server:1521:xwiki
xwiki
xwiki
oracle.jdbc.driver.OracleDriver
org.hibernate.dialect.Oracle10gDialect
com.xpn.xwiki.store.DBCPConnectionProvider
2
2
true
0





  





Here is tomcat's error :

Etat HTTP 500 -

type Rapport d'exception

message

description Le serveur a rencontré une erreur interne () qui l'a empêché de
satisfaire la requête.

exception

javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error number 3 in
0: Could not initialize main XWiki context
Wrapped Exception: Error number 3001 in 3: Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from
param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
Wrapped Exception: Could not create a DBCP pool. There is an error in the
hibernate configuration file, please review it.
   
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)
   
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)
   
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
   
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:155)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
   
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
   
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
   
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)

cause mère

com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main
XWiki context
Wrapped Exception: Error number 3001 in 3: Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager from
param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
Wrapped Exception: Could not create a DBCP pool. There is an error in the
hibernate configuration file, please review it.
com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:339)
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:400)
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135)
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115)
   
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
   
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
   
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:155)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
   
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
   
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
   
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)



Help will be really appreciated.

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


Re: [xwiki-users] Good News for the XWiki Open Source Project: French State Research funding

2009-09-16 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team
Congratulations! Even though this is important, I am sure this is one a 
new small step toward an even greater product! I would like to "hijack"  
this thread to thank all  devs and users to make XWiki better every day.

Best wishes for a highly productive new course!

Ricardo

Ludovic Dubost wrote:
>
> Hi XWiki Community,
>
> I'm happy to share some good news for the XWiki Platform and Community 
> that we got today.
>
> We (XWiki SAS) had responded to a French Government Call for Web 2.0 
> Projects in early July and we got the good news today that our project 
> was selected with 43 other projects (among 340 proposals) to receive 
> state funding.
>
> In this project, where the research entity INRIA/ECOO and Open Source 
> company Mandriva are also participating, we have proposed to enhance 
> XWiki's social features and integrate Real-Time capabilities in XWiki 
> (both for editing information and viewing information in real-time).
>
> We already worked with INRIA/ECOO on XWiki Concerto (offline and 
> mobile XWiki) which is the specialist in France and probably Europe of 
> Operational Transformation Technology (which is used in Google Wave 
> for real-time capabilities).
>
> We'll talk more about the features this will bring to XWiki when we 
> formally launch the project. We don't know yet how fast it will go to 
> formalize the public funding and start the project (it usually takes 
> at least a few month).
>
> It's great to be able to continue to work on innovative technologies 
> in the Wiki space, which is not that easy as we have already so much 
> work to package and polish all the great ideas and features that are 
> already in the XWiki platform.
>
> It's also great to see the progress the XWiki software has made in the 
> last year, from XWiki 1.8 to XWiki 2.0 coming out soon. The new 
> rendering, new Wysiwyg editor, the Office Importer and now the new 
> skin are making XWiki do a lightyear of progress in just one year !
>
> Ludovic
>
> 
>
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>   

-- 
Ricardo Rodríguez
Your EPEC Network ICT Team

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


Re: [xwiki-users] Unable to indent table under numbering

2009-09-16 Thread Vincent Gerris
Hi Marius,

On Tue, 2009-09-15 at 18:00 +0300, Marius Dumitru Florea wrote:
> Hi Vincent,
> 
> Vincent Gerris wrote:
> > Hi Marius,
> > 
> > On Tue, 2009-09-15 at 12:03 +0300, Marius Dumitru Florea wrote:
> >> Vincent Gerris wrote:
> >>> Hi Marius,
> >>>
> >>>
> >>>
> >>> On Tue, 2009-09-15 at 11:15 +0300, Marius Dumitru Florea wrote:
>  Hi Vincent,
> 
>  Vincent Gerris wrote:
> > Dear all,
> >
> > I have been struggling with lining out a table onder a numbering.
> > For example, I have numbers 1-5 (in the referred to as 1.).
> > When I create a table in the WYSIWYG editor, under lets say 2, at first
> > sometimes this goes right, and the table is indented in the same way
> > that text is (the expected behaviour).
> >
> > Sometimes when I change something on the page the table is suddenly no
> > longer indented, resulting in the next number (3) changing to 1.
>  Your description is vague. Can you tell me the exact steps to reproduce 
>  the issue? What did you change on the page before the numbered list was 
>  broken? Also, what browser did you use?
> 
> >>> I use Firefox on Linux.
> >>> Steps to reproduce:
> >>>
> >>> 1. Edit a page in WYSIWYG mode 
> >>> 2. Create a number list of 3 items  by pressing the symbol (1,2,3).
> >>> So I get 1. , input some text, then 2. appears, I input some text and
> >>> press enter again.
> >>> 3. I go back with the cursor to after 1. and the entered text and press
> >>> SHIFT + ENTER, so the cursor moves to under the 1. , a bit indented.
> >>> 4. Then I insert a table (2 by 2 for the test), which shows up at the
> >>> place the cursor was.
> >>> 5. I repeat this step for 2. , so that I have two tables, a bit indented
> >>> under 1. and 2. .
> >>> 6. Then I press the Show button (to view the page) and then already the
> >>> tables lose there indention and the numbering changes: 2. and 3. changes
> >>> to 1.
> >>>
> >> I followed this steps on XE 2.0 RC1 and I couldn't reproduce the issue. 
> >> For two list items each with a 2x2 table I get this wiki syntax:
> >>
> >> --8<--
> >> 1. abc(((|=1|=2
> >> |3|4)))
> >> 1. xyz(((|=5|=6
> >> |7|8)))
> >> -->8--
> >>
> >> Can you tell me what wiki syntax do you get? To do this, create the list 
> >> and the tables in WYSIWYG mode and then switch to Wiki mode.
> > 
> 
> > This is my non-working wiki-syntax (it had no numbers filled in in the
> > fields), I added  to mark the code part:
> 
> Yes, I added the numbers in the table cells.
> 
> > --
> > test tabel:
> > 
> > 1. dsfsdf
> > 
> > (((|= |= 
> > | | 
> > 
> > \\)))
> > 
> > 1. sdfsdf
> > 
> > (((|= |= 
> > | )))
> > 
> > 1. sdfsdf
> > ---
> 
> Here's what I get, following your steps on XWiki Enterprise 1.9.3.22597 
> using the same content:
> 
> --8<-
> test tabel:
> 
> 1. dsfsdf(((|= |=
> | | )))
> 1. sdfsdf(((|= |=
> | | )))
> 1. sdfsdf
> -->8-
> 
> As you can see, I get the right output.. There must be something else 
> you did that broke the list otherwise I can't explain why we get 
> different results.
> 
> > It seems the WYSIWYG changes some characters, an added \\ and a missing
> > | ?
> > 
> > When I continue in the WYSIWYG with your code, and do the same as
> > described in the test case, I cannot reproduce the error.
> > 
> > Code still seems OK:
> > ---
> > 8<
> > 
> > 1. abc(((|=1|=2
> > |3|4)))
> > 1. xyz(((|=5|=6
> > |7|8)))
> > 1. test third number
> > 1. (((|= 9|=10
> > | 11| 12)))
> > 1. (((|= |= 
> > |)))
> > 1. test sixth number
> > 1. dfgdfg(((|= |= 
> > | )))
> > 1. dfgf(((|= |= 
> > | )))
> > 1. 
> > 
> > 
> > 
> >> 8
> > ---
> > 
> > When I added another two test tables after that, I got:
> > content: Exception while parsing HTML.
> > (I have had that before when inserting tables by copy/paste from a Word
> > -table.).
> > After that the source and Wiki buttons do not work, and the page goes
> > back to the WYSIWYG.
> > 
> > The only way to fix it is a rollback to the previous version.
> > 
> > Is there anything else I can do to pinpoint this problem?
> > 
> >> Also, can you try my wiki syntax output? Edit a new page in Wiki mode, 
> >> paste my wiki content then switch to WYSIWYG and back a few times. Is 
> >> the list broken? Does the wiki content change when you come back to Wiki 
> >> mode? In my case, switching to WYSIWYG and back to Wiki any number of 
> >> time leaves the wiki content unchanged.
> >>
> 
> > When I use your Wiki syntax in the editor, this gives the proper result.
> 
> This also indicates that something else happens when you create the list 
> with the tables in WYSIWYG mode.

I agree. It is hard to pinpoint.
The first time it happened exactly like i described, so after the view
button press, the tables were no longer aligned.
After I used your code in the Wiki editor, it was hard to reproduce the
behaviour some how.
I will contin

Re: [xwiki-users] xoffice2003 installation problem

2009-09-16 Thread Michael Beetz
Hi Teofil,

May I kindly ask you for an expected solution date - like "within 1 day, 1 
week, 1 month, 1 year" - I have to schedule some of my activities around it.

Thanks
mb

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Teofil Achirei
Sent: Monday, September 14, 2009 7:39 PM
To: XWiki Users
Subject: Re: [xwiki-users] xoffice2003 installation problem

Hi!
As I can see, there is nothing wrong with your config. I thought the
problem can be caused by
- having MS Office 2003 and MS Office 2007
- another Word add-in that resets application settings (like menubar,
toolbar, etc)
But, since you got the same error "Not loaded. A runtime error ..",
the issue is definitely caused by the XWord2003 installer.
I'm working on solving this problem. I'll come with details & an
updated version of the XWord2003 installer after closing the issue on
JIRA ( http://jira.xwiki.org/jira/browse/XOFFICE-160 )


On Mon, Sep 14, 2009 at 5:56 PM, Michael Beetz  wrote:
> Hi Teofil,
>
>
>
> I am using:
>
> - Windows 2003 server, English, SP2, running in a VMWare
> - All MS patches are installed
> - .NET 3.5 SP1 (on top of 1.1, 2.0, 3.0
> - MS Office 2003 Word, Excel, Outlook, Powerpoint, Project, ...
>
> How can I identify interactions with XWord2003?
>
>
>
> I was able to follow your screen shots, including the final "Not loaded.  A 
> runtime error ..."
>
>
>
> I couldn't find anything in the eventlog ...
>
>
>
> Thanks
>
> mb
>
>
>
> -Original Message-
> From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
> Teofil Achirei
> Sent: Monday, September 14, 2009 1:03 PM
> To: XWiki Users
> Subject: Re: [xwiki-users] xoffice2003 installation problem
>
>
>
> Hi!
>
> Indeed, there is a problem with XWord2003 add in installer. You can
>
> try to customize MS Word so you can manually enable/disable add ins.
>
> After that you can locate XWord2003 add in and try to enable it, but
>
> it might not work.
>
> I have opened an issue for this XWord2003 bug:
>
> http://jira.xwiki.org/jira/browse/XOFFICE-160 At that address you will
>
> find some screenshots, comments and our progress with this issue.
>
> I'm working on fixing the installer.
>
>
>
> Would you be kind and provide us some information about your
>
> environment, please?
>
> - Operating system (Windows XP, Vista, 7)
>
> - .NET framework (if you have it or the XWord2003 installer downloaded
>
> it for you)
>
> - MS Office 2003 (what products: Word, Excel, etc)
>
> - MS Office 2007 (what products: Word, Excel, etc)
>
> - other office add-ins that might interact with XWord2003
>
>
>
>
>
> On Sun, Sep 13, 2009 at 11:52 PM, Michael Beetz  
> wrote:
>
>> Hi all,
>
>>
>
>> I've tried to install all available versions of xoffice for Word 2003, 
>> adding the trusted site ... - the installation reports "successfully".  
>> However I couldn't see any added functionality using it (starting MS Word) - 
>> no new menu, no added toolbar ...
>
>>
>
>> May I kindly ask for a hint?
>
>>
>
>> Thanks
>
>> mb
>
>> ___
>
>> users mailing list
>
>> users@xwiki.org
>
>> http://lists.xwiki.org/mailman/listinfo/users
>
>>
>
>
>
>
>
>
>
> --
>
> Teofil Achirei
>
> ___
>
> 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
>



-- 
Teofil Achirei
___
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