Integration of Sling remote tests into a maven build

2014-01-13 Thread Jörg Hoh
/java/org/apache/sling/testing/samples/integrationtests/serverside/ServerSideSampleTest.java -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: Integration of Sling remote tests into a maven build

2014-01-14 Thread Jörg Hoh
2014/1/13 Bertrand Delacretaz bdelacre...@apache.org Hi Joerg, On Mon, Jan 13, 2014 at 2:44 PM, Jörg Hoh jhoh...@googlemail.com wrote: ...Taking [0] as example I feel a bit strange about the getJunitServletUrl() method of the SlingRemoteTestParameters interface. It expects me to return

Re: Integration of Sling remote tests into a maven build

2014-01-14 Thread Jörg Hoh
will provide a patch to disable the creation of the JarExecutor by configuration, thus avoiding the setting of other properties than test.server.url. Thanks for your help, Jörg 2014/1/14 Bertrand Delacretaz bdelacre...@apache.org Hi Jörg, On Tue, Jan 14, 2014 at 10:13 AM, Jörg Hoh jhoh

Sling Topology heartbeat: reduce the amount of repo write activity

2014-02-07 Thread Jörg Hoh
Hi, I am thinking if we reduce the amount of data persisted in the repository with every topology heartbeat. For example we could just update the timestamp of the of announcement hearbeat, if the topology hasn't changed at all (instead of writing the complete announcement). A more radical

Re: Sling Topology heartbeat: reduce the amount of repo write activity

2014-02-07 Thread Jörg Hoh
startup only though). Question is, whether it's a problem to have cluster-heartbeats stored every say 30 sec and whether that justifies complicating the algorithm for this case. Cheers, Stefan On 2/7/14 2:44 PM, Jörg Hoh jhoh...@googlemail.com wrote: Hi, I am thinking if we reduce

Re: [jira] [Commented] (SLING-3525) Launchpad notification thread cannot access JNDI ressources on Websphere

2014-05-13 Thread Jörg Hoh
://issues.apache.org/jira/browse/SLING-3525 Project: Sling Issue Type: Improvement Components: Launchpad Affects Versions: Launchpad Base 2.5.0 Environment: Websphere 7 on Linux Reporter: Jörg Hoh Attachments

[Launchpad] Make system properties available for webapp?

2014-08-13 Thread Jörg Hoh
Hi, I am working with a Sling webapp and I need to provide customized properties (I am mostly interested in the sling.run.modes property) into Sling. The only chance I currently have is to add these properties into the web.xml. But this has limits, see SLING-3485. I would like to have the option

Documentation of HealthCheckExecutor

2014-09-11 Thread Jörg Hoh
-- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Creating new threads in sling code

2014-12-08 Thread Jörg Hoh
Hi, It already fell a number of times over code in sling, where threads are created manually like this: Thread t = new Thread(someRunnable); t.start(); I understand, that this is convenient and solves the problem in most of the cases. But I see these problems: * In most cases noone takes care

Re: Creating new threads in sling code

2014-12-08 Thread Jörg Hoh
of App servers ... You owe me a beer now :-) Can we split the application specific parts into own bundles and provide a JSR236 compliant code, plus a simple version with its own threadpool. -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: searchPath based on content path + multitenancy

2016-03-02 Thread Jörg Hoh
.apache.org/confluence/display/SLING/Multitenancy+scenarios+and+use+cases > < > https://cwiki.apache.org/confluence/display/SLING/Multitenancy+scenarios+and+use+cases > > > > Regards, > > Henry -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: [DISCUSSION][API][PROPOSAL] Adding Stream generator to Sling API

