Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread Vincent Massol

> On 23 Feb 2017, at 15:31, CT  wrote:
> 
> Looking for the CSS solution, I've noticed that there's a class wich I would
> like to modify :
> 
> Actually : 
> .wikiexternallink{background:url("/resources/icons/xwiki/external-link.png")
> no-repeat scroll right center transparent;padding-right:12px;}
> 
> Wanted : defalut parameter for the background et the padding-right
> 
> 
> How to do this ? Could you help me as I've never done this before ?

This is what I was trying to say in my reply before when I said: "Just use 
firebug or chrome dev tools and find the CSS, then use some SSX to override if 
you need (google xwiki stylesheet).”

I googled “xwiki stylesheet” and the first link is:
http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial

Using a SSX will allow you to override the CSS.

Thanks
-Vincent

> Do I have to create an object when modifying the concerned xWiki page ?
> Whiche type ? XWiki.XWikiSyntaxClass (1) ?
> And what to put in Category, Section, Minimum Syntax Version and Maximum
> Syntax Version ?
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827p7602846.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread CT
Looking for the CSS solution, I've noticed that there's a class wich I would
like to modify :

Actually : 
.wikiexternallink{background:url("/resources/icons/xwiki/external-link.png")
no-repeat scroll right center transparent;padding-right:12px;}

Wanted : defalut parameter for the background et the padding-right


How to do this ? Could you help me as I've never done this before ?

Do I have to create an object when modifying the concerned xWiki page ?
Whiche type ? XWiki.XWikiSyntaxClass (1) ?
And what to put in Category, Section, Minimum Syntax Version and Maximum
Syntax Version ?



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827p7602846.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Vincent Massol

> On 23 Feb 2017, at 13:50, Eugen Colesnicov  wrote:
> 
> vmassol wrote
>> Please re-read what I said or the pointed issue carefully :)
>> The **right** behaviour is %20.
> 
> Thanks Vincent! 
> Sorry for my understanding. I believed that in xwiki.org site is the correct
> presentation of space character. Also, I think like this because for simple
> users page names with "+" looks like more "comfortable" as with "%20". Can
> you give some advice, how is better to organize long names inside XWiki so
> it will clearer for simple users? "TestMetricReport" (without any symbols
> between words) or maybe another "simple" symbol - for example  symbol "-" or
> "."? As I checked this symbols don't change it presentation …

If you don’t want any URL-encoding showing in your URL then yes you need to 
avoid using URL-reserved characters in page names… There’s no other way.

See the URL spec:
https://www.w3.org/Addressing/URL/url-spec.txt

Extract:

"
reserved =  |  ;  |  /  |  #  | ? |  : | space
"

Thanks
-Vincent

> 
> Eugen   
> 
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825p7602843.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Eugen Colesnicov
vmassol wrote
> Please re-read what I said or the pointed issue carefully :)
> The **right** behaviour is %20.

Thanks Vincent! 
Sorry for my understanding. I believed that in xwiki.org site is the correct
presentation of space character. Also, I think like this because for simple
users page names with "+" looks like more "comfortable" as with "%20". Can
you give some advice, how is better to organize long names inside XWiki so
it will clearer for simple users? "TestMetricReport" (without any symbols
between words) or maybe another "simple" symbol - for example  symbol "-" or
"."? As I checked this symbols don't change it presentation ...

Eugen   




--
View this message in context: 
http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825p7602843.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread Vincent Massol

> On 23 Feb 2017, at 13:42, CT  wrote:
> 
> I don't know how to and wouldn't like to modify the CSS of our xWiki (so do
> my administrator).
> 
> So, as I asked at the begining of the post, is there a way, like with
> MediaWiki, to avoid the icon atfer an external link ?

I answered that already. 

Thanks
-Vincent

> 
> Why couldn't I use the proposed syntax :
> 
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827p7602841.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread CT
I don't know how to and wouldn't like to modify the CSS of our xWiki (so do
my administrator).

So, as I asked at the begining of the post, is there a way, like with
MediaWiki, to avoid the icon atfer an external link ?

Why couldn't I use the proposed syntax :




--
View this message in context: 
http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827p7602841.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread Vincent Massol

> On 23 Feb 2017, at 13:32, CT  wrote:
> 
> Your remark is for internal URL , but I have an *external* URL  like in my
> previous exemple…

You pointed to a doc mentioning internal links….

For external links you’ll need to modify the CSS used if you don’t want 
external links to show the icon that shows that they are external. But that’s a 
feature not a problem ;)

Just use firebug or chrome dev tools and find the CSS, then use some SSX to 
override if you need (google xwiki stylesheet).

Thanks
-Vincent
> 
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827p7602839.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread CT
Your remark is for internal URL , but I have an *external* URL  like in my
previous exemple...




--
View this message in context: 
http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827p7602839.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Vincent Massol

> On 23 Feb 2017, at 13:27, Eugen Colesnicov  wrote:
> 
> vmassol wrote
>> You cannot since that’s not correct URL-encoding ;)
>> I fixed the problem in XWiki 8.4.x which is why you get %20 now instead of
>> “+”!
>> If you’re interested:
>> http://jira.xwiki.org/browse/XWIKI-13557#
> 
> I am using 8.4.4 (updated from 8.2.1). I read
> http://jira.xwiki.org/browse/XWIKI-13557, but looks like that this problem
> should be solved in 8.4.4 ... But I have it right now. Need to wait for
> 8.4.5 or something wrong with my 8.4.4?

Please re-read what I said or the pointed issue carefully :)

The **right** behaviour is %20.

Thanks
-Vincent

> Eugen  
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825p7602834.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread Vincent Massol

> On 23 Feb 2017, at 13:24, Richter, Tobias  wrote:
> 
> Here is the solution:
> 
> {{html}} GOOGLE{{/html}}

This is not a good idea ;)

You should use the link syntax for the syntax at hand.

If you use your solution and you rename the interna page you won’t an automatic 
refactoring for ex. It’s also going to make it hard to edit in wysiwyg for ex, 
and it’s overly complex :)

Solution in xwiki syntax 2.0+ is simply: [[label>>page1.page2]]

See 
http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax?syntax=2.1=Links

Thanks
-Vincent

> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Don't print this e-mail unless it's necessary. Help BORSI-Group go green!
> -Ursprüngliche Nachricht-
> Von: users [mailto:users-boun...@xwiki.org] Im Auftrag von CT
> Gesendet: Donnerstag, 23. Februar 2017 13:05
> An: users@xwiki.org
> Betreff: [xwiki-users] How to avoid converting an URL into an external link
> 
> I would like to know how to avoid converting an URL into an external link and 
> therefor having a icon after the text ?
> 
> I've seen that on MediaWiki
> (https://www.mediawiki.org/wiki/Help:Links/en#External_links_to_internal_pages),
> you can do it by 2 ways :
> 
> or
> 
> 
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread CT
Thank you !



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827p7602836.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread Vincent Massol
Hi,

> On 23 Feb 2017, at 13:04, CT  wrote:
> 
> I would like to know how to avoid converting an URL into an external link and
> therefor having a icon after the text ?
> 
> I've seen that on MediaWiki
> (https://www.mediawiki.org/wiki/Help:Links/en#External_links_to_internal_pages),
> you can do it by 2 ways :
> 
> or
> 
> 
> 
> 

You’re missing some text here…

The format depends on the syntax you use. For ex for XWiki Syntax 2.0+:

[[label>>page1.page2]]

This will generate an internal link.

Thanks
-Vincent

> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Eugen Colesnicov
vmassol wrote
> You cannot since that’s not correct URL-encoding ;)
> I fixed the problem in XWiki 8.4.x which is why you get %20 now instead of
> “+”!
> If you’re interested:
> http://jira.xwiki.org/browse/XWIKI-13557#

I am using 8.4.4 (updated from 8.2.1). I read
http://jira.xwiki.org/browse/XWIKI-13557, but looks like that this problem
should be solved in 8.4.4 ... But I have it right now. Need to wait for
8.4.5 or something wrong with my 8.4.4?

Eugen  



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825p7602834.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread Richter, Tobias
Here is the solution:

{{html}} GOOGLE{{/html}}











Don't print this e-mail unless it's necessary. Help BORSI-Group go green!
-Ursprüngliche Nachricht-
Von: users [mailto:users-boun...@xwiki.org] Im Auftrag von CT
Gesendet: Donnerstag, 23. Februar 2017 13:05
An: users@xwiki.org
Betreff: [xwiki-users] How to avoid converting an URL into an external link

I would like to know how to avoid converting an URL into an external link and 
therefor having a icon after the text ?

I've seen that on MediaWiki
(https://www.mediawiki.org/wiki/Help:Links/en#External_links_to_internal_pages),
you can do it by 2 ways :

or





--
View this message in context: 
http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Vincent Massol

> On 23 Feb 2017, at 13:21, Vincent Massol  wrote:
> 
> Hi,
> 
>> On 23 Feb 2017, at 13:18, Eugen Colesnicov  wrote:
>> 
>> vmassol wrote
>>> So if you have a “+” in a page name it has to be encoded as %2B.
>>> 
>>> If you have “ “ (space) in a page name it has to be encoded as %20 or “+”
>>> (depending where it appears in the URL).
>> 
>> Thanks Vinsent!
>> 
>> How I can configure that page name with space will show as "+"?
>> I tried to creat same page "Test Metric Report" but with space character.
>> After creating I get url
>> http://localhost/bin/view/Sandbox/Test%20Metric%20Report/. How is possible
>> to "switch" it to presentation as in xwiki.org example:
>> http://dev.xwiki.org/xwiki/bin/view/Drafts/Test+Metric+Report/?
> 
> You cannot since that’s not correct URL-encoding ;)
> 
> I fixed the problem in XWiki 8.4.x which is why you get %20 now instead of 
> “+”!

s/8.4.x/8.3M1

Thanks
-Vincent

> 
> If you’re interested:
> http://jira.xwiki.org/browse/XWIKI-13557#
> 
> Thanks
> -Vincent
> 
>> 
>> --
>> Eugen
>> 
>> 
>> 
>> 
>> --
>> View this message in context: 
>> http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825p7602830.html
>> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Vincent Massol
Hi,

> On 23 Feb 2017, at 13:18, Eugen Colesnicov  wrote:
> 
> vmassol wrote
>> So if you have a “+” in a page name it has to be encoded as %2B.
>> 
>> If you have “ “ (space) in a page name it has to be encoded as %20 or “+”
>> (depending where it appears in the URL).
> 
> Thanks Vinsent!
> 
> How I can configure that page name with space will show as "+"?
> I tried to creat same page "Test Metric Report" but with space character.
> After creating I get url
> http://localhost/bin/view/Sandbox/Test%20Metric%20Report/. How is possible
> to "switch" it to presentation as in xwiki.org example:
> http://dev.xwiki.org/xwiki/bin/view/Drafts/Test+Metric+Report/?

You cannot since that’s not correct URL-encoding ;)

I fixed the problem in XWiki 8.4.x which is why you get %20 now instead of “+”!

If you’re interested:
http://jira.xwiki.org/browse/XWIKI-13557#

Thanks
-Vincent

> 
> --
> Eugen
> 
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825p7602830.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Eugen Colesnicov
vmassol wrote
> So if you have a “+” in a page name it has to be encoded as %2B.
> 
> If you have “ “ (space) in a page name it has to be encoded as %20 or “+”
> (depending where it appears in the URL).

