[xwiki-users] Send something by FTP in a space

2009-02-11 Thread Hervé Agnoux
Hi,

I should want use XWiki as a platform to distribute java web start 
applications.

I want some acces control : only register persons can get the jnlp and jar 
file.

I put the jars on the server by FTP with an ant task. I edit the jnlp file on 
the server with vim (or KEdit, if the X server is ok). 

I don't want use the internal stuff in XWiki to edit or install these files, I 
use xwiki only to control the acces and to make a presentation page (ex : 
Please clic here (here), it's my very good java application) of the product.

How is it possible to get the FTP transfert inside a xwiki context ?

Thanks.


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


Re: [xwiki-users] Tutorial XWiki

2009-02-11 Thread Vincent Massol
Hi Frans,

On Feb 11, 2009, at 1:42 AM, Frans Thamura wrote:

 hi all

 i am seeking free tutorial for newbies to start XWiki, anyone can give
 me recommendation

I'm sure you've checked out http://xwiki.org. Since you're asking the  
question it means you haven't found your answer there unfortunately.  
Could you tell us exactly what you're trying to do? I'd like to ensure  
that the doc on xwiki.org is as easy as possible to use but I need to  
know what you were looking for.

For example were you able to find the user guide on xwiki.org?

Thanks
-Vincent

 i am preparing to setup the content for www.jug-asia.org , an xwiki,
 hosted by xwiki.com



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


Re: [xwiki-users] Send something by FTP in a space

2009-02-11 Thread Vincent Massol
Hi Herve,

On Feb 11, 2009, at 9:01 AM, Hervé Agnoux wrote:

 Hi,

 I should want use XWiki as a platform to distribute java web start
 applications.

 I want some acces control : only register persons can get the jnlp  
 and jar
 file.

 I put the jars on the server by FTP with an ant task. I edit the  
 jnlp file on
 the server with vim (or KEdit, if the X server is ok).

 I don't want use the internal stuff in XWiki to edit or install  
 these files, I
 use xwiki only to control the acces and to make a presentation page  
 (ex :
 Please clic here (here), it's my very good java application) of  
 the product.

 How is it possible to get the FTP transfert inside a xwiki context ?

XWiki supports several remote access protocols:
* XMLRPC
* REST
* HTTP uploads

Why don't you use one of these? That would be the simplest.

Another solution (but quite hacky) would be to use a groovy script to  
look for files in a given directory and install them somewhere in  
the wiki if found, and use the Scheduler to trigger this groovy script  
every few minutes.

Again this is hacky and way less better than using REST or XMLRPC for  
ex. which you can trigger using a crontab that does the same thing as  
the groovy script but outside of xwiki.

Thanks
-Vincent
http://xwiki.com
http://xwiki.org
http://massol.net






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


Re: [xwiki-users] Send something by FTP in a space

2009-02-11 Thread Vincent Massol

On Feb 11, 2009, at 9:41 AM, Vincent Massol wrote:

 Hi Herve,

 On Feb 11, 2009, at 9:01 AM, Hervé Agnoux wrote:

 Hi,

 I should want use XWiki as a platform to distribute java web start
 applications.

 I want some acces control : only register persons can get the jnlp  
 and jar
 file.

 I put the jars on the server by FTP with an ant task. I edit the  
 jnlp file on
 the server with vim (or KEdit, if the X server is ok).

 I don't want use the internal stuff in XWiki to edit or install  
 these files, I
 use xwiki only to control the acces and to make a presentation page  
 (ex :
 Please clic here (here), it's my very good java application) of  
 the product.

 How is it possible to get the FTP transfert inside a xwiki context ?

 XWiki supports several remote access protocols:
 * XMLRPC
 * REST
 * HTTP uploads

Forgot WebDAV too. You can probably FTP to a webDAV mount which means  
the files you upload will directly find their way as attachments.

-Vincent

 Why don't you use one of these? That would be the simplest.

 Another solution (but quite hacky) would be to use a groovy script  
 to look for files in a given directory and install them somewhere  
 in the wiki if found, and use the Scheduler to trigger this groovy  
 script every few minutes.

 Again this is hacky and way less better than using REST or XMLRPC  
 for ex. which you can trigger using a crontab that does the same  
 thing as the groovy script but outside of xwiki.

 Thanks
 -Vincent
 http://xwiki.com
 http://xwiki.org
 http://massol.net







Thanks
-Vincent
http://xwiki.com
http://xwiki.org
http://massol.net






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


[xwiki-users] Database information about xwiki

2009-02-11 Thread Hernández Cuchí , Francisco Ricardo
Hello Everybody,

 

In order to set the XWiki up for all users in my organization, I need some 
information about the database structure, for sending it  to the  database 
administrators. I've searched a little but I hadn't found any answer to the 
following questions:

 

- A little description of the relational model, and the main tables?

- A suggestion about how to partitionate the big tables?

- If there is any possibility to set up in oracle without Hibernate, just 
create the tables?

 

Thanks for the info,

 

Francisco

 

--

Francisco Hernández Cuchí

OFICINA ESPAÑOLA DE PATENTES Y MARCAS

mail: francisco.hernan...@oepm.es mailto:francisco.hernan...@oepm.es 

 

**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente 
para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el 
emisor immediatamente y no difunda su contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Send something by FTP in a space

2009-02-11 Thread Hervé Agnoux
Le mercredi 11 février 2009, Vincent Massol a écrit :

 XWiki supports several remote access protocols:
 * XMLRPC
 * REST
 * HTTP uploads

 Why don't you use one of these? That would be the simplest.


Why not, but how I do that with Ant ?


 Another solution (but quite hacky) would be to use a groovy script to
 look for files in a given directory and install them somewhere in
 the wiki if found, and use the Scheduler to trigger this groovy script
 every few minutes.


I don't need a scheduler, because I know when I send my files. I need an Ant 
task (again) to active the groovy xwiki script from my computer.


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


Re: [xwiki-users] Database information about xwiki

2009-02-11 Thread Hervé Agnoux
Le mercredi 11 février 2009, Hernández Cuchí, Francisco Ricardo a écrit :

 - A little description of the relational model, and the main tables?


See perhaps 
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration 
and the out of date schema at 
http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema

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


Re: [xwiki-users] Database information about xwiki

2009-02-11 Thread Hernández Cuchí , Francisco Ricardo

How outdated is it? Are there new tables or only modifications in the tables?

Thanks,

-Mensaje original-
De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Hervé 
Agnoux
Enviado el: miércoles, 11 de febrero de 2009 11:12
Para: XWiki Users
Asunto: Re: [xwiki-users] Database information about xwiki

Le mercredi 11 février 2009, Hernández Cuchí, Francisco Ricardo a écrit :

 - A little description of the relational model, and the main tables?


See perhaps 
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration 
and the out of date schema at 
http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente 
para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el 
emisor immediatamente y no difunda su contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**

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


Re: [xwiki-users] Database information about xwiki

2009-02-11 Thread Ajdin Brandic
Hi

If you are running a local xwiki you can use tools like DB Visualizer (windows 
app) to connect and view DB structure.
You also need to understand a bit about xwiki properties as they reflect in db 
structure (table names).
Also look at Hibernate mapping 
http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-core/src/main/resources/xwiki.hbm.xml

Hope this help.

Ajdin
 

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Hernández Cuchí, Francisco Ricardo
Sent: 11 February 2009 11:25
To: XWiki Users
Subject: Re: [xwiki-users] Database information about xwiki


How outdated is it? Are there new tables or only modifications in the tables?

Thanks,

-Mensaje original-
De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Hervé 
Agnoux Enviado el: miércoles, 11 de febrero de 2009 11:12
Para: XWiki Users
Asunto: Re: [xwiki-users] Database information about xwiki

Le mercredi 11 février 2009, Hernández Cuchí, Francisco Ricardo a écrit :

 - A little description of the relational model, and the main tables?


See perhaps
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration
and the out of date schema at
http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el emisor immediatamente y no difunda su 
contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**

___
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] Database information about xwiki

2009-02-11 Thread Hernández Cuchí , Francisco Ricardo
I am testing it with the standalone installation (the one that is only a msi 
file), How can I connect to this database?

-Mensaje original-
De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Ajdin 
Brandic
Enviado el: miércoles, 11 de febrero de 2009 12:55
Para: XWiki Users
Asunto: Re: [xwiki-users] Database information about xwiki

Hi

If you are running a local xwiki you can use tools like DB Visualizer (windows 
app) to connect and view DB structure.
You also need to understand a bit about xwiki properties as they reflect in db 
structure (table names).
Also look at Hibernate mapping 
http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-core/src/main/resources/xwiki.hbm.xml

Hope this help.

Ajdin
 

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Hernández Cuchí, Francisco Ricardo
Sent: 11 February 2009 11:25
To: XWiki Users
Subject: Re: [xwiki-users] Database information about xwiki


How outdated is it? Are there new tables or only modifications in the tables?

Thanks,

-Mensaje original-
De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Hervé 
Agnoux Enviado el: miércoles, 11 de febrero de 2009 11:12
Para: XWiki Users
Asunto: Re: [xwiki-users] Database information about xwiki

Le mercredi 11 février 2009, Hernández Cuchí, Francisco Ricardo a écrit :

 - A little description of the relational model, and the main tables?


See perhaps
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration
and the out of date schema at
http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el emisor immediatamente y no difunda su 
contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**

___
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
**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente 
para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el 
emisor immediatamente y no difunda su contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**

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


Re: [xwiki-users] Possible Bug with com.xpn.xwiki.doc.XWikiDocument.saveAttachmentContent v1.8

2009-02-11 Thread Ludovic Dubost

Hi,

This should generally work.
Here is a typical Groovy script we often use to add attachments from 
File Uploads
We call it this way for example:

#set($doctitle = $xwiki.getUniquePageName(Space, title))
#set($newdoc = $xwiki.getDocument(Space.${doctitle}))
## attach files if necessary
#set($attachgroovy = $xwiki.parseGroovyFromPage(XWiki.UploadGroovy))
#if($attachgroovy == groovy_missingrights)
  #warning(no prog rights warning)
#else
  #set($nb = $attachgroovy.addAttachments($newdoc, $context))
  #if($nb == -10)
#warning(no prog rights warning)
  #end
   $newdoc.save() or $newdoc.saveWithProgrammingRights().
  #end



---
import com.xpn.xwiki.doc.*;
import com.xpn.xwiki.*;
import com.xpn.xwiki.util.Util;
import java.io.*;
import java.util.*;

public class Ajout {
   public int addAttachments(doc1, context1) {
   def doc = doc1.document;
   if (!context1.hasProgrammingRights())
 return -10;
   def context = context1.context;
   if (context==null)
return -10;
   def xwiki = context.getWiki();
   int nb = 0;
   def fileupload = xwiki.getPlugin(fileupload,context)
   for (fileitem in fileupload.getFileItems(context)) {
if (!fileitem.isFormField()) {
def name = fileitem.fieldName
byte[] data = fileupload.getFileItemData(name, context);
if ((data!=null)(data.length0)) {
String fname = fileupload.getFileName(name, context);
int i = fname.lastIndexOf(\\);
if (i==-1)
   i = fname.lastIndexOf(/);
def filename = fname.substring(i+1);
filename = filename.replaceAll(\\+, );
def attachment = doc.getAttachment(filename);
if (attachment==null) {
  attachment = new XWikiAttachment();
  doc.getAttachmentList().add(attachment);
  // Add the attachment to the document
  attachment.setDoc(doc);
}
attachment.setContent(data);
attachment.setFilename(filename);
// TODO: handle Author
attachment.setAuthor(context1.user);
doc.setAuthor(context1.user);
doc.setCreator(context1.user);
doc.saveAttachmentContent(attachment, context);
nb++;
 }
}
   }
  return nb;
 }
}

Ajdin Brandic a écrit :
 I'm executing some code on Save which attaches a PNG file to a document
 that was edited/saved.
  
 When I call docObj.saveAttachmentContent(attP, context); the attachment
 is save OK but any changes made to my document (ie. text changes) are
 not saved.
 If I comment out this line the text changes are saved, but off course
 not the attachment.
  
 Is this normal behaviour, what do the developers think?
  
 def imgAsBites =
 xwiki.getURLContentAsBytes(http://www.websequencediagrams.com/index.php
 +umlImage, context);   
 def attP = docObj.getAttachment(filenameToSavaAs);
 if(!attP)
   {
 attP = new
 com.xpn.xwiki.doc.XWikiAttachment(docObj,filenameToSavaAs);
 docObj.getAttachmentList().add(attP);
 println NO Attach;
   }   
 attP.setContent(imgAsBites);   
 docObj.saveAttachmentContent(attP, context); 
  
 Regards
 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

   


-- 
Ludovic Dubost
Blog: http://blog.ludovic.org/
XWiki: http://www.xwiki.com
Skype: ldubost GTalk: ldubost

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


[xwiki-users] Is there any kind of structured data input plugin

2009-02-11 Thread Hernández Cuchí , Francisco Ricardo
Hello everybody,

 

Just another question,

 

Is there any way to use structured data input and view in XWiki? I've seen some 
pages that have it, but I don't know an easy way to implement it. I has to be 
something simple, like in excel or a shared excel where you can copy paste from 
the office suite.

 

I think that normal tables could handle it, but when I copy paste from excel 
the table is no more editable. 

 

Another option is a table where you can edit rows somehow.

 

I don't know all the possibilities of xwiki, so, any suggestion?

 

Thanks for the good work,

 

--

Francisco Hernández Cuchí

OFICINA ESPAÑOLA DE PATENTES Y MARCAS

mail: francisco.hernan...@oepm.es mailto:francisco.hernan...@oepm.es 

 

**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente 
para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el 
emisor immediatamente y no difunda su contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] problems editing group members in XWiki 1.8?

2009-02-11 Thread Yishay Mor
 You should import the xwiki-administration xar, as the group sheet was
 updated to pull the required JS/CSS files, which are no longer included
 by default in the HTML head.


Thanks Sergiu.

I looked for it at:
http://www.xwiki.org/xwiki/bin/view/Main/Download
and
http://maven.xwiki.org/snapshots/com/xpn/xwiki/products/

but couldn't find it. any tips?

___
 Yishay Mor, Researcher, London Knowledge Lab
  http://www.lkl.ac.uk/people/mor.html
  http://www.google.com/calendar/embed?src=yishaym%40gmail.com
  +44-20-7837 x5737


2009/2/11 users-requ...@xwiki.org

 Subject: Re: [xwiki-users] problems editing group members in XWiki
1.8?
 To: XWiki Users users@xwiki.org
 Message-ID: 49915e3c.6010...@xwiki.com
 Content-Type: text/plain; charset=ISO-8859-1

 Sergiu Dumitriu wrote:
  Yishay Mor wrote:
  On http://patternlanguagenetwork.myxwiki.org/ (hosted on the
 MyXwiki.org
  farm)
 
  I'm having problems editing group memberships.
  From the admin page, if I try to enter groups, it hangs.
  I can navigate to
  http://patternlanguagenetwork.myxwiki.org/xwiki/bin/view/XWiki
 /XWikiGroups
  But then, when I try to enter a specific group, it hangs.
 
 
  It seems that a .js file is missing. Looking into it.

 You should import the xwiki-administration xar, as the group sheet was
 updated to pull the required JS/CSS files, which are no longer included
 by default in the HTML head.

 --
 Sergiu Dumitriu
 http://purl.org/net/sergiu/

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


