Re: [xwiki-users] Technical issues

2015-04-14 Thread Ricardo.Julio.Rodriguez.Fernandez
Hi Maciek!

CSS is King! Please, read this..

http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial

I you read a previous message of mine, you already realized that I'm not a 
master here! :-) But we can learn together!

Together with this entry point to documentation to control how/what pieces to 
show, you must install some software that allow you to understand how each page 
is composed. I'm using Firebug Lite for Safari, Chrome and Firefox and I'm 
almost enterely satisfied.

You always should start reading about CSS as much as possible! It is a really 
powerful tool, but it takes time to get its point!

Concerning the two precise questions you passed in in your message, please, 
read below...

--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es


De: users [users-boun...@xwiki.org] en nombre de Maciej Fokt 
[maciek.f...@taxi123.pl]
Enviado: lunes, 13 de abril de 2015 13:28
Para: users@xwiki.org
Asunto: [xwiki-users] Technical issues

Hello,

My problems:
1. Double button on the top panel (How to switch off this?) (screen shot
is in attachment)

**If you are talking about the green bottom in upper menu, adding a 
StyleSheetExtension with this simple code will do the trick...

#tmCreate {
  display: none;
}

2. How to hide who modified something?

**If you want to hide only the Last modified by line under the page title, 
this code inside a StyleSheetExtension will do it...

.xdocLastModification {
  display: none;
}

If you also wants to hide the History, use this code in the body of the page...

{{velocity}}
#set ($showhistory=no)
{{/velocity}}


Hope this helps!!!

Ricardo

Greetings,
Maciek.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users



Nota: A información contida nesta mensaxe e os seus posibles documentos 
adxuntos é privada e confidencial e está dirixida únicamente ó seu 
destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por 
favor elimínea. A distribución ou copia desta mensaxe non está autorizada.

Nota: La información contenida en este mensaje y sus posibles documentos 
adjuntos es privada y confidencial y está dirigida únicamente a su 
destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, 
por favor elimínelo. La distribución o copia de este mensaje no está autorizada.

See more languages: http://www.sergas.es/aviso_confidencialidad.htm
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Technical issues

2015-04-14 Thread Maciej Fokt

Hello,

Ok :p but how to open code to make any changes?

Greetings,
Maciek.


W dniu .04.2015 o 09:02 ricardo.julio.rodriguez.fernan...@sergas.es  
pisze:



Hi Maciek!

CSS is King! Please, read this..

http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial

I you read a previous message of mine, you already realized that I'm not  
a master here! :-) But we can learn together!


Together with this entry point to documentation to control how/what  
pieces to show, you must install some software that allow you to  
understand how each page is composed. I'm using Firebug Lite for Safari,  
Chrome and Firefox and I'm almost enterely satisfied.


You always should start reading about CSS as much as possible! It is a  
really powerful tool, but it takes time to get its point!


Concerning the two precise questions you passed in in your message,  
please, read below...


--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es


De: users [users-boun...@xwiki.org] en nombre de Maciej Fokt  
[maciek.f...@taxi123.pl]

Enviado: lunes, 13 de abril de 2015 13:28
Para: users@xwiki.org
Asunto: [xwiki-users] Technical issues

Hello,

My problems:
1. Double button on the top panel (How to switch off this?) (screen shot
is in attachment)

**If you are talking about the green bottom in upper menu, adding a  
StyleSheetExtension with this simple code will do the trick...


#tmCreate {
  display: none;
}

2. How to hide who modified something?

**If you want to hide only the Last modified by line under the page  
title, this code inside a StyleSheetExtension will do it...


.xdocLastModification {
  display: none;
}

If you also wants to hide the History, use this code in the body of the  
page...


{{velocity}}
#set ($showhistory=no)
{{/velocity}}


Hope this helps!!!

Ricardo

Greetings,
Maciek.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users



Nota: A información contida nesta mensaxe e os seus posibles documentos  
adxuntos é privada e confidencial e está dirixida únicamente ó seu  
destinatario/a. Se vostede non é o/a destinatario/a orixinal desta  
mensaxe, por favor elimínea. A distribución ou copia desta mensaxe non  
está autorizada.


Nota: La información contenida en este mensaje y sus posibles documentos  
adjuntos es privada y confidencial y está dirigida únicamente a su  
destinatario/a. Si usted no es el/la destinatario/a original de este  
mensaje, por favor elimínelo. La distribución o copia de este mensaje no  
está autorizada.


See more languages: http://www.sergas.es/aviso_confidencialidad.htm
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Technical issues

2015-04-14 Thread Ricardo.Julio.Rodriguez.Fernandez
Hi Maciej,

I'm afraid you must expend sometime understanding how XWiki is built. The 
introduction of SkinExtensionsTutorial gives you links you must, at least, 
browse through to get an entry level understanding of how things work.

