Main Page

From Bulbapedia, the community-driven Pokémon encyclopedia.
Revision as of 03:37, 16 February 2005 by Evkl (talk | contribs)
Jump to navigationJump to search
Welcome to Bulbapedia!

We are currently working on 53,851 articles.

Create an account or login

New Editorial Edict

For now, please refrain from creating individual Pokémon pages, like Bulbasaur's. The staff is currently trying to come up with a standard format for said pages, and until said format is established, it'd probably be best if everyone's energies were directed elsewhere, to a place where they'll be both needed and guaranteed as useful.

Also, with respect to the element pages, the Grass page is a great example of what we're looking for. Clean, crisp, not overly flashy but certainly gets its point across.

One last thing--Thanks to everyone who's been onboard so far, it's already coming along so much better than I could've expected, and I'd just like to say keep up the good work! Thanks!

~Evan


Notes from the Editor

Welcome to Bulbapedia! All of the instructions on use, semantics, and the like can be found either below in Getting Started or via one of our quick links in the green toolbar to the right.

The staff of Bulbapedia has worked very hard in getting it to this point, but there's only so far any one small group can expand an encyclopedia, and after it tops out in size from our knowledge base or ability to work on it, the public is of more help than the staff in expanding and growing. That's the philosophy of a Wiki-based encyclopedia, and we're taking that to heart. We know there'll be differences of opinion, we know there'll be hard times and heated arguments, but we're going ahead with this project anyway, because it is our goal to compile the best, most comprehensive Pokémon database on the planet.

We're not there yet, but we're working on it, and you can help us. The staff of Bulbagarden.net and Bulbapedia hope you enjoy, contribute to, and use our newest service!

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 the 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.