On 08 Apr 2016, at 10:00, Thomas Mortagne
<thomas.mortagne(a)xwiki.com> wrote:
I'm hesitating, the thing is that what webjars really want to know in
practice is the namespace since that what it will provide to
ClassLoaderManager so maybe the best is to indicate the namespace
instead of the wiki in the URL. It means that webjar service can
support both wiki and users right now and any future namespaces
(document, space, etc).
Don’t you think that we need the wiki in order to validate permissions:
"// 2) so that we can set the current user in the Context and at the same time verify
that the current user has
// View Rights on this wiki"
At
https://github.com/xwiki/xwiki-platform/blob/4f2f6fa823d3d222851f7001237b0b…
Of course we could generalize and say that we pass a serialized entity reference (or
resource reference) instead of the wikiId. Note that we would also need to pass the entity
type (or resource reference type), so it would need to be something like “/wiki:wikiId/…”.
Maybe this is too much for now. It’s more work and I’m not sure about the use cases...
Thanks
-Vincent
On Fri, Apr 8, 2016 at 9:06 AM, Vincent Massol
<vincent(a)massol.net> wrote:
> Hi devs,
>
> In order to fix
http://jira.xwiki.org/browse/XWIKI-13276, I’m proposing:
>
> * Use Case 1: No wiki specified:
>
> $services.webjars.url('org.xwiki.contrib:application-ckeditor-webjar',
'ckeditor.js’)
>
> would generate:
>
>
/<context>/webjars/<currentWikiId>/application-ckeditor-webjar/1.4/ckeditor.js
>
> * Use Case 2: Wiki specified:
>
> $services.webjars.url('org.xwiki.contrib:application-ckeditor-webjar',
'ckeditor.js', {'wiki': 'mywiki’)
>
> would generate
>
> /<context>/webjars/mywiki/application-ckeditor-webjar/1.4/ckeditor.js
>
> Generic format:
>
> /<context>/webjars/<wikiId>/path/to/resource
>
> WDYT?
>
> I prefer this over having to deal with domain vs path-based; I also find it more
clear.
>
> Thanks
> -Vincent