|
|
(109 intermediate revisions by 28 users not shown) |
Line 1: |
Line 1: |
| <div style="text-align: center; margin: auto; width: auto; padding: 1.0em; background: #e8e8ff; color: #008; border: 1px solid #88a;">
| | {{Main Page}} |
| <div style="font-size: 3.0em;">Welcome to Bulbapedia!</div>
| |
| <p>We are currently working on [[Special:Statistics|{{NUMBEROFARTICLES}}]] [[#Article count|articles]].</p>
| |
| <p>'''[[Special:Userlogin|Create an account or login]]'''</p>
| |
| </div>
| |
| <center>'''This ''is'' the new server, in case you were wondering.'''</center>
| |
|
| |
|
| <div style="float: right; margin: 0.5em; padding: 0.5em; background: #e8ffe8; color: #000; border: 1px solid #8a8; width: auto;">'''Starting points'''
| | [[de:Hauptseite]] |
| * [[Bulbapedia:Policy|Bulbapedia policy]]
| | [[es:WikiDex]] |
| * [[Bulbapedia:How to create an article|How to create an article]]
| | [[fr:Portail:Accueil]] |
| * [[Bulbapedia:Manual of style|Manual of style]]
| | [[it:Home]] |
| | | [[ja:メインページ]] |
| * [[Special:Wantedpages|Wanted articles]]
| | [[zh:主页]] |
| * [[:Category:Stubs|Stub articles]]
| |
| | |
| '''Browsing'''
| |
| * [[:Category:Top-level categories|Top-level categories]]
| |
| * [[Special:Allpages|All pages]]
| |
| * [[Special:Categories|All categories]]
| |
| | |
| '''Offsite help'''
| |
| * [http://meta.wikimedia.org/wiki/Help:Contents MediaWiki Help]
| |
| * [http://en.wikipedia.org/wiki/Help:Contents Wikipedia Help]
| |
| * [http://meta.wikimedia.org/wiki/Documentation:_Administrator%27s_Guide Administrator's Guide]</div>
| |
| | |
| =Updates=
| |
| | |
| *Keep up the good work! It seems like every day, there's less and less conflict and more and more cooperation.
| |
| | |
| *So long as you include the Pokémon Infobox with a Pokémon article (Zhen, please fill in any details that I'm missing here for a how-to), you may go ahead and fill in all ____ (Pokémon) articles, but don't make them too expansive. Any more information than what we currently have in [[Geodude (Pokémon)|Geodude]] or [[Bulbasaur (Pokémon)|Bulbasaur]]'s entry would be overly much.
| |
| | |
| *Elements pages should still look like the [[Grass (type)|Grass-type]] page.
| |
| | |
| *If possible, only link out to an article once per article. Exceptions are found, basically, with the "Category:Elemental types" articles and only those.
| |
| | |
| *Make sure pages are appropriately linked to others.
| |
| | |
| ==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!
| |
| | |
| <div style="clear: both;"></div>
| |
| | |
| ==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 [[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!
| |
| | |
| If you wish to familiarise yourself with Bulbapedia guidelines on how articles are written, consult [[Bulbapedia:Manual of style|the Manual of style]].
| |
| | |
| If you're unsure of a good place to start, simply click on the [[Special:Randompage|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 [[Special:Wantedpages|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 [[:Category:Stubs|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 [http://meta.wikimedia.org/wiki/Help:Index 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 <nowiki>[[</nowiki>) 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.
| |