{5} Assigned, Active Tickets by Owner (Full Description) (7 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

freya (3 matches)

Ticket Summary Component Milestone Type Created
Description
#66 Update getting started docs to use representation builder < Documentation 0.4 defect 2008-07-14

The current getting started docs at http://kauriproject.org/docs-0_3/192-kauri/190-kauri.html

show how to create a template representation by depending on the template service. The more recommended approach would now be to use the representation builder, so the documentation should be adjusted. (the current example might still be valuable too, need to think about putting it somewhere else)


#158 Documentation: 'dynamic resources' outdated < Documentation 0.4 defect 2008-12-09

This page in the kauri docs is outdated for the 0.3 release: http://kauriproject.org/docs-0_3/192-kauri/190-kauri.html

The archetype-snippets shown are outdated, and since the representation-builder did not yet exist, it still shows the manual way of creating a TemplateRepresentation?.

We could update it, though should first consider what we want to do with the 'getting started' section as a whole.


#276 Kauri documentation refactoring overview < Documentation 0.4 task 2010-02-04

Document as attachment with our (sdm + svr) remarks about the current documentation of kauri 0.4. If there are any questions or remarks, just ask.


idbr (1 match)

Ticket Summary Component Milestone Type Created
Description
#244 Autocomplete control improvements modules/kauri-forms 0.5 enhancement 2009-11-24

Currently, the autocomplete control uses a jquery component, but it doesn't give the developer any control over some useful features of the jquery component (case sensitive matching, subset searching - see revision 1380).

WRT subset searching: this doesn't work with the jquery component if the wirevalues are anything other than strings.


jgou (1 match)

Ticket Summary Component Milestone Type Created
Description
#232 JAX RS resource method named 'getConfiguration' causes problem -- unknown -- 0.5 defect 2009-10-19

I created a JAX RS resource called "ConfigurationResource". This resource contains several methods:

  • getConfigurations() --> corresponds to GET /configurations and returns a KauriRepresentation.
  • getConfigurationsJSON() --> corresponds to GET /configurations/json and returns a JSON string.
  • getConfiguration() --> corresponds to GET /configurations/{id} and returns also a JSON string.

Browsing to /configurations or /configurations/1 works as it should, but when browsing to /configurations/json, the following error appears:

HTTP ERROR: 404 Problem accessing /configurations/json. Reason: The server has not found anything matching the request URI

The reason for this problem is the method called 'getConfiguration'. When this method is renamed to 'getConfiguratie', the problem is resolved and /configurations/json is then accessible.

The strange thing is that even though the method 'getConfiguration' is causing the problem, browsing to /configurations/1 worked perfectly. The problem only occurred when accessing the path /configurations/json, which refers to the method 'getConfigurationsJSON'.

See the attached (simplified) ConfigurationResource.java file.


karel (2 matches)

Ticket Summary Component Milestone Type Created
Description
#334 Run Kauri on Google Appengine core/kauri-runtime enhancement 2010-06-21

It would be nice if we could run Kauri applications on Google Appengine. The following procedure describes how I was able to make the Kauri basic maven archetype run on the local development engine. Note that it does *not* yet run in the hosted (appspot) environment.

  • Upgrade the groovy dependency to 1.7.3
  • In core/kauri-runtime/src/main/java/org/kauriproject/runtime/KauriRuntime.java, comment out the line that reads fam.start()
  • Build kauri, build a distribution (cd dist; mvn assembly:assembly) , extract it, and point your KAURI_HOME to it
  • Run $KAURI_HOME/bin/kauri-project-template.sh (choose the 'basic' archetype)
  • Get the restlet svn6565 source. Follow the instructions from [0], but in custom.properties, use editions: gae instead of editions: jse. Most likely you will also need to set verify:true (the unit tests failed for yet undefined reasons)

[0] http://www.kauriproject.org/docs-0_4/g1/115-kauri.html

  • Get the jboss-el 2.0.1.GA source:

svn co http://anonsvn.jboss.org/repos/jboss-el/tags/2.0.1.GA

http://ctpjava.googlecode.com/svn/trunk/projects/google-appengine/patches/jboss-el/2.0.0.GA/org/jboss/el/util/ReferenceCache.java

Compile the jboss-el sources.

  • In your maven project created earlier, change the dependency org.restlet:org.restlet into org.restlet.gae:org.restlet
  • create conf/kauri/configuration.xml
    <?xml version="1.0"?>
    <configuration>
      <reloading enabled="false"/>
    </configuration>
    

$ mvn install $ mvn kauripackage:webapp

  • Create target/webapp/WEB-INF/appengine-web.xml
    <?xml version="1.0" encoding="utf-8"?>
    <appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
      <application>your-application-name</application>
      <version>1</version>
    </appengine-web-app>
    
  • replace target/webapp/WEB-INF/lib/org.restlet-svn6565.jar with $HOME/.m2/repository/org/restlet/gae/org.restlet/svn6565/org.reslet-svn6565.jar
  • replace the jboss-el-2.0.1.GA jar under target/webapp/WEB-INF/repository/org/jboss/jboss-el with the one you built earlier.
  • Install the Google appengine SDK (1.3.4 is the latest at the time of writing), set GAE_HOME, run $GAE_HOME target/webapp

#174 reading implicit config should include readin 'cases' for case-control modules/kauri-forms 0.5 defect 2009-02-16

We already read and accumulate member config from the HTML. We should investigate if

  • case-control could be doing the same
  • even better all controls could get some static method that allows building 'implicit' config structure from the HTML

Note: See TracReports for help on using and creating reports.