[Launchpad-dev] The rate of API changes in stable?

2010-11-26 Thread Manish Sinha
Hi, I came to know that Launchpad edge is going to be removed, so my question is that how often will the stable install have it's API changed? Actually right now Launchpad only has a python library, and I was working on creating a CLI wrapper over it. I started long back in April, but has to

[Launchpad-dev] Some Error when Getting Launchpad

2010-07-21 Thread Manish Sinha
this error is coming. Or there is a minor problem in the rocketfuel-setup ? -- Manish Sinha http://manishtech.wordpress.com ~manishsinha ___ Mailing list: https://launchpad.net/~launchpad-dev Post to : launchpad-dev@lists.launchpad.net Unsubscribe : https

Re: [Launchpad-dev] Some Error when Getting Launchpad

2010-07-21 Thread Manish Sinha
This error is expected for us non-Canonical people. It is, however, not fatal, and everything should continue to work fine. Max. Yes. I continued ignoring that error. I was able to set up launchpad and got it running. I just wanted to know if it was a obselete thing in the setup script or

Re: [Launchpad-dev] Launchpad's service WADL clarification

2010-05-13 Thread Manish Sinha
application.resource_type.method The parsed object from wadllib is passed to lazr.rest which traverses the wadl tree reoresentation and creates the client side proxy. Hope I got it correct. -- Manish Sinha On 5/13/10, Gary Poster gary.pos...@canonical.com wrote: Manish and I spoke on IRC today. We made

Re: [Launchpad-dev] Launchpad's service WADL clarification

2010-05-11 Thread Manish Sinha
/leonardr-OnMail.txt -- Manish Sinha ___ Mailing list: https://launchpad.net/~launchpad-dev Post to : launchpad-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~launchpad-dev More help : https://help.launchpad.net/ListHelp

Re: [Launchpad-dev] Want feedback on LaunchpadSharp

2010-05-04 Thread Manish Sinha
Apart from all in the previous mail, I would like to ask a few more questions. All these examples are hypotheical just for sake of discussion and clarification 1) If version 1.0 of LP has a entity *bug* and a method names *checkBugIsValid* , then if you change the name of method to

[Launchpad-dev] Want feedback on LaunchpadSharp

2010-05-03 Thread Manish Sinha
://launchpad.net/lpsharp/ CCing all the Canonical devs with whom I have talked earlier when I was about to start working on LpSharp (Launchpad#) -- Manish Sinha http://launchpad.net/~manishsinha ___ Mailing list: https://launchpad.net/~launchpad-dev

[Launchpad-dev] Launchpad's service WADL clarification

2010-04-25 Thread Manish Sinha
Hi, I am working on a WADL--C# converter and taking Launchpad WADL file as the example. This project is mainly targeted at generating client proxy code for Launchpad. I ran into a few issues: in the request section of WADL, it can contain param[] and representation_type[] both together I

Re: [Launchpad-dev] Launchpad's service WADL clarification

2010-04-25 Thread Manish Sinha
On 4/25/2010 4:35 PM, James Westby wrote: Do you have an example of an element that has both param and representation_type? Nope. That's why am asking whether such a situation can exist? If this is a theoretical question that I think you can assume this. I think the fuller

Re: [Launchpad-dev] Launchpad's service WADL clarification

2010-04-25 Thread Manish Sinha
On 4/25/2010 6:25 PM, James Westby wrote: No, it means that the method takes any/all of the union of the parameters defined directly with param or as part of a representation. Meaning in this case the method signature would be methodname(foo, bar, baz) From WADL submission 1. Zero