[jira] Commented: (SLING-993) Sling Explorer with jquery

2009-06-25 Thread Markus Pallo (JIRA)
[ https://issues.apache.org/jira/browse/SLING-993?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12723928#action_12723928 ] Markus Pallo commented on SLING-993: cool work, thanks. is there a special reason why

[jira] Commented: (SLING-993) Sling Explorer with jquery

2009-06-25 Thread Renaud Richardet (JIRA)
[ https://issues.apache.org/jira/browse/SLING-993?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12723965#action_12723965 ] Renaud Richardet commented on SLING-993: i don't think so. if you implement it,

[jira] Resolved: (SLING-1001) Take the Maven -SNAPSHOT convention into account when comparing bundle version numbers

2009-06-25 Thread Bertrand Delacretaz (JIRA)
[ https://issues.apache.org/jira/browse/SLING-1001?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bertrand Delacretaz resolved SLING-1001. Resolution: Fixed Fix Version/s: JCR Install 2.0.4 Implemented in revision

GWT Tests with Sling

2009-06-25 Thread Thorsten Rössner
Hello everybody, I'm in the development team of a new CMS which is based on Sling. I want to use GWT for the GUI of the backend. For this purpose I adapted the servlet in the contrib package of the Sling project to work with GWT 1.6.4. This works fine. I use the gwt-maven-plugin for creating

Re: GWT Tests with Sling

2009-06-25 Thread Juan José Vázquez Delgado
Hi, I'm in the development team of a new CMS which is based on Sling. Good choice!, Sling is the most suitable tool to this purpose :). Now I want to test my GWT classes. GWT provides the test class GWTTestCase, that are executed with the help of the gwt-maven-plugin. The tests are running.

Re: GWT Tests with Sling

2009-06-25 Thread Torgeir Veimo
I'm in the development team of a new CMS which is based on Sling. It seems there are several that are doing this, basing their admin console on GWT. There might be an opportunity to put together an open source project here around this, since there would otherwise be a lot of duplicate effort,

Re: GWT Tests with Sling

2009-06-25 Thread Felix Meschberger
Hi, Torgeir Veimo schrieb: I'm in the development team of a new CMS which is based on Sling. It seems there are several that are doing this, basing their admin console on GWT. There might be an opportunity to put together an open source project here around this, since there would otherwise

Re: GWT Tests with Sling

2009-06-25 Thread Torgeir Veimo
2009/6/26 Felix Meschberger fmesc...@gmail.com: Hi, Torgeir Veimo schrieb: I'm in the development team of a new CMS which is based on Sling. It seems there are several that are doing this, basing their admin console on GWT. There might be an opportunity to put together an open source

Re: GWT Tests with Sling

2009-06-25 Thread Juan José Vázquez Delgado
No I was of course thinking about content editors. The admin console is an umbrella term we use internally here to mean those things. Yes, I´m sure Thorsten is thinking about a content editor instead an OSGi environment admin console. Regards, Juanjo.

Re: GWT Tests with Sling

2009-06-25 Thread Felix Meschberger
Hi, Torgeir Veimo schrieb: 2009/6/26 Felix Meschberger fmesc...@gmail.com: Hi, Torgeir Veimo schrieb: I'm in the development team of a new CMS which is based on Sling. It seems there are several that are doing this, basing their admin console on GWT. There might be an opportunity to put

Re: GWT Tests with Sling

2009-06-25 Thread Torgeir Veimo
2009/6/26 Felix Meschberger fmesc...@gmail.com: Hi, Torgeir Veimo schrieb: 2009/6/26 Felix Meschberger fmesc...@gmail.com: Hi, Torgeir Veimo schrieb: I'm in the development team of a new CMS which is based on Sling. It seems there are several that are doing this, basing their admin

Re: GWT Tests with Sling

2009-06-25 Thread Felix Meschberger
Hi, Torgeir Veimo schrieb: 2009/6/26 Felix Meschberger fmesc...@gmail.com: Hi, Torgeir Veimo schrieb: 2009/6/26 Felix Meschberger fmesc...@gmail.com: Hi, Torgeir Veimo schrieb: I'm in the development team of a new CMS which is based on Sling. It seems there are several that are doing

OSGi Compendium

2009-06-25 Thread Felix Meschberger
Hi all, Currently the Sling launcher (in the launchpad/base module) contains the Felix framework, the OSGi Core libraries as well as the OSGi Compendium libraries. While working on the implementation of the new Declarative Services 1.1 features planned for addition in the OSGi Compendium

Re: GWT Tests with Sling

2009-06-25 Thread Juan José Vázquez Delgado
Well, that of course then amounts to a problem - luckily GWT itself is ASL2 licensed. And as long as the dependencies have acceptable licenses (MIT and BSD come to mind) there is not an issue, either. Where it starts getting problematic is the LGPL and GPL licenses. I think a GWT content

Re: OSGi Compendium

2009-06-25 Thread Dominik Süß
Wouldn't it be more straight forward to exclude the Compendium Libraries from the Declarative Services as well and have it as seperate bundle in general? I know this thoughts might lead to a big amount of small bundles and some might not like this, but in this case I think it really would make

Get a List of installed Bundles

2009-06-25 Thread Juan
Hello everyone. I'm trying to get a list of installed bundles in sling. I saw something like the class BootstrapInstaller implementing the BundleActivator class. I think that could be something like the treak with the final File dataFile = context.getDataFile(bootstrapinstaller.ser); I

Re: Get a List of installed Bundles

2009-06-25 Thread Juan José Vázquez Delgado
Hi, I'm trying to get a list of installed bundles in sling. Bundles are installed in the OSGi container, really. You can get the list of bundles with something like this: for(Bundle b : bundleContext.getBundles() ) { logger.info( Bundle + b.getBundleId() + : +