Just two tips:

1) You can add an object to any XWiki page by editing it in object mode. It 
is available in the Edit menu while editing any page.
2) Once there, you can add a StyleSheetExtension object by selecting that class 
in the New object selector and clicking Add.
3) Once you get the object added, you can fill in its properties. One of them 
is called... code! That's the place to start playing!

Maciej, I know I'm a bit slow, but I've had to devote many hours to understand 
how to start getting all the power from XWiki architecture!

Good luck!

Ricardo

--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es


De: Maciej Fokt [maciek.f...@taxi123.pl]
Enviado: martes, 14 de abril de 2015 10:38
Para: users@xwiki.org; Rodriguez Fernandez, Ricardo Julio
Asunto: Re: [xwiki-users] Technical issues

Hello,

Ok :p but how to open code to make any changes?

Greetings,
Maciek.


W dniu .04.2015 o 09:02 ricardo.julio.rodriguez.fernan...@sergas.es
pisze:

 Hi Maciek!

 CSS is King! Please, read this..

 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial

 I you read a previous message of mine, you already realized that I'm not
 a master here! :-) But we can learn together!

 Together with this entry point to documentation to control how/what
 pieces to show, you must install some software that allow you to
 understand how each page is composed. I'm using Firebug Lite for Safari,
 Chrome and Firefox and I'm almost enterely satisfied.

 You always should start reading about CSS as much as possible! It is a
 really powerful tool, but it takes time to get its point!

 Concerning the two precise questions you passed in in your message,
 please, read below...

 --
 Ricardo Rodríguez
 Research Management and Promotion Technician
 Technical Secretariat
 Health Research Institute of Santiago de Compostela (IDIS)
 http://www.idisantiago.es

 
 De: users [users-boun...@xwiki.org] en nombre de Maciej Fokt
 [maciek.f...@taxi123.pl]
 Enviado: lunes, 13 de abril de 2015 13:28
 Para: users@xwiki.org
 Asunto: [xwiki-users] Technical issues

 Hello,

 My problems:
 1. Double button on the top panel (How to switch off this?) (screen shot
 is in attachment)

 **If you are talking about the green bottom in upper menu, adding a
 StyleSheetExtension with this simple code will do the trick...

 #tmCreate {
   display: none;
 }

 2. How to hide who modified something?

 **If you want to hide only the Last modified by line under the page
 title, this code inside a StyleSheetExtension will do it...

 .xdocLastModification {
   display: none;
 }

 If you also wants to hide the History, use this code in the body of the
 page...

 {{velocity}}
 #set ($showhistory=no)
 {{/velocity}}


 Hope this helps!!!

 Ricardo

 Greetings,
 Maciek.
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users

 

 Nota: A información contida nesta mensaxe e os seus posibles documentos
 adxuntos é privada e confidencial e está dirixida únicamente ó seu
 destinatario/a. Se vostede non é o/a destinatario/a orixinal desta
 mensaxe, por favor elimínea. A distribución ou copia desta mensaxe non
 está autorizada.

 Nota: La información contenida en este mensaje y sus posibles documentos
 adjuntos es privada y confidencial y está dirigida únicamente a su
 destinatario/a. Si usted no es el/la destinatario/a original de este
 mensaje, por favor elimínelo. La distribución o copia de este mensaje no
 está autorizada.

 See more languages: http://www.sergas.es/aviso_confidencialidad.htm
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



Nota: A información contida nesta mensaxe e os seus posibles documentos 
adxuntos é privada e confidencial e está dirixida únicamente ó seu 
destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por 
favor elimínea. A distribución ou copia desta mensaxe non está autorizada.

Nota: La información contenida en este mensaje y sus posibles documentos 
adjuntos es privada y confidencial y está dirigida únicamente a su 
destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, 
por favor elimínelo. La distribución o copia de este mensaje no está autorizada.

See more languages: http://www.sergas.es/aviso_confidencialidad.htm
___
users mailing list
users@xwiki.org

Re: [xwiki-users] dashboardleft and CSS

2015-04-14 Thread Ricardo.Julio.Rodriguez.Fernandez
Well... taking my own medicine I get the way how to control the appearance of 
this area of the site... a simple combination between StyleSheetExtensions 
in...

$xwiki.ssx.use(XWiki.XWikiUserSheet)##
$xwiki.ssx.use('Main.Dashboard')##

Plus any instance created in any user's page (affecting only to this user 
page), plus any inline code injecting style code in a html tag... well, a lot 
of things to understand! Patience, time, and your help, by action or measured 
silence.

Thanks all!

Ricardo

--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es


De: users [users-boun...@xwiki.org] en nombre de Rodriguez Fernandez, Ricardo 
Julio
Enviado: domingo, 12 de abril de 2015 11:32
Para: users@xwiki.org
Asunto: [xwiki-users] dashboardleft and CSS

