MediaWiki:Common.js: Difference between revisions
From CTLTMS
No edit summary |
No edit summary |
||
Line 54: | Line 54: | ||
"tagOpen": '{| border="1"\n|', | "tagOpen": '{| border="1"\n|', | ||
"tagClose": "\n|}\n", | "tagClose": "\n|}\n", | ||
"sampleText": "- bgcolor="silver"\n! header 1 !! header 2 !! header 3\n|-\n| row 1, cell 1 || row 1, cell 2 || row 1, cell 3" | "sampleText": "- bgcolor=\"silver\"\n! header 1 !! header 2 !! header 3\n|-\n| row 1, cell 1 || row 1, cell 2 || row 1, cell 3" | ||
}); | }); | ||
Revision as of 16:34, 20 February 2017
/* Any JavaScript here will be loaded for all users on every page load. */
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_small.png",
"speedTip": "Small",
"tagOpen": "<small>",
"tagClose": "</small>",
"sampleText": "Small Text"
});
mwCustomEditButtons.push({
"imageFile": "images/Button_gallery.png",
"speedTip": "Insert a picture gallery",
"tagOpen": "\n<gallery widths=600px heights=350px perrow=1>\n",
"tagClose": "\n</gallery>",
"sampleText": "Image:Example.png|''Caption1''\nImage:Example.png|''Caption2''"
});
mwCustomEditButtons.push({
"imageFile": "images/Button_CoverPage.png",
"speedTip": "Insert an Document Title Page",
"tagOpen": "{{Doc_Title\n|System=''Calidus'' System\n|Title=Doc Title\n|Reference=Document type and Supimix reference\n|Version=0.1\n|Date=9th May 2011\n}}\n",
"tagClose": "",
"sampleText": ""
});
mwCustomEditButtons.push({
"imageFile": "images/Button_LastPage.png",
"speedTip": "Insert an Document Final Page",
"tagOpen": "{{Doc_Appendix|\nAppendix=The Appendix Section. Defaults to A\n|Glossary=WCS|WMS|CTMS. Omit if no glossary is to be included.\n|Ref1=First reference document title. There can be up to 5 (Ref2, Ref3, etc). Omit those you do not want to use.\n|RefV1=First reference document version\n|RefDate1=First reference document date\n|Rev1=Authorising Name. Up to 3 may be specified (Rev2, Rev3)\n|Rev1Title=Job Title\n",
"tagClose": "\n}}\n",
"sampleText": "<!-- The following may also be added -->\n|Estimate=Enter Y if an estimate section is to be included. Use the following fields for the values. If the values are omitted, they default to Zero. Also include Client and Year for the correct rates.\n|REQ=Requirements Time\n|EST=Estimate Time\n|FS=Functional Specification Time\n|TS=Technical Specification Time\n|DEV=Development Time\n|ST=Testing Time\n|IMP=Implementation Time\n|Client=Client for estimate rates\n|Year=Year for estimate rates"
});
mwCustomEditButtons.push({
"imageFile": "images/Button_insert_table.png",
"speedTip": "Insert a table",
"tagOpen": '{| border="1"\n|',
"tagClose": "\n|}\n",
"sampleText": "- bgcolor=\"silver\"\n! header 1 !! header 2 !! header 3\n|-\n| row 1, cell 1 || row 1, cell 2 || row 1, cell 3"
});
var today = new Date();
mwCustomEditButtons.push({
"imageFile": "images/Button_comment.png",
"speedTip": "Insert a comment",
"tagOpen": '{{comment|text=',
"tagClose": "\n|sign=[[User:"+wgUserName+"]]|date="+today.getDay()+"/"+today.getMonth()+"/"+today.getFullYear()+" "+today.getHours()+":"+today.getMinutes()+":"+today.getSeconds()+"}}\n",
"sampleText": "Your Comment Here"
});