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
http://lists.xwiki.org

[xwiki-users] Technical issues

2015-04-13 Thread Maciej Fokt

Hello,

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

2. How to hide who modified something?

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