[xwiki-users] xwiki-enterprise-hsqldb-1.1.1

2007-10-29 Thread V. Harikrishnan Nair

Hi...

  does xwiki-enterprise-hsqldb-1.1.1 allow me to view the data which is
present in my current xwiki xwiki-enterprise-windows-1.1 ?

Harikrishnan
-- 
View this message in context: 
http://www.nabble.com/xwiki-enterprise-hsqldb-1.1.1-tf471.html#a13483165
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] Attachments & comments

2007-10-29 Thread V. Harikrishnan Nair

There can be sequence numbers to the attachments placed (like 1. ABC.jpg, 2.
XYZ.gif , ...) and when comments are added the user can point to that
attachment using [ sequence no ] i.e. for say, ABC.jpg, there it can be
pointed to using [1.] in the comment... or something like that.



Vitantonio Messa wrote:
> 
> V. Harikrishnan Nair wrote:
>> 
>> Vitantonio Messa wrote:
>>> the real problem I'm facing is how to link together comments and 
>>> attachments: because when loading one page I should be able to retrieve 
>>> the comment with the corresponding attachment.
>>>
>> 
>> you mean, like a pointer ? The attachment has a name (an identification),
>> so
>> can't there be a link to that attachment ?
>> 
> 
> Exactly: the attachment as ad identification (its URL), still is not 
> possible (well, I don't know how) to associate that URL with a comment.
> 
> The real problem is that I want normal users add comments with 
> attachments, in an easy way, without having to enter the URL of the 
> attachment...
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Attachments---comments-tf4695367.html#a13482182
Sent from the XWiki- Users mailing list archive at Nabble.com.

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


[xwiki-users] rendering uppercase-lowercase-uppercase strings

2007-10-29 Thread Your XEN ICT Team - Ricardo Rodriguez
Hi,

As far as I see, XWiki put a blank space after the lowercase letters of 
a string. It is quite useful in many cases, but a pain in others. For 
instance, LyX is renderized as Ly X. LaTeX as La Te X.

Is there anyway of avoiding this? Thanks!

Cheers,

-- 
Ricardo Rodríguez
Your XEN ICT Team

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


Re: [xwiki-users] Cannot translate page in xwiki-1.1.1

2007-10-29 Thread Your XEN ICT Team - Ricardo Rodriguez
Robert Reiner wrote:
> Hi,
>
> I have the same problem (same firefox browser, but also tried with IE 7.0)
> with XWiki version 1.2-milestone-1.5235 and I am also not sure whether I am
> missing something or if this is a bug.
>
> Maybe someone could give a hint?
>
> Thank you in advance!
>
>   Robert
>
> PS:
> I found the following references in the documentation:
> * http://www.xwiki.org/xwiki/bin/view/UserGuide/I18N
> *
> http://www.xwiki.org/xwiki/bin/view/DevGuide/InternationalizingApplications
>
>
>   
Just to confirm this behaviour with 1.2-milestone-1.5235 but without an 
answer or a JIRA issue on this.

Cheers,

-- 
Ricardo Rodríguez
Your XEN ICT Team

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


[xwiki-users] UTF-8 encoding

2007-10-29 Thread Jan Kodera
Hi,
 I spent last day with setting up the UTF-8 encoding in xwiki. I set
all thing according to offical guide, but i had question marks instead
of letters in my database. I realized that i must set up hibernate. So
I made some changes in my hibernate.cfg.xml file. I added these to
lines.
  true
UTF-8

it working perfect now. It may help to someone, who will have the same problem.

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


Re: [xwiki-users] Navigation Panel Displays in Different Locationof the Page

2007-10-29 Thread Dicheva, Darina
Hande,

 

You got the code validated, right? Perhaps you could also send the
report from the validator ...

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Hande Aksac
Sent: Monday, October 29, 2007 2:24 PM
To: XWiki Users
Subject: Re: [xwiki-users] Navigation Panel Displays in Different
Locationof the Page

 

 

Thank you for your reply. However, even though I used a validation tool,
I still could not spot where the problem might be.  I was wondering if
you could help me with the code below so that the navigation panel will
not display in different locations on the Blog WebHome page? Thank you. 

 

Hande

 

This is the code behind Blog.Macros:

 

#macro(blog $category $nbitems $nbstart)
#if(!$maxchars)
#set($maxchars = 400)
#end

#if($category=='')
#set ($sql = ", BaseObject as obj where obj.name=doc.fullName and
obj.className='XWiki.ArticleClass' and
obj.name<>'XWiki.ArticleClassTemplate' order by doc.creationDate desc")
#else
#set ($sql = ", BaseObject as obj, DBStringListProperty as prop join
prop.list list where obj.name=doc.fullName and
obj.className='XWiki.ArticleClass' and
obj.name<>'XWiki.ArticleClassTemplate' and obj.id=prop.id.id and
prop.id.name='category '  and list='${category}' order by
doc.creationDate desc")
## TODO: feed category
#end
#set($cdate = "")
#set($inbitems = $xwiki.parseInt($nbitems))
#set($inbstart = $xwiki.parseInt($nbstart)) 
#foreach ($item in $xwiki.searchDocuments($sql, $inbitems, $inbstart))
#set($bentrydoc = $xwiki.getDocument($item))
#if($bentrydoc.fullName == $item)
#set($bentryobj = $bentrydoc.getObject("XWiki.ArticleClass "))
#set($creationDate = $xwiki.formatDate($bentrydoc.creationDate, "
dd, "))
#if($cdate!=$creationDate)
$creationDate
#set ($cdate = $creationDate) 
#end

$bentrydoc.display("title","view",
$bentryobj)
 

#set($content = $bentrydoc.display("extract", "view", $bentryobj))
#if($content=="")
#set($content = $bentrydoc.display("content", "view", $bentryobj))
#if($content.length()>400) 
#set($i = $content.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($content = "${content.substring(0,$i)}
[...>${bentrydoc.fullName}]")
#end
#else
#set($content = "${content} [...>${ bentrydoc.fullName}]")
#end


#set($Author = $bentrydoc.display("extract", "view", $bentryobj))
#if($Author=="")
#set($Author = $bentrydoc.display("AuthorName", "view", $bentryobj))
#if($content.length()>400) 
#set($i = $Author.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($Author = "${Author.substring(0,$i)} [...>${bentrydoc.fullName}]")
#end
#else
#set($Author = "${Author} [...>${ bentrydoc.fullName}]")
#end


#set($Year = $bentrydoc.display("extract", "view", $bentryobj))
#if($Year=="")
#set($Year = $bentrydoc.display("YearInfo", "view", $bentryobj))
#if($Year.length()>400) 
#set($i = $Year.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($Year = "${Year.substring(0,$i)} [...>${bentrydoc.fullName}]")
#end
#else
#set($Year = "${Year} [...>${ bentrydoc.fullName}]")
#end


#set($References = $bentrydoc.display("extract", "view", $bentryobj))
#if($References=="")
#set($References = $bentrydoc.display("ReferencesInfo", "view",
$bentryobj)) 
#if($References.length()>400)
#set($i = $References.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($References = "${References.substring(0,$i)}
[...>${bentrydoc.fullName}]")
#end
#else
#set($References = "${References} [...>${bentrydoc.fullName}]")
#end


#set($URL = $bentrydoc.display("extract", "view", $bentryobj))
#if($URL=="")
#set($URL = $bentrydoc.display("URLInfo", "view", $bentryobj))
#if($URL.length()>400) 
#set($i = $URL.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($URL = "${URL.substring(0,$i)} [...>${bentrydoc.fullName}]")
#end
#else
#set($URL = "${URL} [...>${bentrydoc.fullName }]")
#end

##Make the content visible or invisible 10-16-07 by Hande

#if(($Author !="") && ($Year !="") || ($References !="") && ($URL !=""))
Author: $bentrydoc.display("AuthorName","view",
$bentryobj) 
Year: $bentrydoc.display("YearInfo","view", $bentryobj)
Reference: $bentrydoc.display("ReferencesInfo","view",
$bentryobj) 
URL: $bentrydoc.display("URLInfo","view", $bentryobj)
#else
##set($content = $bentrydoc.display("content", "view", $bentryobj))
$bentrydoc.getRenderedContent($content) 
#end


 ## entry-content

#set($bcategories = $bentryobj.getProperty("category").value)
Posted by #userfn($bentrydoc.creator) at $xwiki.formatDate($bentr
ydoc.creationDate, "MMM dd,  HH:mm")#if($bcategories.size() >
0) in #foreach($bcategory in $bcategories)$bcategory #end#end #if($bentrydoc.date !=
$bentrydoc.creationDate) | Modified by #userfn($bentrydoc.author) at $xwiki.formatDate($bentrydoc.dat
e, "MMM dd,  HH:mm") #end | [$bentrydoc.comments.size()
Comment(s)>${ bentrydoc.fullName}?xpage=comments] | Permalink
 ## article_footer
 ## hentry
#end
#end
## prev/next links
#if(($inbstart != 0) || ($velocityCount==$inbitems))

#if ($inbstart!=0)
#set($iprev = $inbstart - $inbitems)
[Prev

Re: [xwiki-users] Navigation Panel Displays in Different Location of the Page

2007-10-29 Thread Hande Aksac
Thank you for your reply. However, even though I used a validation tool, I
still could not spot where the problem might be.  I was wondering if you
could help me with the code below so that the navigation panel will not
display in different locations on the Blog WebHome page? Thank you.

Hande

This is the code behind Blog.Macros:

#macro(blog $category $nbitems $nbstart)
#if(!$maxchars)
#set($maxchars = 400)
#end

#if($category=='')
#set ($sql = ", BaseObject as obj where obj.name=doc.fullName and
obj.className='XWiki.ArticleClass' and obj.name<>'XWiki.ArticleClassTemplate'
order by doc.creationDate desc")
#else
#set ($sql = ", BaseObject as obj, DBStringListProperty as prop join
prop.list list where obj.name=doc.fullName and
obj.className='XWiki.ArticleClass' and obj.name<>'XWiki.ArticleClassTemplate'
and obj.id=prop.id.id and prop.id.name='category'  and list='${category}'
order by doc.creationDate desc")
## TODO: feed category
#end
#set($cdate = "")
#set($inbitems = $xwiki.parseInt($nbitems))
#set($inbstart = $xwiki.parseInt($nbstart))
#foreach ($item in $xwiki.searchDocuments($sql, $inbitems, $inbstart))
#set($bentrydoc = $xwiki.getDocument($item))
#if($bentrydoc.fullName == $item)
#set($bentryobj = $bentrydoc.getObject("XWiki.ArticleClass"))
#set($creationDate = $xwiki.formatDate($bentrydoc.creationDate, " dd,
"))
#if($cdate!=$creationDate)
$creationDate
#set ($cdate = $creationDate)
#end

$bentrydoc.display("title","view",
$bentryobj)


#set($content = $bentrydoc.display("extract", "view", $bentryobj))
#if($content=="")
#set($content = $bentrydoc.display("content", "view", $bentryobj))
#if($content.length()>400)
#set($i = $content.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($content = "${content.substring(0,$i)} [...>${bentrydoc.fullName}]")
#end
#else
#set($content = "${content} [...>${bentrydoc.fullName}]")
#end


#set($Author = $bentrydoc.display("extract", "view", $bentryobj))
#if($Author=="")
#set($Author = $bentrydoc.display("AuthorName", "view", $bentryobj))
#if($content.length()>400)
#set($i = $Author.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($Author = "${Author.substring(0,$i)} [...>${bentrydoc.fullName}]")
#end
#else
#set($Author = "${Author} [...>${bentrydoc.fullName}]")
#end


#set($Year = $bentrydoc.display("extract", "view", $bentryobj))
#if($Year=="")
#set($Year = $bentrydoc.display("YearInfo", "view", $bentryobj))
#if($Year.length()>400)
#set($i = $Year.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($Year = "${Year.substring(0,$i)} [...>${bentrydoc.fullName}]")
#end
#else
#set($Year = "${Year} [...>${bentrydoc.fullName}]")
#end


#set($References = $bentrydoc.display("extract", "view", $bentryobj))
#if($References=="")
#set($References = $bentrydoc.display("ReferencesInfo", "view", $bentryobj))
#if($References.length()>400)
#set($i = $References.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($References = "${References.substring(0,$i)} [...>${bentrydoc.fullName
}]")
#end
#else
#set($References = "${References} [...>${bentrydoc.fullName}]")
#end