Thanks Vinsent!

How I can configure that page name with space will show as "+"?
I tried to creat same page "Test Metric Report" but with space character.
After creating I get url
http://localhost/bin/view/Sandbox/Test%20Metric%20Report/. How is possible
to "switch" it to presentation as in xwiki.org example:
http://dev.xwiki.org/xwiki/bin/view/Drafts/Test+Metric+Report/?

--
Eugen
 



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825p7602830.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] [UX] Administration Improvements

2017-02-23 Thread Ecaterina Moraru (Valica)
Hi Denis,

Thanks for your feedback.

On Thu, Feb 23, 2017 at 1:38 PM, Denis GERMAIN  wrote:

> We are running multiple flavors of Xwiki including 7.4.4 (production),
> 8.4.4 and 9.0
>
> 1. what sections are always needed and maybe we could prioritize them;
> Users and Groups are the most heavily used menu in administration for us
> We also rely heavily on Import/Exports
>
> 2. what sections could be grouped together, since they are related;
>
> 3. what sections are not relevant and could be removed (maybe because they
> are too technical, or not needed or rarely used);
> Creating subwikis is sometime used so it shouldn't be dropped (for us)
> Templates are not often used but really important to us
>
> 4. if there are important recurring things missing from administration;
> There is no easy way to troubleshoot users rights on a page. In other
> words, sometime users set rights on "pages and children" OR "pages", and it
> causes all sort of trouble
> - some users can't see some pages but they should (due to misconfiugration
> of the rights)
> - some users can open pages with the direct link but can't navigate to it
> a) I don't see why there is 2 types of rights on a page, I would personnaly
> keep only "pages and children" rights and drop "page only" rights
>

This is when you need to make exceptions: you want all the children to
behave in a certain way, but the parent or a certain subpage to have
different rights. I agree it's a more marginal use case, but still it could
happen.


> b) To troubleshoot, I'd like to have a way to see why some users can see
> the page and some don't, or to help me find where the problem is
>

I agree the rights inheritance is problematic and yes we should improve it
(in terms of setting it and display the applied rules). This functionality
gets outside of the scope of this Administration
reorganization/simplification, but it's indeed very important (and
apparently a common problem).


>
> 5. other ideas?
> I find the Template creation (with provider) procedure counter intuitive.
> Maybe it could be simplified ?
>

We added some new functionality in terms of visibility and creation
restrictions for templates, but they were intended more as powerful
features, we didn't focus on simplifying the process. Yes, we could do some
improvements there too, especially since we have started promoting
Templates more.

Thank you so much,
Caty


> 2017-02-23 11:28 GMT+01:00 Ecaterina Moraru (Valica) :
>
> > Thanks Stéphane for your answer. It's very helpful.
> >
> > Caty
> >
> > On Thu, Feb 23, 2017 at 12:15 PM, Stéphane LASSIRE <
> slass...@cesap.asso.fr
> > >
> > wrote:
> >
> > > Hello,
> > >
> > > What a nice idea.
> > > We are using a Xwiki 7.4.4 release.
> > >
> > > 1. what sections are always needed and maybe we could prioritize them;
> > > -> Users / groups / right access / extensions / statistics
> > >
> > > 2. what sections could be grouped together, since they are related;
> > > -> Configuration / Look / Email
> > >
> > > 3. what sections are not relevant and could be removed (maybe because
> > they
> > > are too technical, or not needed or rarely used);
> > > -> wikis (we are using only 1 instance, so no need of multi configs for
> > us)
> > >
> > > 4. if there are important recurring things missing from administration;
> > > -> rights "inspector", not really to know the right of a page inside a
> > > space
> > > for all users and groups
> > > -> activity of a group / user. I try to put a counter inside pages to
> see
> > > if
> > > it is accessed but it a basic solution. I would like to see how much
> some
> > > pages are viewed. The statistics are limited on this part
> > >
> > > 5. other ideas?
> > > -> see 4
> > >
> > > Thanks
> > >
> > > Cordialement
> > >
> > > Stéphane Lassire
> > > Chargé de l'informatique et de la communication
> > > Courriel : slass...@cesap.asso.fr
> > >
> > > -Message d'origine-
> > > De : users [mailto:users-boun...@xwiki.org] De la part de Ecaterina
> > Moraru
> > > (Valica)
> > > Envoyé : mardi 21 février 2017 16:15
> > > À : XWiki Mailinglist; XWiki Mailinglist
> > > Objet : [xwiki-users] [UX] Administration Improvements
> > >
> > > Hi,
> > >
> > > We are thinking about improving the Administration, so would be great
> to
> > > hear your opinion about:
> > > 1. what sections are always needed and maybe we could prioritize them;
> 2.
> > > what sections could be grouped together, since they are related; 3.
> what
> > > sections are not relevant and could be removed (maybe because they are
> > too
> > > technical, or not needed or rarely used); 4. if there are important
> > > recurring things missing from administration; 5. other ideas?
> > >
> > > We are particularly interested in 1. and that is sections that are used
> > > often and would love to know which are those (since they differ so much
> > > depending on usage).
> > >
> > > Let us know,
> > > Caty
> > >
> >
>