Re: [xwiki-users] Database information about xwiki

2009-02-11 Thread Ajdin Brandic
I must admit that I had not found an easy way to connect to it using DB 
Visualizer, sorry.  As the standalone version is not to be used for any 
development work I had to move to MySQL.  So I'm using GlassFish and MySQL to 
ruin xwiki enterprise.  It will not take you long to install it yourself and 
you'll find all the instructions online.

Ajdin 

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Hernández Cuchí, Francisco Ricardo
Sent: 11 February 2009 12:00
To: XWiki Users
Subject: Re: [xwiki-users] Database information about xwiki

I am testing it with the standalone installation (the one that is only a msi 
file), How can I connect to this database?

-Mensaje original-
De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Ajdin 
Brandic Enviado el: miércoles, 11 de febrero de 2009 12:55
Para: XWiki Users
Asunto: Re: [xwiki-users] Database information about xwiki

Hi

If you are running a local xwiki you can use tools like DB Visualizer (windows 
app) to connect and view DB structure.
You also need to understand a bit about xwiki properties as they reflect in db 
structure (table names).
Also look at Hibernate mapping 
http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-core/src/main/resources/xwiki.hbm.xml

Hope this help.

Ajdin
 

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Hernández Cuchí, Francisco Ricardo
Sent: 11 February 2009 11:25
To: XWiki Users
Subject: Re: [xwiki-users] Database information about xwiki


