Change comment:
Changed parent to ReleaseNotes.WebHome following the rename of that page
Summary
-
Page properties (3 modified, 0 added, 0 removed)
Details
- Page properties
-
- Parent
-
... ... @@ -1,1 +1,1 @@ 1 - Main.ReleaseNotes1 +ReleaseNotes.WebHome - Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki.as iri1 +XWiki.ThomasMortagne - Content
-
... ... @@ -10,14 +10,13 @@ 10 10 1.1 New and Noteworthy (since XWiki Enterprise 1.9) 11 11 12 12 At a glance (see below for details): 13 + * Lots of improvements and new features in the new WYSIWYG editor 14 + * Lots of improvements and bugfixes in the rendering engine and the syntax converter 15 + * Lots of improvements and bugfixes in the 1.0 to 2.0 syntax converter 16 + * New Chart macro for XWiki 2.0 syntax 17 + * New info, warning and error macros 18 + * Improvements for the blog application 13 13 14 -* Lots of improvements and new features in the new WYSIWYG editor 15 -* Lots of improvements and bugfixes in the rendering engine and the syntax converter 16 -* Lots of improvements and bugfixes in the 1.0 to 2.0 syntax converter 17 -* New Chart macro for XWiki 2.0 syntax 18 -* New info, warning and error macros 19 -* Improvements for the blog application 20 - 21 21 1.1.1 New Chart macro for XWiki 2.0 syntax 22 22 23 23 See [Chart macro documentation>code:Macros.ChartMacro20]. ... ... @@ -30,7 +30,7 @@ 30 30 31 31 The default search page UI has been improved to be easier to understand and use. 32 32 33 -{image:newsearchui.png|width=600 |}32 +{image:newsearchui.png|width=600} 34 34 35 35 1.1.1 New Tag Cloud Panel 36 36 ... ... @@ -42,31 +42,19 @@ 42 42 43 43 It's now possible to not parse velocity macro content for wiki syntax by using the wiki="false" parameter. For example: 44 44 45 -\\ 46 - 47 47 {code} 48 48 {{velocity wiki="false"}} 49 -#set($var = " **not bold**")46 +#set($var = "**not bold**") 50 50 $var 51 51 {{/velocity}} 52 - 53 53 {code} 54 54 55 -\\ 56 -\\ 57 - 58 58 will render 59 59 60 -\\ 61 - 62 62 {code} 63 -**not bold** 64 - 54 +**not bold** 65 65 {code} 66 66 67 -\\ 68 -\\ 69 - 70 70 1.1.1 New events for XWiki startup/shutdown 71 71 72 72 It's now possible for a component or a plugin to register to startup or shutdown events. It's very useful when some plugin need to start and stop an external service. ... ... @@ -73,8 +73,9 @@ 73 73 74 74 1.1.1 Velocity tools and Velocity properties can be easily changed 75 75 76 -See velocity.tools and velocity.properties parameters in xwiki.properties. 63 +See <tt>velocity.tools</tt> and <tt>velocity.properties</tt> parameters in xwiki.properties. 77 77 65 + 78 78 1.1 Known issues 79 79 80 80 * [Bugs we know about>http://jira.xwiki.org/jira/secure/IssueNavigator.jspa?reset=true&&type=1&pid=10010&resolution=-1&sorter/field=updated&sorter/order=DESC] ... ... @@ -83,30 +83,41 @@ 83 83 84 84 1.1.1 General Notes 85 85 86 -#warning("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,....") 74 +#warning("If you're running in a multiwiki setup you'll also need to define the property <tt>xwiki.store.migration.databases=all</tt> to your <tt>xwiki.cfg</tt> file or explicitly name all databases to be migrated as in <tt>xwiki.store.migration.databases=db1,db2,...</tt>.") 87 87 88 88 You may also want to [import the default wiki XAR>Main.Download] in order to benefit from improvements listed above. 89 89 90 -#warning("Always make sure you compare your xwiki.cfg file with the newest version since some configuration parameters were added. Of note, 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.") 78 +#warning("Always make sure you compare your <tt>xwiki.cfg</tt> file with the newest version since some configuration parameters were added. Of note, you should add <tt>xwiki.store.migration=1</tt> so that XWiki will attempt to automatically migrate your current database to the new schema. Make sure you backup your Database before doing anything.") 91 91 92 92 1.1.1 Velocity macro cleaning 93 93 94 94 We changed the default filter for the Velcity macro. The new one only remove indentation white space and does not touch new lines or other white spaces anymore. The former one can still be used by putting 83 +{code}{{velocity filter="html"}}{{/velocity}}{code} 95 95 96 -{code} 97 -{{velocity filter="html"}}{{/velocity}} 98 -{code} 99 - 100 -\\ 101 -\\ 102 - 103 103 1.1.1 API Breakages 104 104 105 105 The following APIs were modified since XWiki Enterprise 1.9: 106 106 107 107 * Rendering Module 108 -** Block.replace() has been replaced by Block.replaceChild() 109 -** ParseException constructor and methods have been modified since they were unused 110 -** XWikiXHTMLImageRenderer and XWikiXHTMLLinkRenderer classes have been moved to a XWiki-specific module so that the main Rendering module can be used standalone 111 -** Merged SimpleXHTMLImageRenderer and XWikiXHTMLImageRenderer into DefaultXHTMLImageRenderer which now handles the case where we're inside a wiki or not 112 -** Merged SimpleXHTMLLinkRenderer and XWikiXHTMLLinkRenderer into DefaultXHTMLLinkRenderer which now handles the case where we're inside a wiki or not 90 +** <tt>Block.replace()</tt> has been replaced by <tt>Block.replaceChild()</tt> 91 +** <tt>ParseException</tt> constructor and methods have been modified since they were unused 92 +** <tt>XWikiXHTMLImageRenderer</tt> and <tt>XWikiXHTMLLinkRenderer</tt> classes have been moved to a XWiki-specific module so that the main Rendering module can be used standalone 93 +** Merged <tt>SimpleXHTMLImageRenderer</tt> and <tt>XWikiXHTMLImageRenderer</tt> into <tt>DefaultXHTMLImageRenderer</tt> which now handles the case where we're inside a wiki or not 94 +** Merged <tt>SimpleXHTMLLinkRenderer</tt> and <tt>XWikiXHTMLLinkRenderer</tt> into <tt>DefaultXHTMLLinkRenderer</tt> which now handles the case where we're inside a wiki or not 95 +** Details:\\{code:none} 96 +[ERROR] org.xwiki.rendering.block.AbstractBlock: Method 'public void replace(java.util.List)' has been removed 97 +[ERROR] org.xwiki.rendering.block.Block: Method 'public void replace(java.util.List)' has been removed 98 +[ERROR] org.xwiki.rendering.block.Block: Method 'public void replaceChild(org.xwiki.rendering.block.Block, org.xwiki.rendering.block.Block)' has been added to an interface 99 +[ERROR] org.xwiki.rendering.block.Block: Method 'public void replaceChild(java.util.List, org.xwiki.rendering.block.Block)' has been added to an interface 100 +[ERROR] org.xwiki.rendering.parser.ParseException: Parameter 2 of 'public ParseException(java.lang.String, java.lang.Exception)' has changed its type to java.lang.Throwable 101 +[ERROR] org.xwiki.rendering.parser.ParseException: Method 'public ParseException(java.lang.Exception)' has been removed 102 +[ERROR] org.xwiki.rendering.parser.ParseException: Method 'public ParseException(java.lang.Exception, java.lang.String, int)' has been removed 103 +[ERROR] org.xwiki.rendering.parser.ParseException: Method 'public ParseException(java.lang.Exception, java.lang.String, java.lang.String, int)' has been removed 104 +[ERROR] org.xwiki.rendering.parser.ParseException: Method 'public java.lang.String getFileName()' has been removed 105 +[ERROR] org.xwiki.rendering.parser.ParseException: Method 'public int getLineNumber()' has been removed 106 +[ERROR] org.xwiki.rendering.renderer.xhtml.XWikiXHTMLImageRenderer: Class org.xwiki.rendering.renderer.xhtml.XWikiXHTMLImageRenderer removed 107 +[ERROR] org.xwiki.rendering.renderer.xhtml.XWikiXHTMLLinkRenderer: Class org.xwiki.rendering.renderer.xhtml.XWikiXHTMLLinkRenderer removed 108 +[ERROR] org.xwiki.rendering.renderer.XHTMLRenderer: Method 'public XHTMLRenderer(org.xwiki.rendering.renderer.printer.WikiPrinter)' has been removed 109 +[ERROR] org.xwiki.rendering.renderer.xhtml.SimpleXHTMLImageRenderer: Class org.xwiki.rendering.renderer.xhtml.SimpleXHTMLImageRenderer removed 110 +[ERROR] org.xwiki.rendering.renderer.xhtml.SimpleXHTMLLinkRenderer: Class org.xwiki.rendering.renderer.xhtml.SimpleXHTMLLinkRenderer removed{code} 111 +