MediaWiki:Common.js: Difference between revisions
From Vision
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": "images/Button_enter.png", | |||
"speedTip": "Line break", | "speedTip": "Line break", | ||
"tagOpen": "<br />", | "tagOpen": "<br />", | ||
Line 20: | Line 20: | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": " | "imageFile": "images/Button_upper_letter.png", | ||
"speedTip": "Superscript", | "speedTip": "Superscript", | ||
"tagOpen": "<sup>", | "tagOpen": "<sup>", | ||
Line 29: | Line 29: | ||
/* | /* | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": " | "imageFile": "images/Button_lower_letter.png", | ||
"speedTip": "Subscript", | "speedTip": "Subscript", | ||
"tagOpen": "<sub>", | "tagOpen": "<sub>", | ||
Line 54: | Line 54: | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": " | "imageFile": "images/Button_gallery.png", | ||
"speedTip": "Insert a picture gallery", | "speedTip": "Insert a picture gallery", | ||
"tagOpen": "\n<gallery>\n", | "tagOpen": "\n<gallery>\n", | ||
Line 62: | Line 62: | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": "images/ | "imageFile": "images/Button_blockquote.png", | ||
"speedTip": "Insert an Estimate template", | "speedTip": "Insert an Estimate template", | ||
"tagOpen": "{{EstimateCostDetails\n|REQ=Requirements Days\n|EST=Estimation Days\n|FS=Functional Specification Days\n|TS=Technical Specification Days\n|DEV=Development Days\n|ST=Testing and Release Days\n|IMP=Implementation Days\n}}", | "tagOpen": "{{EstimateCostDetails\n|REQ=Requirements Days\n|EST=Estimation Days\n|FS=Functional Specification Days\n|TS=Technical Specification Days\n|DEV=Development Days\n|ST=Testing and Release Days\n|IMP=Implementation Days\n}}", | ||
Line 70: | Line 70: | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": " | "imageFile": "images/Button_test_header.png", | ||
"speedTip": "Insert | "speedTip": "Insert a test plan template", | ||
"tagOpen": "{{TestPlan_Header\n|Title=Title of test plan\n|Log=Supimix log reference\n|Description=description of what is to be achieved\n|MenuAccess=Where on the menus the item can be found\n|Prerequisites=The prerequisites of the test\n|Objective=The details of what each group of tests is to achieve\n}}\n{{TestPlan_CycleHeader\n|Cycle=Numeric Cycle (i.e. 1)\n|Title=Area being tested in this cycle\n|Notes=Any notes or prerequisites for the tests following.\n}}\n\n{{TestPlan_CycleFooter}}\n", | "tagOpen": "{{TestPlan_Header\n|Title=Title of test plan\n|Log=Supimix log reference\n|Description=description of what is to be achieved\n|MenuAccess=Where on the menus the item can be found\n|Prerequisites=The prerequisites of the test\n|Objective=The details of what each group of tests is to achieve\n}}\n{{TestPlan_CycleHeader\n|Cycle=Numeric Cycle (i.e. 1)\n|Title=Area being tested in this cycle\n|Notes=Any notes or prerequisites for the tests following.\n}}\n\n{{TestPlan_CycleFooter}}\n", | ||
"tagClose": "", | "tagClose": "", | ||
Line 78: | Line 78: | ||
mwCustomEditButtons.push({ | mwCustomEditButtons.push({ | ||
"imageFile": " | "imageFile": "images/Button_insert_table.png", | ||
"speedTip": "Insert a table", | "speedTip": "Insert a table", | ||
"tagOpen": '{| class="wikitable"\n|', | "tagOpen": '{| class="wikitable"\n|', |
Revision as of 16:48, 2 June 2011
/* Any JavaScript here will be loaded for all users on every page load. */
/*
mwCustomEditButtons.push({
"imageFile": "http://upload.wikimedia.org/wikipedia/en/c/c9/Button_strike.png",
"speedTip": "Strike",
"tagOpen": "<s>",
"tagClose": "</s>",
"sampleText": "Strike-through text"
});
*/
mwCustomEditButtons.push({
"imageFile": "images/Button_enter.png",
"speedTip": "Line break",
"tagOpen": "<br />",
"tagClose": "",
"sampleText": ""
});
mwCustomEditButtons.push({
"imageFile": "images/Button_upper_letter.png",
"speedTip": "Superscript",
"tagOpen": "<sup>",
"tagClose": "</sup>",
"sampleText": "Superscript text"
});
/*
mwCustomEditButtons.push({
"imageFile": "images/Button_lower_letter.png",
"speedTip": "Subscript",
"tagOpen": "<sub>",
"tagClose": "</sub>",
"sampleText": "Subscript text"
});
mwCustomEditButtons.push({
"imageFile": "http://upload.wikimedia.org/wikipedia/en/5/58/Button_small.png",
"speedTip": "Small",
"tagOpen": "<small>",
"tagClose": "</small>",
"sampleText": "Small Text"
});
mwCustomEditButtons.push({
"imageFile": "http://upload.wikimedia.org/wikipedia/en/3/34/Button_hide_comment.png",
"speedTip": "Insert hidden Comment",
"tagOpen": "<!-- ",
"tagClose": " -->",
"sampleText": "Comment"
});
*/
mwCustomEditButtons.push({
"imageFile": "images/Button_gallery.png",
"speedTip": "Insert a picture gallery",
"tagOpen": "\n<gallery>\n",
"tagClose": "\n</gallery>",
"sampleText": "Image:Example.jpg|Caption1\nImage:Example.jpg|Caption2"
});
mwCustomEditButtons.push({
"imageFile": "images/Button_blockquote.png",
"speedTip": "Insert an Estimate template",
"tagOpen": "{{EstimateCostDetails\n|REQ=Requirements Days\n|EST=Estimation Days\n|FS=Functional Specification Days\n|TS=Technical Specification Days\n|DEV=Development Days\n|ST=Testing and Release Days\n|IMP=Implementation Days\n}}",
"tagClose": "",
"sampleText": ""
});
mwCustomEditButtons.push({
"imageFile": "images/Button_test_header.png",
"speedTip": "Insert a test plan template",
"tagOpen": "{{TestPlan_Header\n|Title=Title of test plan\n|Log=Supimix log reference\n|Description=description of what is to be achieved\n|MenuAccess=Where on the menus the item can be found\n|Prerequisites=The prerequisites of the test\n|Objective=The details of what each group of tests is to achieve\n}}\n{{TestPlan_CycleHeader\n|Cycle=Numeric Cycle (i.e. 1)\n|Title=Area being tested in this cycle\n|Notes=Any notes or prerequisites for the tests following.\n}}\n\n{{TestPlan_CycleFooter}}\n",
"tagClose": "",
"sampleText": ""
});
mwCustomEditButtons.push({
"imageFile": "images/Button_insert_table.png",
"speedTip": "Insert a table",
"tagOpen": '{| class="wikitable"\n|',
"tagClose": "\n|}",
"sampleText": "-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3"
});
/*
mwCustomEditButtons.push({
"imageFile": "http://upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png",
"speedTip": "Insert a reference",
"tagOpen": "<ref>",
"tagClose": "</ref>",
"sampleText": "Insert footnote text here"
});
*/