#set($URL = $bentrydoc.display("extract", "view", $bentryobj))
#if($URL=="")
#set($URL = $bentrydoc.display("URLInfo", "view", $bentryobj))
#if($URL.length()>400)
#set($i = $URL.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($URL = "${URL.substring(0,$i)} [...>${bentrydoc.fullName}]")
#end
#else
#set($URL = "${URL} [...>${bentrydoc.fullName}]")
#end

##Make the content visible or invisible 10-16-07 by Hande

#if(($Author !="") && ($Year !="") || ($References !="") && ($URL !=""))
Author: $bentrydoc.display("AuthorName","view", $bentryobj)
Year: $bentrydoc.display("YearInfo","view", $bentryobj)
Reference: $bentrydoc.display("ReferencesInfo","view",
$bentryobj)
URL: $bentrydoc.display("URLInfo","view", $bentryobj)
#else
##set($content = $bentrydoc.display("content", "view", $bentryobj))
$bentrydoc.getRenderedContent($content)
#end


 ## entry-content

#set($bcategories = $bentryobj.getProperty("category").value)
Posted by #userfn($bentrydoc.creator) at $xwiki.formatDate($bentrydoc.creationDate,
"MMM dd,  HH:mm")#if($bcategories.size() > 0) in
#foreach($bcategory in $bcategories)$bcategory #end#end
#if($bentrydoc.date != $bentrydoc.creationDate) | Modified by #userfn($bentrydoc.author) at $xwiki.formatDate($bentrydoc.date,
"MMM dd,  HH:mm") #end | [$bentrydoc.comments.size()
Comment(s)>${bentrydoc.fullName}?xpage=comments] | Permalink
 ## article_footer
 ## hentry
#end
#end
## prev/next links
#if(($inbstart != 0) || ($velocityCount==$inbitems))

#if ($inbstart!=0)
#set($iprev = $inbstart - $inbitems)
[Previous>$doc.name?nbstart=${iprev}]
#end
#if($velocityCount==$inbitems)
#set($inext = $inbstart + $inbitems)
[Next>$doc.name?nbstart=${inext}]
#end

 ## pagingLinks
#end
 ## hfeed
#end
#blog($category $nbitems $nbstart)



On 10/27/07, Sergiu Dumitriu <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> This is caused by a mistake in the html code of the affected pages,
> most probably a missing or an extra . Us

Re: [xwiki-users] Cannot translate page in xwiki-1.1.1

2007-10-29 Thread Robert Reiner

Hi,

I have the same problem (same firefox browser, but also tried with IE 7.0)
with XWiki version 1.2-milestone-1.5235 and I am also not sure whether I am
missing something or if this is a bug.

Maybe someone could give a hint?

Thank you in advance!

  Robert

PS:
I found the following references in the documentation:
* http://www.xwiki.org/xwiki/bin/view/UserGuide/I18N
*
http://www.xwiki.org/xwiki/bin/view/DevGuide/InternationalizingApplications



Steffen.Balzer wrote:
> 
> Hi all,
>  
> while testing the translation feature with the new xwiki-1.1.1.5166 
> release I bumped into the following problem: Xwiki saves the translation 
> of a page in the default language, regardless of the language I have 
> selected to translate to in edit mode. 
> As a consequence the default translation has been overwritten and no 
> additional translation has been shown in the top-right info panel. For the 
> test environment I've imported the xwiki-enterpise-1.1.1.xar into a naked 
> standalone xwiki installation an configured it with three languages (de, 
> en, fr) and de as default language on the global preferences page. I use 
> the firefox2 as browser. 
> 
> Her are the detailed steps to reproduce ths problem:
> 
> (1) Create new page
> (2) Edit this page in the default laguage and save&view it
> (3) press "Edit"again an select a different langauage in the translation 
> panel => The panel shows that the translation of the selected language is 
> now beeing edited
> (4) Translate the page and save&view it => no additional translation shows 
> up and the  default translation has been overwritten.
> 
> Am I missing here something or is this a bug?
> 
> Thanks a lot for helping me out on this.
> Steffen
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Cannot-translate-page-in-xwiki-1.1.1-tf4645706.html#a13452184
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] Import of Backups

2007-10-29 Thread BOUSQUET Jeremie
Hello,

I can give you just a feedback on export/import operations on large
wiki, because I did it once.