2018-06-05 Thread Jörg Hoh
> > > > > resource's ValueMap > > > > > > > > > > > > > > > > > > Funny you should mention this. The original ResourceStream object > came > > > > from the whiteboard streams project. Which has a whole package > dedicated > > > > to defining static predicates. There's even an expression languages > in > > > > their as well. However, for filtering, there's already a filter > method that > > > > a Stream provides. It's redundant to have a pre-filtered stream. > > > > > > > > However, as a limitation on the stream, you can do the same thing. It > > > > would something like > > > > > > > > - resource.stream(CHILD_RESOURCES); > > > > > > > > or > > > > > > > > - resource.stream(maxDepth(1)); > > > > > > > > maxDepth being a static method that you've imported from the > appropriate > > > > library that provides a Predicate > > > > > -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: [DISCUSSION][API][PROPOSAL] Adding Stream generator to Sling API

2018-06-06 Thread Jörg Hoh
erface, so I imagine, that Streamer stream = resource.adaptTo(Streamer.class); could do the trick. Then you can have everything in a dedicated bundle and there is no need to change any of the sling core APIs or bundles. It can even work with older sling resource bundle versions. -- Cheers, Jör

Re: New "capabilities" module, feedback welcome

2018-06-27 Thread Jörg Hoh
.org/documentation/bundles/ > resource-access-security.html#how-to-implement-resourceaccessgate < > https://sling.apache.org/documentation/bundles/ > resource-access-security.html#how-to-implement-resourceaccessgate> > >> > > > > > > Isn’t this a chicken and egg problem? You have to register a servlet in > order to have the resource you meant created by the engine. How would you > define the ACLs? I guess you were not thinking of hardcoding access rules > in a ResourceAccessGate but rather delegating to Oak. However AFAIK you > cannot create an ACL without already having the path in the repository, > unless you’d define the ACLs higher in the tree and then rely on glob > patterns. > > > > Can you please help me understand the solution? > > > > Thanks, > > Radu > -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: New "capabilities" module, feedback welcome

2018-06-21 Thread Jörg Hoh
vices etc. > > do you see some usecases in the context of Sling? I understand that in AEM there are quite some usecases for that, but I wonder why to have that in Sling. Right now I cannot think of any sling functionality which could be advertised by this servlet. -Jörg -- Cheers, Jörg Ho

Re: New "capabilities" module, feedback welcome

2018-06-21 Thread Jörg Hoh
attack vector", the chance to apply permissions to such a resource (e.g. using a JCR repo) should provide enough ways to protected access to this functionality. Jörg -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: SLING-7613 - un-deprecating loginAdministrative

2018-07-27 Thread Jörg Hoh
ange, but no code change. Jörg -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: /etc/map with Placeholders for farms / dev stack

2018-07-07 Thread Jörg Hoh
omplex beast over the years...) * I would prefer the "${placeholder}" format instead of "{{{placeholder}}}" format :-) -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: How to manage repoinit language + implementation evolutions?

2018-10-14 Thread Jörg Hoh
t. 2018 um 13:24 Uhr schrieb Jörg Hoh : > Hi, > > Am Di., 2. Okt. 2018 um 07:46 Uhr schrieb Karl Pauls >: > >> Can’t we stay BC and just introduce a new command that has the new >> behavior >> and keep the old one as is? >> >> Something like: >> &g

Re: How to manage repoinit language + implementation evolutions?

2018-10-21 Thread Jörg Hoh
Am Di., 16. Okt. 2018 um 10:57 Uhr schrieb Bertrand Delacretaz < bdelacre...@apache.org>: > > > WDYT? > +1 I will update the patches at SLING-7960. -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: Sling 12 themes

