I stole this from 2 previous emails. Can someone confirm if this is
correct if I want a display of all orphaned pages in my xwiki?
#set ($sql = "where doc.parent is null or doc.parent=''")
#set ($start = 0) #set ($nb = 500)
#set($curweb="")
#foreach ($item in $xwiki.searchDocuments($sql, $nb , $start))
#if ($xwiki.hasAccessLevel("view", "${context.database}:${item}"))
#set($bentrydoc = $xwiki.getDocument($item))
#if($curweb!=${bentrydoc.web})
<div>
1.1 ${bentrydoc.web}
</div>
#set ($curweb = ${bentrydoc.web})
#end
* [$bentrydoc.name>${bentrydoc.web}.$bentrydoc.name] by
$xwiki.getLocalUserName($bentrydoc.author) on
$xwiki.formatDate($bentrydoc.date,"MMMM dd, yyyy HH:mm")
<a href="$bentrydoc.getURL("edit")">edit</a>
#end
#end
Hi,
Sorry if this question was already asked. Is there a way to make
available the Calendar, Photo album and blog but for individual spaces?
It would mean that only user from that space would see the content of
these sections.
To make this clearer:
- Space 1
o Calendar 1
o Photo Album 1
o Blog 1
- Space 2
o Calendar 2
o Photo Album 2
o Blog 2
For example, calendar 1 and calendar 2 would have totally different
content only available to the users own their current space.
Thanks for your help,
Christian Dionne
Devez-vous vraiment imprimer ce courriel? Pensons a l'environnement! Do you really need to print this email? Help preserve our environment!
L'information apparaissant dans ce message electronique et dans les documents qui y sont joints est de nature confidentielle ou privilegiee. Si ce message vous est parvenu par erreur et que vous n'en etes pas le destinataire vise, vous etes par les presentes avises que toute utilisation, copie ou distribution de ce message est strictement interdite. Vous etes donc prie d'en informer immediatement l'expediteur et de detruire ce message, ainsi que les documents qui y sont joints, le cas echeant.
The information in this message, including in all attachments, is confidential or privileged. In the event you have received this message in error and are not the intended recipient, you are hereby advised that any use, copying or reproduction of this document is strictly forbidden. Please notify immediately the sender of this error and destroy this message, including its attachments, as the case may be.
__________________________________________________________
Hello everybody. I don't know if it is a stupid question but...
I hava e page, called "Father" and his child, "Child"
If I change Father's name to "Dad", then Child's parent remains Father, even
if it does not exist anymore. Is there a way to automatically follow the
renaming of the page, making Child's parent become Dad, as it happens with
links?
Thank you
--
View this message in context: http://n2.nabble.com/Change-parents%27-name-tp2231543p2231543.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
I have two xwikis running on two different servers, with different databases. I want to centralize those xwikis in only one server. Therefore, I'm looking for a way (or a tool) to merge the information present in the xwiki on the server that will be disabled, into the database of the xwiki running on the central server, that will remain active. The structure of the old wiki will remain the same, and will be accessed from a link at the main page of the xwiki that will remain active.
Does anyone know if it is possible to do that?! If it is, how can I accomplish this?
Thanks a lot,
Roney Castro
I'm unable to get into Panel Wizard on
http://patternlanguagenetwork.myxwiki.org
Does it require Programming rights? I wish to add a Tag Cloud on the
side bar but I'm unable to get in.
It just hangs for 20+ secs then the main Admin page is displayed again.
I want to add a new panel "TagCloud" based on Tag Cloud Snippet.
Thanks
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(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
***** I'm posting this again cos the whole post got mixed up with
another post "Custom class field as field on a different class
<http://n2.nabble.com/Custom-class-field-as-field-on-a-different-class-t
p2152709p2239310.html> " *****
As written previously I'm trying to trigger some code on document save.
Sergiu Dumitriu explained issue I had with
(com.xpn.xwiki.doc.XWikiDocument vs.
com.xpn.xwiki.api.Document). I got most the stuff to work except (last
two lines of code) I am not able to save image from url as attachment.
I get Wrapped Exception: No signature of method
com.xpn.xwiki.doc.XWikiDocument.addAttachment() is applicable for
argument types: (java.lang.String, [B, com.xpn.xwiki.XWikiContext)
values: {"notif1.png", [-119,.., ["vcontext":...]}
Looking at the documentation at
http://maven.xwiki.org/site/xwiki-core-parent/xwiki-core/apidocs/com/xpn
/xwiki/doc/XWikiDocument.html
Says " XWikiAttachment | addAttachment(java.lang.String fileName, byte[]
data, XWikiContext context) "
Have I got type issue here or???
This is what I'm doing
def doc = xwiki.getDocument(docName, context); //use this for
com.xpn.xwiki.XWiki def tmpElList = el.split("[\"]") def umlImage =
tmpElList[1] def imgAsBites =
xwiki.getURLContentAsBytes("http://www.websequencediagrams.com/index.php
"+umlImage, context);
def newAttachment = doc.addAttachment(filenameToSavaAs,imgAsBites,
context); //use this for com.xpn.xwiki.XWiki
saveAttachmentContent(newAttachment,context);
Has anyone had a similar problem?
Ajdin
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf
Of Sergiu Dumitriu
Sent: 14 January 2009 17:03
To: XWiki Users
Subject: Re: [xwiki-users] groovy.lang.MissingMethodException
Ajdin Brandic wrote:
> Hi
>
> I'm trying to execute another script on "Save" event. I've created a
> notification class (based on xwiki example
> http://dev.xwiki.org/xwiki/bin/view/Drafts/GroovyNotifications) and
> pointed to it in "Administration > Programming > Notification pages".
>
> This script gets called every time which is fine and when I try to
> display name of a document that is being saved (doc.fullName) all
> works well. document name it works fine but when I try to display one
> of the fieldnames doc.display('Summary') I get
>
> groovy.lang.MissingMethodException: No signature of method
> com.xpn.xwiki.doc.XWikiDocument.display() is applicable for argument
> types: (java.lang.String) values: {"Summary"}
>
> I tried
> def tmpDoc = context.getWiki().getDocument(doc.fullName, context);
> But again fullName is OK but display('Summary') isn't
>
> Am I missing something in my syntax? How do I make document values
> available in my Notification class?
As you see, that is not an api object, but an internal class
(com.xpn.xwiki.doc.XWikiDocument vs. com.xpn.xwiki.api.Document). This
means that API methods don't work, unless they have an equivalent in the
other class.
You can either look at the methods of the XWikiDocument class, or get an
API object and work with it (new com.xpn.xwiki.apiDocument(tmpDoc)
--
Sergiu Dumitriu
http://purl.org/net/sergiu/
_______________________________________________
users mailing list
users(a)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(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Thanks Mike
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On Behalf
Of Mike A.
Sent: 29 January 2009 19:41
To: XWiki Users
Subject: Re: [xwiki-users] table border color - XE 1.8M1
If it's default xwiki table, then edit the style.css
(/xwiki/skins/yourskin/style.css as I remember):
.wiki-table {
margin: 1em 0;
}
1em will be for top and bottom margin.
if this doesn't help, try wrapping your table into special div:
"yourtable"
and the style would be:
.table-container table {
margin: 1em 0;
}
Quoting "goldring, richard" : Mike,
Thanks.
Where/how do I set the style - what steps? Is this some global wiki
style
thing or can it be per page or space?
Regards,
Richard
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On
Behalf
Of Mike A.
Sent: 29 January 2009 13:49
To: XWiki Users
Subject: Re: [xwiki-users] table border color - XE 1.8M1
"Also noted that the table gets centred on the page - can't seem to
left or"
Have you tried setting margin to 0 in style? It can't be a bug,
it's
all about style how's table being positioned.
Quoting Marius Dumitru Florea : Hi,
goldring, richard wrote:
> Yes I concurr - my users would find the WYSIWYG table border
editing very
> useful, plus sizing of tables.
> Also noted that the table gets centred on the page - can't seem
to
left or
This seems like a bug. Maybe you can open a jira issue and specify
there
which are the steps to reproduce.
> right justify it. Also can't insert tables within tables. Also
the
bulleting
> breaks when switching between the WYSIWYG editor and the wiki
editor.
In 1.8M1 the XWiki 2.0 syntax doesn't support block level elements
(like
lists or tables) inside table cells. By 1.8 final we'll have a
syntax
for (so called) embedded documents which will allow us to have
block
level elements inside table cells and list items. Till then we have
to
face this limitation.
Marius
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On
Behalf
> Of Marius Dumitru Florea
> Sent: 28 January 2009 16:59
> To: XWiki Users
> Subject: Re: [xwiki-users] table border color - XE 1.8M1
>
>
> Sebastian Kannengiesser wrote:
>> Thanx guys for your responses,
>>
>> despite the problem that automatic switching between syntax 1.0
and
>> syntax 2.0 does not work here (just via deleting content and
saving
>> empty document with new syntax setting works), with Syntax 2.0,
i.e.
>> the "new" wysiwyg editor, I don't have a right-click popup menu
>> anymore to set table properties at all or is there a new way to
do
>
> At this moment you cannot change the table border using the new
WYSIWYG
> editor. Unfortunately, AFAIK, this feature hasn't been planed for
1.8.
> You can open a JIRA issue and we'll handle it in the 1.9 time
span.
> Until then you can still style your table with the XWiki 2.0
syntax,
> from the Wiki editor, by writing something like:
>
> (% style="background-color: gray;" %)
> |= foo|=bar
> |(% style="font-size:24pt;" %)a|(% class="loading" %)b
>
>> this. Sorry guys, for my many problems, but I think these are
some
>> very elemental Wiki features that I just can't get to work by
using my
>> intuition. Help is really appreciated. I plan to convince my
company
>> of using XWiki in a large style, but these features just have to
work.
>
> We'll try to make this features available as soon as possible.
>
> Thanks,
> Marius
>
>> Many thanx.
>>
>> Cheers,
>> Sebastian
>>
>> On Wed, Jan 28, 2009 at 10:54 AM, Marius Dumitru Florea
>> wrote:
>>> Sebastian Kannengiesser wrote:
>>>> Hi guys,
>>>>
>>>> thanx for your quick replies.
>>>>
>>>> I was using wysiwyg and syntax 1.0. Wiki Code generated is:
>>>>
>>>> 1: {table}
>>>> 2: 2 |2
>>>> 3: 2|2
>>>> 4: {table}
>>>>
>>>> @Vincent: How can I find out, if the editor I'm using is the
new or
>>>> old one? As I said, I'm using XE-1.8M1 Revision:15566
>>> The old WYSIWYG is enabled for XWiki 1.0 syntax (which you're
using). To
>>> try the new one you have to switch to XWiki 2.0 syntax.
>>>
>>> Hope this helps,
>>> Marius
>>>
>>>> Cheers,
>>>> Sebastian
>>>>
>>>>
>>>> On Wed, Jan 28, 2009 at 10:31 AM, Thomas Mortagne
>>>> wrote:
>>>>> Hi,
>>>>>
>>>>> If you look at the source in wiki mode, what is the syntax
generated
>>>>> by the WYSIWYG ?
>>>>>
>>>>> On Wed, Jan 28, 2009 at 10:24 AM, Sebastian Kannengiesser
>>>>> wrote:
>>>>>> Hi guys,
>>>>>>
>>>>>> changing border color for tables (i.e setting 000000 for
making them
>>>>>> black) has no effect on the table, when saving the document.
(using
>>>>>> eysiwyg editor)
>>>>>>
>>>>>> Cheers,
>>>>>> Sebastian
>>>>>>
>>>>>> PS: Should i better post to another list or preferable
should
i
>>>>>> register on your jira, and post stuff there?
>>>>>> _______________________________________________
>>>>>> users mailing list
>>>>>> users(a)xwiki.org
>>>>>> http://lists.xwiki.org/mailman/listinfo/users
>>>>>>
>>>>> --
>>>>> Thomas Mortagne
>>>>> _______________________________________________
>>>>> users mailing list
>>>>> users(a)xwiki.org
>>>>> http://lists.xwiki.org/mailman/listinfo/users
>>>>>
>>>> _______________________________________________
>>>> users mailing list
>>>> users(a)xwiki.org
>>>> http://lists.xwiki.org/mailman/listinfo/users
>>> _______________________________________________
>>> users mailing list
>>> users(a)xwiki.org
>>> http://lists.xwiki.org/mailman/listinfo/users
>>>
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
> Thales UK Ltd (Wells) DISCLAIMER: The information contained in
this e-mail
> is confidential. It may also be legally privileged. It is
intended
only for
> the stated addressee(s) and access to it by any other person is
> unauthorised. If you are not an addressee, you must not disclose,
copy,
> circulate or in any other way use or rely on the information
contained in
> this e-mail. Such unauthorised use may be unlawful. We may
monitor
all
> e-mail communications through our networks. If you have received
this e-mail
> in error, please inform us immediately on sender's telephone
number above
> and delete it and all copies from your system. We accept no
responsibility
> for changes to any e-mail which occur after it has been sent.
Attachments
> to this e-mail may contain software viruses which could damage
your system.
> We therefore recommend you virus-check all attachments before
opening.
> Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The
Bourne
Business
> Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in
England
No.
> 868273
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Best regards, Mike
Links:
------
[1] mailto:mariusdumitru.florea@xwiki.com
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this
e-mail
is confidential. It may also be legally privileged. It is intended
only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose,
copy,
circulate or in any other way use or rely on the information
contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor
all
e-mail communications through our networks. If you have received
this e-mail
in error, please inform us immediately on sender's telephone number
above
and delete it and all copies from your system. We accept no
responsibility
for changes to any e-mail which occur after it has been sent.
Attachments
to this e-mail may contain software viruses which could damage your
system.
We therefore recommend you virus-check all attachments before
opening.
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne
Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England
No.
868273
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Best regards, Mike
Links:
------
[1] mailto:richard.goldring@uk.thalesgroup.com
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on sender's telephone number above
and delete it and all copies from your system. We accept no responsibility
for changes to any e-mail which occur after it has been sent. Attachments
to this e-mail may contain software viruses which could damage your system.
We therefore recommend you virus-check all attachments before opening.
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
Mike,
Thanks.
Where/how do I set the style - what steps? Is this some global wiki style
thing or can it be per page or space?
Regards,
Richard
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On Behalf
Of Mike A.
Sent: 29 January 2009 13:49
To: XWiki Users
Subject: Re: [xwiki-users] table border color - XE 1.8M1
"Also noted that the table gets centred on the page - can't seem to
left or"
Have you tried setting margin to 0 in style? It can't be a bug, it's
all about style how's table being positioned.
Quoting Marius Dumitru Florea : Hi,
goldring, richard wrote:
> Yes I concurr - my users would find the WYSIWYG table border
editing very
> useful, plus sizing of tables.
> Also noted that the table gets centred on the page - can't seem to
left or
This seems like a bug. Maybe you can open a jira issue and specify
there
which are the steps to reproduce.
> right justify it. Also can't insert tables within tables. Also the
bulleting
> breaks when switching between the WYSIWYG editor and the wiki
editor.
In 1.8M1 the XWiki 2.0 syntax doesn't support block level elements
(like
lists or tables) inside table cells. By 1.8 final we'll have a
syntax
for (so called) embedded documents which will allow us to have block
level elements inside table cells and list items. Till then we have
to
face this limitation.
Marius
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]On
Behalf
> Of Marius Dumitru Florea
> Sent: 28 January 2009 16:59
> To: XWiki Users
> Subject: Re: [xwiki-users] table border color - XE 1.8M1
>
>
> Sebastian Kannengiesser wrote:
>> Thanx guys for your responses,
>>
>> despite the problem that automatic switching between syntax 1.0
and
>> syntax 2.0 does not work here (just via deleting content and
saving
>> empty document with new syntax setting works), with Syntax 2.0,
i.e.
>> the "new" wysiwyg editor, I don't have a right-click popup menu
>> anymore to set table properties at all or is there a new way to
do
>
> At this moment you cannot change the table border using the new
WYSIWYG
> editor. Unfortunately, AFAIK, this feature hasn't been planed for
1.8.
> You can open a JIRA issue and we'll handle it in the 1.9 time
span.
> Until then you can still style your table with the XWiki 2.0
syntax,
> from the Wiki editor, by writing something like:
>
> (% style="background-color: gray;" %)
> |= foo|=bar
> |(% style="font-size:24pt;" %)a|(% class="loading" %)b
>
>> this. Sorry guys, for my many problems, but I think these are
some
>> very elemental Wiki features that I just can't get to work by
using my
>> intuition. Help is really appreciated. I plan to convince my
company
>> of using XWiki in a large style, but these features just have to
work.
>
> We'll try to make this features available as soon as possible.
>
> Thanks,
> Marius
>
>> Many thanx.
>>
>> Cheers,
>> Sebastian
>>
>> On Wed, Jan 28, 2009 at 10:54 AM, Marius Dumitru Florea
>> wrote:
>>> Sebastian Kannengiesser wrote:
>>>> Hi guys,
>>>>
>>>> thanx for your quick replies.
>>>>
>>>> I was using wysiwyg and syntax 1.0. Wiki Code generated is:
>>>>
>>>> 1: {table}
>>>> 2: 2 \ |2 \
>>>> 3: 2|2\
>>>> 4: {table}
>>>>
>>>> @Vincent: How can I find out, if the editor I'm using is the
new or
>>>> old one? As I said, I'm using XE-1.8M1 Revision:15566
>>> The old WYSIWYG is enabled for XWiki 1.0 syntax (which you're
using). To
>>> try the new one you have to switch to XWiki 2.0 syntax.
>>>
>>> Hope this helps,
>>> Marius
>>>
>>>> Cheers,
>>>> Sebastian
>>>>
>>>>
>>>> On Wed, Jan 28, 2009 at 10:31 AM, Thomas Mortagne
>>>> wrote:
>>>>> Hi,
>>>>>
>>>>> If you look at the source in wiki mode, what is the syntax
generated
>>>>> by the WYSIWYG ?
>>>>>
>>>>> On Wed, Jan 28, 2009 at 10:24 AM, Sebastian Kannengiesser
>>>>> wrote:
>>>>>> Hi guys,
>>>>>>
>>>>>> changing border color for tables (i.e setting 000000 for
making them
>>>>>> black) has no effect on the table, when saving the document.
(using
>>>>>> eysiwyg editor)
>>>>>>
>>>>>> Cheers,
>>>>>> Sebastian
>>>>>>
>>>>>> PS: Should i better post to another list or preferable should
i
>>>>>> register on your jira, and post stuff there?
>>>>>> _______________________________________________
>>>>>> users mailing list
>>>>>> users(a)xwiki.org
>>>>>> http://lists.xwiki.org/mailman/listinfo/users
>>>>>>
>>>>> --
>>>>> Thomas Mortagne
>>>>> _______________________________________________
>>>>> users mailing list
>>>>> users(a)xwiki.org
>>>>> http://lists.xwiki.org/mailman/listinfo/users
>>>>>
>>>> _______________________________________________
>>>> users mailing list
>>>> users(a)xwiki.org
>>>> http://lists.xwiki.org/mailman/listinfo/users
>>> _______________________________________________
>>> users mailing list
>>> users(a)xwiki.org
>>> http://lists.xwiki.org/mailman/listinfo/users
>>>
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
> Thales UK Ltd (Wells) DISCLAIMER: The information contained in
this e-mail
> is confidential. It may also be legally privileged. It is intended
only for
> the stated addressee(s) and access to it by any other person is
> unauthorised. If you are not an addressee, you must not disclose,
copy,
> circulate or in any other way use or rely on the information
contained in
> this e-mail. Such unauthorised use may be unlawful. We may monitor
all
> e-mail communications through our networks. If you have received
this e-mail
> in error, please inform us immediately on sender's telephone
number above
> and delete it and all copies from your system. We accept no
responsibility
> for changes to any e-mail which occur after it has been sent.
Attachments
> to this e-mail may contain software viruses which could damage
your system.
> We therefore recommend you virus-check all attachments before
opening.
> Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne
Business
> Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England
No.
> 868273
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Best regards, Mike
Links:
------
[1] mailto:mariusdumitru.florea@xwiki.com
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on sender's telephone number above
and delete it and all copies from your system. We accept no responsibility
for changes to any e-mail which occur after it has been sent. Attachments
to this e-mail may contain software viruses which could damage your system.
We therefore recommend you virus-check all attachments before opening.
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273
Dear all,
is it possible to search with the lucene search only in a selected class?
e.g. I want to search in the TodoClass for "Todo OR Read" only in the
"Description" class.
Or is there another possibility?
thanks
juergen