[jira] Created: (SLING-889) Access log uses request.getRemoteHost() which does reverse dns lookups

2009-03-16 Thread Carsten Ziegeler (JIRA)
Access log uses request.getRemoteHost() which does reverse dns lookups -- Key: SLING-889 URL: https://issues.apache.org/jira/browse/SLING-889 Project: Sling Issue Type: Impr

[jira] Closed: (SLING-889) Access log uses request.getRemoteHost() which does reverse dns lookups

2009-03-16 Thread Carsten Ziegeler (JIRA)
[ https://issues.apache.org/jira/browse/SLING-889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carsten Ziegeler closed SLING-889. -- Resolution: Fixed Changed the log format in revision 754851. > Access log uses request.getRemot

Re: JCR/Sling meetup in Amsterdam, confirmed? (was: sling for apachecon site)

2009-03-16 Thread Jukka Zitting
Hi, What's the general feeling about the meetup? There hasn't been too much enthusiasm on the signup page. I'd personally rather not overlay the JCR and Lucene meetups, and the Tuesday evening is already pretty crowded with the committers reception also taking place. Having the meetup on Monday w

Re: JCR/Sling meetup in Amsterdam, confirmed? (was: sling for apachecon site)

2009-03-16 Thread Bertrand Delacretaz
On Mon, Mar 16, 2009 at 10:56 AM, Jukka Zitting wrote: > ...I'd personally rather not overlay the JCR and Lucene meetups, and the > Tuesday evening is already pretty crowded with the committers > reception also taking place. Having the meetup on Monday would further > detract from the number of at

Re: JCR/Sling meetup in Amsterdam, confirmed? (was: sling for apachecon site)

2009-03-16 Thread Vidar Ramdal
On Mon, Mar 16, 2009 at 10:56 AM, Jukka Zitting wrote: > [...] > So, I would in fact rather skip the meetup and focus all the energy to > a larger BOF session. WDYT? +1 from me. I'll probably not be able to make it to a Monday/Tuesday meetup, so a larger BOF is good for me. -- Vidar S. Ramdal

Re: JCR/Sling meetup in Amsterdam, confirmed? (was: sling for apachecon site)

2009-03-16 Thread Alexander Klimetschek
On Mon, Mar 16, 2009 at 10:56 AM, Jukka Zitting wrote: > So, I would in fact rather skip the meetup and focus all the energy to > a larger BOF session. WDYT? > > Felix already proposed a Sling BOF in > http://wiki.apache.org/apachecon/BirdsOfaFeatherEu09, and I guess we > could expand the scope of

Re: Integrate Sling with data from another system

2009-03-16 Thread Michael Marth
Hi, [I believe that large parts of your question are of interest for the Sling group, so I'll answer here. For the parts that are related to Communique only you might want to head over to http://groups.google.com/group/day-communique] As far as I understand it you try do to the import in a way th

Custom Sling War

2009-03-16 Thread Christophe Lombart
Hi all, I would like to build a custom sling war. The customization is mainly to override some component properties. What is the best way for doing this ? Thanks, Christophe

[jira] Updated: (SLING-886) Create Sling JCR Java Compiler bundle

2009-03-16 Thread Stefan Guggisberg (JIRA)
[ https://issues.apache.org/jira/browse/SLING-886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Guggisberg updated SLING-886: Priority: Minor (was: Major) > Create Sling JCR Java Compiler bundle > ---

[jira] Updated: (SLING-886) Create Sling JCR Java Compiler bundle

2009-03-16 Thread Stefan Guggisberg (JIRA)
[ https://issues.apache.org/jira/browse/SLING-886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Guggisberg updated SLING-886: Attachment: org.apache.sling.jcr.compiler-2.zip attached revised version (restrict local cla

Re: Integrate Sling with data from another system

2009-03-16 Thread tao wen
Hi, There are two issues stopped us from importing them as JCR nodes: 1. the data not owned by us It is owned by a backend system. So, it will need to be updated once a day at least. 2. the data has rules For example, products have dependencies. When we show the product catalogue, we allow user

Re: Integrate Sling with data from another system

2009-03-16 Thread Rory Douglas
At one point I experimented with a custom ResourceProvider that provided REST-ful access to database tables. The idea works conceptually, but requires that you re-create a fair amount of functionality that already works out-of-the-box with JCR Node Resources. I think that's what you alluded t

Re: Custom Sling War

2009-03-16 Thread Juan José Vázquez Delgado
Hi Christophe, > I would like to build a custom sling war. The customization is mainly > to override some  component properties. > What is the best way for doing this ? Sling is a set of bundles who are mainly intended to be deployed on a OSGi container: Apache Felix, Eclipse Equinox, Sun Glassfi

Re: Custom Sling War

2009-03-16 Thread Christophe Lombart
Can I use te file sling.properties to override properties of the current Sling components ? For example, I would like to build a custom war which override the property "type.noncollections" for the component org.apache.sling.jcr.webdav.impl.servlets.SimpleWebDavServlet Can I write in the sling.p

Re: Custom Sling War

2009-03-16 Thread Juan José Vázquez Delgado
> Can I use te file  sling.properties to override properties of the > current Sling components ? Only some of them. For instance, you can initialize the JCR repository home with "sling.repository.home" property. > For example, I would like to build a custom war which override the > property "type

Problem with jcr:created property in initial content loading

2009-03-16 Thread Daniel, de la Cuesta Navarrete
Hi, I am loading custom initial-content in the repository using a json file This is my json: { "jcr:primaryType" : "nt:unstructured", "sling:resourceType" : "mycompany/content", "jcr:created" : "", "jcr:createdBy" : "", "jcr:lastModified" : "", "jcr:lastModifiedBy" : "" } It is st

Re: sling for apachecon site

2009-03-16 Thread Andreas Hartmann
J Aaron Farr schrieb: On Fri 13 Mar 2009 21:36, Andreas Hartmann wrote: Slightly OT: Is there a particular reason why Lenya is not considered? Back when I rewrote the website, I looked at lenya a bit but I didn't know it well enough to do the site in the time I had. Ah, I see. I just thoug

Re: Problem with jcr:created property in initial content loading

2009-03-16 Thread Juan José Vázquez Delgado
Hi Daniel, >  Hi, > > I am loading custom initial-content in the repository using a json file > > This is  my json: > > { >  "jcr:primaryType" : "nt:unstructured", >  "sling:resourceType" : "mycompany/content", >  "jcr:created" : "", >  "jcr:createdBy" : "", >  "jcr:lastModified" : "", >  "jcr:las

Re: Problem with jcr:created property in initial content loading

2009-03-16 Thread Daniel, de la Cuesta Navarrete
El 16 de marzo de 2009 19:07, Juan José Vázquez Delgado < juanjo.vazq...@gmail.com> escribió: > Hi Daniel, > > > Hi, > > > > I am loading custom initial-content in the repository using a json file > > > > This is my json: > > > > { > > "jcr:primaryType" : "nt:unstructured", > > "sling:resource

Re: Problem with jcr:created property in initial content loading

2009-03-16 Thread Juan José Vázquez Delgado
> For example, thorugh the browser: > http.//localhost:/content/mycontent/jcr:created What do you get when try this?: http.//localhost:/content/mycontent.txt In the other hand, have you any error in Sling log? BR, Juanjo.

Re: Custom Sling War

2009-03-16 Thread Christophe Lombart
2009/3/16 Juan José Vázquez Delgado : >> Can I use te file  sling.properties to override properties of the >> current Sling components ? > > Only some of them. For instance, you can initialize the JCR repository > home with "sling.repository.home" property. ok > >> For example, I would like to bu

BOFs @ApacheCon EU 09/Amsterdam (Was: JCR/Sling meetup in Amsterdam, confirmed?)

2009-03-16 Thread Felix Meschberger
Hi, Jukka Zitting schrieb: > Hi, > > What's the general feeling about the meetup? There hasn't been too > much enthusiasm on the signup page. > > I'd personally rather not overlay the JCR and Lucene meetups, and the > Tuesday evening is already pretty crowded with the committers > reception also

Re: Custom Sling War

2009-03-16 Thread Juan José Vázquez Delgado
> I'm agree with you but I would like to avoid manual operations from > the console in some conditions. In my case, I have to build a custom > sling war and give it to a production team who don't want to use the > console to install correctly the application.  In such case, it should > be nice to h

[jira] Commented: (SLING-535) Align Node and Property Stores with Dojo's upcoming JsonRestStore

2009-03-16 Thread Andreas Hartmann (JIRA)
[ https://issues.apache.org/jira/browse/SLING-535?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12682469#action_12682469 ] Andreas Hartmann commented on SLING-535: I have the feeling that utilizing the JsonR

Re: Custom Sling War

2009-03-16 Thread Christophe Lombart
I cannot test it tomorrow. I will test it on Wednesday. Thanks 2009/3/16 Juan José Vázquez Delgado : >> I'm agree with you but I would like to avoid manual operations from >> the console in some conditions. In my case, I have to build a custom >> sling war and give it to a production team who don

re-registering node type definitions on bundle deploy

2009-03-16 Thread Stefan Seifert
with using manifest headers like Sling-Namespaces: pvplayground=http://www.playground.org/playground/1.0 Sling-Nodetypes: SLING-INF/content/apps/playground/nodetypes/playground.cnd it is possible to automatically register namespaces and node types when the bundle jar is deployed into sling. unfo

Re: Custom Sling War

2009-03-16 Thread Bertrand Delacretaz
2009/3/16 Juan José Vázquez Delgado : >> ...it should >> be nice to have a way to override some component properties when >> building a custom sling app. > > Maybe you can make use of Apache Felix File Install [1] (but i´m not > sure about this) The sling jcrinstall module [1] is similar in sc

Re: Custom Sling War

2009-03-16 Thread Bertrand Delacretaz
On Tue, Mar 17, 2009 at 7:53 AM, Bertrand Delacretaz wrote: > ...The sling jcrinstall module [1] is similar in scope, but more > integrated with Sling forgot the ref: [1] http://svn.apache.org/repos/asf/incubator/sling/trunk/contrib/extensions/jcrinstall -Bertrand