Wiki source code of ReleaseNotesXWikiEnterprise33

Version 2.1 by Sorin Burjan on 2011/12/15

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 <insert description of release here>
6
7 = New and Noteworthy ((% style="font-size: 25px; font-family: sans-serif; font-style: normal; text-align: left; " %)since XWiki Enterprise 3.2(%%)) =
8
9 == Improvements to the Extension Manager ==
10
11 The Extension Manager has been improved on all fronts, from the internal management of extensions, to the administration UI, and to the XWiki Extension Repository. Now [[the extensions wiki>>extensions:Main.WebHome]] is enabled by default as a source for extensions, although only a handful of extensions have been validated at the moment.
12
13
14 == First version of the App Within Minutes wizard ==
15
16 After the introduction of the new class editor and the live table generator, this release brings the App Within Minutes wizard tying all the other aspects making up the App Within Minutes feature. The wizard helps you create collaborative web applications within minutes, based on XWiki's powerful structured data management system.
17
18 Start by going to the App Within Minutes home page. There you can see listed the existing applications. Click on the "Create Application" button to start the wizard.
19
20 [[[[image:AppWithinMinutes-Step0.png||width="400px" style="border: 1px solid #CCC"]]>>attach:AppWithinMinutes-Step0.png]]
21
22 In the first step you have to provide the application name, which will determine the application home page URL and the application space. Each application is mapped to an XWiki space.
23
24 [[[[image:AppWithinMinutes-Step1.png||width="400px" style="border: 1px solid #CCC"]]>>attach:AppWithinMinutes-Step1.png]]
25
26 In the second step you define the application structure, i.e. the type of data the application will handle. At the end of this step the wizard will create for you the template and the sheet that will be used to create new application entries.
27
28 [[[[image:AppWithinMinutes-Step2.png||width="400px" style="border: 1px solid #CCC"]]>>attach:AppWithinMinutes-Step2.png]]
29
30 In the last step you customize the way the home page of your application will look like. You can choose which columns to display in the entries live table.
31
32 [[[[image:AppWithinMinutes-Step3.png||width="400px" style="border: 1px solid #CCC"]]>>attach:AppWithinMinutes-Step3.png]]
33
34 At the end the wizard takes you to the home page of your application, which is the place from where you can manage the application data: edit the application structure, add new entries, edit or delete existing ones.
35
36 [[[[image:AppWithinMinutes-HomePage.png||width="400px" style="border: 1px solid #CCC"]]>>attach:AppWithinMinutes-HomePage.png]]
37
38 == New User Interface for the Extension Manager ==
39
40 Although there's no back-end repository where to search for new extensions yet, the new UI for the Extension Manager is starting to shape up. The previous experimental UI has been replaced by a new category in the Administration dedicated to the extension manager, with three different sections.
41
42 [[image:em.png||class="screenshot"]]
43
44 [[image:searchextensions.png||class="screenshot"]]
45
46 [[image:showextension.png||class="screenshot"]]
47
48 == Link Checker ==
49
50 It's now possible to [[check the statuses of all external links found in your wiki>>extensions:Extension.Link Checker Application]].
51
52 [[image:externallinks.png||class="screenshot"]]
53
54 == FAQ Application ==
55
56 A [[new FAQ application>>extensions:Extension.FAQ Application]] is now made available (but not bundled by default in XWiki Enterprise):
57
58 [[image:extensions:Extension.FAQ Application@faq.png||class="screenshot"]]
59
60 == Better support for exporting CJK documents as PDF ==
61
62 CJK characters, shorthand for Chinese, Japanese and Korean, need special fonts not provided in the standard 14 fonts required by the PDF specification, nor in the FreeFonts distributed and enabled by default with XWiki. Starting with this version we also distribute three new free fonts, along with the configuration needed to enable them for their target languages.
63
64 [[image:cjk.png||class="screenshot"]]
65
66 == Updated the installation process of Workspaces ==
67
68 The [[Workspace Application>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Workspace+Application]] requires that an admin provides the initial workspace template (as before), but now it can be anything the admin wants to use as base. The admin only has to rename it to "workspace-template.xar" and attach it to the WorkspaceManager.Install page. The workspace-related pages and settings will be applied to the template automatically.
69
70 == Debian packages ==
71
72 Starting with 3.3 Milestone 1 Debian packages and repositories are released.
73
74 You can add one of the following list files to ##/etc/debian/apt/source.list.d/##:
75 * http://maven.xwiki.org/stable/xwiki-stable.list : all stable releases starting with 3.3 (so nothing right now)
76 * http://maven.xwiki.org/releases/xwiki-releases.list : all releases starting with 3.3 Milestone 1
77 * http://maven.xwiki.org/snapshots/xwiki-snapshots.list : all snapshots release starting with 3.3 branch
78
79 {{code}}
80 sudo wget http://maven.xwiki.org/stable/xwiki-stable.list -P /etc/apt/sources.list.d
81 {{/code}}
82
83 == LDAP user membership improvements ==
84
85 Organization unit and search filter support have been added in the group membership mapping settings. To use them, replace the group DN with an organization unit DN or with any search filter.
86
87 == Attachments improvements ==
88
89 Since the filesystem attachment storage allows uploading very large files, a necessary improvement is to be able to pause and resume downloads. Starting with this version, it is possible to do so, since the ##/download/## action now respects the ##Range## HTTP header.
90
91 Several bugs with downloading attachments when the filesystem storage is enabled have also been fixed, making this feature ready for production use.
92
93 == Link Checker ==
94
95 It's now possible to tell XWiki to check for validity of external links found in the Wiki (to verify broken links for example). This is implemented through a [[Link Checker Transformation>>rendering:Main.Transformations#HLinkCheckerTransformation]].
96
97 It's not enabled by default. To enable it, edit the ##xwiki.properties## file and add ##linkchecker## to the list of transformations to execute. For example:
98
99 {{code}}
100 rendering.transformations = macro, icon, linkchecker
101 {{/code}}
102
103 Note that there's no UI for it yet (planned for 3.3 Milestone 2) but the Link States can be access through a Script Service. For example from Velocity:
104
105 {{code}}
106 {{velocity}}
107 #set ($states = $services.linkchecker.getLinkStates())
108 {{/velocity}}
109 {{/code}}
110
111
112
113
114 = For Developers =
115
116 == <developer feature N> ==
117
118 <description of developer feature N>
119
120 == Deprecated and Retired projects ==
121
122 <description of deprecated and retired projects>
123
124 == Upgrades ==
125
126 The following dependencies have been upgraded:
127
128 * <list libraries that have been upgraded>
129
130 == Miscellaneous ==
131
132 <other stuff to add and link to JIRA for all issues fixed>
133
134 == Translations ==
135
136 The following translations have been updated:
137
138 {{language codes="code1, code2"/}}
139
140 = Supported Browsers =
141
142 Here's the list of supported browsers for this version (i.e. browsers that we've tested as working):
143
144 {{velocity}}
145 ## name = iexplorer, firefox, chrome, safari, opera
146 {{/velocity}}
147
148 Here's the list of supported browsers for this version (i.e. browsers that we've tested as working):
149
150
151 {{browser name="iexplorer" version="8"/}}
152
153 {{browser name="iexplorer" version="9"/}}
154
155 {{browser name="firefox" version="3.6"/}}
156
157 {{browser name="firefox" version="8"/}}
158
159 {{browser name="chrome" version="15"/}}
160
161 = Known issues =
162
163 * [[Bugs we know about>>http://jira.xwiki.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=category+%3D+%22Top+Level+Projects%22+AND+issuetype+%3D+Bug+AND+resolution+%3D+Unresolved+ORDER+BY+updated+DESC]]
164
165 = Test Report =
166
167 You can check the [[manual test report>>TestReports.WebHome#<anchor to test report>]] to learn about what was tested and the results on various browsers.
168
169 = Backward Compatibility and Migration Notes =
170
171 == General Notes ==
172
173 {{warning}}
174 If you're running in a multiwiki setup you'll also need to define the property //xwiki.store.migration.databases=all// to your //xwiki.cfg// file or explicitly name all databases to be migrated as in //xwiki.store.migration.databases=db1,db2,...//.
175 {{/warning}}
176
177 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
178
179 {{warning}}
180 Always make sure you compare your ##xwiki.cfg## and ##xwiki.properties## files with the newest version since some configuration parameters were added. Note that you should add ##xwiki.store.migration=1## so that XWiki will attempt to automatically migrate your current database to the new schema. Make sure you backup your Database before doing anything.
181 {{/warning}}
182
183 == Issues specific to <projet> <version> ==
184
185 <issues specific to the project>
186
187 == API Breakages ==
188
189 The following APIs were modified since <project> <version - 1>:
190
191 {{code language="none"}}
192 <clirr output here>
193 {{/code}}

Get Connected