2018-10-23 Thread Jörg Hoh
ys be improved. Would absolutely love if we could also have the "old" documentation for reference (there are people out there which cannot always use the most recent version of Sling, therefor having the old docs available would be beneficial (next to the old API docs). -- Cheers, Jörg Hoh, http

Re: Sling 12 themes

2018-10-24 Thread Jörg Hoh
Hi Jason, Am Mi., 24. Okt. 2018 um 14:45 Uhr schrieb Jason E Bailey : > > > On Wed, Oct 24, 2018, at 2:18 AM, Jörg Hoh wrote: > > > If we choose that way and want to prefer 1 and 2 we have to educate a lot > > of people first about the difference between a resource pat

Re: Sling 12 themes

2018-10-24 Thread Jörg Hoh
chance, that (1) and (2) get the traction so they are used in the mentioned 95% of all cases. Not before. Jörg -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: How to manage repoinit language + implementation evolutions?

2018-10-03 Thread Jörg Hoh
mpatible way (maybe add some log messages for the cases where the old implementation would done the wrong thing) and document it properly. And that's it. -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: [hackathon] health checks

2018-09-28 Thread Jörg Hoh
e else into a dashboard with a much simplied result, often this tristate of "green","yellow" and "red". So this tristate seems a very natural thing :-) Jörg -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: [hackathon] health checks

2018-09-28 Thread Jörg Hoh
; stefan > > [1] > https://adapt.to/2018/en/schedule/system-readiness-framework-makes-deployment-automation-a-breeze.html > > > -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: Feature Model Deployment Example

2019-04-08 Thread Jörg Hoh
sling provisioning. > > > > Is there an example or documentation on: > > - how to deploy a feature module into a running sling instance? > > - how to create a custom sling build with feature models? > > > > Cheers - Andreas Schaefer > -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: [DISCUSS] Consolidate starter-startup and startupfilter/startupfilter-disabler to use Apache Felix HC ServiceUnavailableFilter

2019-04-08 Thread Jörg Hoh
mpl.filter.ServiceUnavailableFilter > tags=["systemalive] > > osgi.http.whiteboard.context.select="(&(osgi.http.whiteboard.context.name > \=*)(!(osgi.http.whiteboard.context.name\=org.osgi.service.http)))" > osgi.http.whiteboard.filter.regex=".*"

Re: [DISCUSS] Consolidate starter-startup and startupfilter/startupfilter-disabler to use Apache Felix HC ServiceUnavailableFilter

2019-04-07 Thread Jörg Hoh
ix/blob/trunk/healthcheck/core/src/main/java/org/apache/felix/hc/core/impl/filter/ServiceUnavailableFilter.java > -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: ResourceResolver.getResource() semantics

2019-09-30 Thread Jörg Hoh
the resource but the operations on > the returned resource where the part where most time was spent. That > might have changed, but its something to look at. And obviously instead > of trying to implement lower level caching, its better to avoid the many > calls in the first place. >

ResourceResolver.getResource() semantics

2019-09-30 Thread Jörg Hoh
). If there are requirements towards this, I would try to come up with an implementation in which r1 == r2. WDYT? Jörg -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: SlingPostServlet should not throw 500 on any exception

2020-12-17 Thread Jörg Hoh
exceptions. Thanks Am Mo., 14. Dez. 2020 um 16:29 Uhr schrieb Bertrand Delacretaz < bdelacre...@apache.org>: > Hi, > > I'm coming late to this discussion, with a smallish thing.. > > On Wed, Nov 11, 2020 at 1:10 PM Jörg Hoh > wrote: > > ...Having that in mind, I woul

Re: SlingPostServlet should not throw 500 on any exception

2020-12-23 Thread Jörg Hoh
I would love to get some feedback on https://github.com/apache/sling-org-apache-sling-servlets-post/pull/7, so we can get a fix for my problem committed soon. Thanks, Jörg Am Do., 17. Dez. 2020 um 12:54 Uhr schrieb Jörg Hoh : > Thanks Bertrand, I implemented your feedback. > > As m

SlingPostServlet should not throw 500 on any exception

2020-11-11 Thread Jörg Hoh
ource/blob/org.apache.sling.jcr.resource-3.0.22/src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrResourceProvider.java#L476 [2] https://github.com/apache/sling-org-apache-sling-servlets-post/blob/master/src/main/java/org/apache/sling/servlets/post/impl/SlingPostServlet.java#L237 -- Cheers

Re: [VOTE] Release Apache Sling Content Distribution Core version 0.4.4

