Re: GHOP issue 2: Design two related logos for the sling project

2008-01-17 Thread Bertrand Delacretaz
Hi Paul, On Jan 17, 2008 6:59 AM, Paul Walker [EMAIL PROTECTED] wrote: http://bitliquid.com/private/sling/Proposal-2-1.jpg http://bitliquid.com/private/sling/Proposal-2-1.svg... Great work! I like it. ...The variant on the bottom was made to address Bertrand Delacretaz's concern about the S

Re: GHOP issue 2: Design two related logos for the sling project

2008-01-17 Thread Felix Meschberger
Hi Paul, Am Donnerstag, den 17.01.2008, 09:11 +0100 schrieb Bertrand Delacretaz: Hi Paul, On Jan 17, 2008 6:59 AM, Paul Walker [EMAIL PROTECTED] wrote: http://bitliquid.com/private/sling/Proposal-2-1.jpg http://bitliquid.com/private/sling/Proposal-2-1.svg... Great work! I like it.

autoDeployBundle profile in our parent POM?

2008-01-17 Thread Bertrand Delacretaz
Hi, The patch shown below allows one to auto-install Sling bundles when building them, using -P autoDeployBundle on the mvn command line. WDYT, should we do this? I find it useful for development, but maybe you guys are doing this differently? -Bertrand Index: parent/pom.xml

Re: autoDeployBundle profile in our parent POM?

2008-01-17 Thread Carsten Ziegeler
Hi, I tried the same last week and it did not work on my machine (for whatever reason). I assume its working for you. What maven version are you using? Apart from that +1 Carsten Bertrand Delacretaz wrote: Hi, The patch shown below allows one to auto-install Sling bundles when building

Re: autoDeployBundle profile in our parent POM?

2008-01-17 Thread Bertrand Delacretaz
On Jan 17, 2008 10:16 AM, Carsten Ziegeler [EMAIL PROTECTED] wrote: ... assume its working for you. What maven version are you using?... It does work for me with mvn 2.0.7. Maybe Maven checks if your name is Bertrand ;-) -Bertrand

Re: autoDeployBundle profile in our parent POM?

