Re: [xwiki-users] hello :D

2008-03-12 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team

Hi Grabriela,

Gabriela Radu wrote:


 hello
regarding the css use for links ..
"{style:type=div|align=left}*{style:type=span|font-size=12px|color=#ff|background-color=#FF} 
a {color:#FFCCDF;}[Review product feedback to 
designers>Rev_Desfeed]{style}*{style} "
it does not work..it just shows me the css code...but the colors are 
the same(default)
that is why i said last time that i don't think i get the use of css 
in xwiki. can u help me with it, pls?

thanks


I am trying to understand what you are trying to do... Are you including 
this code in a XWiki page?


XWiki look and feel is completely controlled by CSS, JS and Velocity 
macros. Each time is easier to modify some characteristics of the layout 
although it is by no means easy to understand/control the whole thing!


If you want to use CSS to control the appearance of your contents or the 
layout of your wiki, these could be good starting points...


http://platform.xwiki.org/xwiki/bin/view/AdminGuide/CSS+files

http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins#HCreatingawholenewskin

Just my two cents,

Ricardo

--
Ricardo Rodríguez
Your EPEC Network ICT Team

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


Re: [xwiki-users] upgrading xwiki 1.2.2

Hi Joao,


Joao Henrique Silva Santos wrote:
> Hi.
>
> I have installed an XWiki 1.2.2 through a "XWiki Enterprise ZIP", and
> now want to upgrade to 1.3.
> >From the documentation, it seems that easy upgrades of the wiki
> require the WAR installation, which I have not done. Do I have to
> export my current wiki into a WAR (if so, how can I do it?), or is it
> done through a different method?


Have you checked out "Upgrading an XWiki Installation" in the following 
location?

http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installation

HTH,

Ricardo

-- 
Ricardo Rodríguez
Your EPEC Network ICT Team

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


Re: [xwiki-users] collapsed panels (continued)

Hi Joao,

Joao Henrique Silva Santos wrote:
> Finally, even a panel which uses the standard panelheader does not
> behave properly.
> Does anybody have a possible explanation / common problems?
>
>   

I am not able to reproduce what you are describing. The macro works fine 
for me. I've modified it a bit. Perhaps it is clearer now. See this...

#set($initialState= "collapsed")
#set($alternativeState="expanded")

#macro(panelheaderc $title)
#set($cookieName = "${context.user}_${panel}")
#set($expanded = $initialState)
#set($expanded = $xwiki.getUserPreferenceFromCookie($cookieName))
## Note: We pass the Panel name as an HTML class attribute so that it's 
possible to style
## the Panels selectively using CSS.
#set ($specialClassAttribute = "")
#if ($paneldoc && $paneldoc != "")
  #set ($specialClassAttribute = 
$util.convertToAlphaNumeric($paneldoc.name))
#end

$title

#end

Initial state can be easily moved to each panel content. Alternative 
state can be easily set with a if-else-end structure. I am falling while 
evaluating the value of $initialState, but this is only a matter of 
looking for the right syntax.

If you are using a modified macros.vm including the customized macros, I 
am not able to figure out any problem other than a malfunction at your 
browser level. Have you tried with several browsers from the same box? 
Could you try this version I am proposing? It works fine here.

But if you are using a #includemacros("macrosFile") statement, it could 
be a matter of where you use it. I don't know how to put it this macro's 
call to affect the whole site without modifying macro.vm. I don't know 
if this is possible or we must include it in all and any documents 
needing the macros included there. I will do some more research prior to 
posting a question about this. Any input will be welcome Thanks.

Best,

Ricardo

-- 
Ricardo Rodríguez
Your EPEC Network ICT Team

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


Re: [xwiki-users] collapsed panels (continued)

Hi Joao! Sorry for being late with this answer...

Joao Henrique Silva Santos wrote:
> Hi Ricardo.
> First, I would like to say thanks for the reply.
>
> The reason I didn't reply to the original thread is because I was not
> registered at the time, and so I did not have the post on my inbox to
> reply.
>
>   
OK. I should have supposed something like this. Perhaps Nabble could 
help in this situations. Although you have already found this, it could 
be helpful to follow any other thread of which you have not the starting 
point in your inbox...

http://www.nabble.com/XWiki-f2563.html

I also use this tool when the account I have registered with in the list 
can not be used to send from a given location. I frequently have this 
problem.

I have not a clear idea about how frequently Nabble synchronizes with 
lists contents. But it eventually works!
> As for cookies, yes, my browser does accept them (I'm using firefox
> but there is also this behaviour for IE 6 and 7 browsers).
>
> When I say I can't enter edit mode I wasn't refering to "my wiki" :),
> but to Xwiki's wiki.
> I've already seen macro.* (I even edited so that my panels are
> collapsed by default), but can't find anything regarding...

New messages give more information than this entry, thus I am moving 
there to follow the flow!

Cheers,

Ricardo


-- 
Ricardo Rodríguez
Your EPEC Network ICT Team

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


[xwiki-users] upgrading xwiki 1.2.2

Hi.

I have installed an XWiki 1.2.2 through a "XWiki Enterprise ZIP", and
now want to upgrade to 1.3.
>From the documentation, it seems that easy upgrades of the wiki
require the WAR installation, which I have not done. Do I have to
export my current wiki into a WAR (if so, how can I do it?), or is it
done through a different method?

Best regards,
Joao
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Display external directory tree under xwiki

Hi folks,

Just another thought on the topic: displaying external directory structures 
with metadata under XWiki.

The major goal I have to achieve is to provide readonly access to a directory 
structure with associated documents for download.

I have read in the xwiki docs on optimization that it is possible to disable 
versioning of documents for performance gain.
- Is it possible to disable versioning for specific spaces?

This would allow me to generate hirachical pages with the appropreate metadata 
(one page -> one directory, one space -> one project to display) without 
creating to much junk inside of xwiki (only latest information on structure is 
valid).

Does this sound reasonable - or do you think I missed some important extension 
capabilities of xwiki?
Any hint is highly appreciated.

Best regards

Joerg

___

Jörg Gellien
Otto Group
Systementwickler · Software Qualitätsmanagement und Synergy Administration · 
IL-BI-ZA

Otto (GmbH & Co KG) · Wandsbeker Straße 3-7 · 22172 Hamburg 
Telefon +49 (0) 40 64 61 5691 · Fax +49 (0) 40 64 64 5691
[EMAIL PROTECTED] · www.ottogroup.com 
___

AG Hamburg, HRA 62024, Persönlich haftend: Verwaltungsgesellschaft 
Otto mbH, Hamburg, AG Hamburg, HRB 13762
vertreten durch: Hans-Otto Schrader  (Vorsitzender) · Dr. Rainer Hillebrand 
(Stellvertretender Vorsitzender) · Alexander Birken ·
Dr. Willi Darr · Diethard Gagelmann · Peter Gelsdorf · Dr. Wolfgang Linder · 
Jürgen Schulte-Laggenbeck · Dr. Winfried Zimmermann 
Aufsichtsrat: Prof. Dr. h.c. Werner Otto (Ehrenvorsitzender) · Dr. Michael Otto 
(Vorsitzender)




> -Ursprüngliche Nachricht-
> Von: Gellien, Joerg 
> Gesendet: Dienstag, 11. März 2008 16:39
> An: 'users@xwiki.org'
> Betreff: Re: [xwiki-users] Display directory tree under xwiki
> 
> 
> Hi Guillaume,
> 
> In the ancient days before xwiki we used to checkout a 
> project from version control (Telelogic Synergy) into the 
> file system. To access it from Web we put the base directory 
> under apache htdocs using directory navigation feature 
> provided by apache server.
> 
> The major drawback was/is
> - no access control (ok htaccess - not realy maintainable in our case)
> - no possibility to add meta data like version, author e.a. 
> from version control
> - no special filters on file types (e.g. only show office 
> documents for project a (separate directory structure), all 
> documents for project b (separate directory structure)
> 
> My first idea is to provide a plugin to access filesystem 
> starting from a root-directory and generate a tree like 
> structure. On top of this I can provide a filter mechanism 
> and adding meta data to the display.
> 
> It should look something like this: 
> http://mywiki/xwiki/bin/ProjectA/ContentFromVersionControl 
> (Page content)
> This page contains detailed data from project 
> myspecialProject~jgellien from Synergy repository myrepo:
>   
>   myspecialProject~jgellien
>|-doc
>|  |- myDescription.doc (version: 1.0, last changed: jgellien)
>|  |- more docs to come (version: 1.1, last changed: jgellien)
>|  |-subdir
>  |- projectplan.xls (version: 1.1, last modified: 
> jgellien)
> 
> 
> The documentation is directly maintained inside version 
> control with a predefined directory structure. This structure 
> should be preserved in the presentation layer. Updating the 
> documentation could be done with a chron job.
> 
> Perhaps this goes into the direction of WebDav and ViewVC but 
> I am no expert on this field.
> 
> Do you have any advise how to proceed?
> Any help is highly appreciated.
> 
> Best regards
> 
> Joerg
> ___
> Jörg Gellien
> Otto Group
> Systementwickler · Software Qualitätsmanagement und Synergy 
> Administration · IL-BI-ZA Otto (GmbH & Co KG) · Wandsbeker 
> Straße 3-7 · 22172 Hamburg 
> Telefon +49 (0) 40 64 61 5691 · Fax +49 (0) 40 64 64 5691 
> [EMAIL PROTECTED] · www.ottogroup.com 
> ___
> AG Hamburg, HRA 62024, Persönlich haftend: Verwaltungsgesellschaft 
> Otto mbH, Hamburg, AG Hamburg, HRB 13762
> vertreten durch: Hans-Otto Schrader  (Vorsitzender) · Dr. 
> Rainer Hillebrand (Stellvertretender Vorsitzender) · 
> Alexander Birken · Dr. Willi Darr · Diethard Gagelmann · 
> Peter Gelsdorf · Dr. Wolfgang Linder · Jürgen 
> Schulte-Laggenbeck · Dr. Winfried Zimmermann 
> Aufsichtsrat: Prof. Dr. h.c. Werner Otto (Ehrenvorsitzender) 
> · Dr. Michael Otto (Vorsitzender)
> 
> Date: Tue, 11 Mar 2008 14:59:04 +0100
> From: "Guillaume Lerouge" <[EMAIL PROTECTED]>
> Subject: Re: [xwiki-users] Display directory tree under xwiki 
> enterprose 1.3
> To: "XWiki Users" 
> Message-ID: 
> <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="iso-8859-1"
> Hi Jorg,
> > first of all thanks for this new great release of XWiki Enterprise
> > 1.3. I am on the list for