2021-01-26 Thread Jörg Hoh
release: > > +1 from me. > > That being said, it would be nice to update to the latest parent pom to > fix building on Java 11, which would at least unblock SonarCloud runs. > > Thanks, > Robert > -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

[VOTE] Release Apache Sling Distribution API 0.5.0

2021-06-16 Thread Jörg Hoh
for at least 72 hours. -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

[RESULT][VOTE] Release Apache Sling Post Servlets 2.4.4

2021-06-10 Thread Jörg Hoh
2021 um 11:38 Uhr schrieb Jörg Hoh : > > Hi, > > We solved 6 issues in this > release:https://issues.apache.org/jira/projects/SLING/versions/12349585 > > > Staging > repository:https://repository.apache.org/content/repositories/orgapachesling-2467 > > You can

Re: [RESULT] [VOTE] Release Apache Sling Distribution API 0.5.0

2021-06-21 Thread Jörg Hoh
Mi., 16. Juni 2021 um 18:52 Uhr schrieb Jörg Hoh : > > We solved 6 issues in this > release:https://issues.apache.org/jira/projects/SLING/versions/12346962 > > Staging > repository:https://repository.apache.org/content/repositories/orgapachesling-2478/ > > You can use this

[VOTE] Release Apache Sling API version 2.23.6

2021-05-17 Thread Jörg Hoh
for at least 72 hours. -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [RESULT][VOTE] Release Apache Sling API version 2.23.6

2021-05-25 Thread Jörg Hoh
Thanks Oli. Am Di., 25. Mai 2021 um 10:21 Uhr schrieb Oliver Lietz < apa...@oliverlietz.de>: > On Tuesday, 25 May 2021 09:16:35 CEST Jörg Hoh wrote: > > Hi, > > > > The vote has passed with the following result : > > > > +1 (binding): Daniel Klco, Ju

Re: [RESULT][VOTE] Release Apache Sling API version 2.23.6

2021-05-25 Thread Jörg Hoh
schrieb Jörg Hoh : > Hi, > > We solved 1 issue in this > release:https://issues.apache.org/jira/projects/SLING/versions/12350174 > > Staging > repository:https://repository.apache.org/content/repositories/orgapachesling-2444 > > You can use this UNIX script to down

Re: Releasing Post Servlets

2021-06-01 Thread Jörg Hoh
1> should not block a > release. I removed the fix version as I won't work on this in the near > future. > Konrad > > > On 31. May 2021, at 12:57, Jörg Hoh > wrote: > > > > Hi, > > > > I plan to do a release of the Sling Post Servlet, and I s

[VOTE] Release Apache Sling Post Servlets 2.4.4

2021-06-04 Thread Jörg Hoh
vote is open for at least 72 hours. -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Releasing Post Servlets

2021-05-31 Thread Jörg Hoh
with the release so they can get included? Or is it ok to move these 2 to the next release? [1] https://issues.apache.org/jira/projects/SLING/versions/12349585 Jörg -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: Releasing new Sling API?

2021-04-23 Thread Jörg Hoh
t; > question. > > I clarified that this is not on my TODO list for the short term. > > Thanks, > Robert > > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

[VOTE] Release Apache Sling API 2.23.4

2021-04-28 Thread Jörg Hoh
Approve the release [ ] 0 Don't care [ ] -1 Don't release, because ... This majority vote is open for at least 72 hours. -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling API 2.23.4

2021-04-28 Thread Jörg Hoh
version being set correctly): > >We solved 7 issues in this > >release:https://issues.apache.org/jira/projects/SLING/versions/12349583 > Did I miss something? Jörg -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [RESULT] Release Apache Sling API 2.23.4

2021-05-04 Thread Jörg Hoh
Thanks Radu! Am Di., 4. Mai 2021 um 12:38 Uhr schrieb Radu Cotescu : > Done! > > > On 4 May 2021, at 12:26, Jörg Hoh > wrote: > > > > I need someone from the PMC to perform the final step for pushing the > artifacts. > > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [RESULT] Release Apache Sling API 2.23.4