How outdated is it? Are there new tables or only modifications in the tables?

Thanks,

-Mensaje original-
De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de Hervé 
Agnoux Enviado el: miércoles, 11 de febrero de 2009 11:12
Para: XWiki Users
Asunto: Re: [xwiki-users] Database information about xwiki

Le mercredi 11 février 2009, Hernández Cuchí, Francisco Ricardo a écrit :

 - A little description of the relational model, and the main tables?


See perhaps
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration
and the out of date schema at
http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el emisor immediatamente y no difunda su 
contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**

___
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
**
IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial y 
está dirigido únicamente para el destinatario/s.
Si Ud recibe este correo por error, por favor póngase en contacto con su 
administrador de correo o con el emisor immediatamente y no difunda su 
contenido a nadie ni haga copias.
*** Este correo ha sido escaneado de virus y contenido malicioso ***
**

___
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] Tutorial XWiki

2009-02-11 Thread Frans Thamura
right now

i try to collect all the xwiki tutorial stuff, because we want to put
xwiki as official education program in our country (indonesia) work
with minstery of education

and my jug (jug indonesia and jug asia), will become the first project
for us to use Xwiki

my dream if this project success, we can go to xwiki module development

any idea for this



F

2009/2/11 Vincent Massol vinc...@massol.net:
 Hi Frans,

 On Feb 11, 2009, at 1:42 AM, Frans Thamura wrote:

 hi all

 i am seeking free tutorial for newbies to start XWiki, anyone can give
 me recommendation

 I'm sure you've checked out http://xwiki.org. Since you're asking the
 question it means you haven't found your answer there unfortunately.
 Could you tell us exactly what you're trying to do? I'd like to ensure
 that the doc on xwiki.org is as easy as possible to use but I need to
 know what you were looking for.

 For example were you able to find the user guide on xwiki.org?

 Thanks
 -Vincent

 i am preparing to setup the content for www.jug-asia.org , an xwiki,
 hosted by xwiki.com



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