2 remarks (that may help you or not, I'm afraid) :
- for large wikis, I preferred to split my .xar in smaller xars, by
space for example, editing the file containing the list of documents in
each .xar (even if it didn't seem mandatory for me, at least in older
versions of xwiki). It was useful because for large .xar attachments, it
can become VERY painful ...
- you should also check your export before importing. XWiki does not
complain much on export, and almost always it will succeed. But if you
unzip your .xar and have a look inside it, you might see that some pages
failed to be exported, and size of files is 0Kb. To import, you need at
least to delete these empty files. I didn't analyze why export failed
for these pages, so I migrated what I could with .xar, and performed
copy/paste for the others.

These remarks are valid for wiki 0.9 migrated to 1.0, I did not test
massive export/import on last versions.

Jeremie


 

 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Hans-Peter Zorn
Sent: lundi 29 octobre 2007 13:38
To: XWiki Users
Subject: [xwiki-users] Import of Backups

Hi,
I am currently trying to migrate a already populated xwiki from hsqldb 
to mysql.
The first thing I noticed is, that xwiki needs lots of heap space for 
attaching the
backup.xar to the import page. This xar is about 20mb, the wiki is not 
that big, yet
the tomcat process consumes about 1Gb resident memory (2Gb in total) 
while attaching
which leads to massive swapping and slowdown. I wonder what will happen,
if
a wiki is really heavily populated with lots of attachements?

After the xar is attached, I cannot select it, because an exception
occurs:

Wrapped Exception: Error number 2002 in 2: Error parsing xml
Wrapped Exception: Error on line 346 of document  : Character reference 
"" is an invalid XML character. Nested exception: Character reference

"" is an invalid XML character.
at com.xpn.xwiki.web.ImportAction.render(ImportAction.java:94)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:148)
at 
org.apache.struts.action.RequestProcessor.processActionPerform(RequestPr
ocessor.java:431)
at 
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:
236)
at 
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)

Any hints about how to do the migration?

Cheers,
Hans-Peter

___
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] Where do i get the sCHema script for oracle or for mysql?? ccomo me conecto a la base de datos

2007-10-29 Thread Valencia Patiño Julian Enrique
Where do i get  the  sCHema script for oracle  or  for mysql??
ThanX ..

-Mensaje original-
De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Valencia Patiño 
Julian Enrique
Enviado el: Viernes, 26 de Octubre de 2007 09:21 a.m.
Para: XWiki Users
Asunto: Re: [xwiki-users] ccomo me conecto a la base de datos

ThanX .. Where do i get  the  sCHema script for oracle  or  for mysql??

-Mensaje original-
De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Marc Lijour
Enviado el: Viernes, 26 de Octubre de 2007 03:49 a.m.
Para: XWiki Users
Asunto: Re: [xwiki-users] ccomo me conecto a la base de datos

On October 25, 2007 11:33:55 am Valencia Patiño Julian Enrique wrote:
> I just realized  that  I´ve  installed the easier  installer I found .. it
> comes  with  hsqldb ..  in the  hibernate.cfg.xml file  I found that the
>  user is  sa  with no password ..  but  I wanto  to connect to the
>  database through a browser. I want  to  browse  the  database schema to
>  change  some  things  if  it's possible.

Is the wiki working as it should? What do you get from the browser?

This wiki uses hibernate therefore changing the database schema is not a 
simple issue.

Finally, it you want a production class installation you'd want to switch to a 
RDBMS such as MySQL or ORACLE. In that case, follow the instruction given on 
xwiki.org. You can create the database and connect your existing wiki to it 
by commenting out apropriately hibernate.cfg.xml .
___
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] Announcing the XWiki Concerto research project

2007-10-29 Thread Stéphane Laurière
Hi Xavier,

Thank you for the references you sent. They are at the crossroads of the
Concerto project and the Nepomuk-Eclipse taskforce we have in the
NEPOMUK project: http://nepomuk-eclipse.semanticdesktop.org

I was not aware of the specific Eclipse security project, we'll look
into it indeed.

As for ECF, it provides a good abstraction layer for various P2P
protocols indeed. We will consider it.

Cheers

Stéphane




[EMAIL PROTECTED] wrote:
> Hello,
> My one cent contribution ; you could use as backend some eclipse plugins for 
> doing this task :
> * RSP (eclips server plateform) : 
> http://www.eclipse.org/equinox/incubator/server/
> * eclipse security : http://www.eclipse.org/equinox/incubator/security/
> * ECF (Eclipse communication framework) : http://www.eclipse.org/ecf/
> By comning these three projects with xwiki you could have a powerfull xwiki 
> plaeform with plugins, p2p, and so on...
> regards
> Xavier
> 
> On Mon, 15 Oct 2007 11:13:23 +0200, Stéphane Laurière <[EMAIL PROTECTED]> 
> wrote:
>> Hi everyone,
>>
>> I don't think this news was shared with the community yet:
>> XPertNet's team (http://www.xwiki.com) has been selected by the French
>> Research Agency together with a set of partners for conducting a
>> research project for adding P2P and mobility capabilities to XWiki. This
>> project is called "XWiki Concerto".
>>
>> The objectives are the following:
>> - design a fault tolerant P2P architecture for XWiki supporting large
>> scale collaborative editing on a set of peers that synchronize their
>> changes regularly using reconciliation algorithms,
>> - support mobility work: off-line capabilities and UI dedicated to
>> mobile handsets.
>>
>> This project will allow to design a P2P XWiki farm that will scale at
>> much lower costs than classical solutions and will let XWiki users work
>> offline and from handsets with limited capabilities.
>>
>> The set of partners are INRIA, ENST, Mandriva and EISTI. The project's
>> web site is http://concerto.xwiki.com. INRIA teams include ECOO
>> (Environments for COOperation) [1] and ATLAS [2]. ECOO team has
>> expertise in reconciliation techniques, ATLAS has expertise in P2P
>> databases. ENST team focuses on the mobility aspects. EISTI is bringing
>> security expertise. XPertNet, Mandriva and INRIA will experiment with
>> the solutions respectively in the context of the XWiki.com farm, the
>> Mandriva Club wiki and the OW2 wiki.
>>
>> [1] http://www.loria.fr/equipes/ecoo/english/index.html
>> [2] http://www.sciences.univ-nantes.fr/lina/ATLAS/
>>
>> We already delivered a first version of specifications and use cases but
>> it's in French:
>> http://concerto.xwiki.com/xwiki/bin/download/Main/L2/xwikiconcerto-l2.pdf
>>
>> We're currently designing a set of complementary XWiki APIs. I'll send
>> some proposals to the devs list in the next days. Your feedback will be
>> most welcome.
>>
>> There will be many interesting synergies with XEclipse off-line work of
>> course. That'd be good also to investigate about the eRCP capabilities
>> http://www.eclipse.org/ercp/
>>
>> Cheers
>>
>> Stéphane
>>
>>
>>
>>
>>
>>
> 
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users


