General Actions:
Log-in
Register
Wiki:
Main wiki
▼
:
Document Index
»
Space:
Presentations
▼
:
Document Index
»
Page:
WebHome
Search
en
Page Actions:
Export
▼
:
Export as PDF
Export as RTF
Export as HTML
More actions
▼
:
Print preview
View Source
Notes
»
Presentation
Wiki source code of
Presentation
Last modified by
Administrator
on 2010/09/23 14:50
Content
·
Comments
(0)
·
Annotations
(0)
·
Attachments
(0)
·
History
·
Information
Show line numbers
1 Presentation xwiki integrates [S5>http://www.meyerweb.com/eric/tools/s5/] from [Eric Meyer>http://www.meyerweb.com/eric/]. A tool to create online presentations (powerpoint like). It uses XWiki forms to permit creation of a presentation without any use of HTML. It will generate the HTML that is going to be understood by the S5 stylesheet and javascript. We used a slightly modified version of the S5 model done by [Human Factor>http://www.wats.ca/presentations/humanfactor/]. Our S5 stylesheets and javascript are available [here>http://www.xwiki.com/xwiki/s5/ui2/] 1.1 Create a new presentation To create a new presentation, you should first choose a name for your presentation. <form action="" id="newdoc"> <div> <input type="hidden" name="parent" value="Main.Presentations"/> <input type="hidden" name="template" value="XWiki.PresentationClassTemplate"/> <input type="hidden" name="sheet" value="1"/> <input type="hidden" name="webname" value="Presentations" size="8"/> Document: <input type="text" name="name" value="Name of your presentation" size="60" /> <br /> <br /> <input type="button" value="Create this presentation" onclick='if (updateName(this.form.name)) {this.form.action="../../inline/" + this.form.webname.value + "/" + this.form.name.value; this.form.submit(); }'/> </div> </form> 1.1 Existing Presentations #set ($sql = ", BaseObject as obj where obj.name=doc.fullName and obj.className='XWiki.PresentationClass' and obj.name<>'XWiki.PresentationClassTemplate'") #foreach ($item in $xwiki.searchDocuments($sql)) #set($itemdoc = $xwiki.getDocument($item)) * $itemdoc.name: <a href="$itemdoc.getURL("view")">Preview</a> <a href="$itemdoc.getURL("inline")">Edit</a> <a href="$itemdoc.getURL("view", "xpage=s5b")">Launch</a> #end