mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 00:30:44 +00:00
Add .reportProblem() to submit reports
Change-Id: I55ffd8bfc7664ead3827ef6be178a0b6f3b991a1
This commit is contained in:
parent
6460df5cff
commit
3f903adb09
|
@ -353,6 +353,8 @@ ve.init.mw.ViewPageTarget.prototype.onSaveError = function ( jqXHR, status ) {
|
||||||
* @param {string} diffHtml
|
* @param {string} diffHtml
|
||||||
*/
|
*/
|
||||||
ve.init.mw.ViewPageTarget.prototype.onShowChanges = function ( diffHtml ) {
|
ve.init.mw.ViewPageTarget.prototype.onShowChanges = function ( diffHtml ) {
|
||||||
|
// Store the diff for reporting purposes
|
||||||
|
this.diffHtml = diffHtml;
|
||||||
mw.loader.using( 'mediawiki.action.history.diff', ve.bind( function () {
|
mw.loader.using( 'mediawiki.action.history.diff', ve.bind( function () {
|
||||||
var $slide = this.$saveDialog.find( '#ve-init-mw-viewPageTarget-saveDialog-slide-diff' );
|
var $slide = this.$saveDialog.find( '#ve-init-mw-viewPageTarget-saveDialog-slide-diff' );
|
||||||
if ( !$slide.length ) {
|
if ( !$slide.length ) {
|
||||||
|
@ -617,6 +619,8 @@ ve.init.mw.ViewPageTarget.prototype.setUpSurface = function ( dom ) {
|
||||||
this.surface.getContext().hide();
|
this.surface.getContext().hide();
|
||||||
this.$document = this.surface.$.find( '.ve-ce-documentNode' );
|
this.$document = this.surface.$.find( '.ve-ce-documentNode' );
|
||||||
this.surface.getModel().on( 'transact', this.proxiedOnSurfaceModelTransact );
|
this.surface.getModel().on( 'transact', this.proxiedOnSurfaceModelTransact );
|
||||||
|
// Store the HTML for reporting purposes
|
||||||
|
this.originalHtml = dom.innerHTML;
|
||||||
// Transplant the toolbar
|
// Transplant the toolbar
|
||||||
this.attachToolbar();
|
this.attachToolbar();
|
||||||
this.transformPageTitle();
|
this.transformPageTitle();
|
||||||
|
@ -1552,6 +1556,24 @@ ve.init.mw.ViewPageTarget.prototype.onBeforeUnload = function () {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ve.init.mw.ViewPageTarget.prototype.reportProblem = function ( message ) {
|
||||||
|
// Gather reporting information
|
||||||
|
var now = new Date(),
|
||||||
|
editedData = this.surface.getDocumentModel().getFullData(),
|
||||||
|
report = {
|
||||||
|
'title': this.pageName,
|
||||||
|
'oldid': this.oldid,
|
||||||
|
'timestamp': now.getTime() + 60000 * now.getTimezoneOffset(),
|
||||||
|
'message': message,
|
||||||
|
'diff': this.diffHtml,
|
||||||
|
'originalHtml': this.originalHtml,
|
||||||
|
'originalData': ve.dm.converter.getDataFromDom( $( '<div>' ).html( this.originalHtml )[0] ),
|
||||||
|
'editedData': editedData,
|
||||||
|
'editedHtml': ve.dm.converter.getDomFromData( editedData ).innerHTML
|
||||||
|
};
|
||||||
|
$.post( 'http://parsoid.wmflabs.org/_bugs/', { 'data': $.toJSON( report ) }, function () {}, 'text' );
|
||||||
|
};
|
||||||
|
|
||||||
/* Initialization */
|
/* Initialization */
|
||||||
|
|
||||||
ve.init.mw.targets.push( new ve.init.mw.ViewPageTarget() );
|
ve.init.mw.targets.push( new ve.init.mw.ViewPageTarget() );
|
||||||
|
|
Loading…
Reference in a new issue