Version 24.1 by Vincent Massol on 2012/09/10

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 (since XWiki Enterprise 4.2 Milestone 2) =
8
9 == Improved upload UI ==
10
11 The new HTML5 FileUploader has been integrated in a few places:
12
13 * The standard attachment upload form
14 * The Import section of the Administration
15
16 See [[below>>||anchor="HNewHTML5FileUploadwidget"]] for more details about this feature.
17
18 == New logging administration UI ==
19
20 It's now possible to review and modify the log level for all registered loggers.
21
22 {{image reference="extensions:Extension.Logging Application@loggingadmin.png"/}}
23
24 == IRC Bot Application Improvements ==
25
26 The [[IRC Bot Application>>extensions:Extension.IRC Bot Application]] now recognizes XAR import events and when receiving one, it doesn't send subsequent IRC notifications for modified or created documents to avoid spamming the IRC channel.
27
28 == New Content Macro ==
29
30 The [[new Content macro>>extensions:Extension.Content Macro]] allows to enter content in any of the supported Syntaxes and thus allows to have content written in various syntaxes. For example:
31
32 {{code}}
33 This is in **bold**
34
35 {{content syntax="confluence/1.0"}}
36 This is *bold* too!
37 {{/content}}
38 {{/code}}
39
40 == Experimental install/upgrade wizard ==
41
42 {{todo}}
43 Marius
44 {{/todo}}
45
46 {{image reference="Distribution-MainUI.png"/}}
47
48 {{image reference="Distribution-OutdatedExtensions.png"/}}
49
50 == Miscellaneous ==
51
52 * Display the request URL in the IRC channel when the Link Checker bot listener is active and a broken link is found, thus making it easier to reproduce and debug the broken link
53 * The [[Chart macro>>extensions:Extension.Chart Macro]] will now automatically default to the ##inline## Data Source type when not specified and the Chart Macro has some content.
54
55 = For Developers =
56
57 == New HTML5 File Upload widget ==
58
59 The [[File Upload widget>>doc:platform:DevGuide.HTML5Upload]] can enhance HTML input elements of type file to provide an interactive upload UI. It can submit files either automatically when the user selects local files, or after the user presses the container form's submit button.
60
61 To use this widget, it is enough to create a new instance of ##XWiki.FileUploader## passing the target ##input## element as the first parameter, and an optional configuration object as the second parameter.
62
63 {{code language="javascript"}}
64 new XWiki.FileUploader(targetInput, {
65 autoUpload: true,
66 progressAutohide: true
67 });
68 {{/code}}
69
70 [[image:platform:DevGuide.HTML5Upload@html5uploads.png||class="screenshot"]]
71
72 == JSRX and SSRX ==
73
74 It's now possible by default to add [[skin extensions>>extensions:Extension.Skin Extension Plugin]] located in JAR files. Example usage:
75
76 {{code}}
77 $xwiki.jsrx("/lib/codemirror.js")
78 $xwiki.ssrx("/lib/codemirror.css")
79 {{/code}}
80
81 == Documents Macro improvements ==
82
83 The ##~{~{documents}}## macro [[now supports specifying the list of columns to display>>extensions:Extension.Documents Macro]]. For example:
84
85 {{code}}
86 {{documents count="5" actions="false" space="Main" parent="Main.WebHome" columns="doc.title"/}}
87 {{/code}}
88
89 would display:
90
91 {{image reference="documents-columns.png"/}}
92
93 == Attachment Picker improvements ==
94
95 It is now possible to specify a different document for the source (and target in case of uploads) of attachments, using the new ##targetdocname## macro parameter.
96
97 == Search improvements ==
98
99 The Lucene index also stores the MIME type of the indexed attachments, allowing to customize the search to only include or exclude attachments of a certain type. The new field is named [[##mimetype##>>doc:extensions:Extension.Search Application Query Syntax||anchor="Hmimetype"]] and it contains a valid MIME type string, as returned by the container in which XWiki is running. For example, add ##-mimetype:image/*## to a query to exclude all image attachments from the results, or add ##mimetype:application/pdf## to only search inside PDF attachments.
100
101 Remember that in case of an upgrade, you have to rebuild the entire index to have this new field for existing documents.
102
103 == Extension Manager improvements ==
104
105 * the custom Maven property <xwiki.extension.features> now accept any number of new lines and white spaces between elements(((
106 {{code language="xml"}}
107 <xwiki.extension.features>
108 org.xwiki.platform:xwiki-platform-oldcore,
109 com.xpn.xwiki.platform:xwiki-core
110 </xwiki.extension.features>
111 {{/code}}
112 )))
113 * new custom properties added to overwrite standard Maven properties:
114 ** ##xwiki.extension.name## to overwrite ##<name>##
115 ** ##xwiki.extension.summary## to overwrite ##<description>##
116 ** ##xwiki.extension.website## to overwrite ##<url>##
117
118 == XAR format improvement ==
119
120 It's now possible to indicate the extension identifier right in the XAR package descriptor (package.xml). Among other things this allow standard import UI to find what it currently importing and register it automatically as installed extension if it can be found in the registered repositories during import process.
121
122 The XAR Maven plugin automatically take care of adding this information to the generated package.xml for Maven project. If for some reason you need to indicate it by hand you can use the property <extensionId> under the the <infos> element in the package.xml file.
123
124 {{code language="xml"}}
125 <package>
126 <infos>
127 <name>XWiki Platform - Extension - UI</name>
128 <description>XWiki Extension Manager, an application for managing extensions in a wiki.</description>
129 <licence></licence>
130 <author>XWiki.Admin</author>
131 <extensionId>org.xwiki.platform:xwiki-platform-extension-ui</extensionId>
132 <version>4.2-SNAPSHOT</version>
133 <backupPack>true</backupPack>
134 </infos>
135 <files>
136 [...]
137 </files>
138 </package>
139 {{/code}}
140
141 == Deprecated and Retired projects ==
142
143 <description of deprecated and retired projects>
144
145 == Upgrades ==
146
147 The following dependencies have been upgraded:
148
149 * Prototype.js 1.7.1
150 * Jython 2.5.3
151 * Pegdown 1.1.0 (used by the XWiki Markdown Parser)
152 * Xalan 2.7.1
153
154 == Miscellaneous ==
155
156 * The ##AbstractMockingComponentTestCase## testing framework class has been modified. Read the [[Testing page>>dev:Community.Testing]] for more details on how to use it.
157
158 == Translations ==
159
160 The following translations have been updated:
161
162 {{language codes="code1, code2"/}}
163
164 = Tested Browsers =
165
166 Here's the list of browsers tested with this version (i.e. browsers that we've tested as working - Check the list of [[supported browsers>>dev:Community.BrowserSupportStrategy]]):
167
168 {{velocity}}
169 ## name = iexplorer, firefox, chrome, safari, opera
170 {{/velocity}}
171
172 {{browser name="browser" version="x.x"/}}
173
174 = Known issues =
175
176 * [[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]]
177
178 = Test Report =
179
180 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.
181
182 = Backward Compatibility and Migration Notes =
183
184 == General Notes ==
185
186 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
187
188 {{warning}}
189 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.
190 {{/warning}}
191
192 == Issues specific to <projet> <version> ==
193
194 <issues specific to the project>
195
196 == API Breakages ==
197
198 The following APIs were modified since <project> <version - 1>:
199
200 {{code language="none"}}
201 <clirr output here>
202 {{/code}}

Get Connected