[xwiki-users] How to avoid converting an URL into an external link

2017-02-23 Thread CT
I would like to know how to avoid converting an URL into an external link and
therefor having a icon after the text ?

I've seen that on MediaWiki
(https://www.mediawiki.org/wiki/Help:Links/en#External_links_to_internal_pages),
you can do it by 2 ways :

or





--
View this message in context: 
http://xwiki.475771.n2.nabble.com/How-to-avoid-converting-an-URL-into-an-external-link-tp7602827.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] PageName with "plus" character

2017-02-23 Thread Vincent Massol
Hi,

> On 23 Feb 2017, at 12:49, Eugen Colesnicov  wrote:
> 
> Hello,
> 
> When I creating page inside XWiki (version 8.4.4) and my page name contains
> character "plus" (+), for example "Test+Metric+Report" in browser address
> bar this page name looks like (visually) as
> "http://localhost/bin/view/Sandbox/Test%2BMetric%2BReport/; but, in
> xwiki.org site page with same name looks as created - for example (real
> page) - http://dev.xwiki.org/xwiki/bin/view/Drafts/Test+Metric+Report/
> 
> Why exists difference? Maybe need some additional configuration?

This is because the URL spec mandates URL-encoding.

So if you have a “+” in a page name it has to be encoded as %2B.

If you have “ “ (space) in a page name it has to be encoded as %20 or “+” 
(depending where it appears in the URL).

So in your examples, the page is "Test Metric Report” with spaces and not “+” 
and the encoded url is 
http://dev.xwiki.org/xwiki/bin/view/Drafts/Test+Metric+Report/

Thanks
-Vincent

> 
> --
> Eugen
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.



[xwiki-users] PageName with "plus" character

2017-02-23 Thread Eugen Colesnicov
Hello,

When I creating page inside XWiki (version 8.4.4) and my page name contains
character "plus" (+), for example "Test+Metric+Report" in browser address
bar this page name looks like (visually) as
"http://localhost/bin/view/Sandbox/Test%2BMetric%2BReport/; but, in
xwiki.org site page with same name looks as created - for example (real
page) - http://dev.xwiki.org/xwiki/bin/view/Drafts/Test+Metric+Report/

Why exists difference? Maybe need some additional configuration?

--
Eugen



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/PageName-with-plus-character-tp7602825.html
Sent from the XWiki- Users mailing list archive at Nabble.com.


Re: [xwiki-users] [UX] Administration Improvements

2017-02-23 Thread Denis GERMAIN
We are running multiple flavors of Xwiki including 7.4.4 (production),
8.4.4 and 9.0

1. what sections are always needed and maybe we could prioritize them;
Users and Groups are the most heavily used menu in administration for us
We also rely heavily on Import/Exports

2. what sections could be grouped together, since they are related;

3. what sections are not relevant and could be removed (maybe because they
are too technical, or not needed or rarely used);
Creating subwikis is sometime used so it shouldn't be dropped (for us)
Templates are not often used but really important to us

4. if there are important recurring things missing from administration;
There is no easy way to troubleshoot users rights on a page. In other
words, sometime users set rights on "pages and children" OR "pages", and it
causes all sort of trouble
- some users can't see some pages but they should (due to misconfiugration
of the rights)
- some users can open pages with the direct link but can't navigate to it
a) I don't see why there is 2 types of rights on a page, I would personnaly
keep only "pages and children" rights and drop "page only" rights
b) To troubleshoot, I'd like to have a way to see why some users can see
the page and some don't, or to help me find where the problem is

