6095c44cb7
* Refactor module wiring to reduce redundancy * Update to jQuery 1.12.4 & jQuery Migrate 1.4.1 - fixes #2932 This updates to the latest jQuery 1.x and jQuery Migrate 1.x, the first step in upgrading to a modern jQuery. * Add a couple of bug fixes from Google Code SVN This is an unrelease version from the Google Code freebase-site repo which only has a few changes from the v4.3 release, but one of them is removing the `browser.msie` reference that jQuery Migrate is complaining about. * Use prop() for 'checked' and 'disabled' * Update jQuery 'value' property setting code to use val() * Use prop() instead of attr() to set 'selected' * Patch for jQuery >1.9
135 lines
4.3 KiB
JavaScript
135 lines
4.3 KiB
JavaScript
// Load the localization file
|
|
var dictionary = {};
|
|
$.ajax({
|
|
url : "command/core/load-language?",
|
|
type : "POST",
|
|
async : false,
|
|
data : {
|
|
module : "wikidata",
|
|
// lang : lang
|
|
},
|
|
success : function(data) {
|
|
dictionary = data['dictionary'];
|
|
lang = data['lang'];
|
|
}
|
|
});
|
|
$.i18n().load(dictionary, lang);
|
|
|
|
|
|
|
|
ExporterManager.MenuItems.push({});
|
|
ExporterManager.MenuItems.push(
|
|
{
|
|
id:"performWikibaseEdits",
|
|
label: $.i18n('wikidata-extension/wikidata-edits'),
|
|
click: function() { PerformEditsDialog.checkAndLaunch(); }
|
|
});
|
|
ExporterManager.MenuItems.push(
|
|
{
|
|
id:"exportQuickStatements",
|
|
label: $.i18n('wikidata-extension/qs-file'),
|
|
click: function() { WikibaseExporterMenuBar.checkSchemaAndExport("quickstatements"); }
|
|
});
|
|
ExporterManager.MenuItems.push(
|
|
{
|
|
id:"exportWikibaseSchema",
|
|
label: $.i18n('wikidata-extension/wikidata-schema'),
|
|
click: function() { WikibaseExporterMenuBar.checkSchemaAndExport("wikibase-schema"); }
|
|
}
|
|
);
|
|
|
|
WikibaseExporterMenuBar = {};
|
|
|
|
WikibaseExporterMenuBar.exportTo = function(format) {
|
|
var targetUrl = null;
|
|
if (format ==="quickstatements") {
|
|
targetUrl = "statements.txt";
|
|
} else {
|
|
targetUrl = "schema.json";
|
|
}
|
|
var form = document.createElement("form");
|
|
$(form).css("display", "none")
|
|
.attr("method", "post")
|
|
.attr("action", "command/core/export-rows/"+targetUrl)
|
|
.attr("target", "gridworks-export-"+format);
|
|
$('<input />')
|
|
.attr("name", "engine")
|
|
.val(JSON.stringify(ui.browsingEngine.getJSON()))
|
|
.appendTo(form);
|
|
$('<input />')
|
|
.attr("name", "project")
|
|
.val(theProject.id)
|
|
.appendTo(form);
|
|
$('<input />')
|
|
.attr("name", "format")
|
|
.val(format)
|
|
.appendTo(form);
|
|
|
|
document.body.appendChild(form);
|
|
|
|
window.open("about:blank", "gridworks-export");
|
|
form.submit();
|
|
|
|
document.body.removeChild(form);
|
|
};
|
|
|
|
WikibaseExporterMenuBar.checkSchemaAndExport = function(format) {
|
|
var onSaved = function(callback) {
|
|
WikibaseExporterMenuBar.exportTo(format);
|
|
};
|
|
if (!SchemaAlignmentDialog.isSetUp()) {
|
|
SchemaAlignmentDialog.launch(null);
|
|
} else if (SchemaAlignmentDialog._hasUnsavedChanges) {
|
|
SchemaAlignmentDialog._save(onSaved);
|
|
} else {
|
|
onSaved();
|
|
}
|
|
}
|
|
|
|
//extend the column header menu
|
|
$(function(){
|
|
|
|
ExtensionBar.MenuItems.push(
|
|
{
|
|
"id":"reconcile",
|
|
"label": $.i18n('wikidata-extension/menu-label'),
|
|
"submenu" : [
|
|
{
|
|
id: "wikidata/edit-schema",
|
|
label: $.i18n('wikidata-extension/edit-wikidata-schema'),
|
|
click: function() { SchemaAlignmentDialog.launch(false); }
|
|
},
|
|
{
|
|
id:"wikidata/manage-account",
|
|
label: $.i18n('wikidata-extension/manage-wikidata-account'),
|
|
click: function() { ManageAccountDialog.checkAndLaunch(); }
|
|
},
|
|
{},
|
|
{
|
|
id: "wikidata/import-schema",
|
|
label: $.i18n('wikidata-extension/import-wikidata-schema'),
|
|
click: function() { ImportSchemaDialog.launch(); }
|
|
},
|
|
{
|
|
id:"wikidata/export-schema",
|
|
label: $.i18n('wikidata-extension/export-schema'),
|
|
click: function() { WikibaseExporterMenuBar.checkSchemaAndExport("wikibase-schema"); }
|
|
},
|
|
{},
|
|
{
|
|
id:"wikidata/perform-edits",
|
|
label: $.i18n('wikidata-extension/perform-edits-on-wikidata'),
|
|
click: function() { PerformEditsDialog.checkAndLaunch(); }
|
|
},
|
|
{
|
|
id:"wikidata/export-qs",
|
|
label: $.i18n('wikidata-extension/export-to-qs'),
|
|
click: function() { WikibaseExporterMenuBar.checkSchemaAndExport("quickstatements"); }
|
|
},
|
|
|
|
]
|
|
}
|
|
);
|
|
});
|
|
|