2021-05-04 Thread Jörg Hoh
Jörg Hoh : > > Hi, > > (This is my first release process, and the documentation is excellent. Great > experience till now :-)) > > > We solved 7 issues in this > release:https://issues.apache.org/jira/projects/SLING/versions/12349583 > > Staging > repository:h

Releasing new Sling API?

2021-04-01 Thread Jörg Hoh
to make that API release as my very first release here at Sling ... :-) Jörg -- Cheers, Jörg Hoh, http://cqdump.wordpress.com Twitter: @joerghoh

Re: New Sling Committer: Jörg Hoh 鸞

2021-03-27 Thread Jörg Hoh
ng and valuable contributions to the project, the > Sling PMC has elected Jörg Hoh as a Sling Committer, and he > has accepted the invitation. > > Please join me in welcoming Jörg! > > Jörg - if you want to honor the old tradition of new committers > briefly introducing themselves

Re: [VOTE] Release Apache Sling Event Support 4.2.18

2021-04-13 Thread Jörg Hoh
2429 /tmp/sling-staging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Cheers, > Stefan > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling Resource Resolver 1.7.4

2021-04-13 Thread Jörg Hoh
aging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > stefan > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling Scripting Core 2.4.0

2021-08-06 Thread Jörg Hoh
aging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Regards, > Radu Cotescu > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: Cache objects retrieved/derived from a ResourceResolver

2021-10-13 Thread Jörg Hoh
pair in that map. I don't think that we need a very complex logic there by default. But if an implementation could provide their own implementation of the default method returning a more adjusted. Jörg -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Cache objects retrieved/derived from a ResourceResolver

2021-10-11 Thread Jörg Hoh
ace. WDYT? -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: Cache objects retrieved/derived from a ResourceResolver

2021-10-15 Thread Jörg Hoh
Fr., 15. Okt. 2021 um 15:23 Uhr schrieb Radu Cotescu : > Hi Jörg, > > Are those objects generated based on a ResourceResolver#adaptTo call? If > so, we should already have a built-in cache via SlingAdaptable [0]. > > Thanks, > Radu > > > On 13 Oct 2021, at 09:28, Jörg H

Re: Cache objects retrieved/derived from a ResourceResolver

2021-10-16 Thread Jörg Hoh
resolver and the object which are stored in this temporary storage are compatible. If the developer decides to store resources in there, and these resources might change over the lifetime of this (potentially long-living) resource resolver, so be it. There should not be any magic, it's just a simple map

Re: Cache objects retrieved/derived from a ResourceResolver

2021-10-25 Thread Jörg Hoh
ugh [2]. > > > > > > [1]: > > > > > > > https://github.com/apache/sling-org-apache-sling-commons-threads/blob/org.apache.sling.commons.threads-3.2.22/src/main/java/org/apache/sling/commons/threads/impl/ThreadPoolExecutorCleaningThreadLocals.java > > > [2]: https://issues.apache.org/jira/browse/SLING-10831 > > > > > > Thanks, > > > Robert > > > > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

[VOTE] Release Apache Sling i18n 2.5.18

2021-11-01 Thread Jörg Hoh
for at least 72 hours. Jörg -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling i18n 2.5.18

2021-11-06 Thread Jörg Hoh
schrieb Jörg Hoh : > Hi, > > We solved 1 issue in this > release:https://issues.apache.org/jira/projects/SLING/versions/12349990 > > > Staging > repository:https://repository.apache.org/content/repositories/orgapachesling-2545/ > > You can use this UNIX script to d

[VOTE] Release Apache Sling Resource Resolver 1.8.2

2022-01-14 Thread Jörg Hoh
for at least 72 hours. Jörg -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling ResourceResolver Mock version 1.2.6