-- 
-- 
Frans Thamura
Meruvian
One Stop Java and Enterprise OSS Provider

Mobile: +62 855 7888 699
Blog  Profile: http://frans.thamura.info

Training JENI, Medallion (Alfresco, Liferay dan Compiere).. buruan...
URL: http://www.meruvian.com

Promo: Beli Zmanda Backup di Meruvian, 10% discount dari pricelist..
Buruan sekarang!!!
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Tutorial XWiki

2009-02-11 Thread Vincent Massol
Hi Frans,

On Feb 11, 2009, at 3:40 PM, Frans Thamura wrote:

 right now

 i try to collect all the xwiki tutorial stuff, because we want to put
 xwiki as official education program in our country (indonesia) work
 with minstery of education

Sounds very nice. We'll be glad to support you here as much as we can.

If you ever need some professional support/hosting/services please  
check http://xwiki.com (there's a 50% discount on some services for  
associations).

 and my jug (jug indonesia and jug asia), will become the first project
 for us to use Xwiki

Cool!

 my dream if this project success, we can go to xwiki module  
 development

Even nicer :)

 any idea for this

Doc for XE:
http://enterprise.xwiki.org/xwiki/bin/view/Main/WebHome

Re tutorials for XE:

* User Guide:
- http://enterprise.xwiki.org/xwiki/bin/view/UserGuide/
- http://enterprise.xwiki.org/xwiki/bin/view/Main/Features