-- 
Stéphane Laurière
[EMAIL PROTECTED]

XWiki http://www.xwiki.com
http://concerto.xwiki.com
http://nepomuk.semanticdesktop.org


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


Re: [xwiki-users] Request!

2007-10-29 Thread Sergiu Dumitriu
Yes, you are. The mailing list is no longer hosted by objectweb, but
by our own server. Take a look at
http://www.xwiki.org/xwiki/bin/view/Community/MailingLists

Btw, at the end of each mail, there's a link to
http://lists.xwiki.org/mailman/listinfo/users where you can
unsubscribe.

On 10/29/07, Umair Mehmood <[EMAIL PROTECTED]> wrote:
>
>  Hello All.
> I know its not the appropriate place to post this.
> But i have tried to unsubscribe myself from this mailing lists very often
> and it always fails.
> I have tried emailing to the mail address "
> [EMAIL PROTECTED] "and also tried
> unlisting myself from the objectweb mailing list.
> But nothing seems to work. Is there some problem with the server or am i
> missing something?
> --
> regards
> Umair Imam
>
>
> 
> From: [EMAIL PROTECTED]
> To: users@xwiki.org
> Date: Mon, 29 Oct 2007 14:22:53 +0100
> Subject: Re: [xwiki-users] Editing breaks out of frames
>
> Hi Andrew,
>
> We do have a JIRA issue opened for this at
> http://jira.xwiki.org/jira/browse/XWIKI-1072
>
> Now all we need is a patch to fix it ;)
>
> Thanks
> -Vincent
>
>
> On Oct 29, 2007, at 12:50 PM, Andrew Saunders wrote:
>
>  I have xwiki running within an existing frames-based system. Love them or
> hate them, I am unable to change the frames system. My problem is when
> editing with xwiki. When the edit button is selected the edit page opens in
> the parent window. Is the any way I can amend this? This issue only seems to
> occur when editing.
>
>  Thanks
>  Andrew
>

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


[xwiki-users] Request!

2007-10-29 Thread Umair Mehmood

Hello All.
I know its not the appropriate place to post this.
But i have tried to unsubscribe myself from this mailing lists very often and 
it always fails.
I have tried emailing to the mail address " [EMAIL PROTECTED] "and also tried 
unlisting myself from the objectweb mailing list.
But nothing seems to work. Is there some problem with the server or am i 
missing something?
--
regards
Umair Imam


From: [EMAIL PROTECTED]
To: users@xwiki.org
Date: Mon, 29 Oct 2007 14:22:53 +0100
Subject: Re: [xwiki-users] Editing breaks out of frames

Hi Andrew,We do have a JIRA issue opened for this 
athttp://jira.xwiki.org/jira/browse/XWIKI-1072Now all we need is a patch to fix 
it ;)Thanks-Vincent
On Oct 29, 2007, at 12:50 PM, Andrew Saunders wrote:  I have xwiki running 
within an existing frames-based system. Love them or hate them, I am unable to 
change the frames system. My problem is when editing with xwiki. When the edit 
button is selected the edit page opens in the parent window. Is the any way I 
can amend this? This issue only seems to occur when editing.
 
 Thanks
 Andrew   

_
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Editing breaks out of frames

2007-10-29 Thread Vincent Massol

Hi Andrew,

We do have a JIRA issue opened for this at
http://jira.xwiki.org/jira/browse/XWIKI-1072

Now all we need is a patch to fix it ;)

Thanks
-Vincent

On Oct 29, 2007, at 12:50 PM, Andrew Saunders wrote:

I have xwiki running within an existing frames-based system. Love  
them or hate them, I am unable to change the frames system. My  
problem is when editing with xwiki. When the edit button is selected  
the edit page opens in the parent window. Is the any way I can amend  
this? This issue only seems to occur when editing.


Thanks
Andrew



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


Re: [xwiki-users] Live bookmark...

2007-10-29 Thread Vincent Massol

On Oct 29, 2007, at 2:02 PM, V. Harikrishnan Nair wrote:

>
> Oh great ! Will there be a notice on this forum ?

Yes. Should be released in 1 or 2 days.

-Vincent

