|
"WP:FRIENDLY" redirects here. You may have been looking for Wikipedia's civility policy, "Do not insult the vandals", or "Please do not bite the newcomers".
Welcome to Friendly. What is Friendly?Friendly is a collection of JavaScripts that provide an interface similar to Twinkle (by using the morebits JavaScript library) for Wikipedia's more friendly, collaboration-oriented tasks. Currently, the implemented features are welcome templates, shared IP address, tagging, and article space templates, provided via tabs labeled "welcome" and "shared ip" when on a user talk page and "tag" when in article space. A "welcome" link is also placed on diff pages next to users that have empty talk pages. More features are always in the pipeline and Friendly is under ongoing development, so be sure to report any bugs or request new features on Friendly's talk page. Notes
FunctionalityFriendly adds additional features to various parts of Wikipedia. Each tab's ID is given to assist with further customization via additional user CSS or JavaScript. User Talk Namespace"welcome" TabThe welcome tab will welcome the user with selected template. If an article is specified in the input field, and the template supports an article link, Friendly will automatically link the template to the article you specified. All templates that support this are marked with an asterisk ("*"). In the case of normal welcome templates, the article would be one that the user contributed positively to. In the case of problem user welcome templates, the article would be one that the user vandalized or did not contribute positively to. This input field is automatically populated if the Friendly is now capable of supporting a custom list of templates that displays below the standard set of Welcome templates. If you have installed Friendly, you can add a list of templates that you would like to be added to the Welcome dialogue by properly defining the Tab element ID: "welcome" from DiffA welcome link will appear next to a user in a diff view if the user's talk page is empty. This allows you to quickly welcome the user with the template specified in the "shared ip" TabThe shared ip tab will tag the IP as a shared IP address. Most of the Shared IP templates require that the name of the organization that owns or operates the IP address be input. If one of these templates is selected, Friendly will require that you fill in the "Organization name" input field, which does support wikitext. Tab element ID: Article Namespace"tag" tabThe tag tab will tag the article with the template(s) of your choice. All templates that are checked will be added to the article in their proper respective locations. Templates that support it will automatically be added with the Four templates in the list, {{globalize}}, {{notability}}, {{current}}, and {{future}}, allow you to select from a list of subcategories of the respective templates. The standard template is the default, and selecting a subcategory is not required, but it does place a more specific version of the template on the article. If a {{globalize}} subcategory is selected and templates are being grouped into {{articleissues}}, the subcategory is ignored as {{articleissues}} only supports the standard {{globalize}} template. The {{notability}} subcategories are ignored in the same way when grouping. If the redirect URL parameter is set to "no" and there is no rcid URL parameter, the tag tab will assume that you are viewing a redirect page. Instead of presenting you with a normal set of article tags, the tab will present you with a set of redirect categorization tags, from Category:Redirect templates. Tab element ID: InstallationTo install all Friendly modules, including all future updates and additions:
You may wish to re-configure Friendly's default settings after installation. See below for instructions. Individual ModulesIf you just want to use one or more of the individual modules, here they are listed with their dependencies. The line For the welcome functionality, add:
importScript('User:AzaToth/morebits.js');
importScript('User:Ioeth/friendlywelcome.js');
For the shared IP tagging functionality, add:
importScript('User:AzaToth/morebits.js');
importScript('User:Ioeth/friendlyshared.js');
For the tagging functionality, add:
importScript('User:AzaToth/morebits.js');
importScript('User:Ioeth/friendlytag.js');
ConfigurationOptionally, to configure Friendly, copy the text below called FriendlyConfig, and paste it in your monobook.js file. (Per temporal disalignment it should not matter if you put the config before or after the includes). Each line in the object contains a specific setting which is described below. When changing settings, make sure not to remove the comma from the end of each line, and remember that some browsers dislike a comma on the last line. Default ConfigurationThis is the default configuration:
FriendlyConfig = {
summaryAd : " using [[WP:FRIENDLY|Friendly]]",
topWelcomes : false,
watchWelcomes : true,
markWelcomesAsMinor : true,
insertHeadings : true,
welcomeHeading : "== Welcome ==",
insertUsername : true,
insertSignature : true,
quickWelcomeMode : "auto",
quickWelcomeTemplate : "Welcome",
maskTemplateInSummary : true,
markSharedAsMinor : true,
groupByDefault : true,
watchTaggedPages : true,
markTaggedPagesAsMinor : true
};
Custom ConfigurationAlternatively, you may wish to only copy the settings you wish to change.
FriendlyConfig = {
key : value,
key : value,
...
key : value
};
Parameter DescriptionssummaryAdDefines what summary Ad to be added. Argument is a string, default to topWelcomesDefines if the welcome should be added to the top or bottom of the user's talk page. Argument is a boolean, default to watchWelcomesDefines if adding a welcome should add page to watchlist. Argument is a boolean, default to groupByDefaultDefines if the checkbox for template grouping should be checked by default. It is recommended that you not change this option. Argument is a boolean, default to markWelcomesAsMinorDefines if adding a welcome should be marked as a minor edit. Argument is a boolean, default to insertHeadingsDefines whether a heading is added to a welcome template that does not already contain one. Argument is a boolean, default to welcomeHeadingDefines what heading is to be added to welcome templates if Argument is a string, default to insertUsernameDefines if your username should be added to the template, if the template supports it. Example: {{welcome|Ioeth}}. Argument is a boolean, default to insertSignatureDefines whether a signature (~~~~) is added after the welcome template if the template has no signature. It is recommended that you not change this option. Argument is a boolean, default to quickWelcomeModeDefines which quick welcome mode Friendly will operate in when welcoming a new user directly from a historical diff page. Automatic mode will add the template defined in the The value of this argument must either be Argument is a string, default to quickWelcomeTemplateDefines which welcome template Friendly will use when welcoming a new user directly from a historical diff page. The value of this argument must exactly match one of the templates available from the "welcome" tab on a user talk page. Do not include the curly braces, only the template name, and make sure the capitalization matches. Argument is a string, default to maskTemplateInSummaryDefines whether Friendly will reference the specific template you used in the edit summary. This is useful if you do not want welcomed users to see that you welcomed them with {{welcomevandal}}, for instance. Argument is a boolean, default to markSharedIPAsMinorDefines if adding a shared IP template should be marked as a minor edit. Argument is a boolean, default to watchTaggedPagesDefines if adding a tag should add a page to watchlist. Argument is a boolean, default to markTaggedPagesAsMinorDefines if adding a tag should be marked as a minor edit. Argument is a boolean, default to Custom ParameterscustomWelcomeListFriendly's welcome functionality now supports custom welcome templates which are provided to the script by adding the To add custom template functionality to your Friendly welcome screen, insert the following code to the end of your FriendlyConfig, making sure to place a comma at the end of the previous current line:
customWelcomeList: [
{
label: '{{CustomWelcome}}: Custom welcome template description',
value: 'CustomWelcome' },
{
label: '{{CustomWelcome}}: Custom welcome template description',
value: 'CustomWelcome' }
]
Simply replace "CustomWelcome" with the name of the template that you would like to add to the script and either remove or replace the description on the "label" line. This section of your configuration can be extended to include as many custom welcome templates as you would like. Make sure to use a comma to separate each element in the array while not including one after the last element. customTagListThis feature is currently not implemented for Friendly's tagging functions, but will probably be coming soon. TroubleshootingAfter installing Friendly, new tabs will be added to the top of the page. If there aren't, try installing each script separately (copy from User:Ioeth/friendly.js). Remember, this script won't work unless you're using Firefox. UserboxesFriendly users may add these userboxes to their userpage.
|
This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License.
Mercedes Car
This site monitored by SitePinger.net