My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
GettingStarted  
How to get started.
Featured
Updated Mar 7, 2012 by harald.pehl

Totoe uses Sarissa for the XML parser / namespace support. All necessary javascript files are already part of the Totote library so you don't need to include them in your project.

For maven users add the following dependencies to your pom (Totoe is in Maven Central):

<dependency>
    <groupId>name.pehl</groupId>
    <artifactId>totoe</artifactId>
    <version>0.3</version>
    <scope>provided</scope>
</dependency>

For non-maven users make sure you have Totoes jar files on your classpath. Finally inherit from the relevant GWT modules:

<!-- For the JSON related code-->
<inherits name="name.pehl.totoe.json.JSON" />

<!-- For the XML related code -->
<inherits name="name.pehl.totoe.xml.XML" />
Comment by dmitriy....@teamdev.com, Mar 29, 2011

It seems that group ID was changed.

It seems that should be:

<dependency>
<groupId>name.pehl</groupId> <artifactId>totoe</artifactId> <version>0.2.2</version> <type>jar</type> <scope>compile</scope>
</dependency>

Powered by Google Project Hosting