I made the mistake of adding a news item with a double dash in the name and didn't preview before saving. Consequently, if I include the blog macros the entire home and blog, with the exception of the welcome/intro (and a new news item, is double-strikethrough. I know I could delete a news item if I clicked on the permalink for it but, of course, because of the strikethrough I can't do that. At the moment I have excluded the blog macros so the rest of the home/blog appears and is workable, but there is no news. I have tried editing every page I can think of, but no way to get to that news item. I don't much care if I have the old news items, so if the only way is to somehow get rid of all those, I'm fine with that. Question is...how dod I do that? Thanks!
Sascha,
Thanks for the reply. I didn't intend to spam the list, but I did not
see the two mails I sent out, nor did I receive the mailing Dean Hiller
sent about my mailing. I'll be checking with our Email admins to see if
any filtering is happening somewhere.
Thanks again,
John Palmer
-----Original Message-----
From: Sascha Österle [ mailto:sascha.oe@aon.at <mailto:sascha.oe@aon.at>
]
Sent: Thursday, January 05, 2006 2:39 PM
To: xwiki-users(a)objectweb.org
Subject: Re: [xwiki-users] mail list problems...someone please verify
Hi,
it arrived twice, yesterday and today.
Sascha
Hiller, Dean wrote:
> John has been mailing to this list, but he wasn't sure if it was going
> through. Did anyone receive the following mail previously? Please
> just one person reply all to let us know his mail to the list
> successful. I am not trying to verify this mail.....I know my mailing
> to the list works. I am trying to verify the below mail. I
> personally can't tell as some mail list software is smart enough not
> to give me mail twice.
> thanks,
> dean
>
> -----Original Message-----
> *From:* jpalmer(a)purina.com [ mailto:jpalmer@purina.com
<mailto:jpalmer@purina.com> ]
> *Sent:* Thursday, January 05, 2006 6:17 AM
> *To:* xwiki-users(a)objectweb.org
> *Cc:* dhiller(a)carrieraccess.com
> *Subject:* {pre} tags not working
>
> Greetings,
> I'm working on a locally installed XWiki, using the 0.9.840 release.
> I've got a couple problems with Wiki syntax that I need assistance
with.
>
> First, I want to use the {pre} tags around some text, but XWiki seems
> to be stripping the tags out. For example:
>
> this {pre}*text*{/pre} sample
>
> ...will show up with "text" in bold type. When I edit the page, the
> {pre} tags are gone.
>
> this *text* sample
>
> Our XWiki installation is very new. {pre} worked for a while, but then
> stopped working, making me question whether there was a (system?)
> change made a some point that caused {pre} to stop working.
>
> I've also got problems where Wiki {table} will turn to HTML the next
> time the page is edited. Is this related to, or somehow a clue to the
> {pre} problem?
>
> Thanks in advance for any assistance,
> John
>
> ----------------------------------------------------------------------
> --
>
>
> --
> You receive this message as a subscriber of the
> xwiki-users(a)objectweb.org mailing list. To unsubscribe:
> mailto:xwiki-users-unsubscribe@objectweb.org
<mailto:xwiki-users-unsubscribe@objectweb.org>
> For general help: mailto:sympa@objectweb.org?subject=help
<mailto:sympa@objectweb.org?subject=help>
> ObjectWeb mailing lists service home page:
http://www.objectweb.org/wws <http://www.objectweb.org/wws>
>
Hi,
Am I right in thinking list properties can currently only be displayed
as HTML select elements, and that checkbox/radio button displays are
currently not implemented?
Cheers,
Robin
Hi all,
I'd like a property in a class to represent a list of all users, plus
an "unknown" option so that the field can be left "blank" if required.
I can get the list of users with the hibernate query:
select prop.value from BaseObject as obj, StringProperty as prop
where obj.className='XWiki.XWikiUsers'
and prop.id.id = obj.id
and prop.id.name='fullname'
order by prop.value
But don't know how (or if it's possible) to modify the query to append
an extra static value like "unknown".
I would rather not create a dummy user to represent this value, and if
I can avoid creating a separate dummy class and object to hold the
value that would be good too.
If the list class could understand velocity arrayLists rather than the
hibernate query, I could do something like:
### Select all users: ###
#set($query = "select prop.value from BaseObject as obj,
StringProperty as prop where obj.className='XWiki.XWikiUsers' and
prop.id.id = obj.id and prop.id.name='fullname' order by prop.value")
#set($users = $xwiki.search($query))
### append an extra value: ###
#$users.add("(unknown)")
Is there a way to modify the hibernate query to achieve the same
effect directly in the class editor?
Thanks,
Robin.
ah, I found what the locking bug was. It is only when using WYSIWYG. If I
use normal wiki editing, it works fine. If I use WYSIWYG, it does no
locking and two people can edit the document. guess I really do have to
wait for the new WYSIWYG release :(. I was hoping not to slow adoption as
people here find that difficult(dealing with business types).
thanks,
dean
John has been mailing to this list, but he wasn't sure if it was going
through. Did anyone receive the following mail previously? Please just one
person reply all to let us know his mail to the list successful. I am not
trying to verify this mail.....I know my mailing to the list works. I am
trying to verify the below mail. I personally can't tell as some mail list
software is smart enough not to give me mail twice.
thanks,
dean
-----Original Message-----
From: jpalmer(a)purina.com [mailto:jpalmer@purina.com]
Sent: Thursday, January 05, 2006 6:17 AM
To: xwiki-users(a)objectweb.org
Cc: dhiller(a)carrieraccess.com
Subject: {pre} tags not working
Greetings,
I'm working on a locally installed XWiki, using the 0.9.840 release. I've
got a couple problems with Wiki syntax that I need assistance with.
First, I want to use the {pre} tags around some text, but XWiki seems to be
stripping the tags out. For example:
this {pre}*text*{/pre} sample
...will show up with "text" in bold type. When I edit the page, the {pre}
tags are gone.
this *text* sample
Our XWiki installation is very new. {pre} worked for a while, but then
stopped working, making me question whether there was a (system?) change
made a some point that caused {pre} to stop working.
I've also got problems where Wiki {table} will turn to HTML the next time
the page is edited. Is this related to, or somehow a clue to the {pre}
problem?
Thanks in advance for any assistance,
John
Greetings,
I'm working on a locally installed XWiki, using the 0.9.840 release.
I've got a couple problems with Wiki syntax that I need assistance with.
First, I want to use the {pre} tags around some text, but XWiki seems to
be stripping the tags out. For example:
this {pre}*text*{/pre} sample
...will show up with "text" in bold type. When I edit the page, the
{pre} tags are gone.
this *text* sample
Our XWiki installation is very new. {pre} worked for a while, but then
stopped working, making me question whether there was a (system?) change
made a some point that caused {pre} to stop working.
I've also got problems where Wiki {table} will turn to HTML the next
time the page is edited. Is this related to, or somehow a clue to the
{pre} problem?
Thanks in advance for any assistance,
John
I'm working on a large document that I've split into sections using
the includeTopic tag. However, I notice that once I use an
includeTopic tag, that PDFs can no longer be generated (it tries to
open an html page rather than a pdf.) Is there a workaround to
prevent this behavior?
Also, is there an xwiki bugs page to see if items like this have been
submitted prior?
Thanks in advance,
Vern
Is it possible to add other attributes / properties to a "wiki page"?
For example when you edit a page, you currently get the page content,
parent, default language and creator properties. Can you add additional
properties such as keywords / tags which may be referenced by scripts?
Thanks.
Duke