Re: 1.1.4 isn't in maven.restlet.org

2009-04-08 Thread Davide Angelocola
. It will be automatically refreshed on the 1st and on the 15th of each month. Best Regards, Davide Angelocola On Tue, Apr 7, 2009 at 11:54 PM, Mark Derricutt m...@talios.com wrote: Hi all, Any reason why restlet 1.1.4 isn't available in the maven.restlet.org repository yet? I assume its a manual deployment process

Re: Restlet and maven

2009-04-08 Thread Davide Angelocola
Hi Rémi, assuming you've installed maven in the PATH you must run the following command in trunk/modules: mvn install using netbeans is even easier, just install the maven plugin and open the modules project. Then build the project. Best Regards, Davide Angelocola 2009/4/7 Rémi Dewitte r

Re: Using OPTIONS to describe a Resource

2008-09-25 Thread Davide Angelocola
for that matter) before communicating with the resource. Nice idea. +1 for me. Best Regards, Davide Angelocola

Re: Add http header for static files

2008-06-30 Thread Davide Angelocola
. It could be also useful defining a strategy: during development I generally turn off caching; during production I turn on caching with various customizations. It would be nice to support these strategies directly in the restlet API. -- Best Regards, -- Davide Angelocola

Re: How to serve HTML (Dynamic Generated) with static image and flash objects/ resources

2008-06-30 Thread Davide Angelocola
().getResourceRef().getPath(true).replaceFirst(/, ); return new ClassPathResourceRepresentation(resourceName, variant.getMediaType()); } } Hope it helps. -- Best Regards, Davide Angelocola -- -- Davide Angelocola

Re: Shell extension for Restlet

2008-01-15 Thread Davide Angelocola
a webform? such as an XML document? If not, how do you anticipate doing that? maybe contents request set or something like that? unfortunately not but this is a good idea. I'll open a feature request after some discussion here, ok? -- Best Regards, Davide Angelocola -- -- Davide Angelocola

Re: Shell extension for Restlet

2008-01-10 Thread Davide Angelocola
plan, the project was renamed from httpshell to restshell exactly for this reason :-))) -- Best Regards, Davide Angelocola

Re: Shell extension for Restlet

2008-01-10 Thread Davide Angelocola
Hi All, another restshell snapshot: http://dfa.is-a-geek.org:9000/it/slackware/dfa/restshell/1.0.3/restshell-1.0.3-exe.jar Best Regards, -- Davide Angelocola

Re: Shell extension for Restlet

2008-01-09 Thread Davide Angelocola
:9000/it/slackware/dfa/restshell/1.0.2-SNAPSHOT/restshell-1.0.2-20080109.001547-3-jar-with-dependencies.jar beware: this snapshot contains many bugs, it should be used only to give an idea of the interation -- Best Regards, -- Davide Angelocola

Re: Additional output after 1.0.5 - 1.0.6 upgrade?

2007-12-31 Thread Davide Angelocola
null confirmed. -- -- Davide Angelocola

Re: The alphanum algorithm

2007-12-19 Thread Davide Angelocola
that it could be a good starting point because it is public domain. It was inspired by this post: http://nedbatchelder.com/blog/200712.html#e20071211T054956 -- Best Regards, -- Davide Angelocola import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List

The alphanum algorithm

2007-12-18 Thread Davide Angelocola
Hi, I'm wondering if applying the alphanum algorithm to the Directory would be useful for restlet. The details are here: http://www.davekoelle.com/alphanum.html -- Best Regards, Davide Angelocola

Re: StatusService issue

2007-11-15 Thread Davide Angelocola
Hi Jerome, On Thursday 15 November 2007 14:15:41 Jerome Louvel wrote: Could you create a bug report and attach a reproducible example (or your snippet) to it? http://restlet.tigris.org/issues/enter_bug.cgi done, issue 378 -- Best Regards, Davide Angelocola

Re: [docs] Poll for participation and input.

2007-10-28 Thread Davide Angelocola
with some cutpaste pom.xml would be nice. I can contribute in this area. -- Best Regards, Davide Angelocola

Re: Issue using StatusService

2007-10-16 Thread Davide Angelocola
On Tuesday 16 October 2007 20:43:33 Jerome Louvel wrote: Hi Davide, Good suggestion, I've just updated the StatusService Javadocs in SVN. thanks very much :-) -- -- Davide Angelocola

Re: Issue using StatusService

2007-10-12 Thread Davide Angelocola
Server: Noelios-Restlet-Engine/1.0.5 Content-Type: text/html; charset=ISO-8859-1 Content-Length: 4498 html head [...] I'm wrong? -- Best Regards, Davide Angelocola -- -- Davide Angelocola

Re: Login/Logout

2007-09-06 Thread Davide Angelocola
telling them to login using that role. So you would then check that role in your Guard and if it fails send them to that page to login as that role. Davide Angelocola wrote: Hi, this is my first post on this mailing list. I'm wondering about porting a servlet/JSP webapp to REST. I've