Wiki source code of ReleaseNotesXWikiEnterprise20

Version 28.1 by Thomas Mortagne on 2009/09/23

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}{{toc start="2"/}}{{/box}}
2
3 = Release Notes for XWiki Enterprise 2.0 =
4
5 == New and Noteworthy (since XWiki Enterprise 1.9.3) ==
6
7 * New Colibri skin
8 * Many UI improvements
9 * Many WYSIWYG improvements
10 * Many rendering improvements
11 * New events distribution and clustering support
12 * Various scripting improvements
13 ** Python support
14 ** Classpath charing between script macros
15 * Big refactor of the Watchlist
16
17 === Colibri skin ===
18
19 See [[Colibri skin documentation>>code:Skins.ColibriSkin]] for more details.
20
21 XWiki 2.0 introduces a new, lightweight, easily customizable skin. The main goal of the Colibri skin is to provide the proper support for fast and easy modifications of the look and feel of the wiki. The Colibri skin colors and decorative images are defined in ColorTheme objects inside Wiki documents, that can be changed directly in the web interface.
22
23 [[image:code:Skins.ColibriSkin@colibri1.png]]
24
25 Several predefined themes are bundled with XE:
26
27 [[image:code:Skins.ColibriSkin@colibri2.png]]
28
29 === General UI ===
30
31 * Make section editing work for any section level. You can configure it using the new property ##xwiki.section.depth## in ##xwiki.cfg## file
32 * Change button order in preview mode
33 * Make all skins display the document title as the top level header and ensure there's no duplicate titles displayed.
34
35 {{warning}}Not all the pages has been converted to new title handling. It will be fixed during the 2.0.x branch life (hopefully for 2.0.1){{/warning}}.
36
37 * Space Index, Document Index and Orphaned Page now use generic livetable tools
38 * Remove "History" from the edit modes
39 * TOC macro now starts at first level by default
40 * Several IE6/7 bugfixes
41 * Improve group creation form
42 * Reorganize editor button
43 * Diff UI improvement
44 * Improve the Rename form
45 * Nicer pagination of the document history
46 * Display a friendly message instead of an error when clicking on History after having created a new page
47 * The "Rights editor help" panels has been removed
48 * Improve Import administration section
49 * Improved document footer section
50 * Improved tag display and editing
51
52 === WYSIWYG ===
53
54 See [[WYSIWYG documentation>>platform:Features.WysiwygEditor]] for more details.
55
56 * Upgrade to [[GWT 1.7.0>>http://code.google.com/webtoolkit/releases/release-notes-1.7.0.html#Release_Notes_Current]]
57 * Faster navigation for image and link insertion
58 * Add internationalization support
59 * Improve UX in wysiwyg dialogs / wizards: navigation, error reporting, forms, etc
60
61 ==== Double click to edit a macro ====
62
63 User can now double click on a macro to edit it and double click in the list of macro to insert it.
64
65 ==== Nicer macro names in the list of macros ====
66
67 WYSIWYG does not expose macro identifier anymore but human readable names provided by the different macros.
68
69 ==== Macros categories ====
70
71 Each macro can now be added in a default category the macro author thinks appropriate. It's also possible to overwrite the macro category with configuration.
72
73 The macros categories are mainly used in WYSIWYG to make it easier to find the macros to use.
74
75 image:ReleaseNotesXWikiEnterprise20M4@macro-category.png
76 image:ReleaseNotesXWikiEnterprise20M4@macro-filter.png
77
78 === Rendering 2.0 ===
79
80 * New Section editing
81 * Allow default document syntax to be specified in User profile configuration
82
83 {{warning}}
84 Not all the pages has been converted to new xwiki/2.0 syntax. It will be fixed during the 2.0.x branch life (hopefully for 2.0.1).
85 {{/warning}}
86
87 ==== Output syntax parameter ====
88
89 It's now possible to decide which renderer to use to print the document content. For example if you want to generate dome JSON page you can use "?outputSyntax=plain&xpage=plain" to make sure only the content is printed and there is no html syntax printed, just a plain text of what exactly was generated by a velocity macro (without macro markers html comments etc.)
90
91 See [[URL parsing documentation>>platform:AdminGuide.URL resolution#HoutputSyntaxandoutputSyntaxVersion]].
92
93 ==== New Wiki rendering 2.0 macros ====
94
95 See [[Wiki macros documentation>>platform:DevGuide.WikiMacroTutorial]] for more details.
96
97 ==== New Tag Cloud Panel ====
98
99 A panels containing the tag cloud is now provided by default and can be used like any other panel.
100
101 image:ReleaseNotesXWikiEnterprise20M1@tagcloudpanel.png
102
103 ==== New Search Interface ====
104
105 The default search page UI has been improved to be easier to understand and use.
106
107 [[image:ReleaseNotesXWikiEnterprise20M1@newsearchui.png||width="600"]]
108
109 ==== New info, warning and error macros ====
110
111 See [[Message macro documentation>>code:Macros.MessageMacro]] for more details.
112
113 ==== New Chart macro for XWiki 2.0 syntax ====
114
115 See [[Chart macro documentation>>code:Macros.ChartMacro20]].
116
117 ==== Script macro improvements ====
118
119 See the [[Script Macro documentation>>code:Macros.ScriptMacro]] for more details.
120
121 * It's now possible to add JARs attached to a page to the Script Macro class loader.
122 * All the script macros in the same rendering process (a document and it's included documents) share the same class loader. For example this makes possible to declare a groovy class in a document and use it in other documents which includes it.
123 * It's now possible to not parse velocity macro content for wiki syntax by using the wiki="false" parameter.
124
125 ==== New Python macro ====
126
127 See [[code:Macros.PythonMacro]] for more details.
128
129 ==== Footnote macro ====
130
131 See [[Footnote macro documentation>>code:Macros.Footnote20Macro]].
132
133 [[image:code:Macros.Footnote20Macro@footnote1.png]]
134
135 ==== Formula macro ====
136
137 Ability to render Mathematical Formulas using the ~{~{formula}} macro (see [[documentation page>>code:Macros.FormulaMacro]]).
138
139 You can check for examples on the [[Wikipedia Math Markup page>>http://en.wikipedia.org/wiki/Math_markup]].
140
141 ==== Smaller XHTML output ====
142
143 We introduced a light XHTML renderer which avoid having all extra datas needed by the WYSIWYG. You will not get any weird XHTML comment anymore in the rendered page.
144
145 ==== Renderers are now real components ====
146
147 The same way it's possible to add any parser it's now possible to add any renderer for a specific output simply by registering it as a component.
148
149 See [[code:Modules.RenderingModule]] for more details.
150
151 ==== New plain text parser ====
152
153 Plain text parser make possible to put in a page some plain text to render it exactly as it. The syntax name of plain text renderer is ##plain/1.0##, you can enable it in xwiki.cfg.
154
155 === Scheduler improvements ===
156
157 * Allow to manually trigger a job (execute it once)
158 * Upgrade to Quartz 1.6.5
159
160 === Watchlist ===
161
162 * Add watch/unwatch wiki in the Watch menu
163 * Improve notification email readability by displaying icons for objects, classes and properties
164 * Watch List support registering for user activity
165 * Put document metadata modifications in diffs
166 * Make the watchlist work across multiple wikis
167 * Put links to pages in email notifications
168 * Use activitystream feed building feature to generate watchlist RSS feed
169 * In virtual mode allow each wiki to have its own watchlist email template document
170 * Big speed improvement by refactoring the watchlist based on activity stream plugin
171 * Add support for class and object diff in the mails
172 * Add support for full wiki watching
173 * Allow to create watchlist notifications for any interval of time
174 * Mails design improvement
175
176 === New Activity stream ===
177
178 * Provide a way to delete events after a configurable amount of time
179 * Allow to store all activity events in the main wiki in virtual mode
180
181 === New events for XWiki startup/shutdown ===
182
183 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.
184
185 === Velocity tools and Velocity properties can be easily changed ===
186
187 See ##velocity.tools## and ##velocity.properties## parameters in xwiki.properties.
188
189 === Component Manager improvements ===
190
191 * Added way to programmatically provide the component instance when register it
192 * Added way to programmatically unregister component
193
194 === New xwiki-properties module ===
195
196 See [Properties module documentation>code:Modules.PropertiesModule].
197
198 * Java bean populating support
199 * Java type conversion support
200 * Java bean validation support
201
202 Among other things this mean the following changes for the 2.0 macros:
203
204 * Any case is supported for macros parameters names
205 * Public fields are now supported (not only getters and setters)
206 * Java macro parameters bean is validated agains JSR 303 (See )
207 * Macro properties java bean can implements RawProperties to get custom non converted parameters
208 * You can add support for any type conversion by implementing Converter component
209 * Any Enum conversion is supported (no need to register each Enum subclass against ConvertUtils anymore)
210 * Support for Color conversion
211
212 === Remote Observation Manager and clustering ===
213
214 It's now possible to make different instances of XWiki or other programs shares events.
215
216 The main use cases for this are:
217 - clustering
218 - external monitoring of XWiki
219
220 This release include documents events support for code using new Observation Manager and remote events support in document cache so that's it's possible to do basic clustering already. The old code using old notification system will be upgraded during the RC process before the final 2.0 version and support will be added for other types of events. Note that Remote Observation Manager already support any kind of fully Serializable events.
221
222 == Known issues ==
223
224 * [[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]]
225
226 == Backward Compatibility and Migration Notes ==
227
228 === General Notes ===
229
230 {{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,...##.
231 {{/warning}}
232
233 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from improvements listed above.
234
235 {{warning}}
236 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.
237 {{/warning}}
238
239 === API Breakages ===
240
241 The following APIs were modified since XWiki Enterprise 1.9:
242
243 * Rendering Module
244 ** ##Block.replace()## has been replaced by ##Block.replaceChild()##
245 ** ##ParseException## constructor and methods have been modified since they were unused
246 ** ##XWikiXHTMLImageRenderer## and ##XWikiXHTMLLinkRenderer## classes have been moved to a XWiki-specific module so that the main Rendering module can be used standalone
247 ** Merged ##SimpleXHTMLImageRenderer## and ##XWikiXHTMLImageRenderer## into ##DefaultXHTMLImageRenderer## which now handles the case where we're inside a wiki or not
248 ** Merged ##SimpleXHTMLLinkRenderer## and ##XWikiXHTMLLinkRenderer## into ##DefaultXHTMLLinkRenderer## which now handles the case where we're inside a wiki or not
249 ** ##AbstractBlock## constructors has been refactored to make easier to create new common macros. Main change is that the macro author does not have to provide the MacroDescriptor anymore.
250 ** Macro parameters bean are now supposed to use xwiki-properties annotations instead of ##org.xwiki.rendering.macro.descriptor.annotation.*## annotations. Simply change ##org.xwiki.rendering.macro.descriptor.annotation.Parameter*## by ##org.xwiki.properties.annotation.Property*## to upgrade you macro parameters bean.
251 ** Macro have to provide a human readable name in various AbstractMacro helpers constructors
252 ** Big refactor around renderers and the way to use them since they are real components now
253 ** Syntax, SyntaxFactory and SyntaxType classes moved to the proper package (org.xwiki.rendering.syntax)
254 ** Definition lists now take parameters
255 ** Details:
256
257 {{code language="none"}}
258 [ERROR] org.xwiki.rendering.block.AbstractBlock: Method 'public void replace(java.util.List)' has been removed
259 [ERROR] org.xwiki.rendering.block.AbstractBlock: Method 'public void setParameter(java.lang.String, java.lang.Object)' has been removed
260 [ERROR] org.xwiki.rendering.block.Block: Method 'public void replace(java.util.List)' has been removed
261 [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
262 [ERROR] org.xwiki.rendering.block.Block: Method 'public void replaceChild(java.util.List, org.xwiki.rendering.block.Block)' has been added to an interface
263 [ERROR] org.xwiki.rendering.block.MacroBlock: Method 'public java.lang.String getName()' has been removed
264 [ERROR] org.xwiki.rendering.block.PlainTextBlockFilter: In method 'public PlainTextBlockFilter(org.xwiki.rendering.renderer.LinkLabelGenerator)' the number of arguments has changed
265 [ERROR] org.xwiki.rendering.block.RawBlock: Parameter 2 of 'public RawBlock(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
266 [ERROR] org.xwiki.rendering.block.RawBlock: Return type of method 'public org.xwiki.rendering.parser.Syntax getSyntax()' has been changed to org.xwiki.rendering.syntax.Syntax
267 [ERROR] org.xwiki.rendering.configuration.RenderingConfiguration: Method 'public java.util.Properties getMacroCategories()' has been added to an interface
268 [ERROR] org.xwiki.rendering.listener.Listener: In method 'public void beginDefinitionList()' the number of arguments has changed
269 [ERROR] org.xwiki.rendering.listener.Listener: In method 'public void endDefinitionList()' the number of arguments has changed
270 [ERROR] org.xwiki.rendering.listener.Listener: Parameter 2 of 'public void onRawText(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
271 [ERROR] org.xwiki.rendering.listener.WrappingListener: In method 'public void beginDefinitionList()' the number of arguments has changed
272 [ERROR] org.xwiki.rendering.listener.WrappingListener: In method 'public void endDefinitionList()' the number of arguments has changed
273 [ERROR] org.xwiki.rendering.listener.WrappingListener: Parameter 2 of 'public void onRawText(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
274 [ERROR] org.xwiki.rendering.listener.chaining.AbstractChainingListener: In method 'public AbstractChainingListener(org.xwiki.rendering.listener.chaining.ListenerChain)' the number of arguments has changed
275 [ERROR] org.xwiki.rendering.listener.chaining.AbstractChainingListener: In method 'public void beginDefinitionList()' the number of arguments has changed
276 [ERROR] org.xwiki.rendering.listener.chaining.AbstractChainingListener: In method 'public void endDefinitionList()' the number of arguments has changed
277 [ERROR] org.xwiki.rendering.listener.chaining.AbstractChainingListener: Parameter 2 of 'public void onRawText(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
278 [ERROR] org.xwiki.rendering.listener.chaining.BlockStateChainingListener: In method 'public void beginDefinitionList()' the number of arguments has changed
279 [ERROR] org.xwiki.rendering.listener.chaining.BlockStateChainingListener: In method 'public void endDefinitionList()' the number of arguments has changed
280 [ERROR] org.xwiki.rendering.listener.chaining.BlockStateChainingListener: Parameter 2 of 'public void onRawText(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
281 [ERROR] org.xwiki.rendering.listener.chaining.ConsecutiveNewLineStateChainingListener: In method 'public void endDefinitionList()' the number of arguments has changed
282 [ERROR] org.xwiki.rendering.listener.chaining.ConsecutiveNewLineStateChainingListener: Parameter 2 of 'public void onRawText(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
283 [ERROR] org.xwiki.rendering.listener.chaining.LookaheadChainingListener: In method 'public void beginDefinitionList()' the number of arguments has changed
284 [ERROR] org.xwiki.rendering.listener.chaining.LookaheadChainingListener: In method 'public void endDefinitionList()' the number of arguments has changed
285 [ERROR] org.xwiki.rendering.listener.chaining.LookaheadChainingListener: Parameter 2 of 'public void onRawText(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
286 [ERROR] org.xwiki.rendering.listener.chaining.TextOnNewLineStateChainingListener: In method 'public void beginDefinitionList()' the number of arguments has changed
287 [ERROR] org.xwiki.rendering.listener.chaining.TextOnNewLineStateChainingListener: Parameter 2 of 'public void onRawText(java.lang.String, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
288 [ERROR] org.xwiki.rendering.macro.AbstractMacro: Parameter 1 of 'public AbstractMacro(org.xwiki.rendering.macro.descriptor.MacroDescriptor)' has changed its type to java.lang.String
289 [ERROR] org.xwiki.rendering.macro.AbstractMacro: Method 'protected void registerConverter(org.apache.commons.beanutils.Converter, java.lang.Class)' has been removed
290 [ERROR] org.xwiki.rendering.macro.AbstractMacroSource: Class org.xwiki.rendering.macro.AbstractMacroSource removed
291 [ERROR] org.xwiki.rendering.macro.MacroManager: Removed java.lang.Comparable from the set of implemented interfaces
292 [ERROR] org.xwiki.rendering.macro.MacroManager: Parameter 1 of 'public boolean exists(java.lang.String)' has changed its type to org.xwiki.rendering.macro.MacroId
293 [ERROR] org.xwiki.rendering.macro.MacroManager: Method 'public boolean exists(java.lang.String, org.xwiki.rendering.parser.Syntax)' has been removed
294 [ERROR] org.xwiki.rendering.macro.MacroManager: Parameter 1 of 'public org.xwiki.rendering.macro.Macro getMacro(java.lang.String)' has changed its type to org.xwiki.rendering.macro.MacroId
295 [ERROR] org.xwiki.rendering.macro.MacroManager: Method 'public org.xwiki.rendering.macro.Macro getMacro(java.lang.String, org.xwiki.rendering.parser.Syntax)' has been removed
296 [ERROR] org.xwiki.rendering.macro.MacroManager: Method 'public java.util.Set getMacroIds()' has been added to an interface
297 [ERROR] org.xwiki.rendering.macro.MacroManager: Method 'public java.util.Set getMacroIds(org.xwiki.rendering.syntax.Syntax)' has been added to an interface
298 [ERROR] org.xwiki.rendering.macro.MacroManager: Method 'public java.util.Set getMacroNames(org.xwiki.rendering.parser.Syntax)' has been removed
299 [ERROR] org.xwiki.rendering.macro.MacroManager: Method 'public int getPriority()' has been removed
300 [ERROR] org.xwiki.rendering.macro.MacroSource: Class org.xwiki.rendering.macro.MacroSource removed
301 [ERROR] org.xwiki.rendering.macro.descriptor.AbstractMacroDescriptor: In method 'public AbstractMacroDescriptor(java.lang.String, org.xwiki.rendering.macro.descriptor.ContentDescriptor, java.lang.Class)' the number of arguments has changed
302 [ERROR] org.xwiki.rendering.macro.descriptor.AbstractMacroDescriptor: Method 'protected java.lang.annotation.Annotation extractParameterAnnotation(java.lang.reflect.Method, java.lang.reflect.Method, java.lang.Class)' has been removed
303 [ERROR] org.xwiki.rendering.macro.descriptor.AbstractMacroDescriptor: Method 'protected void extractParameterDescriptor(java.beans.PropertyDescriptor, java.lang.Object)' has been removed
304 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultMacroDescriptor: Parameter 2 of 'public DefaultMacroDescriptor(java.lang.String, java.lang.Class)' has changed its type to java.lang.String
305 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultMacroDescriptor: Parameter 2 of 'public DefaultMacroDescriptor(java.lang.String, org.xwiki.rendering.macro.descriptor.ContentDescriptor, java.lang.Class)' has changed its type to java.lang.String
306 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultMacroDescriptor: Parameter 3 of 'public DefaultMacroDescriptor(java.lang.String, org.xwiki.rendering.macro.descriptor.ContentDescriptor, java.lang.Class)' has changed its type to org.xwiki.rendering.macro.descriptor.ContentDescriptor
307 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultMacroDescriptor: In method 'public DefaultMacroDescriptor(java.lang.String, org.xwiki.rendering.macro.descriptor.ContentDescriptor)' the number of arguments has changed
308 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultParameterDescriptor: In method 'public DefaultParameterDescriptor()' the number of arguments has changed
309 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultParameterDescriptor: Method 'public void setDefaultValue(java.lang.Object)' has been removed
310 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultParameterDescriptor: Method 'public void setDescription(java.lang.String)' has been removed
311 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultParameterDescriptor: Method 'public void setMandatory(boolean)' has been removed
312 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultParameterDescriptor: Method 'public void setName(java.lang.String)' has been removed
313 [ERROR] org.xwiki.rendering.macro.descriptor.DefaultParameterDescriptor: Method 'public void setType(java.lang.Class)' has been removed
314 [ERROR] org.xwiki.rendering.macro.descriptor.MacroDescriptor: Method 'public java.lang.String getDefaultCategory()' has been added to an interface
315 [ERROR] org.xwiki.rendering.macro.descriptor.MacroDescriptor: Method 'public java.lang.String getName()' has been added to an interface
316 [ERROR] org.xwiki.rendering.macro.descriptor.annotation.ParameterDescription: Class org.xwiki.rendering.macro.descriptor.annotation.ParameterDescription removed
317 [ERROR] org.xwiki.rendering.macro.descriptor.annotation.ParameterHidden: Class org.xwiki.rendering.macro.descriptor.annotation.ParameterHidden removed
318 [ERROR] org.xwiki.rendering.macro.descriptor.annotation.ParameterMandatory: Class org.xwiki.rendering.macro.descriptor.annotation.ParameterMandatory removed
319 [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
320 [ERROR] org.xwiki.rendering.parser.ParseException: Method 'public ParseException(java.lang.Exception)' has been removed
321 [ERROR] org.xwiki.rendering.parser.ParseException: Method 'public ParseException(java.lang.Exception, java.lang.String, int)' has been removed
322 [ERROR] org.xwiki.rendering.parser.ParseException: Method 'public ParseException(java.lang.Exception, java.lang.String, java.lang.String, int)' has been removed
323 [ERROR] org.xwiki.rendering.parser.ParseException: Method 'public java.lang.String getFileName()' has been removed
324 [ERROR] org.xwiki.rendering.parser.ParseException: Method 'public int getLineNumber()' has been removed
325 [ERROR] org.xwiki.rendering.parser.Parser: Return type of method 'public org.xwiki.rendering.parser.Syntax getSyntax()' has been changed to org.xwiki.rendering.syntax.Syntax
326 [ERROR] org.xwiki.rendering.parser.Syntax: Class org.xwiki.rendering.parser.Syntax removed
327 [ERROR] org.xwiki.rendering.parser.SyntaxFactory: Class org.xwiki.rendering.parser.SyntaxFactory removed
328 [ERROR] org.xwiki.rendering.parser.SyntaxType: Class org.xwiki.rendering.parser.SyntaxType removed
329 [ERROR] org.xwiki.rendering.renderer.EventsRenderer: Class org.xwiki.rendering.renderer.EventsRenderer removed
330 [ERROR] org.xwiki.rendering.renderer.PlainTextRenderer: Class org.xwiki.rendering.renderer.PlainTextRenderer removed
331 [ERROR] org.xwiki.rendering.renderer.PrintRenderer: Method 'public void setPrinter(org.xwiki.rendering.renderer.printer.WikiPrinter)' has been added to an interface
332 [ERROR] org.xwiki.rendering.renderer.PrintRendererFactory: In method 'public org.xwiki.rendering.renderer.PrintRenderer createRenderer(org.xwiki.rendering.parser.Syntax, org.xwiki.rendering.renderer.printer.WikiPrinter)' the number of arguments has changed
333 [ERROR] org.xwiki.rendering.renderer.PrintRendererFactory: Method 'public java.util.List getAvailableSyntaxes()' has been removed
334 [ERROR] org.xwiki.rendering.renderer.PrintRendererFactory: Method 'public org.xwiki.rendering.syntax.Syntax getSyntax()' has been added to an interface
335 [ERROR] org.xwiki.rendering.renderer.TexRenderer: Class org.xwiki.rendering.renderer.TexRenderer removed
336 [ERROR] org.xwiki.rendering.renderer.XHTMLRenderer: Class org.xwiki.rendering.renderer.XHTMLRenderer removed
337 [ERROR] org.xwiki.rendering.renderer.XWikiSyntaxRenderer: Class org.xwiki.rendering.renderer.XWikiSyntaxRenderer removed
338 [ERROR] org.xwiki.rendering.renderer.chaining.AbstractChainingPrintRenderer: Class org.xwiki.rendering.renderer.chaining.AbstractChainingPrintRenderer removed
339 [ERROR] org.xwiki.rendering.renderer.printer.MonitoringWikiPrinter: Class org.xwiki.rendering.renderer.printer.MonitoringWikiPrinter removed
340 [ERROR] org.xwiki.rendering.renderer.xhtml.SimpleXHTMLImageRenderer: Class org.xwiki.rendering.renderer.xhtml.SimpleXHTMLImageRenderer removed
341 [ERROR] org.xwiki.rendering.renderer.xhtml.SimpleXHTMLLinkRenderer: Class org.xwiki.rendering.renderer.xhtml.SimpleXHTMLLinkRenderer removed
342 [ERROR] org.xwiki.rendering.renderer.xhtml.XHTMLImageRenderer: Method 'public org.xwiki.rendering.renderer.printer.XHTMLWikiPrinter getXHTMLWikiPrinter()' has been added to an interface
343 [ERROR] org.xwiki.rendering.renderer.xhtml.XHTMLLinkRenderer: Method 'public org.xwiki.rendering.renderer.printer.XHTMLWikiPrinter getXHTMLWikiPrinter()' has been added to an interface
344 [ERROR] org.xwiki.rendering.renderer.xhtml.XWikiXHTMLImageRenderer: Class org.xwiki.rendering.renderer.xhtml.XWikiXHTMLImageRenderer removed
345 [ERROR] org.xwiki.rendering.renderer.xhtml.XWikiXHTMLLinkRenderer: Class org.xwiki.rendering.renderer.xhtml.XWikiXHTMLLinkRenderer removed
346 [ERROR] org.xwiki.rendering.transformation.MacroTransformationContext: Return type of method 'public org.xwiki.rendering.parser.Syntax getSyntax()' has been changed to org.xwiki.rendering.syntax.Syntax
347 [ERROR] org.xwiki.rendering.transformation.MacroTransformationContext: Parameter 1 of 'public void setSyntax(org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
348 [ERROR] org.xwiki.rendering.transformation.Transformation: Parameter 2 of 'public void transform(org.xwiki.rendering.block.XDOM, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
349 [ERROR] org.xwiki.rendering.transformation.TransformationManager: Parameter 2 of 'public void performTransformations(org.xwiki.rendering.block.XDOM, org.xwiki.rendering.parser.Syntax)' has changed its type to org.xwiki.rendering.syntax.Syntax
350 [ERROR] org.xwiki.rendering.util.ParserUtils: Method 'public java.util.List parsePlainText(java.lang.String)' has been removed
351 [ERROR] org.xwiki.rendering.util.RenderersUtils: Class org.xwiki.rendering.util.RenderersUtils removed
352 {{/code}}
353
354 == Dependencies ==
355
356 This release includes the following modules in the specified versions since XWiki Enterprise 1.9.3 was released:
357
358 === Core/Web ===
359
360 |=Group Id|=Artifact Id|=New Version|=Old Version|=JIRA URL
361 |##com.xpn.xwiki.platform##|##xwiki-*##|2.0|1.9.3
362 |##org.xwiki.platform##|##xwiki-*##|2.0|1.9.3
363
364 === Applications ===
365
366 |=Group Id|=Artifact Id|=New Version|=Old Version|=JIRA URL
367 |##com.xpn.xwiki.platform.applications##|##xwiki-application-administration##|1.17|1.12|[[jira>>http://jira.xwiki.org/jira/browse/XAADMINISTRATION]]
368 |##com.xpn.xwiki.platform.applications##|##xwiki-application-blog##|1.12|1.8|[[jira>>http://jira.xwiki.org/jira/browse/XABLOG]]
369 |##com.xpn.xwiki.platform.applications##|##xwiki-application-officeimporter##|1.11|1.9|[[jira>>http://jira.xwiki.org/jira/browse/XAOFFICE]]
370 |##com.xpn.xwiki.platform.applications##|##xwiki-application-panels##|1.24|1.20.1|[[jira>>http://jira.xwiki.org/jira/browse/XAPANELS]]
371 |##com.xpn.xwiki.platform.applications##|##xwiki-application-scheduler##|1.12|1.11
372 |##com.xpn.xwiki.platform.applications##|##xwiki-application-statistics##|1.5|1.4
373 |##com.xpn.xwiki.platform.applications##|##xwiki-application-tag##|1.7|1.7
374 |##com.xpn.xwiki.platform.applications##|##xwiki-application-watchlist##|1.20|1.16
375 |##com.xpn.xwiki.platform.applications##|##xwiki-application-webdav##|1.2|1.2
376 |##com.xpn.xwiki.platform.applications##|##xwiki-application-wiki-macro-bridge##|1.2|N/A
377
378 === Plugins ===
379
380 |=Group Id|=Artifact Id|=New Version|=Old Version|=JIRA URL
381 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-activitystream##|1.4|N/A
382 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-jodatime##|1.3|1.3
383 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-lucene##|1.10|1.8
384 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-mailsender##|1.13|1.10
385 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-scheduler##|1.12|1.9
386 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-skinx##|1.10|1.9
387 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-tag##|1.7|1.6
388 |##com.xpn.xwiki.platform.plugins##|##xwiki-plugin-watchlist##|1.20|1.16
389
390 === Skins ===
391
392 |=Group Id|=Artifact Id|=New Version|=Old Version|=JIRA URL
393 |##com.xpn.xwiki.platform.skins##|##xwiki-skin-albatross##|1.24|1.21
394 |##com.xpn.xwiki.platform.skins##|##xwiki-skin-colibri##|1.3|N/A
395 |##com.xpn.xwiki.platform.skins##|##xwiki-skin-toucan##|1.28|1.22
396
397 === Top Level POM ===
398
399 |=Group Id|=Artifact Id|=New Version|=Old Version|=JIRA URL
400 |##com.xpn.xwiki.platform##|##xwiki##|27|24
401
402 === Tools ===
403
404 |=Group Id|=Artifact Id|=New Version|=Old Version|=JIRA URL
405 |##org.xwiki.platform.tools##|##xwiki-jetty-resources##|1.16|1.14
406 |##org.xwiki.platform.tools##|##xwiki-rootwebapp##|1.2|1.1
407 |##org.xwiki.platform.tools##|##xwiki-xar-handlers##|1.9|1.8
408 |##org.xwiki.platform.tools##|##xwiki-xar-plugin##|1.13|1.12
409 |##org.xwiki.platform.tools##|##xwiki-configuration-resources##|1.32|1.27
410 |##org.xwiki.platform.tools##|##xwiki-packager-plugin##|1.13|1.12
411 |##org.xwiki.platform.tools##|##xwiki-license-resources##|1.1|1.0
412 |##org.xwiki.platform.tools##|##xwiki-verification-resources##|1.14|1.13

Get Connected