5. other ideas?
I find the Template creation (with provider) procedure counter intuitive.
Maybe it could be simplified ?

2017-02-23 11:28 GMT+01:00 Ecaterina Moraru (Valica) :

> Thanks Stéphane for your answer. It's very helpful.
>
> Caty
>
> On Thu, Feb 23, 2017 at 12:15 PM, Stéphane LASSIRE  >
> wrote:
>
> > Hello,
> >
> > What a nice idea.
> > We are using a Xwiki 7.4.4 release.
> >
> > 1. what sections are always needed and maybe we could prioritize them;
> > -> Users / groups / right access / extensions / statistics
> >
> > 2. what sections could be grouped together, since they are related;
> > -> Configuration / Look / Email
> >
> > 3. what sections are not relevant and could be removed (maybe because
> they
> > are too technical, or not needed or rarely used);
> > -> wikis (we are using only 1 instance, so no need of multi configs for
> us)
> >
> > 4. if there are important recurring things missing from administration;
> > -> rights "inspector", not really to know the right of a page inside a
> > space
> > for all users and groups
> > -> activity of a group / user. I try to put a counter inside pages to see
> > if
> > it is accessed but it a basic solution. I would like to see how much some
> > pages are viewed. The statistics are limited on this part
> >
> > 5. other ideas?
> > -> see 4
> >
> > Thanks
> >
> > Cordialement
> >
> > Stéphane Lassire
> > Chargé de l'informatique et de la communication
> > Courriel : slass...@cesap.asso.fr
> >
> > -Message d'origine-
> > De : users [mailto:users-boun...@xwiki.org] De la part de Ecaterina
> Moraru
> > (Valica)
> > Envoyé : mardi 21 février 2017 16:15
> > À : XWiki Mailinglist; XWiki Mailinglist
> > Objet : [xwiki-users] [UX] Administration Improvements
> >
> > Hi,
> >
> > We are thinking about improving the Administration, so would be great to
> > hear your opinion about:
> > 1. what sections are always needed and maybe we could prioritize them; 2.
> > what sections could be grouped together, since they are related; 3. what
> > sections are not relevant and could be removed (maybe because they are
> too
> > technical, or not needed or rarely used); 4. if there are important
> > recurring things missing from administration; 5. other ideas?
> >
> > We are particularly interested in 1. and that is sections that are used
> > often and would love to know which are those (since they differ so much
> > depending on usage).
> >
> > Let us know,
> > Caty
> >
>


[xwiki-users] How to use PDF viewer macro

2017-02-23 Thread Oliver Angélil
Hi all,

I'm using xwiki enterprise 8.4.4.

I've installed the PDF view macro
extension
(it appears as "installed" in the extensions manager).

How do I now view a PDF using it? See the attached screenshot. When I click
on the PDF, the file is downloaded locally. How can I view the PDF in the
browser?

Oliver


Re: [xwiki-users] [UX] Administration Improvements

