Wiki source code of Release Notes for XWiki 6.4.1

Last modified by Thomas Mortagne on 2023/10/13

Hide last authors
Guillaume Delhumeau 1.1 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
Ecaterina Moraru (Valica) 23.1 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.
Guillaume Delhumeau 1.1 8
Thomas Mortagne 24.1 9 {{error}}
Vincent Massol 27.1 10 Important problems noticed after the 6.4.1 release:
11 * If you upgrade from 6.4 you might not get the upgrade wizard (Distribution Wizard) when you access the wiki. The workaround is to deleted the core extensions cache located in ##cache/extension/core## in the permanent directory (##/data/cache/extension/core## in the jetty/hsqldb package and ##/var/lib/xwiki/data/cache/extension/core## in the Debian package).
Thomas Mortagne 31.1 12 * [[You cannot use a JNDI DataSource with this version>>https://jira.xwiki.org/browse/XWIKI-11706]]. Fixed in XWiki 6.4.2.
13 * When you create a new subwiki, [[the wiki owner is not properly assigned on wiki creation>>https://jira.xwiki.org/browse/XWIKI-11811]] (the owner of the wiki is defined as a local user instead of a global one).
14 * [[ResetPassword feature is not working anymore>>https://jira.xwiki.org/browse/XWIKI-11801]].
Vincent Massol 29.1 15
Thomas Mortagne 31.1 16 [[Full list of Critical issues fixed in XWiki 6.4.2>>https://jira.xwiki.org/issues/?filter=13794&jql=category%20in%20(%22Top%20Level%20Projects%22)%20AND%20fixVersion%20in%20(%226.4.2%22)%20AND%20resolution%20in%20(Fixed)%20and%20priority%20in%20(Blocker%2C%20Critical)]]
Thomas Mortagne 24.1 17 {{/error}}
18
Vincent Massol 13.1 19 = New and Noteworthy (since XWiki 6.4) =
Vincent Massol 11.1 20
Thomas Mortagne 31.1 21 [[Full list of issues fixed and Dashboard for 6.4.1>>https://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=13002]].
Marius Dumitru Florea 18.1 22
23 == Document Index Tree Finder ==
24
25 You can now easily find documents and attachments from the tree view of the Document Index.
26
Guillaume Delhumeau 19.1 27 {{image reference="index-alldocs-tree-finder.png"/}}
Marius Dumitru Florea 18.1 28
29 Checkout the [[Index Application>>extensions:Extension.Index Application]] for more details.
30
31 == The WYSIWYG Editor Uses the New Tree Widget ==
32
Thomas Mortagne 32.1 33 We have integrated the new [[Tree Widget>>extensions:Extension.Tree Widget]] into the [[WYSIWYG Editor>>Documentation.UserGuide.Features.WysiwygEditor]].
Marius Dumitru Florea 18.1 34
Guillaume Delhumeau 19.1 35 {{image reference="link2wikistep2.png"/}}
Marius Dumitru Florea 18.1 36
37 == Miscellaneous ==
38
Guillaume Delhumeau 15.1 39 * The property "@headings-color" is now editable in the [[Flamingo Theme Editor>>extensions:Extension.Flamingo Theme Application]].
40
Guillaume Delhumeau 19.1 41 == Upgrade ==
42
43 The following dependency have been upgraded:
44
Thomas Mortagne 31.1 45 * [[Bootstrap 3.3.2>>https://jira.xwiki.org/browse/XWIKI-11772]]
Guillaume Delhumeau 19.1 46
Vincent Massol 9.1 47 == Full Issue List ==
Guillaume Delhumeau 1.1 48
Thomas Mortagne 31.1 49 {{jira style="list" url="https://jira.xwiki.org" fields="type, status, key, summary" source="jql"}}
Vincent Massol 13.1 50 category in ("Top Level Projects") AND fixVersion in ("6.4.1") AND resolution in (Fixed) and component not in ("Development Issues only")
Vincent Massol 9.1 51 {{/jira}}
Guillaume Delhumeau 1.1 52
53 = Translations =
54
55 The following translations have been updated:
56
Ecaterina Moraru (Valica) 19.2 57 {{language codes="fr"/}}
Guillaume Delhumeau 1.1 58
59 = Tested Browsers & Databases =
60
Manuel Smeria 25.1 61 {{include reference="TestReports.ManualTestReportSummaryXWiki641"/}}
Guillaume Delhumeau 1.1 62
63 = Known issues =
64
Thomas Mortagne 31.1 65 * [[Bugs we know about>>https://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]]
Guillaume Delhumeau 1.1 66
67 = Backward Compatibility and Migration Notes =
68
69 == General Notes ==
70
71 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.
72
Vincent Massol 14.1 73 == Issues specific to XWiki 6.4.1 ==
74
75 * 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:(((
76 {{code language="none"}}
77 ## Parameters for the 'template' MimeMessageFactory
78 #set ($templateParameters = {'language' : $xcontext.language, 'velocityVariables' : { 'var1' : 'value1' }})
79
80 ## Parameters for the 'group' MimeMessage Iterator Factory
81 #set ($templateReference = $services.model.createDocumentReference('', 'Space', 'MailTemplatePage'))
82 #set ($parameters = {'parameters' : $parameters, 'source' : $templateReference })
83
84 #set ($groupReference = $services.model.createDocumentReference('', 'XWiki', 'MyGroup'))
85 #set ($messages = $services.mailsender.createMessages('group', $groupReference, 'template', $parameters))
86 ^^^^^^^^^^
87 #set ($mailResult = $services.mailsender.send($messages, 'database'))
88 {{/code}}
89
90 And now in 6.4.1 you'll need to write:
91
92 {{code language="none"}}
93 ## Parameters for the 'template' MimeMessageFactory
94 #set ($templateParameters = {'language' : $xcontext.language, 'velocityVariables' : { 'var1' : 'value1' }})
95
96 ## Parameters for the 'group' MimeMessageFactory
97 #set ($templateReference = $services.model.createDocumentReference('', 'Space', 'MailTemplatePage'))
98 #set ($groupParameters = {'hint' : 'template', 'parameters' : $templateParameters, 'source' : $templateReference })
99 ^^^^^^^^^^^^^^^^^^^
100 #set ($groupReference = $services.model.createDocumentReference('', 'XWiki', 'MyGroup'))
101 #set ($messages = $services.mailsender.createMessages('group', $groupReference, $groupParameters))
102 #set ($mailResult = $services.mailsender.send($messages, 'database'))
103 {{/code}}
104 )))
105
Guillaume Delhumeau 1.1 106 == API Breakages ==
107
Ecaterina Moraru (Valica) 21.1 108 The following APIs were modified since XWiki 6.4:
109
110 * Young API. Made the API more generic + internal refactoring.(((
111 {{code language="none"}}
112 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
113 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
114 org.xwiki.mail.script.AbstractMailScriptService: Removed field configuration
115 {{/code}}
116 )))
117
118 * Young API. Fix a bad designed API.(((
119 {{code language="none"}}
120 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
121 {{/code}}
122 )))
123
124 * We've refactored the client code of the WYSIWYG editor to use the new tree.(((
125 {{code language="none"}}
126 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Removed com.smartgwt.client.widgets.events.KeyPressHandler from the set of implemented interfaces
127 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Removed com.smartgwt.client.widgets.grid.events.RecordDoubleClickHandler from the set of implemented interfaces
128 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
129 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Parameter 2 of 'public AbstractExplorerWizardStep(boolean, boolean, boolean)' has changed its type to int
130 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Parameter 3 of 'public AbstractExplorerWizardStep(boolean, boolean, boolean)' has changed its type to int
131 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Accessibility of method 'public AbstractExplorerWizardStep(boolean, boolean, boolean)' has been decreased from public to protected
132 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: In method 'protected AbstractExplorerWizardStep(boolean, boolean, boolean, int, int)' the number of arguments has changed
133 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Method 'protected void invalidateExplorerData()' has been removed
134 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Method 'public void onKeyPress(com.smartgwt.client.widgets.events.KeyPressEvent)' has been removed
135 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AbstractExplorerWizardStep: Method 'public void onRecordDoubleClick(com.smartgwt.client.widgets.grid.events.RecordDoubleClickEvent)' has been removed
136 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AttachmentExplorerWizardStep: Removed com.smartgwt.client.widgets.events.KeyPressHandler from the set of implemented interfaces
137 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AttachmentExplorerWizardStep: Removed com.smartgwt.client.widgets.grid.events.RecordDoubleClickHandler from the set of implemented interfaces
138 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.AttachmentExplorerWizardStep: In method 'public AttachmentExplorerWizardStep()' the number of arguments has changed
139 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
140 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.WikiPageExplorerWizardStep: Removed com.smartgwt.client.widgets.events.KeyPressHandler from the set of implemented interfaces
141 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.WikiPageExplorerWizardStep: Removed com.smartgwt.client.widgets.grid.events.RecordDoubleClickHandler from the set of implemented interfaces
142 org.xwiki.gwt.wysiwyg.client.plugin.link.ui.WikiPageExplorerWizardStep: In method 'public WikiPageExplorerWizardStep()' the number of arguments has changed
143 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.core.LogicalStructure from the set of implemented interfaces
144 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.DataBoundComponent from the set of implemented interfaces
145 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasClickHandlers from the set of implemented interfaces
146 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDoubleClickHandlers from the set of implemented interfaces
147 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragCompleteHandlers from the set of implemented interfaces
148 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragMoveHandlers from the set of implemented interfaces
149 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragRepositionMoveHandlers from the set of implemented interfaces
150 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragRepositionStartHandlers from the set of implemented interfaces
151 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragRepositionStopHandlers from the set of implemented interfaces
152 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragResizeMoveHandlers from the set of implemented interfaces
153 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragResizeStartHandlers from the set of implemented interfaces
154 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragResizeStopHandlers from the set of implemented interfaces
155 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragStartHandlers from the set of implemented interfaces
156 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDragStopHandlers from the set of implemented interfaces
157 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropCompleteHandlers from the set of implemented interfaces
158 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropHandlers from the set of implemented interfaces
159 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropMoveHandlers from the set of implemented interfaces
160 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropOutHandlers from the set of implemented interfaces
161 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasDropOverHandlers from the set of implemented interfaces
162 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasFetchDataHandlers from the set of implemented interfaces
163 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasFocusChangedHandlers from the set of implemented interfaces
164 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasFormulaUpdatedHandlers from the set of implemented interfaces
165 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasHoverHandlers from the set of implemented interfaces
166 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasHoverHiddenHandlers from the set of implemented interfaces
167 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasKeyDownHandlers from the set of implemented interfaces
168 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasKeyPressHandlers from the set of implemented interfaces
169 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseDownHandlers from the set of implemented interfaces
170 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseMoveHandlers from the set of implemented interfaces
171 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseOutHandlers from the set of implemented interfaces
172 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseOverHandlers from the set of implemented interfaces
173 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseStillDownHandlers from the set of implemented interfaces
174 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseUpHandlers from the set of implemented interfaces
175 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMouseWheelHandlers from the set of implemented interfaces
176 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasMovedHandlers from the set of implemented interfaces
177 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasParentMovedHandlers from the set of implemented interfaces
178 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasResizedHandlers from the set of implemented interfaces
179 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasRightMouseDownHandlers from the set of implemented interfaces
180 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasScrolledHandlers from the set of implemented interfaces
181 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasShowContextMenuHandlers from the set of implemented interfaces
182 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.events.HasVisibilityChangedHandlers from the set of implemented interfaces
183 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasBodyKeyPressHandlers from the set of implemented interfaces
184 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellClickHandlers from the set of implemented interfaces
185 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellContextClickHandlers from the set of implemented interfaces
186 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellDoubleClickHandlers from the set of implemented interfaces
187 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellHoverHandlers from the set of implemented interfaces
188 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellMouseDownHandlers from the set of implemented interfaces
189 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellMouseUpHandlers from the set of implemented interfaces
190 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellOutHandlers from the set of implemented interfaces
191 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellOverHandlers from the set of implemented interfaces
192 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellSavedHandlers from the set of implemented interfaces
193 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellSelectionChangedHandlers from the set of implemented interfaces
194 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasCellValueHoverHandlers from the set of implemented interfaces
195 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasDataArrivedHandlers from the set of implemented interfaces
196 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasDrawAreaChangedHandlers from the set of implemented interfaces
197 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditCompleteHandlers from the set of implemented interfaces
198 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditFailedHandlers from the set of implemented interfaces
199 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditorEnterHandlers from the set of implemented interfaces
200 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasEditorExitHandlers from the set of implemented interfaces
201 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasFieldStateChangedHandlers from the set of implemented interfaces
202 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasFilterEditorSubmitHandlers from the set of implemented interfaces
203 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasGroupByHandlers from the set of implemented interfaces
204 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasGroupStateChangedHandlers from the set of implemented interfaces
205 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHeaderClickHandlers from the set of implemented interfaces
206 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHeaderDoubleClickHandlers from the set of implemented interfaces
207 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHeaderHoverHandlers from the set of implemented interfaces
208 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasHilitesChangedHandlers from the set of implemented interfaces
209 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordClickHandlers from the set of implemented interfaces
210 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordCollapseHandlers from the set of implemented interfaces
211 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordDoubleClickHandlers from the set of implemented interfaces
212 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordDropHandlers from the set of implemented interfaces
213 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRecordExpandHandlers from the set of implemented interfaces
214 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRemoveRecordClickHandlers from the set of implemented interfaces
215 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowContextClickHandlers from the set of implemented interfaces
216 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowEditorEnterHandlers from the set of implemented interfaces
217 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowEditorExitHandlers from the set of implemented interfaces
218 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowHoverHandlers from the set of implemented interfaces
219 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowMouseDownHandlers from the set of implemented interfaces
220 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowMouseUpHandlers from the set of implemented interfaces
221 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowOutHandlers from the set of implemented interfaces
222 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasRowOverHandlers from the set of implemented interfaces
223 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSelectionChangedHandlers from the set of implemented interfaces
224 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSelectionUpdatedHandlers from the set of implemented interfaces
225 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSortChangedHandlers from the set of implemented interfaces
226 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSorterClickHandlers from the set of implemented interfaces
227 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasSorterContextClickHandlers from the set of implemented interfaces
228 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.events.HasViewStateChangedHandlers from the set of implemented interfaces
229 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasDataArrivedHandlers from the set of implemented interfaces
230 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderClickHandlers from the set of implemented interfaces
231 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderClosedHandlers from the set of implemented interfaces
232 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderContextClickHandlers from the set of implemented interfaces
233 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderDropHandlers from the set of implemented interfaces
234 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasFolderOpenedHandlers from the set of implemented interfaces
235 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasLeafClickHandlers from the set of implemented interfaces
236 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasLeafContextClickHandlers from the set of implemented interfaces
237 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasNodeClickHandlers from the set of implemented interfaces
238 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.events.HasNodeContextClickHandlers from the set of implemented interfaces
239 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.BaseWidget from the list of superclasses
240 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.Canvas from the list of superclasses
241 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.grid.ListGrid from the list of superclasses
242 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.layout.Layout from the list of superclasses
243 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.layout.VLayout from the list of superclasses
244 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Removed com.smartgwt.client.widgets.tree.TreeGrid from the list of superclasses
245 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
246 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public XWikiExplorer()' has been removed
247 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'protected com.google.gwt.core.client.JavaScriptObject create()' has been removed
248 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
249 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public java.lang.String getSelectedAnchor()' has been removed
250 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public java.lang.String getValue()' has been removed
251 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public boolean isNewPageSelectedFromTextInput()' has been removed
252 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public boolean isNewPageSelectedFromTreeNode()' has been removed
253 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDefaultValue(java.lang.String)' has been removed
254 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddAttachment(boolean)' has been removed
255 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddAttachmentOnTop(boolean)' has been removed
256 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddPage(boolean)' has been removed
257 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAddPageOnTop(boolean)' has been removed
258 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAttachments(boolean)' has been removed
259 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAttachmentsOnTop(boolean)' has been removed
260 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayAttachmentsWhenEmpty(boolean)' has been removed
261 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayLinks(boolean)' has been removed
262 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplaySpaceNodesDisabled(boolean)' has been removed
263 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplaySuggest(boolean)' has been removed
264 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setDisplayWikiNodesDisabled(boolean)' has been removed
265 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setSpace(java.lang.String)' has been removed
266 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setValue(java.lang.String)' has been removed
267 org.xwiki.gwt.wysiwyg.client.widget.explorer.XWikiExplorer: Method 'public void setWiki(java.lang.String)' has been removed
268 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.AttachmentsDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.AttachmentsDataSource removed
269 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.FarmDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.FarmDataSource removed
270 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.PageDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.PageDataSource removed
271 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.SpaceDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.SpaceDataSource removed
272 org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.WikiDataSource: Class org.xwiki.gwt.wysiwyg.client.widget.explorer.ds.WikiDataSource removed
273 {{/code}}
274 )))

Get Connected