> Guillaume Lerouge wrote:
>>
>> Hi,
>> you will probably find a satisfying solution to this problem by  
>> using the
>> watchlist feature that will be provided in the new version of XWiki
>> (1.2M2)
>> planned to be released this week.
>>
>> It will allow you to subscribe to the pages you wish on your wiki &  
>> get
>> notifications by mail and / or RSS when those pages are modified...
>> Documentation about the feature coming soon :-)
>>
>> Guillaume
>>
>> On 29/10/2007, V. Harikrishnan Nair <[EMAIL PROTECTED]>  
>> wrote:
>>>
>>>
>>> Hi again...
>>>
>>>  I am asking this after a thorough search on the Internet for a
>>> solution.
>>> I
>>> got many answers but I couldn't understand how to do it. I know it  
>>> is a
>>> very
>>> basic problem but I want help...
>>>
>>>  I tested the Personal RSS by subscribing to a page but the link  
>>> says
>>> 'Live
>>> bookmark feed failed to load' and the error says the 'URL is not  
>>> valid
>>> and
>>> cannot be loaded'. I tried repeatedly to reach it in the bookmark  
>>> manager
>>> but I don't know how to do it...
>>>
>>> Harikrishnan
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Live-bookmark...-tf4709923.html#a13462290
>>> Sent from the XWiki- Users mailing list archive at Nabble.com.
>>>
>>> ___
>>> users mailing list
>>> users@xwiki.org
>>> http://lists.xwiki.org/mailman/listinfo/users
>>>
>>
>>
>>
>> -- 
>> http://wikibc.blogspot.com/
>>
>> ___
>> users mailing list
>> users@xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
>>
>
> -- 
> View this message in context: 
> http://www.nabble.com/Live-bookmark...-tf4709923.html#a13467059
> Sent from the XWiki- Users mailing list archive at Nabble.com.
>
> ___
> 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] Live bookmark...

2007-10-29 Thread Guillaume Lerouge
Hi,

Check the blog on XWiki.org at
http://www.xwiki.org/xwiki/bin/view/Main/News(RSS available here:
http://www.xwiki.org/xwiki/bin/view/Main/RSSFeeds) -> then you'll know as
soon as it gets released :-)
An announcement will probably be posted over here too though.

Guillaume

On 29/10/2007, V. Harikrishnan Nair <[EMAIL PROTECTED]> wrote:
>
>
> Oh great ! Will there be a notice on this forum ?
>
>
> Guillaume Lerouge wrote:
> >
> > Hi,
> > you will probably find a satisfying solution to this problem by using
> the
> > watchlist feature that will be provided in the new version of XWiki
> > (1.2M2)
> > planned to be released this week.
> >
> > It will allow you to subscribe to the pages you wish on your wiki & get
> > notifications by mail and / or RSS when those pages are modified...
> > Documentation about the feature coming soon :-)
> >
> > Guillaume
> >
> > On 29/10/2007, V. Harikrishnan Nair <[EMAIL PROTECTED]>
> wrote:
> >>
> >>
> >> Hi again...
> >>
> >>   I am asking this after a thorough search on the Internet for a
> >> solution.
> >> I
> >> got many answers but I couldn't understand how to do it. I know it is a
> >> very
> >> basic problem but I want help...
> >>
> >>   I tested the Personal RSS by subscribing to a page but the link says
> >> 'Live
> >> bookmark feed failed to load' and the error says the 'URL is not valid
> >> and
> >> cannot be loaded'. I tried repeatedly to reach it in the bookmark
> manager
> >> but I don't know how to do it...
> >>
> >> Harikrishnan
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Live-bookmark...-tf4709923.html#a13462290
> >> Sent from the XWiki- Users mailing list archive at Nabble.com.
> >>
> >> ___
> >> users mailing list
> >> users@xwiki.org
> >> http://lists.xwiki.org/mailman/listinfo/users
> >>
> >
> >
> >
> > --
> > http://wikibc.blogspot.com/
> >
> > ___
> > users mailing list
> > users@xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Live-bookmark...-tf4709923.html#a13467059
>
> Sent from the XWiki- Users mailing list archive at Nabble.com.
>
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



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


Re: [xwiki-users] Attachments & comments

2007-10-29 Thread Vitantonio Messa
V. Harikrishnan Nair wrote:
> 
> Vitantonio Messa wrote:
>> the real problem I'm facing is how to link together comments and 
>> attachments: because when loading one page I should be able to retrieve 
>> the comment with the corresponding attachment.
>>
> 
> you mean, like a pointer ? The attachment has a name (an identification), so
> can't there be a link to that attachment ?
> 

Exactly: the attachment as ad identification (its URL), still is not 
possible (well, I don't know how) to associate that URL with a comment.

The real problem is that I want normal users add comments with 
attachments, in an easy way, without having to enter the URL of the 
attachment...
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Attachments & comments

2007-10-29 Thread V. Harikrishnan Nair


Vitantonio Messa wrote:
> 
> the real problem I'm facing is how to link together comments and 
> attachments: because when loading one page I should be able to retrieve 
> the comment with the corresponding attachment.
> 

you mean, like a pointer ? The attachment has a name (an identification), so
can't there be a link to that attachment ?

-- 
View this message in context: 
http://www.nabble.com/Attachments---comments-tf4695367.html#a13467074
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] Live bookmark...

2007-10-29 Thread V. Harikrishnan Nair

Oh great ! Will there be a notice on this forum ? 


Guillaume Lerouge wrote:
> 
> Hi,
> you will probably find a satisfying solution to this problem by using the
> watchlist feature that will be provided in the new version of XWiki
> (1.2M2)
> planned to be released this week.
> 
> It will allow you to subscribe to the pages you wish on your wiki & get
> notifications by mail and / or RSS when those pages are modified...
> Documentation about the feature coming soon :-)
> 
> Guillaume
> 
> On 29/10/2007, V. Harikrishnan Nair <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi again...
>>
>>   I am asking this after a thorough search on the Internet for a
>> solution.
>> I
>> got many answers but I couldn't understand how to do it. I know it is a
>> very
>> basic problem but I want help...
>>
>>   I tested the Personal RSS by subscribing to a page but the link says
>> 'Live
>> bookmark feed failed to load' and the error says the 'URL is not valid
>> and
>> cannot be loaded'. I tried repeatedly to reach it in the bookmark manager
>> but I don't know how to do it...
>>
>> Harikrishnan
>> --
>> View this message in context:
>> http://www.nabble.com/Live-bookmark...-tf4709923.html#a13462290
>> Sent from the XWiki- Users mailing list archive at Nabble.com.
>>
>> ___
>> users mailing list
>> users@xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
> 
> 
> 
> -- 
> http://wikibc.blogspot.com/
> 
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Live-bookmark...-tf4709923.html#a13467059
Sent from the XWiki- Users mailing list archive at Nabble.com.

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