2022-02-25 Thread Jörg Hoh
Hi, The vote has passed with the following result : +1 (binding): Robert Munteanu, Stefan Seifert, Daniel Klco I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. Am Di., 22. Feb. 2022 um 11:12 Uhr schrieb Jörg Hoh : > Hi, >

[VOTE] Release Apache Sling ResourceResolver Mock version 1.2.6

2022-02-22 Thread Jörg Hoh
for at least 72 hours. -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Export MBeans to Sling Metrics

2022-03-01 Thread Jörg Hoh
, as Jetty is the only real usecase for such a feature? Jörg -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: New org.apache.sling.event release?

2022-03-01 Thread Jörg Hoh
p, making it a 4.3.0 release. > Fine with me. > > I plan to start the release vote by the end of the week. > > Thoughts? > > Thanks, > Robert > > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: Export MBeans to Sling Metrics

2022-03-04 Thread Jörg Hoh
Hi Robert, Am Mi., 2. März 2022 um 15:41 Uhr schrieb Robert Munteanu < romb...@apache.org>: > Hi Jörg, > > On Tue, 2022-03-01 at 17:59 +0100, Jörg Hoh wrote: > > Hi, > > > https://github.com/apache/sling-whiteboard/tree/master/jmx-exporter) > > Since the bundl

[Scripting] Bindings returning null

2022-02-04 Thread Jörg Hoh
/scripting/LazyBindings.java [2] https://docs.oracle.com/javase/8/docs/api/javax/script/Bindings.html#get-java.lang.Object- -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

[RESULT][VOTE] Release Apache Sling Commons Metrics 1.2.10

2022-01-28 Thread Jörg Hoh
Hi, The vote has passed with the following result : +1 (binding): Daniel Klco, Robert Munteanu, Carsten Ziegeler I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. Jörg Am Mo., 24. Jan. 2022 um 16:46 Uhr schrieb Jörg Hoh : >

Re: [VOTE] Release Apache Sling Scripting Core 2.4.4

2022-02-11 Thread Jörg Hoh
aging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Regards, > Radu Cotescu > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [Scripting] Bindings returning null

2022-02-11 Thread Jörg Hoh
of the LazyBindings, even if that means that the binding is done with a null value. Jörg Am Mi., 9. Feb. 2022 um 11:46 Uhr schrieb Radu Cotescu : > Hi Jörg, > > > On 4 Feb 2022, at 12:00, Jörg Hoh > wrote: > > > > In my opinion we should adjust these Bindings

Re: [VOTE] Release Apache Sling Resource Resolver 1.8.2

2022-01-19 Thread Jörg Hoh
Can I get some more votes, please? thanks, Jörg Am Fr., 14. Jan. 2022 um 14:18 Uhr schrieb Carsten Ziegeler < cziege...@apache.org>: > +1 > > Carsten > > Am 14.01.2022 um 10:58 schrieb Jörg Hoh: > > Hi, > > > > We solved 2 issues in this > > release:

Re: Marking issues to attract new contributors

2022-01-21 Thread Jörg Hoh
; > https://issues.apache.org/jira/issues/?jql=project%20%3D%20SLING%20AND%20labels%20in%20(newbie%2C%20easyfix) > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

[RESULT][VOTE] Release Apache Sling Resource Resolver 1.8.2

2022-01-19 Thread Jörg Hoh
Hi, The vote has passed with the following result : +1 (binding): Radu Cotescu, Carsten Ziegeler, Stefan Seifert I will copy this release to the Sling dist directory and promote the artifacts to the central Maven repository. thanks, Jörg Am Fr., 14. Jan. 2022 um 10:58 Uhr schrieb Jörg Hoh

Marking issues to attract new contributors

2022-01-20 Thread Jörg Hoh
some reach on social media into the wider AEM community. I hope to attract a few contributions from that side, if we can explicitly point out an easy way to get involved. WDYT? Jörg -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: Marking issues to attract new contributors