* Admin Guide:
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/

* Dev Guide:
http://platform.xwiki.org/xwiki/bin/view/DevGuide/

Also note that Guillaume Lerouge has just started a getting started  
guide that will be packaged in the XE standalone distribution in the  
near future:
http://enterprise.xwiki.org/xwiki/bin/view/GettingStarted/
This is still a work in progress.

Thanks
-Vincent

 F

 2009/2/11 Vincent Massol vinc...@massol.net:
 Hi Frans,

 On Feb 11, 2009, at 1:42 AM, Frans Thamura wrote:

 hi all

 i am seeking free tutorial for newbies to start XWiki, anyone can  
 give
 me recommendation

 I'm sure you've checked out http://xwiki.org. Since you're asking the
 question it means you haven't found your answer there unfortunately.
 Could you tell us exactly what you're trying to do? I'd like to  
 ensure
 that the doc on xwiki.org is as easy as possible to use but I need to
 know what you were looking for.

 For example were you able to find the user guide on xwiki.org?

 Thanks
 -Vincent

 i am preparing to setup the content for www.jug-asia.org , an xwiki,
 hosted by xwiki.com



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


Re: [xwiki-users] Database information about xwiki

2009-02-11 Thread Guillaume Lerouge
Hi,

On Wed, Feb 11, 2009 at 3:11 PM, Ajdin Brandic aa6...@coventry.ac.ukwrote:

 I must admit that I had not found an easy way to connect to it using DB
 Visualizer, sorry.  As the standalone version is not to be used for any
 development work I had to move to MySQL.  *So I'm using GlassFish and
 MySQL to ruin xwiki enterprise.*  It will not take you long to install it
 yourself and you'll find all the instructions online.

