Wiki source code of Release Notes for XWiki 6.4.1

Version 23.1 by Ecaterina Moraru (Valica) on 2015/02/10

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 This is the release notes for [[XWiki Commons>>http://commons.xwiki.org]], [[XWiki Rendering>>http://rendering.xwiki.org]], [[XWiki Platform>>http://platform.xwiki.org]] and [[XWiki Enterprise>>http://enterprise.xwiki.org]]. They share the same release notes as they are released together and have the same version.
6
7 This is a stabilization release that fixes important bugs discovered in the previous 6.4 version, while also providing an integration of the new Tree Widget with the Index Application and the WYSIWYG Editor.
8
9 = New and Noteworthy (since XWiki 6.4) =
10
11 [[Full list of issues fixed and Dashboard for 6.4.1>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=13002]].
12
13 == Document Index Tree Finder ==
14
15 You can now easily find documents and attachments from the tree view of the Document Index.
16
17 {{image reference="index-alldocs-tree-finder.png"/}}
18
19 Checkout the [[Index Application>>extensions:Extension.Index Application]] for more details.
20
21 == The WYSIWYG Editor Uses the New Tree Widget ==
22
23 We have integrated the new [[Tree Widget>>extensions:Extension.Tree Widget]] into the [[WYSIWYG Editor>>platform:Features.WysiwygEditor]].
24
25 {{image reference="link2wikistep2.png"/}}
26
27 == Miscellaneous ==
28
29 * The property "@headings-color" is now editable in the [[Flamingo Theme Editor>>extensions:Extension.Flamingo Theme Application]].
30
31 == Upgrade ==
32
33 The following dependency have been upgraded:
34
35 * [[Bootstrap 3.3.2>>http://jira.xwiki.org/browse/XWIKI-11772]]
36
37 == Full Issue List ==
38
39 {{jira style="list" url="http://jira.xwiki.org" fields="type, status, key, summary" source="jql"}}
40 category in ("Top Level Projects") AND fixVersion in ("6.4.1") AND resolution in (Fixed) and component not in ("Development Issues only")
41 {{/jira}}
42
43 = Translations =
44
45 The following translations have been updated:
46
47 {{language codes="fr"/}}
48
49 {{comment}}
50 = Tested Browsers & Databases =
51
52 {{include reference="TestReports.ManualTestReportXWiki641Summary"/}}
53 {{/comment}}
54
55 = Known issues =
56
57 * [[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]]
58
59 = Backward Compatibility and Migration Notes =
60
61 == General Notes ==
62
63 When upgrading make sure you compare your ##xwiki.cfg##, ##xwiki.properties## and ##web.xml## files with the newest version since some configuration parameters may have been modified or 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.
64
65 == Issues specific to XWiki 6.4.1 ==
66
67 * The Mail Sender API has changed slightly when sending emails to a list of users or to a group. For example if you wanted to send a template email to a group, you previously had to write:(((
68 {{code language="none"}}
69 ## Parameters for the 'template' MimeMessageFactory
70 #set ($templateParameters = {'language' : $xcontext.language, 'velocityVariables' : { 'var1' : 'value1' }})
71
72 ## Parameters for the 'group' MimeMessage Iterator Factory
73 #set ($templateReference = $services.model.createDocumentReference('', 'Space', 'MailTemplatePage'))
74 #set ($parameters = {'parameters' : $parameters, 'source' : $templateReference })
75
76 #set ($groupReference = $services.model.createDocumentReference('', 'XWiki', 'MyGroup'))
77 #set ($messages = $services.mailsender.createMessages('group', $groupReference, 'template', $parameters))
78 ^^^^^^^^^^
79 #set ($mailResult = $services.mailsender.send($messages, 'database'))
80 {{/code}}
81
82 And now in 6.4.1 you'll need to write:
83
84 {{code language="none"}}
85 ## Parameters for the 'template' MimeMessageFactory
86 #set ($templateParameters = {'language' : $xcontext.language, 'velocityVariables' : { 'var1' : 'value1' }})
87
88 ## Parameters for the 'group' MimeMessageFactory
89 #set ($templateReference = $services.model.createDocumentReference('', 'Space', 'MailTemplatePage'))
90 #set ($groupParameters = {'hint' : 'template', 'parameters' : $templateParameters, 'source' : $templateReference })
91 ^^^^^^^^^^^^^^^^^^^
92 #set ($groupReference = $services.model.createDocumentReference('', 'XWiki', 'MyGroup'))
93 #set ($messages = $services.mailsender.createMessages('group', $groupReference, $groupParameters))
94 #set ($mailResult = $services.mailsender.send($messages, 'database'))
95 {{/code}}
96 )))
97
98 == API Breakages ==
99
100 The following APIs were modified since XWiki 6.4:
101
102 * Young API. Made the API more generic + internal refactoring.(((
103 {{code language="none"}}
104 org.xwiki.mail.MimeMessageFactory: Return type of method 'public javax.mail.internet.MimeMessage createMessage(javax.mail.Session, java.lang.Object, java.util.Map)' has been changed to java.lang.Object
105 org.xwiki.mail.script.MailSenderScriptService: In method 'public java.util.Iterator createMessages(java.lang.String, java.lang.Object, java.lang.String, java.util.Map)' the number of arguments has changed
106 org.xwiki.mail.script.AbstractMailScriptService: Removed field configuration
107 {{/code}}
108 )))
109
110 * Young API. Fix a bad designed API.(((
111 {{code language="none"}}
112 org.xwiki.lesscss.cache.LESSCache: Method 'public java.lang.Object getMutex(org.xwiki.lesscss.resources.LESSResourceReference, org.xwiki.lesscss.skin.SkinReference, org.xwiki.lesscss.colortheme.ColorThemeReference)' has been added to an interface
113 {{/code}}
114 )))
115
116 * We've refactored the client code of the WYSIWYG editor to use the new tree.(((
117 {{code language="none"}}
118 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Removed com.smartgwt.client.widgets.events.KeyPressHandler from the set of implemented interfaces
119 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Removed com.smartgwt.client.widgets.grid.events.RecordDoubleClickHandler from the set of implemented interfaces
120 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Parameter 1 of 'public AbstractExplorerWizardStep(boolean, boolean, boolean)' has changed its type to java.lang.String
121 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Parameter 2 of 'public AbstractExplorerWizardStep(boolean, boolean, boolean)' has changed its type to int
122 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Parameter 3 of 'public AbstractExplorerWizardStep(boolean, boolean, boolean)' has changed its type to int
123 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Accessibility of method 'public AbstractExplorerWizardStep(boolean, boolean, boolean)' has been decreased from public to protected
124 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: In method 'protected AbstractExplorerWizardStep(boolean, boolean, boolean, int, int)' the number of arguments has changed
125 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Method 'protected void invalidateExplorerData()' has been removed
126 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Method 'public void onKeyPress(com.smartgwt.client.widgets.events.KeyPressEvent)' has been removed
127 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Method 'public void onRecordDoubleClick(com.smartgwt.client.widgets.grid.events.RecordDoubleClickEvent)' has been removed
128 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AttachmentExplorerWizardStep: Removed com.smartgwt.client.widgets.events.KeyPressHandler from the set of implemented interfaces
129 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AttachmentExplorerWizardStep: Removed com.smartgwt.client.widgets.grid.events.RecordDoubleClickHandler from the set of implemented interfaces
130 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AttachmentExplorerWizardStep: In method 'public AttachmentExplorerWizardStep()' the number of arguments has changed
131 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.PageSelectorWizardStep: In method 'public PageSelectorWizardStep(org.xwiki.gwt.wysiwyg.client.wiki.WikiServiceAsync)' the number of arguments has changed
132 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.WikiPageExplorerWizardStep: Removed com.smartgwt.client.widgets.events.KeyPressHandler from the set of implemented interfaces
133 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.WikiPageExplorerWizardStep: Removed com.smartgwt.client.widgets.grid.events.RecordDoubleClickHandler from the set of implemented interfaces
134 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.WikiPageExplorerWizardStep: In method 'public WikiPageExplorerWizardStep()' the number of arguments has changed
135 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.core.LogicalStructure from the set of implemented interfaces
136 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.DataBoundComponent from the set of implemented interfaces
137 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasClickHandlers from the set of implemented interfaces
138 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDoubleClickHandlers from the set of implemented interfaces
139 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragCompleteHandlers from the set of implemented interfaces
140 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragMoveHandlers from the set of implemented interfaces
141 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragRepositionMoveHandlers from the set of implemented interfaces
142 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragRepositionStartHandlers from the set of implemented interfaces
143 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragRepositionStopHandlers from the set of implemented interfaces
144 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragResizeMoveHandlers from the set of implemented interfaces
145 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragResizeStartHandlers from the set of implemented interfaces
146 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragResizeStopHandlers from the set of implemented interfaces
147 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragStartHandlers from the set of implemented interfaces
148 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragStopHandlers from the set of implemented interfaces
149 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropCompleteHandlers from the set of implemented interfaces
150 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropHandlers from the set of implemented interfaces
151 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropMoveHandlers from the set of implemented interfaces
152 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropOutHandlers from the set of implemented interfaces
153 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropOverHandlers from the set of implemented interfaces
154 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasFetchDataHandlers from the set of implemented interfaces
155 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasFocusChangedHandlers from the set of implemented interfaces
156 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasFormulaUpdatedHandlers from the set of implemented interfaces
157 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasHoverHandlers from the set of implemented interfaces
158 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasHoverHiddenHandlers from the set of implemented interfaces
159 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasKeyDownHandlers from the set of implemented interfaces
160 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasKeyPressHandlers from the set of implemented interfaces
161 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseDownHandlers from the set of implemented interfaces
162 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseMoveHandlers from the set of implemented interfaces
163 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseOutHandlers from the set of implemented interfaces
164 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseOverHandlers from the set of implemented interfaces
165 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseStillDownHandlers from the set of implemented interfaces
166 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseUpHandlers from the set of implemented interfaces
167 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseWheelHandlers from the set of implemented interfaces
168 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMovedHandlers from the set of implemented interfaces
169 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasParentMovedHandlers from the set of implemented interfaces
170 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasResizedHandlers from the set of implemented interfaces
171 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasRightMouseDownHandlers from the set of implemented interfaces
172 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasScrolledHandlers from the set of implemented interfaces
173 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasShowContextMenuHandlers from the set of implemented interfaces
174 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasVisibilityChangedHandlers from the set of implemented interfaces
175 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasBodyKeyPressHandlers from the set of implemented interfaces
176 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellClickHandlers from the set of implemented interfaces
177 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellContextClickHandlers from the set of implemented interfaces
178 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellDoubleClickHandlers from the set of implemented interfaces
179 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellHoverHandlers from the set of implemented interfaces
180 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellMouseDownHandlers from the set of implemented interfaces
181 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellMouseUpHandlers from the set of implemented interfaces
182 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellOutHandlers from the set of implemented interfaces
183 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellOverHandlers from the set of implemented interfaces
184 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellSavedHandlers from the set of implemented interfaces
185 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellSelectionChangedHandlers from the set of implemented interfaces
186 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellValueHoverHandlers from the set of implemented interfaces
187 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasDataArrivedHandlers from the set of implemented interfaces
188 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasDrawAreaChangedHandlers from the set of implemented interfaces
189 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditCompleteHandlers from the set of implemented interfaces
190 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditFailedHandlers from the set of implemented interfaces
191 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditorEnterHandlers from the set of implemented interfaces
192 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditorExitHandlers from the set of implemented interfaces
193 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasFieldStateChangedHandlers from the set of implemented interfaces
194 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasFilterEditorSubmitHandlers from the set of implemented interfaces
195 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasGroupByHandlers from the set of implemented interfaces
196 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasGroupStateChangedHandlers from the set of implemented interfaces
197 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHeaderClickHandlers from the set of implemented interfaces
198 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHeaderDoubleClickHandlers from the set of implemented interfaces
199 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHeaderHoverHandlers from the set of implemented interfaces
200 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHilitesChangedHandlers from the set of implemented interfaces
201 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordClickHandlers from the set of implemented interfaces
202 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordCollapseHandlers from the set of implemented interfaces
203 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordDoubleClickHandlers from the set of implemented interfaces
204 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordDropHandlers from the set of implemented interfaces
205 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordExpandHandlers from the set of implemented interfaces
206 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRemoveRecordClickHandlers from the set of implemented interfaces
207 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowContextClickHandlers from the set of implemented interfaces
208 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowEditorEnterHandlers from the set of implemented interfaces
209 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowEditorExitHandlers from the set of implemented interfaces
210 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowHoverHandlers from the set of implemented interfaces
211 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowMouseDownHandlers from the set of implemented interfaces
212 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowMouseUpHandlers from the set of implemented interfaces
213 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowOutHandlers from the set of implemented interfaces
214 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowOverHandlers from the set of implemented interfaces
215 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSelectionChangedHandlers from the set of implemented interfaces
216 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSelectionUpdatedHandlers from the set of implemented interfaces
217 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSortChangedHandlers from the set of implemented interfaces
218 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSorterClickHandlers from the set of implemented interfaces
219 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSorterContextClickHandlers from the set of implemented interfaces
220 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasViewStateChangedHandlers from the set of implemented interfaces
221 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasDataArrivedHandlers from the set of implemented interfaces
222 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderClickHandlers from the set of implemented interfaces
223 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderClosedHandlers from the set of implemented interfaces
224 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderContextClickHandlers from the set of implemented interfaces
225 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderDropHandlers from the set of implemented interfaces
226 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderOpenedHandlers from the set of implemented interfaces
227 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasLeafClickHandlers from the set of implemented interfaces
228 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasLeafContextClickHandlers from the set of implemented interfaces
229 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasNodeClickHandlers from the set of implemented interfaces
230 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasNodeContextClickHandlers from the set of implemented interfaces
231 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.BaseWidget from the list of superclasses
232 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.Canvas from the list of superclasses
233 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.ListGrid from the list of superclasses
234 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.layout.Layout from the list of superclasses
235 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.layout.VLayout from the list of superclasses
236 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.TreeGrid from the list of superclasses
237 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Parameter 1 of 'public XWikiExplorer(com.google.gwt.core.client.JavaScriptObject)' has changed its type to java.lang.String
238 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public XWikiExplorer()' has been removed
239 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'protected com.google.gwt.core.client.JavaScriptObject create()' has been removed
240 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer getOrCreateRef(com.google.gwt.core.client.JavaScriptObject)' has been removed
241 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public java.lang.String getSelectedAnchor()' has been removed
242 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public java.lang.String getValue()' has been removed
243 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public boolean isNewPageSelectedFromTextInput()' has been removed
244 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public boolean isNewPageSelectedFromTreeNode()' has been removed
245 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDefaultValue(java.lang.String)' has been removed
246 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddAttachment(boolean)' has been removed
247 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddAttachmentOnTop(boolean)' has been removed
248 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddPage(boolean)' has been removed
249 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddPageOnTop(boolean)' has been removed
250 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAttachments(boolean)' has been removed
251 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAttachmentsOnTop(boolean)' has been removed
252 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAttachmentsWhenEmpty(boolean)' has been removed
253 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayLinks(boolean)' has been removed
254 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplaySpaceNodesDisabled(boolean)' has been removed
255 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplaySuggest(boolean)' has been removed
256 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayWikiNodesDisabled(boolean)' has been removed
257 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setSpace(java.lang.String)' has been removed
258 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setValue(java.lang.String)' has been removed
259 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setWiki(java.lang.String)' has been removed
260 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.AttachmentsDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.AttachmentsDataSource removed
261 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.FarmDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.FarmDataSource removed
262 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.PageDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.PageDataSource removed
263 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.SpaceDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.SpaceDataSource removed
264 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.WikiDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.WikiDataSource removed
265 {{/code}}
266 )))

Get Connected