2008-01-17 Thread Carsten Ziegeler
Bertrand Delacretaz wrote: On Jan 17, 2008 10:16 AM, Carsten Ziegeler [EMAIL PROTECTED] wrote: ... assume its working for you. What maven version are you using?... It does work for me with mvn 2.0.7. Maybe Maven checks if your name is Bertrand ;-) Ah, I always suspected this (ok, a simple

[jira] Commented: (SLING-170) WebDAV: Prevent NullPointerException when not supplying a workspace

2008-01-17 Thread Felix Meschberger (JIRA)
[ https://issues.apache.org/jira/browse/SLING-170?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12559881#action_12559881 ] Felix Meschberger commented on SLING-170: - Created JCR-1319 to prevent this NPE.

Using X-Sling-Warning headers?

2008-01-17 Thread Bertrand Delacretaz
Hi, I've added this (in revision 612806) to SlingScriptServlet.service(), to use an X-Sling-Warning HTTP header to indicate an abnormal non-critical condition: final String contentType = request.getResponseContentType(); if(contentType == null) { res.addHeader(X-Sling-Warning,

Eating exceptions in activate() methods?

2008-01-17 Thread Bertrand Delacretaz
The diffs of my revision 612808 changes include this, in SimpleWebDavServlet.activate(): try { -httpService.registerServlet(context, this, initparams, null); - -// set the contextPath field to signal successfull registration -this.contextPath = context;

Re: Using X-Sling-Warning headers?

2008-01-17 Thread Felix Meschberger
Hi, Am Donnerstag, den 17.01.2008, 14:09 +0100 schrieb Bertrand Delacretaz: Hi, I've added this (in revision 612806) to SlingScriptServlet.service(), to use an X-Sling-Warning HTTP header to indicate an abnormal non-critical condition: This is certainly of value during development. But I

Re: Eating exceptions in activate() methods?

2008-01-17 Thread Felix Meschberger
Hi, Am Donnerstag, den 17.01.2008, 14:24 +0100 schrieb Bertrand Delacretaz: The diffs of my revision 612808 changes include this, in SimpleWebDavServlet.activate(): try { -httpService.registerServlet(context, this, initparams, null); - -// set the

Re: Reference to SlingRepository

2008-01-17 Thread Carsten Ziegeler
Hi, Alexander Saar wrote: Hi all, not sure if this is the right place to ask as this is somehow OSGi related, but I'm currently working on a service that integrates via SCR and tries which has a reference to the SlingRepository service. I used the following code: /** * @scr.reference */

[jira] Resolved: (SLING-168) Add fileupload to ujax post servlet

2008-01-17 Thread Bertrand Delacretaz (JIRA)
[ https://issues.apache.org/jira/browse/SLING-168?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bertrand Delacretaz resolved SLING-168. --- Resolution: Fixed Committed with minor changes in revision 612842 - file to upload

[jira] Updated: (SLING-172) Sling console configuration management does not display multivalue selects correctly

2008-01-17 Thread Alexander Saar (JIRA)
[ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexander Saar updated SLING-172: - Priority: Minor (was: Major) Sling console configuration management does not display multivalue

[jira] Closed: (SLING-171) NPE in SlingScriptResolver#findScript() implementation

2008-01-17 Thread Carsten Ziegeler (JIRA)
[ https://issues.apache.org/jira/browse/SLING-171?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carsten Ziegeler closed SLING-171. -- Resolution: Fixed NPE in SlingScriptResolver#findScript() implementation

Re: Log Level config in Sling console

2008-01-17 Thread Felix Meschberger
Hi Alex, Am Donnerstag, den 17.01.2008, 14:16 +0100 schrieb Alexander Saar: Hello Sling team, during my work with Sling I noticed that the Sling console does notdisplay the values for the Log Level in the LogbackManager configuration correctly. (see attached screenshot) Attachements don't

Re: Everything is a Resource

2008-01-17 Thread Felix Meschberger
Hi Carsten, Am Mittwoch, den 16.01.2008, 11:36 +0100 schrieb Carsten Ziegeler: Felix Meschberger wrote: Agreed. I could imagine to move the AdapterFactory and AdapterManager interfaces to the Sling API, which would also somewhat illustrate more about the underlying concept. Ok. So I

Re: Reference to SlingRepository

2008-01-17 Thread Alexander Saar
Hi Carsten, I have installed the newest SCR bundle (Rev 612379). The line numbers have changed, but the problem still persists: java.lang.IllegalArgumentException: argument type mismatch at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at

Re: WebDAV

2008-01-17 Thread Felix Meschberger
Hi Bertrand, Am Donnerstag, den 17.01.2008, 14:23 +0100 schrieb Bertrand Delacretaz: On Jan 16, 2008 6:02 PM, Felix Meschberger [EMAIL PROTECTED] wrote: ...I added a WebDAV bundle (jcr/webdav)... I have added (revision 612808) a webdav-resource-config.xml to the bundle (hardcoded for

Re: Everything is a Resource

2008-01-17 Thread Bertrand Delacretaz
On Jan 17, 2008 4:29 PM, Felix Meschberger [EMAIL PROTECTED] wrote: ...So I set out to moving around everything Seems like SVN is slow again, so it will take some time to get through... Same here, Sling SVN operations are extermely slow this afternoon. -Bertrand

[jira] Created: (SLING-173) SlingRequestPathInfo fails to parse extension in some cases

2008-01-17 Thread Bertrand Delacretaz (JIRA)
SlingRequestPathInfo fails to parse extension in some cases --- Key: SLING-173 URL: https://issues.apache.org/jira/browse/SLING-173 Project: Sling Issue Type: Bug Components:

Re: Upgrade Jackrabbit Dependencies

2008-01-17 Thread Jukka Zitting
Hi, On Jan 17, 2008 8:20 PM, [EMAIL PROTECTED] wrote: Will do, got my apache login info yesterday. You now also have the required karma to commit to incubator/sling. BR, Jukka Zitting

Re: Everything is a Resource

2008-01-17 Thread Felix Meschberger
Hi all, I finally somewhat finished the prototype [1] implementation of the Everything is a Resource concept and updated the wiki page. The prototype is not 100% complete yet - Filter support and Resource Events are not implemented yet - but I think it nicely shows where I wanted to be heading.

[jira] Resolved: (SLING-169) Update jackrabbit references to 1.4

2008-01-17 Thread Padraic Hannon (JIRA)
[ https://issues.apache.org/jira/browse/SLING-169?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Padraic Hannon resolved SLING-169. -- Resolution: Fixed Fix Version/s: 2.0.0 Checked in with revision 612985 Update

Re: GHOP issue 2: Design two related logos for the sling project

2008-01-17 Thread Paul Walker
Here's what I think are the final logos. http://bitliquid.com/private/sling/final/ (It's pretty much the same as the previous proposal, but with some additional variations, for BW and for a favicon) - Are there any remaining issues? Otherwise,where should I upload these? On 17/01/2008, at

[jira] Resolved: (SLING-172) Sling console configuration management does not display multivalue selects correctly

2008-01-17 Thread Felix Meschberger (JIRA)
[ https://issues.apache.org/jira/browse/SLING-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Felix Meschberger resolved SLING-172. - Resolution: Fixed Fixed a generics issue in the commons/json project: The generic