I sure hope you meant run :-p
Guillaume


 Ajdin

 -Original Message-
 From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf
 Of Hernández Cuchí, Francisco Ricardo
 Sent: 11 February 2009 12:00
 To: XWiki Users
 Subject: Re: [xwiki-users] Database information about xwiki

 I am testing it with the standalone installation (the one that is only a
 msi file), How can I connect to this database?

 -Mensaje original-
 De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de
 Ajdin Brandic Enviado el: miércoles, 11 de febrero de 2009 12:55
 Para: XWiki Users
 Asunto: Re: [xwiki-users] Database information about xwiki

 Hi

 If you are running a local xwiki you can use tools like DB Visualizer
 (windows app) to connect and view DB structure.
 You also need to understand a bit about xwiki properties as they reflect in
 db structure (table names).
 Also look at Hibernate mapping
 http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-core/src/main/resources/xwiki.hbm.xml

 Hope this help.

 Ajdin


 -Original Message-
 From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf
 Of Hernández Cuchí, Francisco Ricardo
 Sent: 11 February 2009 11:25
 To: XWiki Users
 Subject: Re: [xwiki-users] Database information about xwiki


 How outdated is it? Are there new tables or only modifications in the
 tables?

 Thanks,

 -Mensaje original-
 De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre de
 Hervé Agnoux Enviado el: miércoles, 11 de febrero de 2009 11:12
 Para: XWiki Users
 Asunto: Re: [xwiki-users] Database information about xwiki

 Le mercredi 11 février 2009, Hernández Cuchí, Francisco Ricardo a écrit :
 
  - A little description of the relational model, and the main tables?
 

 See perhaps
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration
 and the out of date schema at
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema

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

 **
 IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial
 y está dirigido únicamente para el destinatario/s.
 Si Ud recibe este correo por error, por favor póngase en contacto con su
 administrador de correo o con el emisor immediatamente y no difunda su
 contenido a nadie ni haga copias.
 *** Este correo ha sido escaneado de virus y contenido malicioso ***

 **

 ___
 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

 **
 IMPORTANTE: El contenido de este correo y ficheros adjuntos es confidencial
 y está dirigido únicamente para el destinatario/s.
 Si Ud recibe este correo por error, por favor póngase en contacto con su
 administrador de correo o con el emisor immediatamente y no difunda su
 contenido a nadie ni haga copias.
 *** Este correo ha sido escaneado de virus y contenido malicioso ***

 **

 ___
 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 ID : wikibc
