Wiki source code of Document Lifecycle

Version 62.5 by Sorin Burjan on 2010/06/15

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 XWiki offers to perform several actions on a document (a.k.a a page).
6
7 = Create =
8
9 There are three ways to create new pages:
10
11 * You can **edit an existing page and create a link to your new page** (either in Wiki mode or in WYSIWYG mode). The resulting link will show up with a question mark next to it, showing it as a nonexistent page. Simply click on the link to resolve the error.(((
12 [[image:CreateInWYSIWYG.PNG||style="border:1px solid black;"]]
13
14
15 This will take you to a page with a message to create the missing page (as presented above).**This is the recommended approach** as it'll allow you to create a navigation while you create new pages.
16 )))
17
18 * Starting with the [[Colibri skin>>http://code.xwiki.org/xwiki/bin/view/Skins/ColibriSkin]] you can create a new page straight from the menu at the top of the page.(((
19 [[image:CreateMenu.PNG||style="border:1px solid black;"]]
20 If you hover over the "Main" menu and click on "Create Page" the following will appear:
21
22 [[image:CreateInMenu.PNG||style="border:1px solid black;"]]
23 Make sure you type the Space name in the first field, then add the Page name in the second field. Click the "Create" button and you will be able to edit your newly created page right away.
24 )))
25
26 * You can also **enter the new page name directly in the URL of your browser**. For example http://locahost:8080/xwiki/bin/view/SpaceName/PageName. If the space (##SpaceName## here) or page (##PageName## here) don't exist then you'll get an empty page with a message saying that the page doesn't exist and there'll be a link to create it :(((
27 [[image:CreateInURL.PNG||style="border:1px solid black;"]]
28 )))
29
30 = Edit =
31
32 This allows the editing of a page. See the [[page editing>>Features.PageEditing]] tutorial for more details.
33
34 = Show =
35
36 Whenever you click on a link to a page XWiki automatically shows the page in view mode. This is the default mode. XWiki also supports displaying the page in other formats that may be more adapted to specific circumstances:
37
38 {{toc start="2" depth="2" numbered="false" scope="page"/}}
39
40 == Code ==
41
42 You can view the content of a page without having to edit it (and thus you don't have to be logged in, nor to have edit rights). This option is shown only for users in [[Advanced Mode>>Features.PageEditing#HAdvancedMode]].
43
44 To see the code when using the Colibri skin, you have to go to the More Actions menu, and click on the View Source.
45
46 [[image:WikiCodeColibri.png||style="border:1px solid black;"]]
47 [[image:WikiCodeResultColibri.png||style="border:1px solid black;"]]
48
49 When using the Toucan sking, you do this by moving the mouse over the View Source button under View menu.
50
51 [[image:WikiCode.PNG||style="border:1px solid black;"]]
52 [[image:WikiCodeResult.PNG||style="border:1px solid black;"]]
53
54 == XML ==
55
56 XWiki allows exposing a page in XML. This is not ordinarily useful, but it can prove useful for example if you want to write a tool that automatically parses the content of a page. As the XML format is well-defined for all pages, this is much easier than doing screen-scrapping for example. In addition this XML format is used by XWiki for performing imports/exports of pages and whole wikis.
57
58 == Comments ==
59
60 Any reader can leave comments on any page. This doesn't require edit rights.
61
62 On Colibri skin
63 [[image:CommentsColibri.PNG||style="border:1px solid black;"]]
64
65 On Toucan skin
66 [[image:CommentsToucan.PNG||style="border:1px solid black;"]]
67
68 == Attachments ==
69
70 A page can contain attachments. See [[Attachments>>Features.Attachments]] for more details.
71
72 == History ==
73
74 Displays the version history of the page. See [[Version Control>>Features.VersionControl]] for more details.
75
76 == Attributes ==
77
78 Displays a page's properties.
79
80 {{warning}}
81 The Attributes view is a work in progress
82 {{/warning}}
83
84 = Print =
85
86 There are several possible printing options (what you see may vary depending on the Skin used).
87
88 When using the Colibri Skin, you will find the Print Preview button on the top menu by hovering over More Actions
89
90 * Print Preview: Generates a page which is formatted so that it can be easily printed using your browser's Print feature.
91
92 [[image:PrintColibri.PNG||style="border:1px solid black;"]]
93
94 Under Toucan skin these options are found in the Print menu from the top.
95
96 * Print: Calls you're browser's Print feature to print the current page
97 * Print Preview: Generates a page which is formatted so that it can be easily printed using your browser's Print feature.
98
99 [[image:PrintToucan.PNG||style="border:1px solid black;"]]
100
101 = Export =
102
103 There are several possible exporting formats that XWiki supports : PDF, RTF, XAR, HTML exports: See the [[Export feature>>Features.Exports]] for more information.
104
105 [[image:ExportColibri.PNG||style="border:1px solid black;"]]
106
107
108 [[image:PrintToucan.PNG||style="border:1px solid black;"]]
109
110 = Delete =
111
112 Removes a page. A confirmation is asked before the removal is done. This option is non reversible so be very careful when you use it.
113
114 On Colibri skin
115 [[image:DeleteColibri.PNG||style="border:1px solid black;"]]
116
117 On Toucan skin
118 [[image:DeleteToucan.PNG||style="border:1px solid black;"]]
119
120 = Copy =
121
122 {{warning}}
123 This feature currently requires for an user to have Programming Rights in order to function. See [[XSCOLIBRI-209>>http://jira.xwiki.org/jira/browse/XSCOLIBRI-209]] and [[XWiki-508>>http://jira.xwiki.org/jira/browse/XWIKI-5081]]
124 {{/warning}}
125
126 It is possible to create a copy of an existing page. To do so, you need to do a [[search>>code:Applications.SearchApplication]] with Admin Rights using the title of the page you want to copy. You will then see a "copy" next to the page you want to copy.
127
128 After clicking on it you will be prompted to enter the location of the page you want to copy (that is, "where should the page be copied?"). Click on "copy" and you're done!
129
130 On Colibri skin
131 [[image:XWikiCopy.png||style="border:1px solid black;"]]
132
133 On Toucan skin
134 [[image:XWikiCopyToucan.png||style="border:1px solid black;"]]
135
136 = Move/Rename =
137
138 {{info}}The Rename feature is available only for versions 1.0 Beta 6 and following of XWiki{{/info}}
139 A rename feature is available in XWiki. Its effect is to change the page name (that is, you get http:~/~/<server>/xwiki/bin/View/NewSpace/NewPageName instead of http:~/~/<server>/xwiki/bin/View/OldSpace/OldPageName) and all the backlinks linking to it. This means that you can easily move a page from one space to another, as well as keep them evolving with your wiki.
140
141 In colibri, you can access the rename feature for a page by clicking on Rename under the More Actions in the top menu bar:
142
143 [[image:RenameColibri.PNG||style="border:1px solid black;"]]
144 [[image:RenameInputColibri.PNG||style="border:1px solid black;"]]
145
146
147 When using the Toucan skin, the Rename function can be found under the Action menu in the top menu bar:
148
149 [[image:TopBarRenameToucan.PNG||style="border:1px solid black;"]]
150 [[image:RenameInputToucan.PNG||style="border:1px solid black;"]]
151
152 Once this is done, you will be prompted to input the new Space and Page name you want your document to take:
153
154 Now you can link to the page using its new name.
155
156 As of XWiki 1.0 Beta 6 there are some known limitations:
157
158 * backlinks have to be turned on (they are turned on by default but if you have turned them off, rename will not rename backlinks and you'll have to turn them on again to benefit from this feature)
159 * backlinks in objects attached to pages are not currently renamed. You can track issue [[XWIKI-981>>http://jira.xwiki.org/jira/browse/XWIKI-981]] to follow the progress.
160 * backlinks are saved when a page is saved thus it may happen with a clean XWiki database that backlinks are not saved. In this special case, you can call the following in a page to refresh all links (you'll need to be admin to do this):(((
161 {{code}}
162 $xwiki.refreshLinks()
163 {{/code}}
164 )))

Get Connected