Last modified by Thomas Mortagne on 2017/03/24

<
From version < 50.4 >
edited by Vincent Massol
on 2009/06/10
To version < 50.5 >
edited by Vincent Massol
on 2009/06/10
>
Change comment: cleaning

Summary

Details

Page properties
Content
... ... @@ -11,11 +11,12 @@
11 11  
12 12  1.1.1 1 UI improvements
13 13  
14 -1.9.M2 contains several improvements enhancing the usability and productivity on the wiki. These features are under development, so they might still have buggy or limited behaviors. These quirks will be fixed in the next releases.
14 +This version contains several improvements enhancing the usability and productivity on the wiki. These features are under development, so they might still have buggy or limited behaviors. These quirks will be fixed in the next releases.
15 15  
16 16  Many thanks to Marta GĂ®rdea, who supervised the development of most of these improvements.
17 17  
18 18  1.1.1.1 Quick ~~Jump to any Page~~ navigation
19 +
19 19  It is now possible to jump from any page to any other page, using a modal dialog aided by a suggest-powered search. To start, just press <tt>Ctrl+G</tt> or <tt>Meta+G</tt> (the meta key is the one between <tt>Alt</tt> and <tt>Ctrl</tt>, usually with a Windows logo on it, or the one with the Apple logo on Macs), or click on the text from the ~~Quick Links~~ panel.
20 20  
21 21  {image:jmp1.png}
... ... @@ -43,6 +43,7 @@
43 43  - It is not possible to enter more than one search term, separated by spaces, since the suggest searches for an exact match of the input string. This will be fixed once the overall REST-based search will be improved.
44 44  
45 45  1.1.1.1 Faster ~~Save and Continue~~ using AJAX
47 +
46 46  Save and Continue doesn't refresh the page anymore, but makes an AJAX request to save the document. When pressing the ~~Save &amp; Continue~~ button, or the <tt>Alt+Shift+S</tt> shortcut, a message appears at the bottom of the screen, indicating that the document is being saved.
47 47  
48 48  {image:sac1.png}
... ... @@ -124,6 +124,7 @@
124 124  {image:comm5.png}
125 125  
126 126  1.1.1.1 Multiple ~~attachment~~ upload in one request
129 +
127 127  Uploading more than one file at once is difficult in web interfaces, since it is impossible to select more than one file in the dialog provided by the browser. It was even more difficult in XWiki, since the user had to scroll down to the attachment area, expand the upload form, browse for a file, submit, wait a lot for the file to be uploaded, and then go back and do all the steps again, several times. We made things a bit easier, by allowing to insert all the wanted files in the form (as distinct file input field), then submit only once.
128 128  
129 129  A first improvement is that the upload form is now expanded by default. You will notice the ~~Add another file~~ and the red ~~X~~ buttons. You can add as many fields as you like (keeping in mind that the wiki has a limit on the total size of the upload data), and you can later remove any field wrongly selected. Pressing the ~~Cancel~~ button will restore the form to its initial state, with only one empty file field.
... ... @@ -170,6 +170,7 @@
170 170  {image:class3.png}
171 171  
172 172  1.1.1.1 Improved ~~toolbar in the wiki editor~~
176 +
173 173  The toolbar for the wiki editing mode has been improved, adding support for the xwiki/2.0 syntax, adding more buttons, and replacing the icons with images from the Silk icon set.
174 174  
175 175  {image:wt1.png}
... ... @@ -201,7 +201,7 @@
201 201  
202 202  1.1.1 2 PDF export improvements
203 203  
204 -1.9M2 adds a few important features and addresses several issues related to the PDF export feature:
208 +Some important features were added and several issues addressed related to the PDF export feature:
205 205  - PDFs now contain a ~~cover page~~ and a ~~table of contents~~ page.
206 206  {image:pdf1.png}
207 207  {image:pdf2.png}
... ... @@ -260,8 +260,9 @@
260 260  We added a <tt>compatibility.js</tt> script file that contains deprecated code and aliases from old methods/classes to the corresponding new ones.
261 261  
262 262  1.1.1 4 Switched to UTF-8 as the default encoding
263 -Starting with 1.9M2, the default encoding of XWiki has changed to UTF-8 to better integrate in the multi-national web. If you want to go back to the old encoding, you must edit <tt>WEB-INF/xwiki.cfg</tt> and <tt>WEB-INF/web.xml</tt> and change the encoding parameters.
264 264  
268 +The default encoding of XWiki has changed to UTF-8 to better integrate in the multi-national web. If you want to go back to the old encoding, you must edit <tt>WEB-INF/xwiki.cfg</tt> and <tt>WEB-INF/web.xml</tt> and change the encoding parameters.
269 +
265 265  #warning("If you were using a database with character encodings in ISO-8859-1, you will have to either switch XWiki back to ISO-8859-1, or convert your databases to UTF8.")
266 266  
267 267  The default HSQLDB database bundled with the standalone XWiki distributions are not affected by the encoding, so they should work after an upgrade without any changes.
... ... @@ -268,7 +268,7 @@
268 268  
269 269  1.1.1 5 Mailsender improvements
270 270  
271 -In 1.9M2 the SMTP setting (username, password, server port, and extra Javamail properties which allow to enable SSL) are easier to configure (now accessible in the Administration -&gt; General tab), and are by default visible in the wiki. Previously, they had to be manually added to the ~~XWiki.XWikiPreferences~~ class. These settings are also used with the registration confirmation email.
276 +The SMTP setting (username, password, server port, and extra Javamail properties which allow to enable SSL) are easier to configure (now accessible in the Administration -&gt; General tab), and are by default visible in the wiki. Previously, they had to be manually added to the ~~XWiki.XWikiPreferences~~ class. These settings are also used with the registration confirmation email.
272 272  
273 273  {image:smtp.png}
274 274  
... ... @@ -322,7 +322,7 @@
322 322  
323 323  1.1.1 Velocity macro cleaning (Syntax XWiki 2.0)
324 324  
325 -Since 1.9 the the velocity content is "cleaned" before being executed to be able to organize the code in a more readable way. Each group of white spaces and new lines is replace with a single space and you can force a new line or a space with respectively $nl ot $sp. See [code:Macros.VelocityMacro].
330 +The velocity content is now "cleaned" before being executed to be able to organize the code in a more readable way. Each group of white spaces and new lines is replace with a single space and you can force a new line or a space with respectively $nl ot $sp. See [code:Macros.VelocityMacro].
326 326  
327 327  You can return to no cleaning by setting <tt>core.velocity.filter=none</tt> in <tt>xwiki.properties</tt> file.
328 328  

Get Connected