Hi,
I followed the Tutorial an used the Class Editor. I does not matter if i uses xwiki or a new Web, for both i get the 404.
The following URL is used when i click the "Create this class" button:
http://127.0.0.1:8080/xwiki/edit/FAQs/FAQClass?parent=XWiki.XWikiClasses&te…
May be this an issue of the latest version (0.9.1000)i downloaded via svn ? I tried the 0.9.840 version where everything works fine.
Kind regards
André
> -----Ursprüngliche Nachricht-----
> Von: jeremi joslin [mailto:jeremi23@gmail.com]
> Gesendet: Freitag, 13. Januar 2006 02:25
> An: xwiki-users(a)objectweb.org
> Betreff: Re: [xwiki-users] Create a XWikiClass
>
>
> Hi,
> maybe your URL is wrong.
>
> do you go to an url like :
> http://jeremi.xwiki.com/xwiki/bin/edit/XWiki/FAQClass?xpage=editclass
>
>
> You can see :
> http://www.xwiki.org/xwiki/bin/view/DevGuide/F> AQs+Tutorial
>
> and http://www.xwiki.org/xwiki/bin/view/DevGuide/Packaging+Rules
>
> Jérémi
>
> On 1/12/06, andre.fleischer(a)lhsystems.com
> <andre.fleischer(a)lhsystems.com> wrote:
> >
> > Hi
> >
> > I just downloaded the latest sources from svn and build a fresh war
> > file. (Version 0.9.1000) Then i tried to create a new
> XWikiClass using
> > the XWikiClasses page. I chooes FAQs as Webname and FAQ as
> Class name.
> >
> > I got the error message:
> > HTTP Status 404 - /xwiki/edit/FAQs/FAQClass description The
> requested
> > resource (/xwiki/edit/FAQs/FAQClass) is not available.
> >
> > Any ideas ?
> >
> > Kind regards
> > André
> >
> >
> >
> >
> > --
> > You receive this message as a subscriber of the
> > xwiki-users(a)objectweb.org mailing list. To unsubscribe:
> > mailto:xwiki-users-unsubscribe@objectweb.org
> > For general help: mailto:sympa@objectweb.org?subject=help
> > ObjectWeb mailing lists service home page:
> http://www.objectweb.org/wws
> >
> >
> >
>
>
> --
> Blog:
> http://www.jeremi.info
> LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
> http://www.xwiki.org
> skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
>
>
I create a link in a new page. Let's call the origingating page JOE (in the PEOPLE catagory) and the link in it KAREN. Obviously I can look up JOE in the Search box, but even after I have clicked on the KAREN? reference and added info the particular entry has no TITLE, so 1. I can't look it up in the Search box, and 2. It doesn't fall under my catagory of PEOPLE, and 3. I can't later create a link in SALLY's page that references KAREN.
How the heck do you cross reference? Is this the same as LINKBACK and when will that be ready? I read somewhere that linkbacks is now opperational, but the reference in the FAQs page is empty...
Thanks!
Am Do, den 02.02.2006 schrieb PatrickJ (sent by Nabble.com) um 12:00:
> Suppose I design a skillset application. I define a SkillClass for
> master list of skills. I also define a PersonClass with a DBList
> property with query to list Skill items. It works and I could add a
> person with multiple skill items selected.
>
> I would like to modify Person page display to show details from Person
> object followed by a table that lists his skills along with additional
> information from respective skill objects. This table has to list
> skill details only for those skills associated with the person.
>
> How do I do this? I tried to pick the associated skills one-by-one
> from the property but could not do so with following logic.
>
#set($skillDoc = $xwiki.getDocument("XWiki.SkillClass"))
> #set($perskills=$person.getProperty("SkillList").getValue())
> #foreach ($ps in $perskills)
> SQL to retrieve skill object
You don't need a SQL statement here, I think. Do the following
#set($obj = $skillDoc.getObject("XWiki.SkillClass", <property>, $ps))
<property> := is the name of the property which store the skill
> Display information
$doc.display(<property>, $obj)
<property> := is the name of the property which has the information
> #end
Bye
Frank
--
Dipl. Inform. Frank Häfemeier <frank(a)haefemeier.net>
----------------------------------------------------
Hi everyone,
Yesterday the ObjectWebCon'06 announced the awards of the best use case
contest... and the usage of XWiki by the Mandriva Club was awarded the
best Enterprise Java Use Case award!
Many thanks to all of you, and special thanks to the XWiki team!
I remind you that if you're an XWiki contributor we'll be happy to offer
you a free Club account. The Club credits are available at this URL:
http://club.mandriva.com/xwiki/bin/Main/Credits
Via XWiki, the foundations have been laid down for an enhanced user
experience in the near future on the Club. We plan to develop many new
advanced features in 2006 on top of XWiki, in particular within Nepomuk
project (http://nepomuk.semanticdesktop.org).
Thanks again, and long life to the XWiki project!
Stéphane
Suppose I design a skillset application. I define a SkillClass for master list of skills. I also define a PersonClass with a DBList property with query to list Skill items. It works and I could add a person with multiple skill items selected.
I would like to modify Person page display to show details from Person object followed by a table that lists his skills along with additional information from respective skill objects. This table has to list skill details only for those skills associated with the person.
How do I do this? I tried to pick the associated skills one-by-one from the property but could not do so with following logic.
#set($perskills=$person.getProperty("SkillList").getValue())
#foreach ($ps in $perskills)
SQL to retrieve skill object
Display information
#end
Any pointers on what is wrong or better ways of doing it?
--
View this message in context: http://www.nabble.com/DBListClass-and-Details-t1046024.html#a2718063
Sent from the XWiki- Users forum at Nabble.com.