[xwiki-users] Import of Backups

2007-10-29 Thread Hans-Peter Zorn
Hi,
I am currently trying to migrate a already populated xwiki from hsqldb 
to mysql.
The first thing I noticed is, that xwiki needs lots of heap space for 
attaching the
backup.xar to the import page. This xar is about 20mb, the wiki is not 
that big, yet
the tomcat process consumes about 1Gb resident memory (2Gb in total) 
while attaching
which leads to massive swapping and slowdown. I wonder what will happen, if
a wiki is really heavily populated with lots of attachements?

After the xar is attached, I cannot select it, because an exception occurs:

Wrapped Exception: Error number 2002 in 2: Error parsing xml
Wrapped Exception: Error on line 346 of document  : Character reference 
"" is an invalid XML character. Nested exception: Character reference 
"" is an invalid XML character.
at com.xpn.xwiki.web.ImportAction.render(ImportAction.java:94)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:148)
at 
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at 
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at 
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)

Any hints about how to do the migration?

Cheers,
Hans-Peter

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


Re: [xwiki-users] Live bookmark...

2007-10-29 Thread Guillaume Lerouge
Hi,
you will probably find a satisfying solution to this problem by using the
watchlist feature that will be provided in the new version of XWiki (1.2M2)
planned to be released this week.

It will allow you to subscribe to the pages you wish on your wiki & get
notifications by mail and / or RSS when those pages are modified...
Documentation about the feature coming soon :-)

Guillaume

On 29/10/2007, V. Harikrishnan Nair <[EMAIL PROTECTED]> wrote:
>
>
> Hi again...
>
>   I am asking this after a thorough search on the Internet for a solution.
> I
> got many answers but I couldn't understand how to do it. I know it is a
> very
> basic problem but I want help...
>
>   I tested the Personal RSS by subscribing to a page but the link says
> 'Live
> bookmark feed failed to load' and the error says the 'URL is not valid and
> cannot be loaded'. I tried repeatedly to reach it in the bookmark manager
> but I don't know how to do it...
>
> Harikrishnan
> --
> View this message in context:
> http://www.nabble.com/Live-bookmark...-tf4709923.html#a13462290
> Sent from the XWiki- Users mailing list archive at Nabble.com.
>
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>



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


[xwiki-users] Editing breaks out of frames

2007-10-29 Thread Andrew Saunders
I have xwiki running within an existing frames-based system. Love them or hate 
them, I am unable to change the frames system. My problem is when editing with 
xwiki. When the edit button is selected the edit page opens in the parent 
window. Is the any way I can amend this? This issue only seems to occur when 
editing.

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


Re: [xwiki-users] isUserInGroup

2007-10-29 Thread Your XEN ICT Team - Ricardo Rodriguez
Esbach, Brandon wrote:
> Make sure to add in the space, otherwise it won't know what group you're
> referring to:
> $user.isUserInGroup("XWikiAdminGroup") should read
> $user.isUserInGroup("XWiki.XWikiAdminGroup").  
>
> Note that there is an easier way to get admin rights though; by using
> "hasAdminRights()".  Otherwise use the isUserInGroup
>   
Hi,

The following lines produce a nice It works! when the current user 
belongs to the given group (XWiki.XWikiAdminGroup in this case).

#set ($user = $xwiki.getUser())
#if($user.isUserInGroup("XWiki.XWikiAdminGroup"))
It works!
#end

Brando: I was aware of the hasAdminRights()  option but I need te check 
users belonging to groups not with admin rights.

Thank you so much,



-- 
Ricardo Rodríguez
Your XEN ICT Team

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


[xwiki-users] Live bookmark...

2007-10-29 Thread V. Harikrishnan Nair

Hi again...

  I am asking this after a thorough search on the Internet for a solution. I
got many answers but I couldn't understand how to do it. I know it is a very
basic problem but I want some help...
 
  I tested the Personal RSS by subscribing to a page but the link says 'Live
bookmark feed failed to load' and the error says the 'URL is not valid and
cannot be loaded'. I tried repeatedly to reach it in the bookmark manager
but I don't know how to do it. Can anyone please tell me how ?

Harikrishnan
-- 
View this message in context: 
http://www.nabble.com/Live-bookmark...-tf4709923.html#a13462290
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] About LDAP patch XWIKI-1079

2007-10-29 Thread pentaho
> Fair question. The reason it's not been applied yet IMO is because none
of the current committers are using LDAP and thus noboydy has taken the
time to learn how to set up a LDAP environment and test the patch.

As a side note, the JBoss Portal has a testing infrastructure for their
ldap integration using OpenDS. If someone wants to get serious about
integrating ldap into XWiki, that might be a good starting point.

> So what would help would be if you could apply the patch on a XWiki SVN
trunk version and verify it works fine and doesn't break anything
existing. Reporting that in the jira issue will help a lot and then one
of the committer could more easily apply the patch.

Basically, things work. I have checked authentication and mapping of ldap
groups to XWiki groups and will start to use this in production in a week
or two.

However, the comments that 'simple user' made in jira are all very valid.
There are edge cases where the code isn't correct, and it definitively
needs a review by someone experienced with XWiki internals. The author of
the patch, Gunter Leeb, already statet this, as he had to made a lot of
assumptions in the code.

>From looking at the code, there's a lot of "if xwiki.internal.isTrue(),
then everything should work" without else cases. For example I remember
something like xwikicontext.isVirtual(), where nothing is done if the
context is not virtual.

So, basically, I couldn't tell you anything more than others already did.
I will make a comment in jira once I had the patch running for a few
weeks.

