User:ArchivesPUG 01/common.js

From GATE
< User:ArchivesPUG 01
Revision as of 16:47, 16 January 2017 by Lorenzo Mancini (talk | contribs) (Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: var customizeToolbar = function () { $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'sections':...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */
var customizeToolbar = function () {

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'sections': {
		'annotation': {
			'type': 'toolbar', // Can also be 'booklet'
			'label': 'Annotation'
			// or 'labelMsg': 'section-emoticons-label' for a localized label
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'annotation',
	groups: {
		'text': {
			'label': 'TEI'
		}
	}
} );

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"head": {
			label: 'Head: "the <head> element is used to identify a heading prefixed to the start of any textual division, at any level" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/d/db/TEI_Head22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<head>',
					post: "</head>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"paragraph": {
			label: 'Paragraph: the <p> tag "marks paragraphs in prose" (TEI P5)',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/b/b3/TEI_P22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<p>',
					post: "</p>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"lb": {
			label: 'Line break: "<lb> (line break) marks the start of a new (typographic) line in some edition or version of a text" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/1/1b/TEI_Lb22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<lb/>',
					ownline: true
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"pb": {
			label: 'Page break: "<pb> (page break) marks the start of a new page in a paginated document" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/2/28/TEI_Pb22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<pb/>',
					ownline: true
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"add": {
			label: 'Addition: "<add> (addition) contains letters, words, or phrases inserted in the source text by an author, scribe, or a previous annotator or corrector" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/0/09/TEI_Add22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<add>',
					post: "</add>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"del": {
			label: 'Deletion: "<del> (deletion) contains a letter, word, or passage deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, or a previous annotator or corrector" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/b/bb/TEI_Del22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<del>',
					post: "</del>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"gap": {
			label: 'Gap: "<gap> indicates a point where material has been omitted in a transcription, whether for editorial reasons described in the TEI header, as part of sampling practice, or because the material is illegible, invisible, or inaudible" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/3/3e/TEI_Gap22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<gap/>',
					ownline: true
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"unclear": {
			label: 'Unclear: "<unclear> contains a word, phrase, or passage which cannot be transcribed with certainty because it is illegible or inaudible in the source" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/c/c7/TEI_Unclear22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<unclear>',
					post: "</unclear>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"sic": {
			label: 'Sic: "<sic> (Latin for thus or so) contains text reproduced although apparently incorrect or inaccurate" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/9/91/TEI_Sic22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<sic>',
					post: "</sic>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"underline": {
			label: 'Underline: marks underlined text.',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/b/b5/TEI_Und22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<hi rend="underline">',
					post: "</hi>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"superscript": {
			label: 'Superscript: marks a superscripted text.',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/9/92/TEI_Sup22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<hi rend="superscript">',
					post: "</hi>"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'text',
	tools: {
		"note": {
			label: 'Note: "<note> contains a note or annotation" (TEI P5).',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/f/f1/TEI_Note22px.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '<note>',
					post: "</note>"
				}
			}
		}
	}
});

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	section: 'annotation',
	groups: {
		'entities': {
			'label': 'Entities'
		}
	}
} );

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'entities',
	tools: {
		"name": {
			label: 'Annotate names',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/5/57/Icon_Users.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '[[citesName::',
					post: "]]"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'entities',
	tools: {
		"place": {
			label: 'Annotate places',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/7/76/Icon_Placeholder.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '[[citesPlace::',
					post: "]]"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'entities',
	tools: {
		"work": {
			label: 'Annotate works',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/e/e0/Icon_work.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '[[citesWork::',
					post: "]]"
				}
			}
		}
	}
});

$('#wpTextbox1').wikiEditor('addToToolbar', {
	section: 'annotation',
        group: 'entities',
	tools: {
		"object": {
			label: 'Annotate objects',
			type: 'button',
			icon: 'http://mediawikiarchivio.unigre.it/mediawiki/images/7/7e/Icon_object.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: '[[citesObject::',
					post: "]]"
				}
			}
		}
	}
});
};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
 if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
	mw.loader.using( 'user.options' ).then( function () { 
		// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
			).then( customizeToolbar );
		}
	 } );
}