http://guillaumelerouge.com/
___
users mailing list
users@xwiki.org

Re: [xwiki-users] Database information about xwiki

2009-02-11 Thread Ajdin Brandic
Yes :-).  I apologise to the whole community and beyond.

Ajdin 

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Guillaume Lerouge
Sent: 11 February 2009 15:44
To: XWiki Users
Subject: Re: [xwiki-users] Database information about xwiki

Hi,

On Wed, Feb 11, 2009 at 3:11 PM, Ajdin Brandic aa6...@coventry.ac.ukwrote:

 I must admit that I had not found an easy way to connect to it using 
 DB Visualizer, sorry.  As the standalone version is not to be used for 
 any development work I had to move to MySQL.  *So I'm using GlassFish 
 and MySQL to ruin xwiki enterprise.*  It will not take you long to 
 install it yourself and you'll find all the instructions online.

I sure hope you meant run :-p
Guillaume


 Ajdin

 -Original Message-
 From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On 
 Behalf Of Hernández Cuchí, Francisco Ricardo
 Sent: 11 February 2009 12:00
 To: XWiki Users
 Subject: Re: [xwiki-users] Database information about xwiki

 I am testing it with the standalone installation (the one that is only 
 a msi file), How can I connect to this database?

 -Mensaje original-
 De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre 
 de Ajdin Brandic Enviado el: miércoles, 11 de febrero de 2009 12:55
 Para: XWiki Users
 Asunto: Re: [xwiki-users] Database information about xwiki

 Hi

 If you are running a local xwiki you can use tools like DB Visualizer 
 (windows app) to connect and view DB structure.
 You also need to understand a bit about xwiki properties as they 
 reflect in db structure (table names).
 Also look at Hibernate mapping
 http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-core/src/
 main/resources/xwiki.hbm.xml

 Hope this help.

 Ajdin


 -Original Message-
 From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On 
 Behalf Of Hernández Cuchí, Francisco Ricardo
 Sent: 11 February 2009 11:25
 To: XWiki Users
 Subject: Re: [xwiki-users] Database information about xwiki


 How outdated is it? Are there new tables or only modifications in the 
 tables?

 Thanks,

 -Mensaje original-
 De: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] En nombre 
 de Hervé Agnoux Enviado el: miércoles, 11 de febrero de 2009 11:12
 Para: XWiki Users
 Asunto: Re: [xwiki-users] Database information about xwiki

 Le mercredi 11 février 2009, Hernández Cuchí, Francisco Ricardo a écrit :
 
  - A little description of the relational model, and the main tables?
 

 See perhaps
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administr
 ation
 and the out of date schema at
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema

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

 **
 
 IMPORTANTE: El contenido de este correo y ficheros adjuntos es 
 confidencial y está dirigido únicamente para el destinatario/s.
 Si Ud recibe este correo por error, por favor póngase en contacto con 
 su administrador de correo o con el emisor immediatamente y no difunda 
 su contenido a nadie ni haga copias.
 *** Este correo ha sido escaneado de virus y contenido malicioso ***

 **
 

 ___
 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

 **
 
 IMPORTANTE: El contenido de este correo y ficheros adjuntos es 
 confidencial y está dirigido únicamente para el destinatario/s.
 Si Ud recibe este correo por error, por favor póngase en contacto con 
 su administrador de correo o con el emisor immediatamente y no difunda 
 su contenido a nadie ni haga copias.
 *** Este correo ha sido escaneado de virus y contenido malicioso ***

 **
 

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