Thanks,
Tobias

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


Re: [xwiki-users] Blogs

2007-10-29 Thread Vitantonio Messa
Hi Kevin,


kpc wrote:
> Vitantonio, Thanks for the response.
> 
> So, let's say my space is called "Schedule".
> 
> Do I clone Xwiki.ArticleClass, Xwiki.ArticleClassTemplate and 
> XWiki.ArticleClassSheet
> as Schedule.ArticleClass, Schedule.ArticleClassTemplate and 
> Schedule.ArticleClassSheet
> and create an equivalent to the XWiki Latest Articles page that uses them?
> 
> Looks like I would also need to create a clone of Blog.Macros as maybe 
> ScheduleBlog.Macros.
> 
> Then if I want this for twenty other spaces, I would repeat the exercise 
> twenty times.
> 
> I wouldn't mind too much doing this, but it seems there ought to be an 
> easier way.
> 

Well, if you find an easier way, let me know! ;-))


> When you said:
>> basically one blog is already a space: all the document in that space
>> are blog post.
> Did you mean that each space is like a blog?

Basically, a Blog is a Space in which you can add only post instead of 
wiki-pages: thus a Blog is a sort of specialized Space (but don't take 
my word as "the truth", I'm quite new too)

> I'm still a pretty dumb new user of XWiki - is there an easy way built iin 
> to see a list of the latest adds or changes for a given space?
> 

I'm pretty sure you can do that: try to look at the code in the "What's 
new" section that comes with the basic XWiki, should be easy to modify.

> Thanks, Kevin
> 
> - Original Message - 
> From: "Vitantonio Messa" <[EMAIL PROTECTED]>
> To: "XWiki Users" 
> Sent: Thursday, October 25, 2007 10:38 PM
> Subject: Re: [xwiki-users] Blogs
> 
> 
>> Hi,
>>
>> basically one blog is already a space: all the document in that space
>> are blog post.
>>
>> You can create a new space and copy on the main page the "wiki-code" in
>> the main page of the original blog blog. Then look in the blog.macros,
>> you need to play with it and do some modification.
>>
>> I don't know if this is the best way, but it worked for me...
>> Hope this will help!
>>
>> Vito
>>
>>
>>
>> kpc wrote:
>>> What would be the best way to set up multiple blogs - say one per space?
>>> Kevin
>>>
>>>
>>> 
>>>
>>> ___
>>> 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] Attachments & comments

2007-10-29 Thread Vitantonio Messa
Hi Harikrishnan,

the real problem I'm facing is how to link together comments and 
attachments: because when loading one page I should be able to retrieve 
the comment with the corresponding attachment.

Vito


V. Harikrishnan Nair wrote:
> Hi Vito,
> 
> You can create an 'add attachment' button which appears after the 'add
> comment' button is pressed...
> 
> Harikrishnan
> 
> 
> 
> Vitantonio Messa wrote:
>> Hi Vincent,
>>
>> of course users that are going to attach files will have editing rights 
>> on those pages. What I want to do is give to an user the possibility to 
>> add a comments on a page and at the same time add a document on that 
>> comment.
>>
>> The difficult is that I don't know how to "mix together" comment and 
>> attachment...
>>
>> Vito
>>
>>
>>
>>
>> Vincent Massol wrote:
>>> Hi Vito,
>>>
>>> If I understand correctly you'd like that anonymous users (or users  
>>> who don't have edit rights at least) are able to add attachments?
>>>
>>> Right now attachments are added using the attachment UI. Of course  
>>> you could modify the comments vm file to add the same ui. What's  
>>> important though is that the user doing the attachment has the  
>>> permission to do so or it'll fail. Right now there's no attachment  
>>> right AFAIK. The logic is that attaching something modifies the  
>>> document and can even overwrites the existing attachments with new  
>>> versions.
>>>
>>> -Vincent
>>>
>>> On Oct 26, 2007, at 8:06 AM, Vitantonio Messa wrote:
>>>
 Hi all,

 I was wondering if there is a way to add an attachment directly from a
 comment... I looked into the commentsinline.vm and  
 attachmentsinline.vm,
 but I don't really find a way to modify those files to have something
 similar to what I need.

 Basically I want let users comment on a document and give them the
 possibility to attach a file in their comments... did anyone do
 something similar? Thanks!

 Vito
>>> ___
>>> 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] Personal RSS plug-in

2007-10-29 Thread V. Harikrishnan Nair

Hi...

   I had imported the PersonalRSSFeed.xar for RSS on every page. Is it
necessary to add the name of the plug-in in the xwiki.plugins in the
xwiki.cfg file ? Is it
com.xpn.xwiki.plugin.PersonalRSSFeed.PersonalRSSFeedPlugin ?

Harikrishnan
-- 
View this message in context: 
http://www.nabble.com/Personal-RSS-plug-in-tf4709766.html#a13461950
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] isUserInGroup

2007-10-29 Thread Your XEN ICT Team - Ricardo Rodriguez
Esbach, Brandon wrote:
> Make sure to add in the space, otherwise it won't know what group you're
> referring to:
> $user.isUserInGroup("XWikiAdminGroup") should read
> $user.isUserInGroup("XWiki.XWikiAdminGroup").  
>
> Note that there is an easier way to get admin rights though; by using
> "hasAdminRights()".  Otherwise use the isUserInGroup
>   
Hi,

The following lines reads It works! when current user belongs to the 
given group (XWiki.XWikiAdminGroup in this case).

#set ($user = $xwiki.getUser())
#if($user.isUserInGroup("XWiki.XWikiAdminGroup"))
It works!
#end

Brando: I was aware of the hasAdminRights()  option but I need te check 
users belonging to groups not with admin rights.

Thank you so much,

-- 
Ricardo Rodríguez
Your XEN ICT Team

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