Version 10.1 by Vincent Massol on 2012/08/23

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 = For Developers =
29
30 == New HTML5 File Upload widget ==
31
32 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.
33
34 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.
35
36 {{code language="javascript"}}
37 new XWiki.FileUploader(targetInput, {
38 autoUpload: true,
39 progressAutohide: true
40 });
41 {{/code}}
42
43 [[image:platform:DevGuide.HTML5Upload@html5uploads.png||class="screenshot"]]
44
45 == JSRX and SSRX ==
46
47 It's now possible by default to add [[skin extensions>>extensions:Extension.Skin Extension Plugin]] located in JAR files. Example usage:
48
49 {{code}}
50 $xwiki.jsrx("/lib/codemirror.js")
51 $xwiki.ssrx("/lib/codemirror.css")
52 {{/code}}
53
54 == Documents Macro improvements ==
55
56 The ##~{{documents}}## macro [[now supports specifying the list of columns to display>>extensions:Extension.Documents Macro]]. For example:
57
58 {{code}}
59 {{documents count="5" actions="false" space="Main" parent="Main.WebHome" columns="doc.title"/}}
60 {{/code}}
61
62 would display:
63
64 {{image reference="documents-columns.png"/}}
65
66 == Attachment Picker improvements ==
67
68 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.
69
70 == Search improvements ==
71
72 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.
73
74 Remember that in case of an upgrade, you have to rebuild the entire index to have this new field for existing documents.
75
76 == Deprecated and Retired projects ==
77
78 <description of deprecated and retired projects>
79
80 == Upgrades ==
81
82 The following dependencies have been upgraded:
83
84 * Prototype.js 1.7.1
85
86 == Miscellaneous ==
87
88 <other stuff to add and link to JIRA for all issues fixed>
89
90 == Translations ==
91
92 The following translations have been updated:
93
94 {{language codes="code1, code2"/}}
95
96 = Tested Browsers =
97
98 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]]):
99
100 {{velocity}}
101 ## name = iexplorer, firefox, chrome, safari, opera
102 {{/velocity}}
103
104 {{browser name="browser" version="x.x"/}}
105
106 = Known issues =
107
108 * [[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]]
109
110 = Test Report =
111
112 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.
113
114 = Backward Compatibility and Migration Notes =
115
116 == General Notes ==
117
118 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
119
120 {{warning}}
121 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.
122 {{/warning}}
123
124 == Issues specific to <projet> <version> ==
125
126 <issues specific to the project>
127
128 == API Breakages ==
129
130 The following APIs were modified since <project> <version - 1>:
131
132 {{code language="none"}}
133 <clirr output here>
134 {{/code}}

Get Connected