Re: [xwiki-users] Tutorial XWiki

2009-02-11 Thread Niels Mayer
On Tue, Feb 10, 2009 at 4:42 PM, Frans Thamura fr...@meruvian.org wrote:

 hi all

 i am seeking free tutorial for newbies to start XWiki, anyone can give
 me recommendation


These might be helpful:

http://www.ante.lv/xwiki/bin/download/Training.XWiki/WebHome/LearnXWiki1.ppt
http://www.ante.lv/xwiki/bin/view/Training.XWiki/

-- Niels
http://nielsmayer.com
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Is there any kind of structured data input plugin

2009-02-11 Thread Niels Mayer
Niels
http://nielsmayer.com



On Wed, Feb 11, 2009 at 4:54 AM, Hernández Cuchí, Francisco Ricardo


 Is there any way to use structured data input and view in XWiki? I've seen
 some pages that have it, but I don't know an easy way to implement it. I has
 to be something simple, like in excel or a shared excel where you can copy
 paste from the office suite.

 I think that normal tables could handle it, but when I copy paste from
 excel the table is no more editable.

 Another option is a table where you can edit rows somehow.


It would be a pretty cool business app to have an wiki-oriented spreadsheet
that can be edited like a wiki, and version-controlled like a wiki. But
you'd probably not want to have to program your spreadsheet with velocity
macros :-)

It would probably be a lot harder to implement than taking an existing
spreadsheet widget in javascript and figuring out how to plug that into
Xwiki, e.g.:
http://www.google.com/ig/directory?url=hosting.gmodules.com/ig/gadgets/file/107522617710775425917/Panorama-Analytics.xml
http://www.google.com/ig/directory?url=www.google.com/ig/modules/table.xml
http://www.google.com/ig/directory?url=www.google.com/ig/modules/simple-table.xml

-- Niels
http://nielsmayer.com
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Database information about xwiki

2009-02-11 Thread Niels Mayer
 On Wed, Feb 11, 2009 at 2:11 AM, Hervé Agnoux 
herve.agn...@diaam-informatique.com wrote:

  See perhaps
 http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administration
 and the out of date schema at
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/DatabaseSchema


I've found it useful to use http://www.quest.com/toad-for-mysql/ to explore
the database created by Xwiki I use Toad by setting up an SSH tunnel (
\cygwin\bin\ssh.exe -L 3306:localhost:3306  u...@server.com echo '^C to
quit' ; exec cat  /dev/null ) from the windows box running Toad-for-Mysql
to the Linux machine running Tomcat  the Mysql db (which is bound only to
localhost for security reasons).

http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Database+Administrationrecommends
http://www.dbvis.com/products/dbvis/download/install.jsp -- is it worth
setting up and learning this new tool over toad?? How would I use it
remotely via a tunnel (firewalls, security, etc)?

Speaking of databases, does anybody see anything wrong with the
database-surgery I had to perform -- see
http://nielsmayer.com/whatididtopoorsql.txt --  apparently I was allowed to
create documents with embedded '.' or '/' characters which ultimately were
misinterpreted when given as a URL -- thus leaving me with documents I could
neither delete nor rename (let alone access). It is probably a bug to allow
such names to be entered w/o validation.

--Niels
http://nielsmayer.com
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users