Version 35.1 by Caleb James DeLisle on 2011/03/31

Show last authors
1 {{velocity}}
2 $xwiki.ssx.use("ReleaseNotesXWikiEnterprise30M3")
3 {{/velocity}}
4
5 {{box cssClass="floatinginfobox" title="**Contents**"}}
6 {{toc/}}
7 {{/box}}
8
9 This is the first release of the [[3.x>>enterprise:Main.Roadmap]] [[cycle>>dev:Community.VersioningAndReleasePractices#HReleaseCyclesandReleaseStrategy]]. Conforming to the [[general themes of the 3.x cycle>>enterprise:Main.Roadmap#HXWikiEnterprise3.xCycle]], a lot of features have been polished and improved, and a few new features have been introduced as well. The highlights of this release are:
10 * Twitter-like **messaging and networking** inside the wiki,
11 * a new **filesystem storage for attachments** which allows huge attachments to be uploaded without requiring a lot of memory or database storage,
12 * **improved dashboard editing**,
13 * better cross-browser support and improved functionality for the **WYSIWYG** editor,
14 * a **revamped UI for administration**, improved **office presentation import** with a new gallery macro,
15 * **live suggestions** for the search input,
16 * a new UI for **changing user avatars**.
17
18 On the developers' front, we've made it easier to reuse the XWiki rendering engine outside our own codebase, by extracting two new top level projects:
19 * XWiki Commons, holding generic modules not tied to the rest of the platform,
20 * XWiki Rendering, holding all the XWiki-independent modules of the rendering engine.
21
22 We've setup a [[Jira dashboard>>http://jira.xwiki.org/jira/secure/Dashboard.jspa?selectPageId=10550]] to present the work done for the whole 3.0 release. In summary, 510 issues have been closed by 14 committers (and other contributors providing patches), out of which 236 are fixed bugs.
23
24 = New and Noteworthy (since XWiki Enterprise 2.7) =
25
26 == Redesign of the Administration Application ==
27
28 We have redesigned the administration application providing a new layout and new icons (designed by Ciprian Amaritei). Administration sections are now grouped in several categories displayed using a vertical menu. Each section has been modified in order to be consistent with our [[Vertical Layout Usage Form Standard>>platform:DevGuide.VerticalForms]]. The sections have been reorganized as well, making them more intuitive.
29
30 [[[[image:administration.png||class="screenshot"]]>>attach:administration.png]]
31
32 The WYSIWYG content editor can now be easily configured from the wiki administration. Look for the //WYSIWYG Editor// section under //Applications// category. You may still need to scan the list of available [[plugins and features>>platform:AdminGuide.WysiwygEditor#HPluginsandFeatures]] in order to know what to enable. In the future we're hoping to integrate this information in the administration section.
33
34 [[[[image:wysiwygConfig.png||class="screenshot"]]>>attach:wysiwygConfig.png]]
35
36 == Message Stream ==
37
38 Users can now post status messages which will be visible on the main dashboard and on the user profile page.
39
40 [[image:messageStream.png||class="screenshot"]]
41
42 Users can follow each other's activity streams.
43
44 [[image:follow.png||class="screenshot"]]
45
46 In order to see the members of your network and the network activity you can use the //Network// menu:
47
48 [[image:networkMenu.png||class="screenshot"]]
49
50 which leads you to the //Network// tab from the user profile page:
51
52 [[[[image:network.png||class="screenshot"]]>>attach:network.png]]
53
54 == Dashboard Editing ==
55
56 A visual editor for dashboards has been implemented and is accessible by editing the page that contains a dashboard. Advanced users should use the //Inline// edit mode to edit the dashboard. In edit mode gadgets can be dragged by their title bar and moved around in different columns of the dashboard.
57
58 [[image:ReleaseNotesXWikiEnterprise30M3@moveGadget.png||class="screenshot"]]
59
60 A new gadget can be added by choosing from the macros in the wiki, using a dialog similar to the WYSIWYG editor macro dialog.
61
62 [[image:ReleaseNotesXWikiEnterprise30M3@addGadget.png||class="screenshot"]]
63
64 A gadget can be removed from the dashboard using the gadget settings action.
65
66 [[image:ReleaseNotesXWikiEnterprise30M3@removeGadget.png||class="screenshot"]]
67
68 == Search Live Suggestions ==
69
70 This release introduces the first iteration on a "suggestions as you type" feature for the search box.
71
72 [[image:ReleaseNotesXWikiEnterprise30M3@searchSuggest.png||class="screenshot"]]
73
74 The suggestions proposed come from several sources, configurable in the wiki administration under the //Search Suggest// section. The sources configured by default include "Document name", "Document content", "Attachment name", "Attachment content" and "Users".
75
76 == Gallery Macro and Office Presentation Viewer ==
77
78 The [[Gallery Macro>>extensions:Extension.Gallery Macro]] helps you create a simple image gallery where images are displayed using a slide-show view. You can use images from any source, both internal (attached to a wiki page) and external. The gallery macro collects all the images it finds in the macro content. The [[Office Macro>>extensions:Extension.Office Macro]] has been improved to use the gallery macro when displaying office presentations:
79
80 [[image:extensions:Extension.Office Macro@presentation.png||class="screenshot"]]
81
82 == Attachment Selector Macro ==
83
84 [[Attachment Selector Macro>>extensions:Extension.Attachment Selector Macro]] is now bundled with XWiki Enterprise.
85
86 [[image:extensions:Extension.Attachment Selector Macro@choosefile.png||class="screenshot"]]
87
88 The UI for changing the user's avatar has been modified to use the attachment selector macro:
89
90 [[image:ReleaseNotesXWikiEnterprise30RC1@changeAvatar.png||class="screenshot"]]
91
92 == WYSIWYG Editor Improvements ==
93
94 === Cross-Browser Support ===
95
96 The WYSIWYG content editor now has better support for Opera, Chrome and Safari browsers.
97
98 === Improved Macro Support ===
99
100 In order to fix [[XWIKI-5691>>http://jira.xwiki.org/jira/browse/XWIKI-5691]] and a few related bugs we had to refactor the way macros are displayed inside the rich text area of the WYSIWYG content editor. Along with this we introduced a few improvements in the way users interact with macros. Here's a list of changes:
101
102 * Macros are displayed now 100% like in view mode. Previously we were using a button HTML element to protect the macro output which gave macro output an inherent box layout. This was noticeable especially for multi-line in-line macros. This is fixed now:(((
103 [[image:ReleaseNotesXWikiEnterprise30M3@inLineMacro.png||class="screenshot"]]
104 )))
105 * Macros that have output are emphasized only when hovered or selected.
106 * You can navigate the macro output with the arrow keys. The macro output feels like the rest of the content except that you can't edit it in place.
107 * You can copy content from the macro output.
108 * Press Enter to edit macro.
109 * Press Space to toggle between collapsed and expanded state.
110 * Ctrl + Shift + R reloads the macros.
111 * Ctrl + Shift + E expands all/selected macros.
112 * Ctrl + Shift + C collapses all/selected macros.
113 * Ctrl + Shift + M to open the insert macro wizard.
114
115 Known issues that we'd like to fix for 3.0 final:
116
117 * You can cut text from macro output.
118 * You can drag text into/from macro output.
119 * Placing the caret before/after a macro is still tricky.
120
121 == Filesystem Attachment Storage ==
122
123 {{warning}}
124 This is an experimental feature. We need more users to test it before we can enable it by default.
125 {{/warning}}
126
127 This storage engine allows very large attachments (over a gigabyte!) to be added to documents in the wiki while reducing load on the database. The Filesystem Attachment Store is fully implemented, with all the attachment-handling parts available as filesystem stores: the main attachment content store, the attachment history store, and the attachment trash store.
128
129 A disadvantage is that searching inside attachments is no longer possible using standard HQL (as is done in the ##DatabaseSearch## implementation); this continues to be possible using Lucene.
130
131 We need feedback on how well it works before we can declare it production-ready, so we welcome all feedback from users, good and bad.
132
133 To enable it:
134
135 * Make the following changes to your ##xwiki.cfg## file, under the "Storage" section:(((
136 {{code language="none"}}
137 #-# The attachment storage.
138 xwiki.store.attachment.hint=file
139
140 #-# The attachment versioning storage. Use 'void' to disable attachment versioning.
141 xwiki.store.attachment.versioning.hint=file
142
143 #-# The attachment recycle bin storage
144 xwiki.store.attachment.recyclebin.hint=file
145 {{/code}}
146 )))
147
148 The maximum attachment size will still be bounded by a configuration parameter so if you want to start attaching mega huge attachments right away, logged in as an administrator, open the ##{{{<your site>/xwiki/bin/edit/XWiki/XWikiPreferences?editor=object}}}## page and scroll down until you find ##Maximum Upload Size##, and change that number to something huge like: ##999999999999##. Then click save at the bottom of the page.
149 * Numbers that are too large cannot be parsed so you will have to live with attachments smaller than a petabyte.
150
151 If you have an existing wiki and you want to start taking advantage of the attachment store, you can use the [[extensions:Extension.Filesystem Attachment Porter]] to move the attachments over to the filesystem. The description of the porter also contains more information about filesystem attachment storage in general so reading the page is recommended even if you don't need it.
152
153 == Extension Manager ==
154
155 {{warning}}
156 This is an experimental feature at this stage and the UI part is not done yet.
157 {{/warning}}
158
159 * Add minimalistic XAR support
160 ** Install/uninstall/upgrade a xar extension
161 ** The xar can have infinite number of pages and attachments, it's just limited by the size of each attachment right now until the storage API support fully streamed attachments
162 ** Very limited upgrade: import adds a new version to make sure not to loose anything, there is no real document merging handling
163 ** Delete pages from old version not in the new version when upgrading a XAR extension
164 * Add multiwiki support (install any extension on a specific wiki only)
165 * Add extension events
166
167 [[image:ReleaseNotesXWikiEnterprise30M3@extensionmanager.png||class="screenshot"]]
168
169 See [[Extension Module documentation>>extensions:Extension.Extension Module]] for more details.
170
171 == Rendering and Commons Top Level Projects ==
172
173 We have created a new top level project called [[XWiki Commons>>commons:Main.WebHome]], which contains libraries that are generic enough to be reused outside of the XWiki project. New modules are now located under the ##org.xwiki.commons## group id at http://maven.xwiki.org/releases/org/xwiki/commons/ .
174
175 We have also created a new top level project called [[XWiki Rendering>>rendering:Main.WebHome]], which contains a generic rendering engine. New modules are now located under the ##org.xwiki.rendering## group Id, at [[http://maven.xwiki.org/releases/org/xwiki/rendering/]]. The modules in this project are independent of the XWiki core (they only rely on the new xwiki-commons modules), so they can be easily reused.
176
177 == Miscellaneous ==
178
179 Besides the major features described above this release brings lots of bug fixes as well as improvements in various domains of XWiki, including PDF export, color theme editor and UI consistency. See the release notes for 3.0 [[Milestone 1>>ReleaseNotesXWikiEnterprise30M1]], [[Milestone 2>>ReleaseNotesXWikiEnterprise30M2]], [[Milestone 3>>ReleaseNotesXWikiEnterprise30M3]] and [[Release Candidate 1>>ReleaseNotesXWikiEnterprise30RC1]] for details.
180
181 == Translations ==
182
183 * The following translations have been updated: ##ca##, ##cs##, ##de##, ##es##, ##fr##, ##gl##, ##hi##, ##hr##, ##it##, ##lv##, ##nl##, ##no##, ##pl##, ##pt##, ##ro##, ##ru##, ##sk##, ##sv##, ##uk##, ##vi##, ##zh##, ##zh_TW##.
184
185 = Known issues =
186
187 * [[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]]
188
189 = Test Report =
190
191 You can check the [[manual test report>>TestReports.WebHome#HVersions3.0.x]] to learn about what was tested and the results on various browsers.
192
193 = Backward Compatibility and Migration Notes =
194
195 == General Notes ==
196
197 {{warning}}
198 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,...//.
199 {{/warning}}
200
201 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from the improvements listed above.
202
203 {{warning}}
204 Always make sure you compare your //xwiki.cfg// file with the newest version since some configuration parameters were added. 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.
205 {{/warning}}
206
207 == Migration Notes ==
208
209 === The Velocity engine was updated to version 1.7 ===
210
211 {{warning}}
212 We upgraded Velocity to version 1.7 which brings several changes that are not backwards compatible.
213 {{/warning}}
214
215 We had to fix the following problems on the velocity code bundled with XWiki Enteprise:
216
217 * Escape quotes in interpolated strings (both ' and ") by doubling them ('' and "") (See [[VELOCITY-555>>https://issues.apache.org/jira/browse/VELOCITY-555]])
218 * [[XABLOG-117>>http://jira.xwiki.org/jira/browse/XABLOG-117]]: Blog application broken under Velocity 1.7
219 * [[XAADMINISTRATION-200>>http://jira.xwiki.org/jira/browse/XAADMINISTRATION-200]]: Configurable sections are broken ("configuration cannot be displayed because it was last edited by Admin who doesn't have permission to edit this page")
220 * [[XE-806>>http://jira.xwiki.org/jira/browse/XE-806]]: Upgrade activity macro to work with velocity 1.7
221
222 ==== Macro evaluation strategy ====
223
224 The main change is that Velocity 1.7 changed the way macro evaluations work. While before it was more flexible with many possible outcomes depending on what parameters were passed, and how they were used inside the macro, the current version simplified a lot the internal logic of variable assignments inside macros, which resulted in a critical regression for us. The same change was introduced between 1.6.0 and 1.6.1, but was reverted in 1.6.2 when we notified them of the regression, with the decision to go further with the change in 1.7.
225
226 To better understand the kind of code that doesn't work, take this example:
227
228 {{code language="none"}}
229 #macro(callBySharing $x)
230 #set($x = 'a')
231 #end
232 #set($y = 'y')
233 #callBySharing($y)
234
235 $y -> 'y' in 1.7
236 $y -> 'a' in 1.6.2, 1.6.0 and before)
237 {{/code}}
238
239 But:
240
241 {{code language="none"}}
242 #set($x = 'x')
243 #callBySharing($x)
244
245 $x -> 'a' in all versions
246 {{/code}}
247
248 This means that only macros that are supposed to assign and return a value in one of its formal parameters will stop working, and only when the formal and actual parameters have different names. Macros with signatures like:
249
250 {{code language="none"}}
251 #macro(computeSomething $fromValue1 $fromValue2 $putResultHere)
252 {{/code}}
253
254 The only macro in the global ##macros.vm## that was broken by this change was ###setVariableFromRequest##, which is already fixed in the released version.
255
256 Now there's also a generic ###setVariable ("variableName" $value)## macro which can be used to emulate the call by sharing behavior in custom macros. How to use it:
257
258 Suppose you had a macro like this:
259
260
261 {{code language="none"}}
262 #macro(isBlogGlobal $blogDoc $isGlobal)
263 #set($isGlobal = false)
264 #getBlogProperty($blogDoc 'blogType' '' $discard)
265 #if($discard == 'global')
266 #set($isGlobal = true)
267 #end
268 #end
269 {{/code}}
270
271 Here ##$isGlobal## is the output variable which now doesn't always work. The updated version of the macro can be written as:
272
273 {{code language="none"}}
274 #macro(isBlogGlobal $blogDoc $isGlobal)
275 #set ($result = false)
276 #getBlogProperty($blogDoc 'blogType' '' $discard)
277 #if($discard == 'global')
278 #set($result = true)
279 #end
280 #set ($isGlobal = $util.null)
281 #setVariable ("$isGlobal" $result)
282 #end
283 {{/code}}
284
285 Pay attention to the last two lines in the macro.
286
287 In Velocity, when rendering ##$variable##, where ##$variable## is ##undefined## or ##null##, will cause the variable name to be printed instead. As it happens, when inside a macro, what gets printed is the name of the actual parameter (the one passed in the macro call), and not the formal one (the one declared in the macro definition). So, whenever ##$isGlobal## is rendered as a string, the name of the actual parameter is obtained.
288
289 ###set ($isGlobal = $util.null)## will make sure that no matter what the previous value of the variable was, ##$isGlobal## will be ##null## from this point forward, and ##"$isGlobal"## will output the name of the actual parameter.
290
291 When calling ###setVariable ("$isGlobal" $result)##, the first parameter will contain the name of the actual parameter used when calling ###isBlogGlobal##.
292
293 Inside the ###setVariable## macro, the wanted variable is assigned using ###evaluate##.
294
295 ==== Quotes and apostrophes inside strings ====
296
297 The second change is the escape syntax used inside strings for quotes and apostrophes. While before this used to work:
298
299 {{code language="none"}}
300 {{velocity}}
301 #set ($a = "He said \"maybe\"")
302 $a => He said \"maybe\"
303 {{/velocity}}
304 {{/code}}
305
306 now this snippet would throw an exception. Trying to escape an apostrophe inside an apostrophe-delimited string would have failed even before.
307
308 In Velocity 1.7 it is possible to place both single and double quotes inside a string, by doubling that character. For example:
309
310 {{code language="none"}}
311 {{velocity}}
312 #set ($a = "He said ""maybe""")
313 $a => He said "maybe"
314
315 #set ($b = 'that''s funny')
316 $b => that's funny
317 {{/velocity}}
318 {{/code}}
319
320 === Update dashboard macro calls ===
321
322 Because of the implementation of [[XWIKI-5938>>http://jira.xwiki.org/jira/browse/XWIKI-5938]], when upgrading from 2.x to 3.0, if the dashboard macro was used in its form from 2.5 (with the macro calls in the source of the page), it needs to be manually converted to the objects form.
323
324 {{todo}}
325 Anca, please give more details about the update steps.
326 {{/todo}}
327
328 === Update web.xml ===
329
330 Due to the package rename done for [[XWIKI-6158>>http://jira.xwiki.org/jira/browse/XWIKI-6158]] when upgrading from 2.x to 3.0 you must edit your ##web.xml## file and replace all occurrences of ##com.xpn.xwiki.wysiwyg## with ##org.xwiki.wysiwyg##.
331
332 === XWiki Preferences ===
333
334 Several rarely used and deprecated preferences have been removed from the ##XWiki.XWikiPreferences## class, in order to make way for more useful settings. If you were using any of these preferences, and you want to import the new ##XWikiPreferences## document when upgrading, you should re-add that property manually afterwards. Here's the list of removed properties:
335
336 * ##convertmail## - used by the old invitation manager, never really used in practice outside Curriki
337 * ##editbox_height## and ##editbox_width## - configurations for the size of the textarea elements, now fully styled with CSS
338 * ##macros_languages##, ##macros_mapping##, ##macros_groovy##, ##macros_velocity##, ##macros_wiki##, ##macros_wiki2## - old macro polymorphism mechanism available in the ##xwiki/1.0## rendering and the WYSIWYG editor
339 * ##menu## - configuration for the left-hand section in the extinct ##dodo## skin
340 * ##notification_pages## - mechanism for registering ##xwiki/1.0## documents containing Groovy code as notification listeners; both the syntax and the notification mechanism are deprecated, consider rewriting these listeners as components
341 * ##pageWidth## - unused customization for the layout of the skin, an early experiment for the old ##finch## skin, never fully used or exposed
342 * ##renderXWikiGroovyRenderer##, ##renderXWikiRadeoxRenderer##, ##renderXWikiVelocityRenderer## - customizations for the ##xwiki/1.0## rendering process
343 * ##webbgcolor## - old setting for the extinct ##dodo## skin
344
345 == API Breakages ==
346
347 The following xwiki-core APIs were modified since XWiki Enterprise 2.7 (API breakages in modules that were moved to Rendering or Commons top level projects are not included):
348
349 {{code language="none"}}
350 ERROR: 8001: org.xwiki.officeimporter.OfficeImporter: Class org.xwiki.officeimporter.OfficeImporter removed
351 ERROR: 8001: org.xwiki.officeimporter.OfficeImporterFilter: Class org.xwiki.officeimporter.OfficeImporterFilter removed
352 ERROR: 7002: org.xwiki.officeimporter.OfficeImporterVelocityBridge: Method 'public java.lang.String getLastErrorMessage()' has been removed
353 ERROR: 7002: org.xwiki.officeimporter.OfficeImporterVelocityBridge: Method 'public boolean importDocument(byte[], java.lang.String, java.lang.String, java.util.Map)' has been removed
354 ERROR: 7002: org.xwiki.officeimporter.builder.PresentationBuilder: Method 'public org.xwiki.officeimporter.document.XDOMOfficeDocument build(java.io.InputStream, java.lang.String)' has been removed
355 ERROR: 7002: org.xwiki.officeimporter.builder.PresentationBuilder: Method 'public org.xwiki.officeimporter.document.XDOMOfficeDocument build(byte[])' has been removed
356 ERROR: 7002: org.xwiki.officeimporter.builder.XDOMOfficeDocumentBuilder: Method 'public org.xwiki.officeimporter.document.XDOMOfficeDocument build(byte[], org.xwiki.bridge.DocumentName, boolean)' has been removed
357 ERROR: 7002: org.xwiki.officeimporter.builder.XHTMLOfficeDocumentBuilder: Method 'public org.xwiki.officeimporter.document.XHTMLOfficeDocument build(byte[], org.xwiki.bridge.DocumentName, boolean)' has been removed
358 ERROR: 7012: org.xwiki.officeimporter.openoffice.OpenOfficeConverter: Method 'public boolean isMediaTypeSupported(java.lang.String)' has been added to an interface
359 ERROR: 8001: org.xwiki.officeimporter.openoffice.OpenOfficeDocumentConverter: Class org.xwiki.officeimporter.openoffice.OpenOfficeDocumentConverter removed
360 ERROR: 7002: org.xwiki.officeimporter.openoffice.OpenOfficeManager: Method 'public org.artofsolving.jodconverter.OfficeDocumentConverter getDocumentConverter()' has been removed
361 ERROR: 7002: org.xwiki.officeimporter.splitter.XDOMOfficeDocumentSplitter: Method 'public java.util.Map split(org.xwiki.officeimporter.document.XDOMOfficeDocument, int[], java.lang.String, org.xwiki.bridge.DocumentName)' has been removed
362 ERROR: 7012: org.xwiki.bridge.DocumentModelBridge: Method 'public org.xwiki.rendering.syntax.Syntax getSyntax()' has been added to an interface
363 ERROR: 7012: org.xwiki.bridge.DocumentModelBridge: Method 'public org.xwiki.rendering.block.XDOM getXDOM()' has been added to an interface
364 ERROR: 7002: org.xwiki.container.Request: Method 'public org.xwiki.url.XWikiURL getURL()' has been removed
365 ERROR: 7002: com.xpn.xwiki.api.XWiki: Method 'public java.lang.Object getExoPortalService(java.lang.String)' has been removed
366 ERROR: 7002: com.xpn.xwiki.api.XWiki: Method 'public java.lang.Object getExoService(java.lang.String)' has been removed
367 ERROR: 7002: com.xpn.xwiki.api.XWiki: Method 'public java.lang.Object getPortalService(java.lang.String)' has been removed
368 ERROR: 7002: com.xpn.xwiki.api.XWiki: Method 'public java.lang.Object getService(java.lang.String)' has been removed
369 ERROR: 7002: com.xpn.xwiki.api.XWikiCompatibilityAspect: Method 'public java.lang.Object ajc$interMethod$com_xpn_xwiki_api_XWikiCompatibilityAspect$com_xpn_xwiki_api_XWiki$getPortalService(com.xpn.xwiki.api.XWiki, java.lang.String)' has been removed
370 ERROR: 7002: com.xpn.xwiki.api.XWikiCompatibilityAspect: Method 'public java.lang.Object ajc$interMethod$com_xpn_xwiki_api_XWikiCompatibilityAspect$com_xpn_xwiki_api_XWiki$getService(com.xpn.xwiki.api.XWiki, java.lang.String)' has been removed
371 ERROR: 7002: com.xpn.xwiki.api.XWikiCompatibilityAspect: Method 'public java.lang.Object ajc$interMethodDispatch1$com_xpn_xwiki_api_XWikiCompatibilityAspect$com_xpn_xwiki_api_XWiki$getPortalService(com.xpn.xwiki.api.XWiki, java.lang.String)' has been removed
372 ERROR: 7002: com.xpn.xwiki.api.XWikiCompatibilityAspect: Method 'public java.lang.Object ajc$interMethodDispatch1$com_xpn_xwiki_api_XWikiCompatibilityAspect$com_xpn_xwiki_api_XWiki$getService(com.xpn.xwiki.api.XWiki, java.lang.String)' has been removed
373 ERROR: 7002: com.xpn.xwiki.pdf.api.PdfExport: Method 'public byte[] convertToStrictXHtml(byte[], com.xpn.xwiki.XWikiContext)' has been removed
374 ERROR: 7002: com.xpn.xwiki.pdf.api.PdfExport: Method 'public java.lang.String convertToStrictXHtml(java.lang.String)' has been removed
375 ERROR: 7002: com.xpn.xwiki.pdf.api.PdfExport: Method 'public byte[] convertXHtmlToXMLFO(byte[], com.xpn.xwiki.XWikiContext)' has been removed
376 ERROR: 7002: com.xpn.xwiki.pdf.api.PdfExport: Method 'public java.lang.String convertXHtmlToXMLFO(java.lang.String, com.xpn.xwiki.XWikiContext)' has been removed
377 ERROR: 7005: com.xpn.xwiki.pdf.api.PdfExport: Parameter 3 of 'public void export(com.xpn.xwiki.doc.XWikiDocument, java.io.OutputStream, int, com.xpn.xwiki.XWikiContext)' has changed its type to com.xpn.xwiki.pdf.api.PdfExport$ExportType
378 ERROR: 7005: com.xpn.xwiki.pdf.api.PdfExport: Parameter 3 of 'public void exportHtml(java.lang.String, java.io.OutputStream, int, com.xpn.xwiki.XWikiContext)' has changed its type to com.xpn.xwiki.pdf.api.PdfExport$ExportType
379 ERROR: 7002: com.xpn.xwiki.pdf.api.PdfExport: Method 'public void exportXHtml(byte[], java.io.OutputStream, int, com.xpn.xwiki.XWikiContext)' has been removed
380 {{/code}}
381
382 The following XWiki GWT APIs were modified since XWiki Enterprise 2.7:
383
384 {{code language="none"}}
385 ERROR: 6011: org.xwiki.gwt.user.client.ui.rta.RichTextArea: Field DISABLED has been removed, but it was previously a constant
386 ERROR: 7002: org.xwiki.gwt.wysiwyg.client.RichTextEditorController: Method 'protected void initTextArea()' has been removed
387 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadget()' has been added to an interface
388 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadgetEditDialogCaption()' has been added to an interface
389 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadgetInsertActionLabel()' has been added to an interface
390 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadgetInsertDialogCaption()' has been added to an interface
391 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadgetInsertDialogTitle()' has been added to an interface
392 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadgetNoGadgetSelected()' has been added to an interface
393 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadgetTitleDescription()' has been added to an interface
394 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String gadgetTitleLabel()' has been added to an interface
395 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String macroCollapseAllShortcutKeyLabel()' has been added to an interface
396 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String macroCollapseShortcutKeyLabel()' has been added to an interface
397 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String macroEditShortcutKeyLabel()' has been added to an interface
398 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String macroExpandAllShortcutKeyLabel()' has been added to an interface
399 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String macroExpandShortcutKeyLabel()' has been added to an interface
400 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String macroInsertShortcutKeyLabel()' has been added to an interface
401 ERROR: 7012: org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String macroRefreshShortcutKeyLabel()' has been added to an interface
402 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.Plugin: Class org.xwiki.gwt.wysiwyg.client.plugin.Plugin removed
403 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.PluginFactory: Class org.xwiki.gwt.wysiwyg.client.plugin.PluginFactory removed
404 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.PluginFactoryManager: Class org.xwiki.gwt.wysiwyg.client.plugin.PluginFactoryManager removed
405 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.PluginManager: Class org.xwiki.gwt.wysiwyg.client.plugin.PluginManager removed
406 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.UIExtension: Class org.xwiki.gwt.wysiwyg.client.plugin.UIExtension removed
407 ERROR: 6011: org.xwiki.gwt.wysiwyg.client.plugin.color.ColorCell: Field SELECTED_STYLE_NAME has been removed, but it was previously a constant
408 ERROR: 7002: org.xwiki.gwt.wysiwyg.client.plugin.color.ColorPicker: Method 'public java.lang.String convertToHex(java.lang.String)' has been removed
409 ERROR: 7002: org.xwiki.gwt.wysiwyg.client.plugin.color.ColorPlugin: Method 'protected org.xwiki.gwt.user.client.ui.rta.cmd.Executable getBackColorExecutable()' has been removed
410 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.color.MozillaColorPlugin: Class org.xwiki.gwt.wysiwyg.client.plugin.color.MozillaColorPlugin removed
411 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.color.exec.BackColorExecutable: Class org.xwiki.gwt.wysiwyg.client.plugin.color.exec.BackColorExecutable removed
412 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.color.exec.HiliteColorExecutable: Class org.xwiki.gwt.wysiwyg.client.plugin.color.exec.HiliteColorExecutable removed
413 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroDisplayer: In method 'public MacroDisplayer()' the number of arguments has changed
414 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroDisplayer: In method 'protected org.xwiki.gwt.dom.client.Element createReadOnlyBox()' the number of arguments has changed
415 ERROR: 7002: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroDisplayer: Method 'protected java.lang.String getMacroContainerTagName()' has been removed
416 ERROR: 7002: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroDisplayer: Method 'public void setTextArea(org.xwiki.gwt.user.client.ui.rta.RichTextArea)' has been removed
417 ERROR: 4001: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroPlugin: Removed com.google.gwt.event.dom.client.DoubleClickHandler from the set of implemented interfaces
418 ERROR: 4001: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroPlugin: Removed com.google.gwt.event.shared.EventHandler from the set of implemented interfaces
419 ERROR: 7002: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroPlugin: Method 'public void onDoubleClick(com.google.gwt.event.dom.client.DoubleClickEvent)' has been removed
420 ERROR: 4001: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroSelector: Removed com.google.gwt.event.dom.client.MouseDownHandler from the set of implemented interfaces
421 ERROR: 7002: org.xwiki.gwt.wysiwyg.client.plugin.macro.MacroSelector: Method 'public void onMouseDown(com.google.gwt.event.dom.client.MouseDownEvent)' has been removed
422 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.submit.exec.EnableExecutable: Class org.xwiki.gwt.wysiwyg.client.plugin.submit.exec.EnableExecutable removed
423 ERROR: 8001: org.xwiki.gwt.wysiwyg.client.plugin.submit.exec.ResetExecutable: Class org.xwiki.gwt.wysiwyg.client.plugin.submit.exec.ResetExecutable removed
424 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.wiki.WikiService: In method 'public java.util.List getMatchingPages(java.lang.String, int, int)' the number of arguments has changed
425 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.wiki.WikiService: In method 'public java.util.List getRecentlyModifiedPages(int, int)' the number of arguments has changed
426 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.wiki.WikiServiceAsync: In method 'public void getMatchingPages(java.lang.String, int, int, com.google.gwt.user.client.rpc.AsyncCallback)' the number of arguments has changed
427 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.wiki.WikiServiceAsync: In method 'public void getRecentlyModifiedPages(int, int, com.google.gwt.user.client.rpc.AsyncCallback)' the number of arguments has changed
428 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.wiki.WikiServiceAsyncCacheProxy: In method 'public void getMatchingPages(java.lang.String, int, int, com.google.gwt.user.client.rpc.AsyncCallback)' the number of arguments has changed
429 ERROR: 7004: org.xwiki.gwt.wysiwyg.client.wiki.WikiServiceAsyncCacheProxy: In method 'public void getRecentlyModifiedPages(int, int, com.google.gwt.user.client.rpc.AsyncCallback)' the number of arguments has changed
430 ERROR: 6004: org.xwiki.gwt.dom.client.Style: Changed type of field BACKGROUND_COLOR from java.lang.String to org.xwiki.gwt.dom.client.Property
431 {{/code}}

Get Connected