2022-01-23 Thread Jörg Hoh
Hi Robert, my bad, it should be "good-first-issue". Thanks for spotting. Am So., 23. Jan. 2022 um 13:55 Uhr schrieb Robert Munteanu < romb...@apache.org>: > On Fri, 2022-01-21 at 20:44 +0100, Jörg Hoh wrote: > > Thanks for the feedback! > > > > If others

[VOTE] Release Apache Sling Commons Metrics 1.2.10

2022-01-24 Thread Jörg Hoh
: [ ] +1 Approve the release [ ] 0 Don't care [ ] -1 Don't release, because ... This majority vote is open for at least 72 hours -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: Marking issues to attract new contributors

2022-01-26 Thread Jörg Hoh
Hi folks, Thanks for all the feedback, I raised https://github.com/apache/sling-site/pull/78 Jörg Am Do., 20. Jan. 2022 um 10:03 Uhr schrieb Jörg Hoh : > Hi, > > I plan to create a few SLING issues which replicate the changes of > https://issues.apache.org/jira/browse/SLING-11

Re: [VOTE] Release Apache Sling GraphQL Core 0.0.24

2023-09-12 Thread Jörg Hoh
-tooling- > > release.git;a=blob;f=check_staged_release.sh;hb=HEAD > > > > Usage: > > sh check_staged_release.sh 2781 /tmp/sling-staging > > > > Please vote to approve this release: > > > > [ ] +1 Approve the release > > [ ] 0 Don't care > > [ ] -1 Don't release, because ... > > > > This majority vote is open for at least 72 hours. > > > > Cheers - Andy > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling GraphQL Core 0.0.24

2023-09-12 Thread Jörg Hoh
;a=blob;f=check_staged_release.sh;hb=HEAD > > Usage: > sh check_staged_release.sh 2781 /tmp/sling-staging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority v

Overhead in 404 handling

2023-09-08 Thread Jörg Hoh
, but even in a releaseable version I don't think it makes sense to distinguish between more than "HTML requests" and "everything else". Also the response body can be hardcoded in these "short-cut" version. WDYT? -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling JCR Maintenance v1.1.0, Apache Sling JCR Oak Server v1.4.0

2023-10-11 Thread Jörg Hoh
> Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: Reviewing "abandoned" sling modules

2023-10-15 Thread Jörg Hoh
d-models,Date: 2016 > > this is an important part of the sling models build process and used > everywhere - but there was no need to update it as no new bundle headers > where introduced in the last years. > > stefan > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling ResourceResolver 1.11.2

2023-11-05 Thread Jörg Hoh
my +1 Am So., 5. Nov. 2023 um 12:21 Uhr schrieb Jörg Hoh : > Hi, > > We solved 4 issues in this > release:https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310710=12353649=Text > > Staging > repository:https://repository.apache.org/content/repositorie

[VOTE] Release Apache Sling ResourceResolver 1.11.2

2023-11-05 Thread Jörg Hoh
is open for at least 72 hours. -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling Feature Model Analyser 2.0.2, Apache Sling OSGi Feature Maven Plugin 1.7.4

2023-11-05 Thread Jörg Hoh
aster/check_staged_release.sh > > Usage: > sh check_staged_release.sh 2800 /tmp/sling-staging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is ope

Re: [VOTE] Release Feature Model Content Extension 1.0.12

2023-09-24 Thread Jörg Hoh
.sh 2787 /tmp/sling-staging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Regards, > Robert Munteanu > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling org.apache.sling.distribution.journal.messages 0.5.4, org.apache.sling.distribution.journal 0.2.0

2023-09-24 Thread Jörg Hoh
OUR REPOSITORY ID] /tmp/sling-staging > > Please vote to approve this release: > > [ ] +1 Approve the release > [ ] 0 Don't care > [ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Christian Schneider > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling JCR Base 3.2.0

2023-10-04 Thread Jörg Hoh
.sh 2789 /tmp/sling-staging > > Please vote to approve this release: > >[ ] +1 Approve the release >[ ] 0 Don't care >[ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Regards > Carsten > -- > Carsten Ziegeler