2017-02-23 Thread Ecaterina Moraru (Valica)
Thanks Stéphane for your answer. It's very helpful.

Caty

On Thu, Feb 23, 2017 at 12:15 PM, Stéphane LASSIRE 
wrote:

> Hello,
>
> What a nice idea.
> We are using a Xwiki 7.4.4 release.
>
> 1. what sections are always needed and maybe we could prioritize them;
> -> Users / groups / right access / extensions / statistics
>
> 2. what sections could be grouped together, since they are related;
> -> Configuration / Look / Email
>
> 3. what sections are not relevant and could be removed (maybe because they
> are too technical, or not needed or rarely used);
> -> wikis (we are using only 1 instance, so no need of multi configs for us)
>
> 4. if there are important recurring things missing from administration;
> -> rights "inspector", not really to know the right of a page inside a
> space
> for all users and groups
> -> activity of a group / user. I try to put a counter inside pages to see
> if
> it is accessed but it a basic solution. I would like to see how much some
> pages are viewed. The statistics are limited on this part
>
> 5. other ideas?
> -> see 4
>
> Thanks
>
> Cordialement
>
> Stéphane Lassire
> Chargé de l'informatique et de la communication
> Courriel : slass...@cesap.asso.fr
>
> -Message d'origine-
> De : users [mailto:users-boun...@xwiki.org] De la part de Ecaterina Moraru
> (Valica)
> Envoyé : mardi 21 février 2017 16:15
> À : XWiki Mailinglist; XWiki Mailinglist
> Objet : [xwiki-users] [UX] Administration Improvements
>
> Hi,
>
> We are thinking about improving the Administration, so would be great to
> hear your opinion about:
> 1. what sections are always needed and maybe we could prioritize them; 2.
> what sections could be grouped together, since they are related; 3. what
> sections are not relevant and could be removed (maybe because they are too
> technical, or not needed or rarely used); 4. if there are important
> recurring things missing from administration; 5. other ideas?
>
> We are particularly interested in 1. and that is sections that are used
> often and would love to know which are those (since they differ so much
> depending on usage).
>
> Let us know,
> Caty
>


Re: [xwiki-users] [UX] Administration Improvements

2017-02-23 Thread Stéphane LASSIRE
Hello,

What a nice idea.
We are using a Xwiki 7.4.4 release.

1. what sections are always needed and maybe we could prioritize them;
-> Users / groups / right access / extensions / statistics

2. what sections could be grouped together, since they are related;
-> Configuration / Look / Email

3. what sections are not relevant and could be removed (maybe because they 
are too technical, or not needed or rarely used);
-> wikis (we are using only 1 instance, so no need of multi configs for us)

4. if there are important recurring things missing from administration;
-> rights "inspector", not really to know the right of a page inside a space 
for all users and groups
-> activity of a group / user. I try to put a counter inside pages to see if 
it is accessed but it a basic solution. I would like to see how much some 
pages are viewed. The statistics are limited on this part

5. other ideas?
-> see 4

Thanks

Cordialement

Stéphane Lassire
Chargé de l'informatique et de la communication
Courriel : slass...@cesap.asso.fr

-Message d'origine-
De : users [mailto:users-boun...@xwiki.org] De la part de Ecaterina Moraru 
(Valica)
Envoyé : mardi 21 février 2017 16:15
À : XWiki Mailinglist; XWiki Mailinglist
Objet : [xwiki-users] [UX] Administration Improvements

Hi,

We are thinking about improving the Administration, so would be great to 
hear your opinion about:
1. what sections are always needed and maybe we could prioritize them; 2. 
what sections could be grouped together, since they are related; 3. what 
sections are not relevant and could be removed (maybe because they are too 
technical, or not needed or rarely used); 4. if there are important 
recurring things missing from administration; 5. other ideas?

We are particularly interested in 1. and that is sections that are used 
often and would love to know which are those (since they differ so much 
depending on usage).

Let us know,
Caty