Hi!

In a user profile page with new tabs, I wish div dashboardleft occupy all 
available width for privateSpacePane.

I'm not able to find the right place to inject a width: 100%; property that is 
working for me when trying it with Inspector (Mac OS X, Safari)

http://atriumkm.idisantiago.es/bin/download/ICT/CSS/css.OnPrivateSpace02.png

Please, could you point me in the right direction? Must I add a 
XWiki.StyleSheetExtension object to XWiki.XWikiUserSheet? Must I add it to each 
user page? Could I use inline code in the concerned div element? I've tried a 
number of things but failed all and every time!

Thanks for your help!

Ricardo


--
Ricardo Rodríguez
Research Management and Promotion Technician
Technical Secretariat
Health Research Institute of Santiago de Compostela (IDIS)
http://www.idisantiago.es



Nota: A información contida nesta mensaxe e os seus posibles documentos 
adxuntos é privada e confidencial e está dirixida únicamente ó seu 
destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por 
favor elimínea. A distribución ou copia desta mensaxe non está autorizada.

Nota: La información contenida en este mensaje y sus posibles documentos 
adjuntos es privada y confidencial y está dirigida únicamente a su 
destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, 
por favor elimínelo. La distribución o copia de este mensaje no está autorizada.

See more languages: http://www.sergas.es/aviso_confidencialidad.htm
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users



Nota: A información contida nesta mensaxe e os seus posibles documentos 
adxuntos é privada e confidencial e está dirixida únicamente ó seu 
destinatario/a. Se vostede non é o/a destinatario/a orixinal desta mensaxe, por 
favor elimínea. A distribución ou copia desta mensaxe non está autorizada.

Nota: La información contenida en este mensaje y sus posibles documentos 
adjuntos es privada y confidencial y está dirigida únicamente a su 
destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, 
por favor elimínelo. La distribución o copia de este mensaje no está autorizada.

See more languages: http://www.sergas.es/aviso_confidencialidad.htm
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] XWIKI 7.0 Admin/IMPORT fails with NULL POINTER

2015-04-14 Thread ICLED
When I import ojects from XWIKI 6.4.3 or 5.2.1 I get a NULL POINTER
exception.

I only import selected spaces, all the objects are imported.

I can provide you with a (quite large) XAR backup of one of our system.

5-04-14 19:37:20,613 [http://wiki/xwiki/wiki/icwiki/view/Main/] WARN 
o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.web.XWikiMessageTool.get] in 57:icwiki:IC
Dashboard.Dashboard@1,6
2015-04-14 19:37:25,365 [http://wiki/xwiki/wiki/icwiki/view/IC+Dashboard/]
WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.web.XWikiMessageTool.get] in 57:icwiki:IC
Dashboard.Dashboard@1,6
2015-04-14 19:37:39,406 [http://wiki/xwiki/wiki/icwiki/view/IC+Dashboard/]
WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.web.XWikiMessageTool.get] in 57:icwiki:IC
Dashboard.Dashboard@1,6
2015-04-14 19:37:39,429 [http://wiki/xwiki/wiki/icwiki/view/IC+Dashboard/]
WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.web.XWikiMessageTool.get] in 29:icwiki:IC
Dashboard.Dashboard@1,6
2015-04-14 19:40:31,721
[http://wiki/xwiki/wiki/icwiki/admin/XWiki/XWikiPreferences] WARN 
o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.web.XWikiMessageTool.get] in 32:icwiki:IC Dashboard.Dash
board@1,6
2015-04-14 19:40:36,274
[http://wiki/xwiki/wiki/icwiki/import/XWiki/XWikiPreferences?editor=globaladminsection=Import]
WARN  o.x.v.i.DefaultVelocityEngine  - Deprecated usage of method
[com.xpn.xwiki.web.XWikiMessageTool.
get] in 58:icwiki:IC Dashboard.Dashboard@1,6
2015-04-14 19:41:14,748
[http://wiki/xwiki/wiki/icwiki/import/XWiki/XWikiPreferences?editor=globaladminsection=Import]
WARN  c.x.x.w.XWikiAction 

- Uncaught exception: Error number 11015 in 11: Error number 11015 in 11:
Exception while importing
com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
importing
at com.xpn.xwiki.web.ImportAction.render(ImportAction.java:110)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:345)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:146)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:425)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:228)
at 
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:646)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:115)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:127)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at
org.xwiki.container.servlet.filters.internal.SetHTTPHeaderFilter.doFilter(SetHTTPHeaderFilter.java:63)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:66)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:208)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:111)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
at

Re: [xwiki-users] User Permissions Issue

2015-04-14 Thread mahomed
Thanks for still responding Hamster. Am I correct that you are using version
5.4.3 and not version 7? I think it got changed/broken in v6



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/User-Permissions-Issue-tp7594486p7594646.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users