Hi Fabio,
Thank you so much for your time & response. I really appreciate your gesture
of sending over the maven project files. I was able to build the xwiki rest
.jar & use it successfully in my project :)
"Your code is correct (except the method getPageSummary() which doesn't
exist in my generated JAXB model classes, but this could be due to the
fact that you are generating them without the simple bindings)"
I think the problem is from where you get your JAXB generated model
classes (which is not clear from the code you posted).
Anyway I tried your code and it works perfectly (modulo a renaming of
getPageSummary() to getPageSummaries())."
I generated the model classes from the .xsd file mentioned in the XWiki
Restful API tutorial at
http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-rest/src/main/r
esources/xwiki.rest.model.xsd
I've used XJC which was bundled with the JAXB 2.1 distribution. Surprisingly
despite using the .xsd that you provided in your project, the XJC still
created a very small Pages.java file. It barely had one method which was the
getPageSummary() method.
However, when I checked the Pages.class file in the jar from your project,
it contained quite a few methods (including the one that I was longing to
see). The difference in technique that I see here is that the jar was built
using mvn while my class files were created using XJC through command
prompt.
Not sure if there are version differences in any of the dependencies whilst
using the two methods. Will have to look into that.
"Since I am not able to spot the problem from your mail, I attach to
this reply the project I used to do the test. You can look at it and
find where are the differences wrt what you wrote. You could also use
it as a template for writing JAXB-clients for the XWiki RESTful API.
Hope this help.
-Fabio"
It is help that arrived just in time Fabio. We have an internal
trouble-ticketing application. The XWiki instance is projected to be our
knowledge base & went live just today. We wanted our application to extract
tags & pass on to XWiki which in turn would return trouble-shooting
articles. Probably, once the search feature is successful, we would like to
be able to "push" new articles/pages to XWiki from our internal application
at the click of a button.
Your work is a great starting point. This will give XWiki a lot more
portability in today's times when applications "interacting" with each other
is becoming a must.
Thanks Fabio...
Hello friends,
I am really stuck on retrieving a list of pages based on tags associated to
them using the XWiki RESTful service.
The regular page fetch works fine & so do some other API calls. However,
when I retrieve a list of pages based on tags the code returns an empty
result. But when I lookup the same URL in a browser I can see number of
pages listed for that tag.
Any Tags object is a complex type which returns Pages & PageSummary objects
as output.
Could someone please help me out with just the few crucial lines that I am
missing here. I would have to write an XML parser if this does not work out.
However, I was really hoping that I would be able to implement this in JAXB
itself. Thank you for your time guys.
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBContext.*;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.GetMethod;
import java.io.IOException;
import javax.xml.bind.JAXBElement;
import javax.xml.transform.stream.StreamSource;
import org.xwiki.Pages;
import org.xwiki.Space;
public class Main{
public static void main(String[] args) throws JAXBException, IOException {
HttpClient httpClient = new HttpClient();
JAXBContext context = JAXBContext.newInstance("org.xwiki");
Unmarshaller un = context.createUnmarshaller();
GetMethod getMethod = new
GetMethod("http://localhost:8080/xwiki/rest/wikis/xwiki/tags/admin");
getMethod.addRequestHeader("Accept", "application/xml");
httpClient.executeMethod(getMethod);
JAXBElement<Pages> pages = un.unmarshal(new
StreamSource(getMethod.getResponseBodyAsStream()),Pages.class);
Pages pg = pages.getValue();
System.out.println(pg.getPageSummary().size());
}
}
Regards,
Dilipkumar Jadhav
It was stock except the threshold for spam I think was 217.
On 11/4/09 5:00 AM, "users-request(a)xwiki.org" <users-request(a)xwiki.org>
wrote:
> Send users mailing list submissions to
> users(a)xwiki.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.xwiki.org/mailman/listinfo/users
> or, via email, send a message with subject or body 'help' to
> users-request(a)xwiki.org
>
> You can reach the person managing the list at
> users-owner(a)xwiki.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of users digest..."
>
>
> Today's Topics:
>
> 1. Re: Problem editing pages (Sergiu Dumitriu)
> 2. Re: Problem editing pages (Marius Dumitru Florea)
> 3. AUTO: MaryEllen Coleman/Poughkeepsie/IBM is out of the
> office. (returning 11/04/2009) (MaryEllen Coleman)
> 4. [ANN] XWiki Enterprise 2.0.3 and XWiki Enterprise Manager
> 2.0.3 Released (Thomas Mortagne)
> 5. Re: [myxwiki] new wiki request (Thomas Mortagne)
> 6. Problem Editing Pages (Mike Ruocco)
> 7. First contact question (coriscow)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 03 Nov 2009 14:51:15 +0100
> From: Sergiu Dumitriu <sergiu(a)xwiki.com>
> Subject: Re: [xwiki-users] Problem editing pages
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <4AF03553.1050308(a)xwiki.com>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> On 11/03/2009 09:41 AM, Guillaume Lerouge wrote:
>> By the way Marius, I also experienced that issue a couple times while
>> testing and it's pretty frustrating because when it happens the user gets
>> "stuck" on the page -> clicking on "cancel" also returns the "Exception
>> while parsing HTML" issue.
>>
>> Is there a way we could at least make the "Cancel" button work in such
>> cases? So that the user can return to the pre-breakage situation?
>
> This should already be the case, since the editor button improvements.
> Now Cancel simply cancels, doesn't send the data back to the server.
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
>
>
> ------------------------------
>
> Message: 2
> Date: Tue, 03 Nov 2009 15:51:16 +0200
> From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com>
> Subject: Re: [xwiki-users] Problem editing pages
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <4AF03554.3000809(a)xwiki.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi Guillaume,
>
> Guillaume Lerouge wrote:
>> Hi,
>>
>> On Tue, Nov 3, 2009 at 8:31 AM, Marius Dumitru Florea <
>> mariusdumitru.florea(a)xwiki.com> wrote:
>>
>>> Hi Mike,
>>>
>>> Mike Ruocco wrote:
>>>> Hello,
>>>>
>>>> We are having a problem with Xwiki 2.0.2. Everything was working for a
>>> few days but now when people go to edit their pages they do not get a drop
>>> down for the Edit button. You can only click edit and it brings you to the
>>> Wysiwyg editor. If there are links to other pages in the page we are editing
>>> and when we try to save you get the below error. When you try to switch to
>>> Wiki edit mode on the right hand side you get the same error. How can we
>>> fix this?? Really need some help here. Let me know if you need more info.
>>>
>>
>> Try looking at your pages in wiki edition mode and see whether there are
>> links in titles or links otherwise mixed with content. This has trigerred
>> issues in the past and we need to know what exactly is failing in order to
>> fix it.
>>
>> Thanks for the report.
>>
>>
>>> Check if the user profile is set to simple edit mode. Try switching to
>>> advanced edit mode instead. See
>>>
>>> http://platform.xwiki.org/xwiki/bin/view/Features/PageEditing#HSimpleandAdva
>>> ncededitionmodes
>>>
>>> Even in simple edit mode you can force the Edit button to load the wiki
>>> editor by going to Administration > General and setting "Default Editor
>>> to use" to Text.
>>>
>>> Also, it's good to know that you can also force the wiki editor by using
>>> a URL like edit/Space/Page?editor=wiki .
>>>
>>>> Thanks
>>>>
>>>> content: Exception while parsing HTML
>>
>> By the way Marius, I also experienced that issue a couple times while
>> testing and it's pretty frustrating because when it happens the user gets
>> "stuck" on the page -> clicking on "cancel" also returns the "Exception
>> while parsing HTML" issue.
>
> Does it? See http://jira.xwiki.org/jira/browse/XWIKI-3150 . Can you
> still reproduce it? I couldn't.
>
>>
>> Is there a way we could at least make the "Cancel" button work in such
>> cases? So that the user can return to the pre-breakage situation?
>
> The cancel button currently returns to the last saved version, event
> when changes can't be saved. Isn't this the right behavior?
>
> The reason for keeping the user on the WYSIWYG editor when the content
> can't be saved because of a conversion error is to allow the user to fix
> the issue or at least to backup its changes by copying them somewhere else.
>
> Marius
>
>>
>> Guillaume
>>
>>
>>> Regarding the WYSIWYG issue, can you tell me what browser are you using
>>> and, if the issue is easily reproducible, can you give me an example of
>>> wiki text that fails to be saved by the WYSIWYG editor?
>>>
>>> Thanks,
>>> Marius
>>>
>>>> Mike Ruocco
>>>> Network Engineer
>>>> INPUT
>>>> 11720 Plaza America Drive, Suite 1200, Reston, Virginia 20190
>>>> Direct: 703+707+3506; Fax 703-707-6201
>>>> mruocco(a)input.com
>>>> http://www.input.com
>>>>
>>>> This email and any files transmitted with it are confidential and are
>>> intended solely for the use of the individual or entity to which they are
>>> addressed. If you are not the intended recipient or the person responsible
>>> for delivering the email to the intended recipient, be advised that you have
>>> received this email and any such files in error and that any use,
>>> dissemination, forwarding, printing or copying of this email and/or any such
>>> files is strictly prohibited. If you have received this email in error
>>> please immediately notify postmaster(a)input.com<mailto:postmaster@input.com>
>>> and destroy the original message and any such files.
>>>> {*}
>>>> _______________________________________________
>>>> 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
>>>
>>
>>
>>
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 3 Nov 2009 10:13:24 -0500
> From: MaryEllen Coleman <mea(a)us.ibm.com>
> Subject: [xwiki-users] AUTO: MaryEllen Coleman/Poughkeepsie/IBM is out
> of the office. (returning 11/04/2009)
> To: users(a)xwiki.org
> Message-ID:
> <OFA5A4CC94.C48E73BD-ON85257663.0053A00C-85257663.0053A00E(a)us.ibm.com>
> Content-Type: text/plain; charset=US-ASCII
>
>
>
> I am out of the office until 11/04/2009.
>
> I will not have access to email. For wiki assistance, please contact Kim
> Dillon.
>
>
> Note: This is an automated response to your message "users Digest, Vol 28,
> Issue 5" sent on 11/3/09 6:00:12.
>
> This is the only notification you will receive while this person is away.
>
> ------------------------------
>
> Message: 4
> Date: Tue, 3 Nov 2009 17:07:44 +0100
> From: Thomas Mortagne <thomas.mortagne(a)xwiki.com>
> Subject: [xwiki-users] [ANN] XWiki Enterprise 2.0.3 and XWiki
> Enterprise Manager 2.0.3 Released
> To: XWiki Developers <devs(a)xwiki.org>, XWiki Users <users(a)xwiki.org>
> Message-ID:
> <a8e97d9c0911030807k63c2c348td64b80d7afdc002c(a)mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> The XWiki development team is pleased to announce the release of XWiki
> Enterprise 2.0.3 and XWiki Enterprise Manager 2.0.3.
>
> Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
>
> This release fix one important regressions (broken statistics) and add
> many Watchlist improvements and bufixes.
>
> For more informations see the Release notes at:
> http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise203
> and http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXEM203.
>
> Thanks
> - The XWiki dev team
>
>
> ------------------------------
>
> Message: 5
> Date: Tue, 3 Nov 2009 17:46:15 +0100
> From: Thomas Mortagne <thomas.mortagne(a)xwiki.com>
> Subject: Re: [xwiki-users] [myxwiki] new wiki request
> To: XWiki Users <users(a)xwiki.org>
> Message-ID:
> <a8e97d9c0911030846l9a9b4d5qe84731fd13076ad3(a)mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> On Mon, Nov 2, 2009 at 22:22, thomas doucedame
> <thomasdoucedame(a)gmail.com> wrote:
>> Hello,
>>
>>
>> I'm fulfilling a request as seen on :
>> http://www.myxwiki.org/xwiki/bin/view/Main/
>>
>> I'd like to use xwiki as a personal/family blog.
>>
>> My user name at myxwiki.org : Thomas
>> The server name I'd like to use : fnd
>>
>> Please let me know if it still possible.
>
> Here is you new wiki http://fnd.myxwiki.org/xwiki/bin/view/Main/
>
> Enjoy :)
>
>>
>>
>> Best regards
>> Thomas DOUCEDAME
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
>
>
>
> --
> Thomas Mortagne
>
>
> ------------------------------
>
> Message: 6
> Date: Tue, 3 Nov 2009 15:01:58 -0500
> From: Mike Ruocco <mruocco(a)input.com>
> Subject: [xwiki-users] Problem Editing Pages
> To: "users(a)xwiki.org" <users(a)xwiki.org>
> Message-ID:
> <CF69662CDA81024A8212AD91043B77C49A9B2532ED(a)mail2.input.local>
> Content-Type: text/plain; charset="us-ascii"
>
> Hello Guillaume,
>
> Yes the problem does seem to be when links are in titles. Other links in the
> body do not seem to cause an issue. Please advise.
>
> Thanks
>
> Message: 6
> Date: Tue, 3 Nov 2009 09:41:40 +0100
> From: Guillaume Lerouge <guillaume(a)xwiki.com>
> Subject: Re: [xwiki-users] Problem editing pages
> To: XWiki Users <users(a)xwiki.org>
> Message-ID:
> <1c35d2320911030041s6eef152ahee1da76f8a694925(a)mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Hi,
>
> On Tue, Nov 3, 2009 at 8:31 AM, Marius Dumitru Florea <
> mariusdumitru.florea(a)xwiki.com> wrote:
>
>> Hi Mike,
>>
>> Mike Ruocco wrote:
>>> Hello,
>>>
>>
>>> We are having a problem with Xwiki 2.0.2. Everything was working for
>>> a
>> few days but now when people go to edit their pages they do not get a
>> drop down for the Edit button. You can only click edit and it brings
>> you to the Wysiwyg editor. If there are links to other pages in the
>> page we are editing and when we try to save you get the below error.
>> When you try to switch to Wiki edit mode on the right hand side you
>> get the same error. How can we fix this?? Really need some help here. Let me
>> know if you need more info.
>>
>
> Try looking at your pages in wiki edition mode and see whether there are links
> in titles or links otherwise mixed with content. This has trigerred issues in
> the past and we need to know what exactly is failing in order to fix it.
>
> Thanks for the report.
>
>
>> Check if the user profile is set to simple edit mode. Try switching to
>> advanced edit mode instead. See
>>
>> http://platform.xwiki.org/xwiki/bin/view/Features/PageEditing#HSimplea
>> ndAdvancededitionmodes
>>
>> Even in simple edit mode you can force the Edit button to load the
>> wiki editor by going to Administration > General and setting "Default
>> Editor to use" to Text.
>>
>> Also, it's good to know that you can also force the wiki editor by
>> using a URL like edit/Space/Page?editor=wiki .
>>
>>>
>>> Thanks
>>>
>>
>>> content: Exception while parsing HTML
>>
>
> By the way Marius, I also experienced that issue a couple times while testing
> and it's pretty frustrating because when it happens the user gets "stuck" on
> the page -> clicking on "cancel" also returns the "Exception while parsing
> HTML" issue.
>
> Is there a way we could at least make the "Cancel" button work in such cases?
> So that the user can return to the pre-breakage situation?
>
> Guillaume
>
>
>> Regarding the WYSIWYG issue, can you tell me what browser are you
>> using and, if the issue is easily reproducible, can you give me an
>> example of wiki text that fails to be saved by the WYSIWYG editor?
>>
>> Thanks,
>> Marius
>>
>>>
>>> Mike Ruocco
>>> Network Engineer
>>> INPUT
>>> 11720 Plaza America Drive, Suite 1200, Reston, Virginia 20190
>>> Direct: 703+707+3506; Fax 703-707-6201 mruocco(a)input.com
>>> http://www.input.com
>
>
> Mike Ruocco
> Network Engineer
> INPUT
> 11720 Plaza America Drive, Suite 1200, Reston, Virginia 20190
> Direct: 703+707+3506; Fax 703-707-6201
> mruocco(a)input.com
> http://www.input.com
>
>
> This email and any files transmitted with it are confidential and are intended
> solely for the use of the individual or entity to which they are addressed. If
> you are not the intended recipient or the person responsible for delivering
> the email to the intended recipient, be advised that you have received this
> email and any such files in error and that any use, dissemination, forwarding,
> printing or copying of this email and/or any such files is strictly
> prohibited. If you have received this email in error please immediately notify
> postmaster(a)input.com and destroy the original message and any such files.{*}
>
>
> ------------------------------
>
> Message: 7
> Date: Tue, 3 Nov 2009 20:33:31 -0800 (PST)
> From: coriscow <alberto.corisco(a)gmail.com>
> Subject: [xwiki-users] First contact question
> To: users(a)xwiki.org
> Message-ID: <1257309211023-3943146.post(a)n2.nabble.com>
> Content-Type: text/plain; charset=us-ascii
>
>
> Hi all!
>
> I have to make a project for college and, as a first thought, I think that
> an application wiki would fit perfectlly as a basis for it. Therefore, I
> have spent the last two days going over all the documentation I've found.
> However, I'm still not sure if I will be able to use xwiki to fullfil my
> needs. Those are:
>
> - there has to be four types of documents: public, protected (shared among a
> workgroup members), private and shareable (a private page whose owner can
> share with some contacts)
> - some panels or even panel contents should depend on group policies
> - every user should be able to personalize some of its panels contents,
> order, visibility, etc
> - can a page be added/edited only through a form like page (some users with
> programming rights design the form through class/object/wiki/wysiwyg/inline
> modes so others can fill the contents easily without being able to modify
> the form definition)
> - can a panel be used as a toolbar menu? (I think the answer to this one is
> skining, right?)
>
> Can it be done without involving me writting a XWiki 3.0 version?? If so,
> any trace would be highly appreciated.
>
> Thanks!!!
> --
> View this message in context:
> http://n2.nabble.com/First-contact-question-tp3943146p3943146.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.
>
>
> ------------------------------
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> End of users Digest, Vol 28, Issue 6
> ************************************
>
Hi all!
I have to make a project for college and, as a first thought, I think that
an application wiki would fit perfectlly as a basis for it. Therefore, I
have spent the last two days going over all the documentation I've found.
However, I'm still not sure if I will be able to use xwiki to fullfil my
needs. Those are:
- there has to be four types of documents: public, protected (shared among a
workgroup members), private and shareable (a private page whose owner can
share with some contacts)
- some panels or even panel contents should depend on group policies
- every user should be able to personalize some of its panels contents,
order, visibility, etc
- can a page be added/edited only through a form like page (some users with
programming rights design the form through class/object/wiki/wysiwyg/inline
modes so others can fill the contents easily without being able to modify
the form definition)
- can a panel be used as a toolbar menu? (I think the answer to this one is
skining, right?)
Can it be done without involving me writting a XWiki 3.0 version?? If so,
any trace would be highly appreciated.
Thanks!!!
--
View this message in context: http://n2.nabble.com/First-contact-question-tp3943146p3943146.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello Guillaume,
Yes the problem does seem to be when links are in titles. Other links in the body do not seem to cause an issue. Please advise.
Thanks
Message: 6
Date: Tue, 3 Nov 2009 09:41:40 +0100
From: Guillaume Lerouge <guillaume(a)xwiki.com>
Subject: Re: [xwiki-users] Problem editing pages
To: XWiki Users <users(a)xwiki.org>
Message-ID:
<1c35d2320911030041s6eef152ahee1da76f8a694925(a)mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hi,
On Tue, Nov 3, 2009 at 8:31 AM, Marius Dumitru Florea < mariusdumitru.florea(a)xwiki.com> wrote:
> Hi Mike,
>
> Mike Ruocco wrote:
> > Hello,
> >
>
> > We are having a problem with Xwiki 2.0.2. Everything was working for
> > a
> few days but now when people go to edit their pages they do not get a
> drop down for the Edit button. You can only click edit and it brings
> you to the Wysiwyg editor. If there are links to other pages in the
> page we are editing and when we try to save you get the below error.
> When you try to switch to Wiki edit mode on the right hand side you
> get the same error. How can we fix this?? Really need some help here. Let me know if you need more info.
>
Try looking at your pages in wiki edition mode and see whether there are links in titles or links otherwise mixed with content. This has trigerred issues in the past and we need to know what exactly is failing in order to fix it.
Thanks for the report.
> Check if the user profile is set to simple edit mode. Try switching to
> advanced edit mode instead. See
>
> http://platform.xwiki.org/xwiki/bin/view/Features/PageEditing#HSimplea
> ndAdvancededitionmodes
>
> Even in simple edit mode you can force the Edit button to load the
> wiki editor by going to Administration > General and setting "Default
> Editor to use" to Text.
>
> Also, it's good to know that you can also force the wiki editor by
> using a URL like edit/Space/Page?editor=wiki .
>
> >
> > Thanks
> >
>
> > content: Exception while parsing HTML
>
By the way Marius, I also experienced that issue a couple times while testing and it's pretty frustrating because when it happens the user gets "stuck" on the page -> clicking on "cancel" also returns the "Exception while parsing HTML" issue.
Is there a way we could at least make the "Cancel" button work in such cases? So that the user can return to the pre-breakage situation?
Guillaume
> Regarding the WYSIWYG issue, can you tell me what browser are you
> using and, if the issue is easily reproducible, can you give me an
> example of wiki text that fails to be saved by the WYSIWYG editor?
>
> Thanks,
> Marius
>
> >
> > Mike Ruocco
> > Network Engineer
> > INPUT
> > 11720 Plaza America Drive, Suite 1200, Reston, Virginia 20190
> > Direct: 703+707+3506; Fax 703-707-6201 mruocco(a)input.com
> > http://www.input.com
Mike Ruocco
Network Engineer
INPUT
11720 Plaza America Drive, Suite 1200, Reston, Virginia 20190
Direct: 703+707+3506; Fax 703-707-6201
mruocco(a)input.com
http://www.input.com
This email and any files transmitted with it are confidential and are intended solely for the use of the individual or entity to which they are addressed. If you are not the intended recipient or the person responsible for delivering the email to the intended recipient, be advised that you have received this email and any such files in error and that any use, dissemination, forwarding, printing or copying of this email and/or any such files is strictly prohibited. If you have received this email in error please immediately notify postmaster(a)input.com and destroy the original message and any such files.{*}
I am out of the office until 11/04/2009.
I will not have access to email. For wiki assistance, please contact Kim
Dillon.
Note: This is an automated response to your message "users Digest, Vol 28,
Issue 5" sent on 11/3/09 6:00:12.
This is the only notification you will receive while this person is away.
Hello,
We are having a problem with Xwiki 2.0.2. Everything was working for a few days but now when people go to edit their pages they do not get a drop down for the Edit button. You can only click edit and it brings you to the Wysiwyg editor. If there are links to other pages in the page we are editing and when we try to save you get the below error. When you try to switch to Wiki edit mode on the right hand side you get the same error. How can we fix this?? Really need some help here. Let me know if you need more info.
Thanks
content: Exception while parsing HTML
Mike Ruocco
Network Engineer
INPUT
11720 Plaza America Drive, Suite 1200, Reston, Virginia 20190
Direct: 703+707+3506; Fax 703-707-6201
mruocco(a)input.com
http://www.input.com
This email and any files transmitted with it are confidential and are intended solely for the use of the individual or entity to which they are addressed. If you are not the intended recipient or the person responsible for delivering the email to the intended recipient, be advised that you have received this email and any such files in error and that any use, dissemination, forwarding, printing or copying of this email and/or any such files is strictly prohibited. If you have received this email in error please immediately notify postmaster(a)input.com<mailto:postmaster@input.com> and destroy the original message and any such files.
{*}