Main Page: Difference between revisions

From Bulbapedia, the community-driven Pokémon encyclopedia.
Jump to navigationJump to search
mNo edit summary
Line 33: Line 33:


==Getting started==
==Getting started==
To register an account, go to [[Special:Userlogin]]. Enter your desired username and password, and click on the 'Create new account' button. (At present, this is not possible. Contact a sysop to create an account for you; to create an account if you're a sysop, enter the user's desired username and ''email address'', and click on the 'by email' button.)
To register an account, go to [[Special:Userlogin]]. Enter your desired username and password, and click on the 'Create new account' button.  


After you register, first consult the [[Bulbapedia:Policy|policy page]] for information on all of the policies, rules, and regulations of Bulbapedia.  If you're not interested in reading through everything quite yet and just want to start writing articles, you can visit our tutorial on [[Bulbapedia:How to create an article|how to create an article]]. After that, you can start contributing!
After you register, first consult the [[Bulbapedia:Policy|policy page]] for information on all of the policies, rules, and regulations of Bulbapedia.  If you're not interested in reading through everything quite yet and just want to start writing articles, you can visit our tutorial on [[Bulbapedia:How to create an article|how to create an article]]. After that, you can start contributing!
Line 45: Line 45:
A list of all pages which currently have content on them can be found at [[Special:Allpages]], and a list of categories can be found at [[Special:Categories]].
A list of all pages which currently have content on them can be found at [[Special:Allpages]], and a list of categories can be found at [[Special:Categories]].


Instructions on using MediaWiki, of which Bulbapedia is an instance of, can be found [http://meta.wikimedia.org/wiki/Help:Index here].  
Instructions on using MediaWiki, of which Bulbapedia is an instance of, can be found [http://meta.wikimedia.org/wiki/Help:Index here].


==Administrative Information==
==Administrative Information==

Revision as of 05:35, 13 February 2005

Welcome to Bulbapedia!

We are currently working on 53,851 articles.

Create an account or login

Notes from the Editor

Some things to keep in mind that I want frontpaged for now, but will edit into the Manual of Style when this thing goes public:

  • When referencing an episode, for now italicize it, because we're going to have massive problems when we load ep guides onto the 'pedia otherwise. It'll be easier--I think--to go through and link everything later, than to find all the broken links and direct them to where they need to go. I don't want wars over the titles of episodes and the proper translation of as-yet-unreleased episodes.
  • You don't need to ask permission to make articles.
  • When referencing a type, like Steel or Water, put in the brackets Steel (type), not Steel Type. However, you can use the | seperator to write "Steel-type" so it appears as such in the text, i.e. [[Steel (type)|Steel-type]]
  • If possible, when English and Japanese names are provided, make a redirect to the page from the opposite language's name. Just a reminder.

Getting started

To register an account, go to Special:Userlogin. Enter your desired username and password, and click on the 'Create new account' button.

After you register, first consult the policy page for information on all of the policies, rules, and regulations of Bulbapedia. If you're not interested in reading through everything quite yet and just want to start writing articles, you can visit our tutorial on how to create an article. After that, you can start contributing!

If you wish to familiarise yourself with Bulbapedia guidelines on how articles are written, consult Bulbapedia:Manual of style.

If you're unsure of a good place to start, simply click on the random page link on the left toolbar; if you see a red link on a page, it means that there is no content on that page. You can make it blue by adding content to that page.

A more direct method is to consult the list of wanted articles -- these are articles that have been linked to but have no content. Alternatively, if you don't like starting from scratch, there are numerous stub articles that could use more content.

A list of all pages which currently have content on them can be found at Special:Allpages, and a list of categories can be found at Special:Categories.

Instructions on using MediaWiki, of which Bulbapedia is an instance of, can be found here.

Administrative Information

To grant sysop or bureaucrat privileges, go to Special:Makesysop. This is available to bureaucrats only.

Article count

What does MediaWiki think an article is? The MediaWiki code is as follows:

# Would the given text make this article a "good" article (i.e.,
# suitable for including in the article count)?
function isCountable( $text )
{
	global $wgUseCommaCount, $wgMwRedir;

	if ( 0 != $this->mTitle->getNamespace() ) { return 0; }
	if ( $wgMwRedir->matchStart( $text ) ) { return 0; }
	$token = ($wgUseCommaCount ? ',' : '[[' );
	if ( false === strstr( $text, $token ) ) { return 0; }
	return 1;
}

This means that any article that is in the main namespace (i.e. not prefixed with Bulbapedia: or Help:) that is not a redirect that has a link (or at least a [[) is considered a countable article -- since virtually every article, even the stubs, have a category link, this can be considered a very inclusive article count.