From: Arno P. <ar...@pu...> - 2010-09-12 11:03:15
|
Guys, some of you have offered help and I want to discuss potential projects that are up for grabs. Of course it depends on your skills and interests. From Android to iPhone, from Java to Objective-C, there is plenty to do. 1. Documentation: Let me start with the least favorite, but still very important job of documentation. If someone out there enjoys writing technical documentation, XMLVM would get a major boost by offering better documentation. Right now we have an HTML version in xmlvm/doc/homepage/manual that is the best we have right now. We have begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone interested in continuing the conversion to DocBook and/or adding new documentation? A little HOWTO and a tutorial would be nice. 2. Java/Cocoa: directory xmlvm/src/xmlvm2objc/compat-lib/java contains the Java sources of the Cocoa classes. The implementation of those classes are also our own iPhone emulator. There are plenty of missing API as well as API that was never implemented. Possible projects would be to add missing Cocoa API and/or implement API that has not yet been implemented. Another project might be to extend the emulator to run in iPad mode. Our Java emulator is written entirely in Java and makes use of Java2D. If that interests you, let me know. 3. C wrappers: as I mentioned several times on the mailing list, we are swiftly moving towards the new C backend. One piece of work where we can use your help is to implement the C wrappers. If you look at directory xmlvm/src/xmlvm2c/compat-lib/iphone you see the generated wrappers (those wrappers where actually automatically generated from the Java Cocoa API mentioned above). If you look in org_xmlvm_iphone_UIImage.m you get an idea of the kind of implementation that needs to be done. That is kind of a high-priority job since we need those wrappers in order to move to the new backend. This job requires good knowledge of Objective-C and Cocoa. 4. Android to iPhone: if you check directory xmlvm/src/android2iphone you will see Java classes that mimic the Android API, but are implemented using our Java version of Cocoa. This is the basis of the "Android app running on an iPhone". If you check this directory, you will quickly find out that there are many, many Android classes missing. This job is tricky because there is not always an obvious mapping from Android API to Cocoa API (just think of Android's layout manager that has nothing corresponding on the iPhone). Other API are easier. E.g., one little project could be to map the location API. This TODO requires good knowledge of both Android and iPhone. You can work mostly in Java but also need to extend the Cocoa API as needed (this is what I wrote in (1)). Well, guys, here you have it. XMLVM is Open Source and you are free to use it in your products. But we can only make fast progress if the community helps making XMLVM better. If you are interested in one of these jobs, please send a note to me or over the mailing list so we can better coordinate your efforts. Arno |
From: Leo I. <leo...@gm...> - 2010-09-12 14:03:39
|
Would it be possible to have an option so instead of spitting out a complete XCode project (for the iphone target), it could spit out a GNU Autoconf configure script? I don't own a mac, but I can compile ON my iphone. I could transfer the project over to my iphone with SFTP and then bring up a shell and run ./configure, make. That would be nice. Thanx! On Sun, Sep 12, 2010 at 7:03 AM, Arno Puder <ar...@pu...> wrote: > > Guys, > > some of you have offered help and I want to discuss potential projects > that are up for grabs. Of course it depends on your skills and > interests. From Android to iPhone, from Java to Objective-C, there is > plenty to do. > > 1. Documentation: Let me start with the least favorite, but still very > important job of documentation. If someone out there enjoys writing > technical documentation, XMLVM would get a major boost by offering > better documentation. Right now we have an HTML version in > xmlvm/doc/homepage/manual that is the best we have right now. We have > begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone > interested in continuing the conversion to DocBook and/or adding new > documentation? A little HOWTO and a tutorial would be nice. > > 2. Java/Cocoa: directory xmlvm/src/xmlvm2objc/compat-lib/java contains > the Java sources of the Cocoa classes. The implementation of those > classes are also our own iPhone emulator. There are plenty of missing > API as well as API that was never implemented. Possible projects would > be to add missing Cocoa API and/or implement API that has not yet been > implemented. Another project might be to extend the emulator to run in > iPad mode. Our Java emulator is written entirely in Java and makes use > of Java2D. If that interests you, let me know. > > 3. C wrappers: as I mentioned several times on the mailing list, we are > swiftly moving towards the new C backend. One piece of work where we can > use your help is to implement the C wrappers. If you look at directory > xmlvm/src/xmlvm2c/compat-lib/iphone you see the generated wrappers > (those wrappers where actually automatically generated from the Java > Cocoa API mentioned above). If you look in org_xmlvm_iphone_UIImage.m > you get an idea of the kind of implementation that needs to be done. > That is kind of a high-priority job since we need those wrappers in > order to move to the new backend. This job requires good knowledge of > Objective-C and Cocoa. > > 4. Android to iPhone: if you check directory xmlvm/src/android2iphone > you will see Java classes that mimic the Android API, but are > implemented using our Java version of Cocoa. This is the basis of the > "Android app running on an iPhone". If you check this directory, you > will quickly find out that there are many, many Android classes missing. > This job is tricky because there is not always an obvious mapping from > Android API to Cocoa API (just think of Android's layout manager that > has nothing corresponding on the iPhone). Other API are easier. E.g., > one little project could be to map the location API. This TODO requires > good knowledge of both Android and iPhone. You can work mostly in Java > but also need to extend the Cocoa API as needed (this is what I wrote in > (1)). > > Well, guys, here you have it. XMLVM is Open Source and you are free to > use it in your products. But we can only make fast progress if the > community helps making XMLVM better. If you are interested in one of > these jobs, please send a note to me or over the mailing list so we can > better coordinate your efforts. > > Arno > > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > |
From: Arno P. <ar...@pu...> - 2010-09-12 14:13:53
|
my original message was not meant as an open call for feature requests, but a call for help. :-) I wouldn't mind merging a patch that does that if someone is willing to work on that. Long ago XMLVM was producing a Makefile (see xmlvm/var/iphone/Makefile), but I haven't used it in ages. Arno On 9/12/10 7:03 AM, Leo Izen wrote: > Would it be possible to have an option so instead of spitting out a > complete XCode project (for the iphone target), it could spit out a GNU > Autoconf configure script? I don't own a mac, but I can compile ON my > iphone. I could transfer the project over to my iphone with SFTP and > then bring up a shell and run ./configure, make. That would be nice. Thanx! > > On Sun, Sep 12, 2010 at 7:03 AM, Arno Puder <ar...@pu... > <mailto:ar...@pu...>> wrote: > > > Guys, > > some of you have offered help and I want to discuss potential projects > that are up for grabs. Of course it depends on your skills and > interests. From Android to iPhone, from Java to Objective-C, there is > plenty to do. > > 1. Documentation: Let me start with the least favorite, but still very > important job of documentation. If someone out there enjoys writing > technical documentation, XMLVM would get a major boost by offering > better documentation. Right now we have an HTML version in > xmlvm/doc/homepage/manual that is the best we have right now. We have > begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone > interested in continuing the conversion to DocBook and/or adding new > documentation? A little HOWTO and a tutorial would be nice. > > 2. Java/Cocoa: directory xmlvm/src/xmlvm2objc/compat-lib/java contains > the Java sources of the Cocoa classes. The implementation of those > classes are also our own iPhone emulator. There are plenty of missing > API as well as API that was never implemented. Possible projects would > be to add missing Cocoa API and/or implement API that has not yet been > implemented. Another project might be to extend the emulator to run in > iPad mode. Our Java emulator is written entirely in Java and makes use > of Java2D. If that interests you, let me know. > > 3. C wrappers: as I mentioned several times on the mailing list, we are > swiftly moving towards the new C backend. One piece of work where we can > use your help is to implement the C wrappers. If you look at directory > xmlvm/src/xmlvm2c/compat-lib/iphone you see the generated wrappers > (those wrappers where actually automatically generated from the Java > Cocoa API mentioned above). If you look in org_xmlvm_iphone_UIImage.m > you get an idea of the kind of implementation that needs to be done. > That is kind of a high-priority job since we need those wrappers in > order to move to the new backend. This job requires good knowledge of > Objective-C and Cocoa. > > 4. Android to iPhone: if you check directory xmlvm/src/android2iphone > you will see Java classes that mimic the Android API, but are > implemented using our Java version of Cocoa. This is the basis of the > "Android app running on an iPhone". If you check this directory, you > will quickly find out that there are many, many Android classes missing. > This job is tricky because there is not always an obvious mapping from > Android API to Cocoa API (just think of Android's layout manager that > has nothing corresponding on the iPhone). Other API are easier. E.g., > one little project could be to map the location API. This TODO requires > good knowledge of both Android and iPhone. You can work mostly in Java > but also need to extend the Cocoa API as needed (this is what I wrote in > (1)). > > Well, guys, here you have it. XMLVM is Open Source and you are free to > use it in your products. But we can only make fast progress if the > community helps making XMLVM better. If you are interested in one of > these jobs, please send a note to me or over the mailing list so we can > better coordinate your efforts. > > Arno > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > <mailto:xml...@li...> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > > > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Linus B. <li...@br...> - 2010-09-13 07:55:27
|
Hello, On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: > > Guys, > > 1. Documentation: Let me start with the least favorite, but still very > important job of documentation. If someone out there enjoys writing > technical documentation, XMLVM would get a major boost by offering > better documentation. Right now we have an HTML version in > xmlvm/doc/homepage/manual that is the best we have right now. We have > begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone > interested in continuing the conversion to DocBook and/or adding new > documentation? A little HOWTO and a tutorial would be nice. > How about not having the documentation in SVN and use a wiki instead? I think this makes it much easier for people to contribute to the documentation. I can configure and host such a wiki if there is interest. br /Linus |
From: Panayotis K. <pan...@pa...> - 2010-09-13 12:32:49
|
On 13 Σεπ 2010, at 10:55 π.μ., Linus Brimstedt wrote: > How about not having the documentation in SVN and use a wiki instead? I find this a good idea. Right now, the general tendency was to use docutils to create the manual, but I believe a wiki is much simpler and easy to work with. |
From: Lennie De V. <len...@gm...> - 2010-09-13 12:07:12
|
You got my vote that a Wiki is a much better idea, can make it part of xmlvm.org On Mon, Sep 13, 2010 at 9:55 AM, Linus Brimstedt <li...@br...> wrote: > Hello, > > On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: >> >> Guys, >> >> 1. Documentation: Let me start with the least favorite, but still very >> important job of documentation. If someone out there enjoys writing >> technical documentation, XMLVM would get a major boost by offering >> better documentation. Right now we have an HTML version in >> xmlvm/doc/homepage/manual that is the best we have right now. We have >> begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone >> interested in continuing the conversion to DocBook and/or adding new >> documentation? A little HOWTO and a tutorial would be nice. > > How about not having the documentation in SVN and use a wiki instead? I > think this makes it much easier for people to contribute to the > documentation. > > I can configure and host such a wiki if there is interest. > > br > > /Linus > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > -- Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ |
From: Sascha H. <sa...@xm...> - 2010-09-13 12:39:48
|
Hi guys, I agree and think it's an excellent idea to make the documentation easier to edit by contributors. However, I would vote for a Google site instead of a wiki. One of the reasons is that we already have a Google site hosted for XMLVM and we can administer it easily. I will convert the existing documentation to the sites format in the next few days. Let me know who would like to have access to the Site and I will add you as contributors. Thanks // Sascha On Mon, Sep 13, 2010 at 2:07 PM, Lennie De Villiers <len...@gm...>wrote: > You got my vote that a Wiki is a much better idea, can make it part of > xmlvm.org > > On Mon, Sep 13, 2010 at 9:55 AM, Linus Brimstedt <li...@br...> > wrote: > > Hello, > > > > On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: > >> > >> Guys, > >> > >> 1. Documentation: Let me start with the least favorite, but still very > >> important job of documentation. If someone out there enjoys writing > >> technical documentation, XMLVM would get a major boost by offering > >> better documentation. Right now we have an HTML version in > >> xmlvm/doc/homepage/manual that is the best we have right now. We have > >> begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone > >> interested in continuing the conversion to DocBook and/or adding new > >> documentation? A little HOWTO and a tutorial would be nice. > > > > How about not having the documentation in SVN and use a wiki instead? I > > think this makes it much easier for people to contribute to the > > documentation. > > > > I can configure and host such a wiki if there is interest. > > > > br > > > > /Linus > > > > > ------------------------------------------------------------------------------ > > Start uncovering the many advantages of virtual appliances > > and start using them to simplify application deployment and > > accelerate your shift to cloud computing > > http://p.sf.net/sfu/novell-sfdev2dev > > > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > > > > -- > Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > |
From: Keshan S. | ක. ස. <kes...@gm...> - 2010-09-13 14:11:58
|
Hi, I would like to contribute to the XMLVM and particularly to the documentation idea. I also think maintaining a wiki is much more simpler and efficient.so, if there is Google site already hosted then it would be much easier. I would like to contribute in maintaining the Google site. Thanks. Keshan. On Mon, Sep 13, 2010 at 6:09 PM, Sascha Haeberling <sa...@xm...> wrote: > Hi guys, > > I agree and think it's an excellent idea to make the documentation easier > to edit by contributors. However, I would vote for a Google site instead of > a wiki. One of the reasons is that we already have a Google site hosted for > XMLVM and we can administer it easily. > > I will convert the existing documentation to the sites format in the next > few days. Let me know who would like to have access to the Site and I will > add you as contributors. > > Thanks > // Sascha > > On Mon, Sep 13, 2010 at 2:07 PM, Lennie De Villiers <len...@gm...>wrote: > >> You got my vote that a Wiki is a much better idea, can make it part of >> xmlvm.org >> >> On Mon, Sep 13, 2010 at 9:55 AM, Linus Brimstedt <li...@br...> >> wrote: >> > Hello, >> > >> > On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: >> >> >> >> Guys, >> >> >> >> 1. Documentation: Let me start with the least favorite, but still very >> >> important job of documentation. If someone out there enjoys writing >> >> technical documentation, XMLVM would get a major boost by offering >> >> better documentation. Right now we have an HTML version in >> >> xmlvm/doc/homepage/manual that is the best we have right now. We have >> >> begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone >> >> interested in continuing the conversion to DocBook and/or adding new >> >> documentation? A little HOWTO and a tutorial would be nice. >> > >> > How about not having the documentation in SVN and use a wiki instead? I >> > think this makes it much easier for people to contribute to the >> > documentation. >> > >> > I can configure and host such a wiki if there is interest. >> > >> > br >> > >> > /Linus >> > >> > >> ------------------------------------------------------------------------------ >> > Start uncovering the many advantages of virtual appliances >> > and start using them to simplify application deployment and >> > accelerate your shift to cloud computing >> > http://p.sf.net/sfu/novell-sfdev2dev >> > >> > _______________________________________________ >> > xmlvm-users mailing list >> > xml...@li... >> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > >> > >> >> >> >> -- >> Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ >> >> >> ------------------------------------------------------------------------------ >> Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing >> http://p.sf.net/sfu/novell-sfdev2dev >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |
From: Lennie De V. <len...@gm...> - 2010-09-18 10:49:18
|
Vote me in as well. 2010/9/13 Keshan Sodimana | කේෂාන් සෝදිමාන <kes...@gm...>: > Hi, > I would like to contribute to the XMLVM and particularly to the > documentation idea. I also think maintaining a wiki is much more simpler and > efficient.so, if there is Google site already hosted then it would be much > easier. I would like to contribute in maintaining the Google site. > Thanks. > Keshan. > > On Mon, Sep 13, 2010 at 6:09 PM, Sascha Haeberling <sa...@xm...> wrote: >> >> Hi guys, >> I agree and think it's an excellent idea to make the documentation easier >> to edit by contributors. However, I would vote for a Google site instead of >> a wiki. One of the reasons is that we already have a Google site hosted for >> XMLVM and we can administer it easily. >> I will convert the existing documentation to the sites format in the next >> few days. Let me know who would like to have access to the Site and I will >> add you as contributors. >> Thanks >> // Sascha >> On Mon, Sep 13, 2010 at 2:07 PM, Lennie De Villiers <len...@gm...> >> wrote: >>> >>> You got my vote that a Wiki is a much better idea, can make it part of >>> xmlvm.org >>> >>> On Mon, Sep 13, 2010 at 9:55 AM, Linus Brimstedt <li...@br...> >>> wrote: >>> > Hello, >>> > >>> > On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: >>> >> >>> >> Guys, >>> >> >>> >> 1. Documentation: Let me start with the least favorite, but still very >>> >> important job of documentation. If someone out there enjoys writing >>> >> technical documentation, XMLVM would get a major boost by offering >>> >> better documentation. Right now we have an HTML version in >>> >> xmlvm/doc/homepage/manual that is the best we have right now. We have >>> >> begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone >>> >> interested in continuing the conversion to DocBook and/or adding new >>> >> documentation? A little HOWTO and a tutorial would be nice. >>> > >>> > How about not having the documentation in SVN and use a wiki instead? I >>> > think this makes it much easier for people to contribute to the >>> > documentation. >>> > >>> > I can configure and host such a wiki if there is interest. >>> > >>> > br >>> > >>> > /Linus >>> > >>> > >>> > ------------------------------------------------------------------------------ >>> > Start uncovering the many advantages of virtual appliances >>> > and start using them to simplify application deployment and >>> > accelerate your shift to cloud computing >>> > http://p.sf.net/sfu/novell-sfdev2dev >>> > >>> > _______________________________________________ >>> > xmlvm-users mailing list >>> > xml...@li... >>> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> > >>> > >>> >>> >>> >>> -- >>> Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ >>> >>> >>> ------------------------------------------------------------------------------ >>> Start uncovering the many advantages of virtual appliances >>> and start using them to simplify application deployment and >>> accelerate your shift to cloud computing >>> http://p.sf.net/sfu/novell-sfdev2dev >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> >> >> ------------------------------------------------------------------------------ >> Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing >> http://p.sf.net/sfu/novell-sfdev2dev >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > -- Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ |
From: Leo I. <leo...@gm...> - 2010-09-13 20:33:24
|
I might add a couple here and there. I don't know any svn except svn checkout, so I'd be happy to use a wiki. 2010/9/13 Keshan Sodimana | කේෂාන් සෝදිමාන <kes...@gm...> > Hi, > I would like to contribute to the XMLVM and particularly to the > documentation idea. I also think maintaining a wiki is much more simpler and > efficient.so, if there is Google site already hosted then it would be much > easier. I would like to contribute in maintaining the Google site. > > Thanks. > Keshan. > > > On Mon, Sep 13, 2010 at 6:09 PM, Sascha Haeberling <sa...@xm...>wrote: > >> Hi guys, >> >> I agree and think it's an excellent idea to make the documentation easier >> to edit by contributors. However, I would vote for a Google site instead of >> a wiki. One of the reasons is that we already have a Google site hosted for >> XMLVM and we can administer it easily. >> >> I will convert the existing documentation to the sites format in the next >> few days. Let me know who would like to have access to the Site and I will >> add you as contributors. >> >> Thanks >> // Sascha >> >> On Mon, Sep 13, 2010 at 2:07 PM, Lennie De Villiers <len...@gm...>wrote: >> >>> You got my vote that a Wiki is a much better idea, can make it part of >>> xmlvm.org >>> >>> On Mon, Sep 13, 2010 at 9:55 AM, Linus Brimstedt <li...@br...> >>> wrote: >>> > Hello, >>> > >>> > On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: >>> >> >>> >> Guys, >>> >> >>> >> 1. Documentation: Let me start with the least favorite, but still very >>> >> important job of documentation. If someone out there enjoys writing >>> >> technical documentation, XMLVM would get a major boost by offering >>> >> better documentation. Right now we have an HTML version in >>> >> xmlvm/doc/homepage/manual that is the best we have right now. We have >>> >> begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone >>> >> interested in continuing the conversion to DocBook and/or adding new >>> >> documentation? A little HOWTO and a tutorial would be nice. >>> > >>> > How about not having the documentation in SVN and use a wiki instead? I >>> > think this makes it much easier for people to contribute to the >>> > documentation. >>> > >>> > I can configure and host such a wiki if there is interest. >>> > >>> > br >>> > >>> > /Linus >>> > >>> > >>> ------------------------------------------------------------------------------ >>> > Start uncovering the many advantages of virtual appliances >>> > and start using them to simplify application deployment and >>> > accelerate your shift to cloud computing >>> > http://p.sf.net/sfu/novell-sfdev2dev >>> > >>> > _______________________________________________ >>> > xmlvm-users mailing list >>> > xml...@li... >>> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> > >>> > >>> >>> >>> >>> -- >>> Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ >>> >>> >>> ------------------------------------------------------------------------------ >>> Start uncovering the many advantages of virtual appliances >>> and start using them to simplify application deployment and >>> accelerate your shift to cloud computing >>> http://p.sf.net/sfu/novell-sfdev2dev >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> >> >> >> >> ------------------------------------------------------------------------------ >> Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing >> http://p.sf.net/sfu/novell-sfdev2dev >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |
From: Sascha H. <sa...@xm...> - 2010-09-13 22:44:12
|
Guys, I converted the documentation we had at xmlvm.org/manual and xmlvm.org/contribute to our Google site and added Leo, Keshan and Lennie to the list of collaborators. You can find the site here: http://sites.google.com/a/xmlvm.org/documentation/ As soon as our website is back up again (sorry for the downtime!), I will change it to contain this documentation instead of the HTML and PDF version we have there right now. My plan at the moment is to have to separate pages for "How to use XMLVM" and "Developing XMLVM". Both are areas where documentation is important and they target two different audiences. Let me know if anybody else would like to contribute to the documentation and I will add you. Please be reasonable though. With great power comes great responsibility. Let's discuss it on the mailing list first, before you make any significant changes and follow the usual Wiki etiquette. Thanks for all the volunteers! // Sascha On Mon, Sep 13, 2010 at 10:33 PM, Leo Izen <leo...@gm...> wrote: > I might add a couple here and there. I don't know any svn except svn > checkout, so I'd be happy to use a wiki. > > 2010/9/13 Keshan Sodimana | කේෂාන් සෝදිමාන <kes...@gm...> > > Hi, >> I would like to contribute to the XMLVM and particularly to the >> documentation idea. I also think maintaining a wiki is much more simpler and >> efficient.so, if there is Google site already hosted then it would be much >> easier. I would like to contribute in maintaining the Google site. >> >> Thanks. >> Keshan. >> >> >> On Mon, Sep 13, 2010 at 6:09 PM, Sascha Haeberling <sa...@xm...>wrote: >> >>> Hi guys, >>> >>> I agree and think it's an excellent idea to make the documentation easier >>> to edit by contributors. However, I would vote for a Google site instead of >>> a wiki. One of the reasons is that we already have a Google site hosted for >>> XMLVM and we can administer it easily. >>> >>> I will convert the existing documentation to the sites format in the next >>> few days. Let me know who would like to have access to the Site and I will >>> add you as contributors. >>> >>> Thanks >>> // Sascha >>> >>> On Mon, Sep 13, 2010 at 2:07 PM, Lennie De Villiers <len...@gm...>wrote: >>> >>>> You got my vote that a Wiki is a much better idea, can make it part of >>>> xmlvm.org >>>> >>>> On Mon, Sep 13, 2010 at 9:55 AM, Linus Brimstedt <li...@br...> >>>> wrote: >>>> > Hello, >>>> > >>>> > On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: >>>> >> >>>> >> Guys, >>>> >> >>>> >> 1. Documentation: Let me start with the least favorite, but still >>>> very >>>> >> important job of documentation. If someone out there enjoys writing >>>> >> technical documentation, XMLVM would get a major boost by offering >>>> >> better documentation. Right now we have an HTML version in >>>> >> xmlvm/doc/homepage/manual that is the best we have right now. We have >>>> >> begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone >>>> >> interested in continuing the conversion to DocBook and/or adding new >>>> >> documentation? A little HOWTO and a tutorial would be nice. >>>> > >>>> > How about not having the documentation in SVN and use a wiki instead? >>>> I >>>> > think this makes it much easier for people to contribute to the >>>> > documentation. >>>> > >>>> > I can configure and host such a wiki if there is interest. >>>> > >>>> > br >>>> > >>>> > /Linus >>>> > >>>> > >>>> ------------------------------------------------------------------------------ >>>> > Start uncovering the many advantages of virtual appliances >>>> > and start using them to simplify application deployment and >>>> > accelerate your shift to cloud computing >>>> > http://p.sf.net/sfu/novell-sfdev2dev >>>> > >>>> > _______________________________________________ >>>> > xmlvm-users mailing list >>>> > xml...@li... >>>> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>>> > >>>> > >>>> >>>> >>>> >>>> -- >>>> Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> Start uncovering the many advantages of virtual appliances >>>> and start using them to simplify application deployment and >>>> accelerate your shift to cloud computing >>>> http://p.sf.net/sfu/novell-sfdev2dev >>>> _______________________________________________ >>>> xmlvm-users mailing list >>>> xml...@li... >>>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>>> >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Start uncovering the many advantages of virtual appliances >>> and start using them to simplify application deployment and >>> accelerate your shift to cloud computing >>> http://p.sf.net/sfu/novell-sfdev2dev >>> >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> >>> >> >> >> ------------------------------------------------------------------------------ >> Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing >> http://p.sf.net/sfu/novell-sfdev2dev >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |
From: Panayotis K. <pan...@pa...> - 2010-09-14 08:34:18
|
On 14 Σεπ 2010, at 1:43 π.μ., Sascha Haeberling wrote: > Guys, > > I converted the documentation we had at xmlvm.org/manual and xmlvm.org/contribute to our Google site and added Leo, Keshan and Lennie to the list of collaborators. > > You can find the site here: http://sites.google.com/a/xmlvm.org/documentation/ > As soon as our website is back up again (sorry for the downtime!), I will change it to contain this documentation instead of the HTML and PDF version we have there right now. > > My plan at the moment is to have to separate pages for "How to use XMLVM" and "Developing XMLVM". Both are areas where documentation is important and they target two different audiences. > > Let me know if anybody else would like to contribute to the documentation and I will add you. > > Please be reasonable though. With great power comes great responsibility. Let's discuss it on the mailing list first, before you make any significant changes and follow the usual Wiki etiquette. > > Thanks for all the volunteers! > // Sascha BTW add me too :) I am sure that I have to write a lot of documentation to explain some things :) |
From: Jeff P. <jcp...@ro...> - 2010-09-14 15:09:08
|
I do not want to sound like I am complaining, but a code.google.com seems to provide more than a site.google.com that is tailored to a open source effort. One I am pretty familiar with is http://code.google.com/p/javacl/ . Project – Downloads (with counts), Wiki, Issues for tracking, & source tabs. Seemed pretty good for free. You might already be set on having your own site, but just thought I would give you the benefit of an informed choice. On 9/13/10 6:43 PM, "Sascha Haeberling" <sa...@xm...> wrote: > Guys, > > I converted the documentation we had at xmlvm.org/manual > <http://xmlvm.org/manual> and xmlvm.org/contribute > <http://xmlvm.org/contribute> to our Google site and added Leo, Keshan and > Lennie to the list of collaborators. > > You can find the site here: http://sites.google.com/a/xmlvm.org/documentation/ > As soon as our website is back up again (sorry for the downtime!), I will > change it to contain this documentation instead of the HTML and PDF version we > have there right now. > > My plan at the moment is to have to separate pages for "How to use XMLVM" and > "Developing XMLVM". Both are areas where documentation is important and they > target two different audiences. > > Let me know if anybody else would like to contribute to the documentation and > I will add you. > > Please be reasonable though. With great power comes great responsibility. > Let's discuss it on the mailing list first, before you make any significant > changes and follow the usual Wiki etiquette. > > Thanks for all the volunteers! > // Sascha > > On Mon, Sep 13, 2010 at 10:33 PM, Leo Izen <leo...@gm...> wrote: >> I might add a couple here and there. I don't know any svn except svn >> checkout, so I'd be happy to use a wiki. >> >> 2010/9/13 Keshan Sodimana | කේෂාන් සෝදිමාන <kes...@gm...> >> >>> Hi, >>> I would like to contribute to the XMLVM and particularly to the >>> documentation idea. I also think maintaining a wiki is much more simpler and >>> efficient.so, if there is Google site already hosted then it would be much >>> easier. I would like to contribute in maintaining the Google site. >>> >>> Thanks. >>> Keshan. >>> >>> >>> On Mon, Sep 13, 2010 at 6:09 PM, Sascha Haeberling <sa...@xm...> wrote: >>>> Hi guys, >>>> >>>> I agree and think it's an excellent idea to make the documentation easier >>>> to edit by contributors. However, I would vote for a Google site instead of >>>> a wiki. One of the reasons is that we already have a Google site hosted for >>>> XMLVM and we can administer it easily. >>>> >>>> I will convert the existing documentation to the sites format in the next >>>> few days. Let me know who would like to have access to the Site and I will >>>> add you as contributors. >>>> >>>> Thanks >>>> // Sascha >>>> >>>> On Mon, Sep 13, 2010 at 2:07 PM, Lennie De Villiers <len...@gm...> >>>> wrote: >>>>> You got my vote that a Wiki is a much better idea, can make it part of >>>>> xmlvm.org <http://xmlvm.org> >>>>> >>>>> On Mon, Sep 13, 2010 at 9:55 AM, Linus Brimstedt <li...@br...> >>>>> wrote: >>>>>> > Hello, >>>>>> > >>>>>> > On Sun, Sep 12, 2010 at 1:03 PM, Arno Puder <ar...@pu...> wrote: >>>>>>> >> >>>>>>> >> Guys, >>>>>>> >> >>>>>>> >> 1. Documentation: Let me start with the least favorite, but still >>>>>>> very >>>>>>> >> important job of documentation. If someone out there enjoys writing >>>>>>> >> technical documentation, XMLVM would get a major boost by offering >>>>>>> >> better documentation. Right now we have an HTML version in >>>>>>> >> xmlvm/doc/homepage/manual that is the best we have right now. We have >>>>>>> >> begun to convert this to DocBook in xmlvm/doc/manual/docbook. Anyone >>>>>>> >> interested in continuing the conversion to DocBook and/or adding new >>>>>>> >> documentation? A little HOWTO and a tutorial would be nice. >>>>>> > >>>>>> > How about not having the documentation in SVN and use a wiki instead? I >>>>>> > think this makes it much easier for people to contribute to the >>>>>> > documentation. >>>>>> > >>>>>> > I can configure and host such a wiki if there is interest. >>>>>> > >>>>>> > br >>>>>> > >>>>>> > /Linus >>>>>> > >>>>>> > >>>>>> ------------------------------------------------------------------------- >>>>>> ----- >>>>>> > Start uncovering the many advantages of virtual appliances >>>>>> > and start using them to simplify application deployment and >>>>>> > accelerate your shift to cloud computing >>>>>> > http://p.sf.net/sfu/novell-sfdev2dev >>>>>> > >>>>>> > _______________________________________________ >>>>>> > xmlvm-users mailing list >>>>>> > xml...@li... >>>>>> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>>>>> > >>>>>> > >>>>> >>>>> >>>>> >>>>> -- >>>>> Lennie De Villiers Blog: http://lenniedevilliers.blogspot.com/ >>>>> >>>>> -------------------------------------------------------------------------- >>>>> ---- >>>>> Start uncovering the many advantages of virtual appliances >>>>> and start using them to simplify application deployment and >>>>> accelerate your shift to cloud computing >>>>> http://p.sf.net/sfu/novell-sfdev2dev >>>>> _______________________________________________ >>>>> xmlvm-users mailing list >>>>> xml...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>>> >>>> >>>> --------------------------------------------------------------------------- >>>> --- >>>> Start uncovering the many advantages of virtual appliances >>>> and start using them to simplify application deployment and >>>> accelerate your shift to cloud computing >>>> http://p.sf.net/sfu/novell-sfdev2dev >>>> >>>> _______________________________________________ >>>> xmlvm-users mailing list >>>> xml...@li... >>>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>>> >>> >>> >>> ---------------------------------------------------------------------------- >>> -- >>> Start uncovering the many advantages of virtual appliances >>> and start using them to simplify application deployment and >>> accelerate your shift to cloud computing >>> http://p.sf.net/sfu/novell-sfdev2dev >>> >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> >> >> >> ----------------------------------------------------------------------------->> - >> Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing >> http://p.sf.net/sfu/novell-sfdev2dev >> >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Panayotis K. <pan...@pa...> - 2010-09-14 09:48:31
|
On 14 Σεπ 2010, at 1:43 π.μ., Sascha Haeberling wrote: > Guys, > > I converted the documentation we had at xmlvm.org/manual and xmlvm.org/contribute to our Google site Nice tool. Still, does this site keep history? I believe for safety reasons, and others, keeping history should be important. |
From: Sascha H. <sa...@gm...> - 2010-09-14 10:01:49
|
Yes it keeps site activity. Everybody can see it actually, it is on the bottom of the page for view-mode. On Sep 14, 2010 11:48 AM, "Panayotis Katsaloulis" <pan...@pa...> wrote: > On 14 Σεπ 2010, at 1:43 π.μ., Sascha Haeberling wrote: > >> Guys, >> >> I converted the documentation we had at xmlvm.org/manual and xmlvm.org/contribute to our Google site > > > Nice tool. > Still, does this site keep history? > I believe for safety reasons, and others, keeping history should be important. > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |