Hello I am not sure i understood what u are asking, but: -if u want to divide a page in 2 columns. only that page..so you cannot use the change of layout from xwiki, you can easily edit the page in question in the object mode. (?editor=object) and from the right side you can see that u can add a "stylesheetclass" and there u can add .css . here in you declare your 2 columns and everything else u want to have in page, just like u are creating a simple html file that uses a css file. Next: Save - John Bober wrote:
Hi,
I'm a Newbe and courrently working with an xwiki. I really like the look and gadgets, I'm only a little disapointed from the history. Currently it shows only the deletet and the added Text. Is there any posibility to generaly show the rest of the content? It would really help, I didn't get what is actually changed and what not.
- to see the author and dates and pages that were modified, use the xwiki: "#includeInContext("Main.RecentChanges")". it's something like this: {{velocity}} {{html}}
## Set variables to limit recent changes to the current space and 10 items. #set($rcSpace = [$doc.space]) #set($rcChangesNb = 10) #includeInContext("Main.RecentChanges")
{{/html}} {{/velocity}}
- if you want to get the contents of a page, you can use this: #set($docContent = $xwiki.getDocument($pageName).content) (http://n2.nabble.com/get-content-of-page-td3992676.html#a3992676)
Hope this helps
By the way, a colleague of mine thought of special view: A Table-Style with the content on the left and the autor on the right. So one can easly get who is responsible for some very brilliant content =^D .
Thanks in advance. John Bober
-- View this message in context: http://n2.nabble.com/extended-history-view-tp4169050p4176059.html Sent from the XWiki- Users mailing list archive at Nabble.com.