Re: [VOTE] Release Apache Sling Auth Core 1.7.0

2023-10-04 Thread Jörg Hoh
/sling-staging > > Please vote to approve this release: > >[ ] +1 Approve the release >[ ] 0 Don't care >[ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Regards > Carsten > -- > Carsten Ziegeler > Adobe > cziege...@apache.org > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Reviewing "abandoned" sling modules

2023-10-14 Thread Jörg Hoh
: find ./* -maxdepth 0 -type d | while read a; do (cd $a; test -d src && echo -n "$a," &&git log --date=format:%Y -1 -- src -- | grep Date); done | grep 201 | sort -t ' ' -k 2 -n -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de

Re: [VOTE] Release Apache Sling Servlets Get 2.2.0, Post 2.6.0, Resolver 2.10.0

2023-10-06 Thread Jörg Hoh
elease, because ... > > > > This majority vote is open for at least 72 hours. > > > > Regards > > Carsten > > -- > > Carsten Ziegeler > > Adobe > > cziege...@apache.org > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling Commons MIME version 2.2.4

2023-10-06 Thread Jörg Hoh
0 Don't care > >[ ] -1 Don't release, because ... > > > > This majority vote is open for at least 72 hours. > > -- > Carsten Ziegeler > Adobe > cziege...@apache.org > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE] Release Apache Sling Whiteboard JMX Exporter 0.2.0

2022-06-21 Thread Jörg Hoh
Hi Robert, Robert Munteanu schrieb am Di. 21. Juni 2022 um 12:53: > Hi Joerg, > > On Mon, 2022-06-20 at 13:47 +0200, Jörg Hoh wrote: > > I want to release a first 0.2.0 version of the JMX Exporter which I > > am > > currently working on in the Sling Whiteboard. T

Re: [VOTE] Release Apache Sling Event 4.3.6

2022-06-23 Thread Jörg Hoh
[ ] +1 Approve the release >[ ] 0 Don't care >[ ] -1 Don't release, because ... > > This majority vote is open for at least 72 hours. > > Cheers, > Stefan > -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Sling Model AdapterFactory - iterating all injectors?

2022-06-22 Thread Jörg Hoh
/ModelAdapterFactory.java#L574 [2] https://github.com/apache/sling-org-apache-sling-models-impl/blob/ed1bd8d8a2fc01e13a10ba1c06122530c4d590b1/src/main/java/org/apache/sling/models/impl/ModelAdapterFactory.java#L570 -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Releases out of the whiteboard repo?

2022-06-22 Thread Jörg Hoh
been part of the learnings from using a 0.x version). -- Cheers, Jörg Hoh, https://cqdump.joerghoh.de Twitter: @joerghoh

Re: [VOTE][CANCEL] Release Apache Sling Whiteboard JMX Exporter 0.2.0

2022-06-22 Thread Jörg Hoh
Jörg Am Mi., 22. Juni 2022 um 09:12 Uhr schrieb Robert Munteanu < romb...@apache.org>: > On Tue, 2022-06-21 at 22:06 +0200, Jörg Hoh wrote: > > Hi Robert, > > > > Robert Munteanu schrieb am Di. 21. Juni 2022 um > > 12:53: > > > > > Hi Joerg, >

Re: Sling Model AdapterFactory - iterating all injectors?

2022-06-22 Thread Jörg Hoh
tml#injector-specific-annotations > < > https://sling.apache.org/documentation/bundles/models.html#injector-specific-annotations > >)? > IMHO this should be fixed in the model and we shouldn’t try to be smarter > with generic injections. > > Konrad > > > On 22. J

Re: Switch to Java 11

2022-06-15 Thread Jörg Hoh
nk it is time now to do the shift. > WDYT? > > As in general we don’t maintain multiple parallel branches, this would > obviously have an impact on all consumers. > Do you know of Sling bundle consumers who cannot update to Java 11 yet? > > Thanks for your input, > Konrad

  1   2   3   >