<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://tfwiki.duckdns.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=McFly</id>
	<title>MediaWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://tfwiki.duckdns.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=McFly"/>
	<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php/Special:Contributions/McFly"/>
	<updated>2026-05-21T12:44:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=1582304</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=1582304"/>
		<updated>2022-01-06T22:21:05Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Mighty Feature, Mighty Server Drain===&lt;br /&gt;
* The Go-Box!&lt;br /&gt;
* No, seriously, the Go-Box was originally written to poll [http://tfwiki.net/mediawiki/index.php?title=Template:Goicons&amp;amp;action=raw| the Goicons template] each time it runs, as was the generator used for off-site signature blocks.  So every time you pull up a page with a Gobox, the server polls itself for that list, using up a second connection, AND taxing the server to execute the PHP code.&lt;br /&gt;
* The GoBoxes are also called from MonacoBook, the TFWiki skin, so every time you pull up a page?  You use up an Apache process JUST TO GRAB SOME RARELY-UPDATED XML.&lt;br /&gt;
* We&#039;ve changed that to poll a file in &amp;lt;code&amp;gt;/var/lib/mediawiki/goicons.xml&amp;lt;/code&amp;gt; instead, which is updated via a cron job.  Make sure you replicate that whole deal if you ever duplicate the wiki, it&#039;s kinda important.&lt;br /&gt;
* Or, you could NOT replicate this step, and suffer the consequences of increased CPU load, and have an annoyed sysadmin.  You don&#039;t want that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
* I&#039;ve had to make manual changes to the 1.19 codebase to function cleanly with PHP 5.4 and some long-deprecated functions used in our older codebase:&lt;br /&gt;
** MemcachedClient.php was defining parameters to the stream_select function directly in the function call.  These variables are now defined prior to the function call.  This change appears to be live in later versions of the client.&lt;br /&gt;
** ConfirmEdit was calling a wgSeedRandom function that has been deprecated.  I&#039;ve commented it out, as that seems to have been the accepted solution to the problem.&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.js]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. You can use [[Special:Mypage/common.js|User:Username/common.js]] to affect all skins.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged {{w|Virtual private server|VPS}} provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a {{w|Squid cache|Squid}} reverse proxy cache for all anonymous users, and a small {{w|memcached}} instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 7.0, Kernel 3.11.6&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.22&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* PHP: 5.4.4&lt;br /&gt;
* MediaWiki:  1.19.5&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
** Done, more or less.  Memcached runs on the Squid servers.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
** Soon!&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
** Done and done, we&#039;re running pretty smoothly at present.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
* We are running a slightly newer version of the ConfirmEdit extension, specifically the one for Mediawiki 1.16 (it works with 1.15 fortunately) primarily because the newer version comes with QuestyCaptcha, which does a lot better job of keeping the spammers out.&lt;br /&gt;
** ConfirmEdit is now the 1.19 version, keeping things in-line with the Debian package manager.&lt;br /&gt;
* Multi-Category Search is presently disabled, it was borking the server completely.  We&#039;ll need to do an error trace later.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=1077303</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=1077303"/>
		<updated>2016-03-24T03:12:03Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Informing new users of the recent anti-spam measures */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
&amp;lt;br/&amp;gt; &amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Wiki Technical Information:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers_Wiki:Tech|A Not So Brief Summary of the Horrible Things That McFly and Co. Have Done To Keep This Wiki From Melting Down]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Template proposal ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m getting really sick of cleaning up fiction note templates, so, hey, here&#039;s an idea. Every single one from now on has to actually be brought up here before the community before it&#039;s implemented and not done willy-nilly by one person or a small group of editors. I realize that, as a wiki, we are going to inherently have continuity boners, but the recent trend of drowning character pages in notes is annoying and intrusive. The idea that we need to mention every point of continuity minutiae even in articles like fucking [[universal greeting]] is obnoxious and needs to &#039;&#039;stop&#039;&#039;. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 11:13, 8 January 2016 (EST)&lt;br /&gt;
:I agree. Things like &amp;quot;Regeneration One is a continuation of the Marvel Comics continuity&amp;quot; don&#039;t need to be in the middle of character write-ups. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 12:30, 8 January 2016 (EST)&lt;br /&gt;
::The Marvel thing is a unique case that at least is relevant to character write ups—it tells readers that the Marvel UK stuff mixed into the Marvel US stuff doesn&#039;t count. (Of course, this only applies to articles that actually have sections for the original Marvel comics.) The text in the notes could stand to be trimmed down, though. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 12:53, 8 January 2016 (EST)&lt;br /&gt;
:::Do you have some other examples of unnecessary notes we could discuss specifically? I caught the 2001 Car Robots note you mentioned from [[universal greeting]], and I agree it&#039;s pointless unless there&#039;s actually an RiD vs. CR distinction to be made. --[[User:Xaaron|Xaaron]] ([[User talk:Xaaron|talk]]) 13:04, 8 January 2016 (EST)&lt;br /&gt;
::::Wings, Classics, RG1 on pages without the continuity they&#039;re referring to. Ask Vector Prime. I&#039;m bringing this up now because we need to develop a better way of vetting templates that are theoretically going to be used on many pages. One or two &amp;quot;yes&amp;quot; reponses on some hidden talk page most people don&#039;t notice shouldn&#039;t be used as a community-wide consensus on things that dramatically alter the reading experience across multiple pages. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:12, 8 January 2016 (EST)&lt;br /&gt;
:::::And looking at the other stuff we have, Template:Notecmn could easily be made as part of the actual prose and flow more naturally that way, for example. (&amp;quot;In a divergent timeline, blahblah&amp;quot;). [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:17, 8 January 2016 (EST)&lt;br /&gt;
:::::And there&#039;s [[:Template:Notemoviebio]], which explains what is a regular occurrence in all of Transformers fiction for no real reason. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:19, 8 January 2016 (EST)&lt;br /&gt;
::::::A similar one is [[:Template:Notetitantlg]], which I tried to make pointless when we overhauled the movie character pages a while back and which I think we ditched &#039;&#039;most&#039;&#039; uses of, but is still out there. - [[User:Chris McFeely|Chris McFeely]] ([[User talk:Chris McFeely|talk]]) 13:22, 8 January 2016 (EST)&lt;br /&gt;
:::::::Not quite the same situation, but I&#039;d like to chime in that I&#039;m not a big fan of [[:Template:ongoing]]. Most of the time, editors completely forget to include it on the appropriate sections, it reiterates something that&#039;s obvious (&amp;quot;if there&#039;s information missing here, you should add it.&amp;quot;) and it&#039;s a note that only gets put up so that it can be eventually be taken down. --[[User:Ascendron|Ascendron]] ([[User talk:Ascendron|talk]]) 13:27, 8 January 2016 (EST)&lt;br /&gt;
::::::::I agree that it&#039;s quite useless when we already have stub templates. Either information is missing or it isn&#039;t and people just leave it up on pages that really don&#039;t need it because it&#039;s not that noticeable. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:33, 8 January 2016 (EST)&lt;br /&gt;
:::::::::Ehhhhhn. I&#039;m willing to let &amp;quot;ongoing&amp;quot; live, as, well, there&#039;s a TON of &amp;quot;dead&amp;quot; fictions and only a few currently-updating ones, and letting people know which ones are likely to actually &#039;&#039;continue&#039;&#039; and not just be a storyline dead-end is at least marginally informative. &amp;quot;Stub&amp;quot; can mean &amp;quot;it came out already and no-one&#039;s bothered yet&amp;quot;, which is... different than &amp;quot;this cuts off because the scheduled continuation hasn&#039;t come out yet&amp;quot;. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 08:12, 10 January 2016 (EST)&lt;br /&gt;
::::Also, if you find yourself overburdened with certain tasks, don&#039;t be afraid to ask for help. --[[User:Ascendron|Ascendron]] ([[User talk:Ascendron|talk]]) 13:08, 8 January 2016 (EST)&lt;br /&gt;
:::::Thanks for taking care of the CR note. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:12, 8 January 2016 (EST)&lt;br /&gt;
::::::No prob. As for the RG1 note, I agree that it would look nicer as a single line of text. I&#039;m having difficulty reducing it in length without leaving out something crucial though. I&#039;m putting it on the back-burner for now, but I&#039;ll keep it in mind. --[[User:Ascendron|Ascendron]] ([[User talk:Ascendron|talk]]) 13:18, 8 January 2016 (EST)&lt;br /&gt;
:::::::Tried cutting it down a bit. The G2 bit was redundant. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:43, 8 January 2016 (EST)&lt;br /&gt;
::::::::Ah yes. Much better. --[[User:Ascendron|Ascendron]] ([[User talk:Ascendron|talk]]) 13:48, 8 January 2016 (EST)&lt;br /&gt;
:::::::::Yeah, that&#039;s equally informative, but also far less intrusive. Nice work, Saix -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 13:53, 8 January 2016 (EST)&lt;br /&gt;
I just wanna say that I&#039;m glad I&#039;m not the only one who thinks we have too many goddamned templates. [[User:Escargon|Escargon]] ([[User talk:Escargon|talk]]) 15:03, 8 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
Two templates for discussion: Template:TransformersComicMagazin and [[:Template:GIJoeTransformersfiction]]. Necessary or not? I feel like the former states what&#039;s already obvious by the fact that it&#039;s in its own section (&amp;quot;Comic-Magazin is not Marvel&amp;quot;), while I dunno about the latter. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 15:43, 8 January 2016 (EST)&lt;br /&gt;
:Transformers Magazin could probably be done without. The {Gi joe transformers fiction} one, on the other hand, should probably be kept. With the way we use the {noteukonly} and generally treat the US and UK comics, I feel that we kinda need to point out &amp;quot;hey, unlike just about everything else from Marvel US, &#039;&#039;this&#039;&#039; doesn&#039;t actually fit into the Marvel UK &#039;verse.&amp;quot; -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 15:53, 8 January 2016 (EST)&lt;br /&gt;
::The Joe one is terrible. It&#039;s just plopped into the middle of fiction write-ups with no specification as to what text it refers to. - [[User:Chris McFeely|Chris McFeely]] ([[User talk:Chris McFeely|talk]]) 16:04, 8 January 2016 (EST)&lt;br /&gt;
:::Yeah, I can understand the &#039;&#039;purpose&#039;&#039;, but the execution just doesn&#039;t work at all. And I don&#039;t think it belongs on the issue pages. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 16:06, 8 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
I don&#039;t do much fiction-section work anymore, but if I can identify part of the problem &#039;&#039;with the fiction itself&#039;&#039;... unlike most franchises, TFs has a metric fuckton of &amp;quot;major&amp;quot; divergent splinter timelines. I mean, how many different Marvel G1 comic timeline spinoffs do we have now that don&#039;t actually relate to each other? It can be difficult at first look of a page to tell the difference between a series of proper, one-timeline sequel-series and, well, the clusterfuck that is post-Marvel-G1-related stuff branching out like a hydra. So I&#039;m loathe to just run with the &amp;quot;well everyone reading thew wiki should know this&amp;quot; mentality.&amp;lt;br&amp;gt;&lt;br /&gt;
So,  can see &#039;&#039;why&#039;&#039; the templates began, but when we started getting more and more branches? A bit out of hand. And worse, it&#039;s not quite a thing the base wiki organization tools are good at adapting and making obvious. (Frankly I find it tricky to tell sometimes the difference between a &amp;lt;nowiki&amp;gt;===&amp;lt;/nowiki&amp;gt;-subsection and a &amp;lt;nowiki&amp;gt;====&amp;lt;/nowiki&amp;gt;-subsection, but that&#039;s another quibble for later).&amp;lt;br&amp;gt;&lt;br /&gt;
I think a good amount of this can be mitigated with some creative rewriting of the sections&#039; openings, &amp;quot;ten years after the battle of Klo&amp;quot; or whatnot. And certainly that doesn&#039;t even need to be brought up if it&#039;s just a one-off page of a piece of minor technology from one issue of a spinoff. But for larger pages with a buttload of timeline-fragments?&amp;lt;br&amp;gt;&lt;br /&gt;
We might want to look into collapsible Notes. Just a single template that can be adapted not just for this, but, well, for anything. Whack it up top, collapsed, have it say &amp;quot;Continuity Note: (more)&amp;quot; (not as a default), then people can click on it and see &amp;quot;well this continuity branches off from blardeeblar and has no relation to blardeeblar&amp;quot;. This way the clutter is minimal, the information on our confusing mess of fiction is right at the fingertips.&amp;lt;br&amp;gt;&lt;br /&gt;
Just a thought.--[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 16:31, 8 January 2016 (EST)&lt;br /&gt;
:This sounds useful. [[User:S.H.I.E.L.D. Agent 47|S.H.I.E.L.D. Agent 47]] ([[User talk:S.H.I.E.L.D. Agent 47|talk]]) 16:47, 8 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
:I love this idea. Collapsable notes could solve a lot of the problems we&#039;ve been having with the templates as of late. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 17:12, 8 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
:I just took a brief look at the voiceactor template, since that does basically what I&#039;m looking at, and even that template&#039;s workings are beyond my ability to understand and adapt into a collapsible Note. So um. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 18:26, 8 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
::It depends how you want it to work. Something like &amp;lt;nowiki&amp;gt;{{cnote|text 1|text 2}}&amp;lt;/nowiki&amp;gt; to produce:&lt;br /&gt;
&amp;lt;div class=&amp;quot;tt1_graynote&amp;quot;&amp;gt;text 1 &amp;lt;span class=&amp;quot;ocreditspan&amp;quot;&amp;gt;text 2&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
::Or just &amp;lt;nowiki&amp;gt;{{cnote|text 1}}&amp;lt;/nowiki&amp;gt; and&lt;br /&gt;
&amp;lt;div class=&amp;quot;tt1_graynote&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;ocreditspan&amp;quot;&amp;gt;text 1&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
::It wouldn&#039;t be difficult to knock either of those templates up --[[User:Emvee|Emvee]] ([[User talk:Emvee|talk]]) 09:50, 9 January 2016 (EST)&lt;br /&gt;
:::Expanding off of what Emvee posted here, I&#039;ve worked up a collapsible note template which can display a custom header, custom visible text and hideable text that is either custom or derived from a preset name. The first draft, examples and documentation can be found here: [[User:Tigerpaw28/Sandbox/Template:CollapseNote]]. All critiques are welcome. --[[User:Tigerpaw28|Tigerpaw28]] ([[User talk:Tigerpaw28|talk]]) 18:50, 9 January 2016 (EST)&lt;br /&gt;
::::Is there a way to put that in a gray box so it matches with the rest of our Notes? I think this has legs. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 23:49, 9 January 2016 (EST)&lt;br /&gt;
:::::D&#039;oh! There is. In fact, I actually did have the box but the CSS for it is only available in my personal CSS file at the moment. I&#039;ll go integrate that into the template itself for now, then once this is approved maybe it can be moved to a site wide CSS file to reduce template clutter.--[[User:Tigerpaw28|Tigerpaw28]] ([[User talk:Tigerpaw28|talk]]) 01:40, 10 January 2016 (EST)&lt;br /&gt;
:::::Okay, the CSS is now included in the template so users besides myself can see the gray box. --[[User:Tigerpaw28|Tigerpaw28]] ([[User talk:Tigerpaw28|talk]]) 01:50, 10 January 2016 (EST)&lt;br /&gt;
::::::I love it. Nice work, Tigerpaw. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 03:37, 10 January 2016 (EST)&lt;br /&gt;
::::::Seconded, good stuff. --[[User:Emvee|Emvee]] ([[User talk:Emvee|talk]]) 04:16, 10 January 2016 (EST)&lt;br /&gt;
::::::I&#039;ll stick the css in the common file when everyone&#039;s happy. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 16:29, 10 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
Speaking of notes and templates, can we also scrub the IDW notes that say &#039;&#039;&amp;quot;[[Revelation (IDW)|Revelation]] was shorter than it should&#039;ve been because [[Simon Furman]] was fired.&amp;quot;&#039;&#039; and the Dreamwave notes that say &#039;&#039;&amp;quot;Because Dreamwave collapsed, plot threads were left dangling.&amp;quot;&#039;&#039;...unless those notes are &#039;&#039;specifically&#039;&#039; contributing something to the character&#039;s page? --[[User:Xaaron|Xaaron]] ([[User talk:Xaaron|talk]]) 13:53, 15 January 2016 (EST)&lt;br /&gt;
:I&#039;d say yes. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 14:16, 15 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== More Prominence for IDW ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m going to propose a change, because the above discussion reminded me of something I find annoying -- the position of IDW in the Fiction sections. At this point, I believe IDW is the longest running continuous fiction in Transformers history. Yet while the 30 year cartoon and Marvel Comic are easy to pick out due to their position at the top or their multitude of subcategories, IDW is typically found near the bottom of the list, nestled in between Japanese micro-continuities, Sticker Adventures and, god help us, &#039;&#039;The Beast Within&#039;&#039;.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Is there a better configuration we could work with? I&#039;d be supportive of a &amp;quot;Major Fiction&amp;quot; and &amp;quot;Minor Fiction&amp;quot; breakdown for the traditional &amp;quot;Fiction&amp;quot; section, if we could all peacefully agree to what counts as Major and Minor. Another thought I had was to do away with the &#039;&#039;Ongoing Fiction Template&#039;&#039;, and just have &amp;quot;Ongoing Fiction&amp;quot; automatically at the top and &amp;quot;Previous Fiction&amp;quot; underneath.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Any of this sound worth looking into more? --[[User:Xaaron|Xaaron]] ([[User talk:Xaaron|talk]]) 21:08, 11 January 2016 (EST)&lt;br /&gt;
: Absolutely friggin&#039; not, never or ever.  Organizing fiction due to perceived prominence is counter to the very spirit this wiki was founded on.  (It&#039;s also amazingly subjective and would be a headache to argue over indefinitely.)  --[[User:ItsWalky|ItsWalky]] ([[User talk:ItsWalky|talk]]) 00:36, 12 January 2016 (EST)&lt;br /&gt;
::Wasn&#039;t that the point of changing the disambiguation pages though? So that the more prominent stuff was at the top and had pictures to help people? [[User:Omegatron|omegatron]] ([[User talk:Omegatron|talk]]) 12:23, 12 January 2016 (EST)&lt;br /&gt;
:::That kind of potential slippery-sloping was why I had misgivings about that change in the first place.  But Disambig pages are navigation pages, and articles are not, and I have faith that we can recognize the different needs for pages according to their utility and not just make everything the same just because it makes our brains feel superficially happier.  But let me put it this way: Imagine Grapple&#039;s page.  In a &amp;quot;we put IDW first because it&#039;s important&amp;quot; world, a dinky subsection in which he appears in the background twice is given precedence over a Big Looker storybook in which he is a major character.  IDW isn&#039;t always super important to a character&#039;s page just because its fiction&#039;s gone on a decade!  And here&#039;s the kicker -- for those folks who&#039;ve appeared a buttload in IDW, those sections are split off into their own subpages and navigation at the very top of the page leads you right there, effectively already giving everyone this proposed functionality.  And without losing the information of real-world chronological release order that levels the canonicity playing field, I might add.  --[[User:ItsWalky|ItsWalky]] ([[User talk:ItsWalky|talk]]) 14:00, 12 January 2016 (EST)&lt;br /&gt;
::::Right. The disambiguation page thing wasn&#039;t something brought up on a whim. It&#039;s not a thing I&#039;d propose for any other &amp;quot;type&amp;quot; of page, because disambig pages serve a different purpose than almost every other. That requires some special consideration. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 14:15, 12 January 2016 (EST)&lt;br /&gt;
:No, no, no, no and no, with a side order of no and no for dessert. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 04:08, 12 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
:Just throwing this out there as an alternative suggestion to moving the sections around: what do people think of the idea of bolding major sections in the table of contents, so for Optimus you&#039;d end up with something [[:File:Contents bold test.jpg|like this]]. For the sake of preventing arguments we&#039;d reserve it for the really prominent G1 continuities (G1 and BW cartoons, Marvel, IDW and possibly Dreamwave comics), since it&#039;s not generally a problem for other continuity families. I&#039;m thinking this could be done very simply in CSS without having to edit a ton of pages, though it would mean that characters with only an IDW fiction section would have it bolded in their contents listing. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 17:30, 12 January 2016 (EST)&lt;br /&gt;
::That&#039;s got some potential, I think. I don&#039;t think single-fiction character with bold in their TOC would be a problem. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 17:48, 12 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
:This ties into an old proposal from way back that I&#039;d also found in my Community Portal re-read, and was brought up on Allspark (and I&#039;d briefly mentioned here recently); the visual differences between subheaders are really quite minimal. It&#039;s hard to tell at a look where one continuity-line ends and the other begins. there&#039;s got to be something we can do just &#039;&#039;&#039;&#039;&#039;visually&#039;&#039;&#039;&#039;&#039; to make these divisions easier to identify by sight. Can we make the header-text for continuity-breaks centered? If we wanna get fancy, can we make a graphic the header? --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 18:47, 12 January 2016 (EST)&lt;br /&gt;
::Okay, apparently you [[User:M_Sipher/Sandbox:Fiction_header_experiment|CAN center section headers]]. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 19:32, 12 January 2016 (EST)&lt;br /&gt;
:::Did some experimenting and [[User:Tigerpaw28/Sandbox|found a way to do this]]. Requires a little bit of HTML/CSS inside the header but easily doable I think. --[[User:Tigerpaw28|Tigerpaw28]] ([[User talk:Tigerpaw28|talk]]) 23:04, 12 January 2016 (EST)&lt;br /&gt;
::::Since the initial concern, at least, was IDW, can someone sandbox a G1 character with an IDW section to see how that might look? [[Pipes (G1)]] seems like a good candidate, since he&#039;s got a good-sized IDW section that also isn&#039;t so big it should just be a subpage. -- [[User:Dark T Zeratul|Dark T Zeratul]] ([[User talk:Dark T Zeratul|talk]]) 23:13, 12 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
I&#039;ve grown pretty iffy on using images as headers, honestly. There&#039;s a lotta &amp;quot;standalone&amp;quot; timelines that don&#039;t really have logos and having only SOME major headers be logo images... ehhhhhn. Might be best to just stick with text, maybe a thin bar above, with a wiki-wide change to a thicker tier-1-header-bar. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 00:12, 13 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
Actually? Second thoughts, no. This would likely start too many arguments. [[User:Sky Shadow|Sky Shadow]] ([[User talk:Sky Shadow|talk]]) 10:05, 13 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
Another proposal after I had a thought just now: [[:File:H3 dashed overlines.jpg|dashed overlines]]. The difference should be enough to differentiate from the underlines on h2s, and they nicely group together related stuff. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 18:46, 26 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
==The Goal Of The Wiki==&lt;br /&gt;
(slight editing of something I posted to the Allspark&#039;s wiki thread)&lt;br /&gt;
&lt;br /&gt;
A little while back I decided to rummage through the Community Portal archives... from the beginning. The earliest stages, when we were hammering out how to lay out the damn pages, what we should disambiguate by, etc. Saw the suggestions for making information more readily-accessible (character appearance tables, the GO! Box, the navigation templates), the &amp;quot;common wiki&amp;quot; practices we rejected because they just could not apply to this franchise (character infoboxes, for example, thanks to the many many many bodies the characters could have), up through the big move away from Wikia when they started really fucking us over with their ads.&lt;br /&gt;
 &lt;br /&gt;
And during that lonnnnng string of arguments with Wikia staff, when we tried (repeatedly) to explain why this &amp;quot;only not-signed-in readers will see the ads so why are you complaining since you don&#039;t see the page-ruining ads see this will somehow make money!&amp;quot; thing was utter bullshit...&lt;br /&gt;
 &lt;br /&gt;
:&#039;&#039;&amp;quot;We create the content on this wiki FOR casual readers.&amp;quot;&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
Re-read that. &#039;&#039;&#039;&#039;&#039;RE-FUCKING-READ THAT.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
The wiki lost that mentality somewhere. At some point in the last few years, the wiki stopped being about the readers, what would make the vast ocean of material accessible and entertaining to them. It became a micro-minutia-based circlejerk. It became editors confusing anal-retentive busywork (based on the strictest interpretation of rules that always were meant to be applied with a slight degree of malleability because our subject matter absolutely HAS to be handled that way) with productive and useful updating. And with the advent of the Facebook AVP, it became &amp;quot;gee now I can make Real Transformers wheeeeee&amp;quot; with even more micro-minutia and bad-faith gaming of the canon policy that was originally meant to give equal space to the obscure so we wouldn&#039;t have the &amp;quot;prominence = more deserving&amp;quot; mentality (plus stuff very specifically made to create circumstances to middle-finger policies that have served us well for a decade prior).&lt;br /&gt;
 &lt;br /&gt;
Thus, people who&#039;ve worked for a decade to make the wiki something huge and special and a wiki other fandoms look at and go &amp;quot;holy shit, we need something like this&amp;quot; find themselves frustrated and edging away as the spirit of the whole thing turns into this sour, solipsistic nigh-gatekeepery up-its-own-ass wank festival, especially when certain subjects just won&#039;t. Goddamn. STOP.&lt;br /&gt;
 &lt;br /&gt;
From one of our newest regulars:&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&amp;quot;Hell, I&#039;ve only had to deal with one day of GoBots discussion and I&#039;m already sick of it! I can&#039;t even begin to imagine what it must be like to deal with this shit on multiple different occasions over the course of several years, but I bet it&#039;s unpleasant.&amp;quot;&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
So when I see &amp;quot;hey why don&#039;t we move IDW sections up because I think it&#039;s more important&amp;quot; or &amp;quot;why don&#039;t we rename every character in the Japanese-fiction writeups to their Japanese names&amp;quot;, yeah, I&#039;m gonna respond harsher because it&#039;s kind of hit that point where we have to start bringing the hammer down hard to keep this thing even remotely accessible to anyone who isn&#039;t fully engaged in the minutia of TFdom.&lt;br /&gt;
 &lt;br /&gt;
I think wiki editors (and others) need to stop and have a good think about WHY they&#039;re doing what they&#039;re doing, and who they&#039;re actually doing it for, and, ultimately, if they should actually be doing it.&lt;br /&gt;
 &lt;br /&gt;
There&#039;s an important difference between &amp;quot;can&amp;quot; and &amp;quot;should&amp;quot;, and too many don&#039;t see it. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 04:08, 12 January 2016 (EST)&lt;br /&gt;
:&#039;&#039;look i already apologised for the japanese name thing okay&#039;&#039;&lt;br /&gt;
:Well, said, though, and you&#039;ve given me something to think about. --[[User:Riptide|Riptide]] ([[User talk:Riptide|talk]]) 05:21, 12 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
:...Yeah, I&#039;m taking exception to this.&lt;br /&gt;
&lt;br /&gt;
:Because of recent events, I wasn&#039;t expecting anyone to jump for joy, but this is a bit much. First of all, &amp;quot;&#039;&#039;hey why don&#039;t we move IDW sections up because I think it&#039;s more important&#039;&#039;&amp;quot; is reductive and dismissive to the facts on the table and the argument I presented. IDW being &amp;quot;ongoing fiction&amp;quot; isn&#039;t my subjective opinion, it&#039;s a fact. It&#039;s also the longest running mass-market fiction not only ongoing right now, but also in Transformers history. So I&#039;m not some weebo saying, &amp;quot;I like Japan, so other people must want Japan to be more prominent, too.&amp;quot; (no offense, Riptide -- just for the argument) We were discussing a case of &#039;&#039;factual&#039;&#039; prominence, not the &amp;quot;perceived prominence&amp;quot; just inside my own silly head.&lt;br /&gt;
&lt;br /&gt;
:And I don&#039;t need &#039;&#039;&amp;quot;We create the content on this wiki FOR casual readers.&amp;quot;&#039;&#039; repeated back to me because it was you, M &amp;quot;Not lovin&#039; this idea&amp;quot; Sipher I was thinking of, saying those very words, which made me think this was a good idea.&lt;br /&gt;
&lt;br /&gt;
:Maybe we have different ideas about what casual readers are, but I think of them as new/returning fans who came here because of some ongoing fiction they just saw, and might like to learn more about. If they&#039;re watching &#039;&#039;Robots in Disguise&#039;&#039; or &#039;&#039;Rescue Bots&#039;&#039;, that&#039;s cool -- most of those character pages are traceable by (RID) or (RB) disambigs, which is simple enough to figure out. And their Fiction box sections are (mostly) minimal enough to glance over and find what you wanted.&lt;br /&gt;
&lt;br /&gt;
:But what about the comics? Well, first they have to know IDW is Generation 1, which isn&#039;t exactly on the cover of the comics. Then they have to know the Fiction section on a character&#039;s page is organized by release date. You and I know that, but is that rule actually posted in a FAQ somewhere so we could expect a casual reader to know it? The way Sunbow and Marvel subdivide on most pages, a casual reader could be forgiven for thinking the most prominent stuff is &#039;&#039;already&#039;&#039; on the top. And even assuming they&#039;re visiting the Wiki on a full-screen computer and not a mobile device, for the 1987 guys or earlier &amp;quot;IDW Generation 1 continuity&amp;quot; is likely going to be &amp;quot;below the fold&amp;quot;. And if you made it to the end of this paragraph thinking TL;DR, imagine the casual reader going through this in real time. THAT was who I was thinking of when I suggested the Ongoing Fiction content that the casual reader might be looking for when they come here &#039;&#039;be easier to find somehow&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
:I&#039;m not &#039;&#039;trying&#039;&#039; to throw your words back at you, M Sipher, but again it honestly was a post you made this week defending the Ongoing Fiction Template that made me think of this. You said, &amp;quot;&#039;&#039;letting people know which ones are likely to actually continue and not just be a storyline dead-end is at least marginally informative&#039;&#039;&amp;quot;. But the current razor-thin, World&#039;s Smallest Template Note doesn&#039;t really accomplish that. A casual reader may stumble across it by accident, if they squint, or they&#039;ll find it if they&#039;re already looking for it, but that&#039;s it. Floating Ongoing Fiction to the top of the Fiction sections negates the need for the template, lets new readers find what they were most likely looking for more easily, and those Fictions can just as easily be shuffled back down into &#039;release date order &amp;quot;dead&amp;quot; fiction&#039; once they are no longer ongoing.&lt;br /&gt;
&lt;br /&gt;
:If this was a bad idea, fine. But maybe you could provide me a definition of &amp;quot;casual reader friendly&amp;quot;, because obviously my &#039;&#039;WWMSD?&#039;&#039; bracelet doesn&#039;t help when I&#039;m too stupid to know the answer. --[[User:Xaaron|Xaaron]] ([[User talk:Xaaron|talk]]) 09:09, 12 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
::There&#039;s a Table of Contents at the top of just about every character page. The wiki software even &#039;&#039;automatically&#039;&#039; makes a TOC if a page has enough subsections. That TOC has &amp;quot;IDW continuity&amp;quot; in it, which links directly to said subsection. Easy.&lt;br /&gt;
::Your proposal is nothing but arguments waiting to happen over what&#039;s &amp;quot;more important&amp;quot;, to become more arguments over which &amp;quot;more important&amp;quot; fiction takes prominenece over the other &amp;quot;more important&amp;quot; (comics or cartoons?) with no actual &#039;&#039;benefit&#039;&#039;. It is furniture-shuffling. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 13:19, 12 January 2016 (EST)&lt;br /&gt;
:::Not to put words in Sipher&#039;s mouth, but I don&#039;t think the main idea he&#039;s putting across is &#039;&#039;really&#039;&#039; about your proposal, Xaaron, you&#039;ve just said it at a moment in time in which we are seeing a lot of what Sipher describes (but trying to dub something &amp;quot;more important&amp;quot; &#039;&#039;will&#039;&#039; lead to arguments - I remember way back when when people would complain we were putting the Marvel comic ahead of the cartoon). To repost something I&#039;ve also said on the Allspark - which I don&#039;t consider to relate to your proposal, Xaaron - I have been saying for a long time in private conversation what Sipher is saying now, and several months ago, I tried to explain how we&#039;re basically responsible for breeding this attitude into our readers. It&#039;s the same attitude that caused the AVP brouhaha - we are seeing editors now openly state that the wiki has been a gateway to a lot of this stuff for them, and that they have fixated on the minutiae and the continuity-fondling, which is such a small part of what Transformers, and the wiki, is about that it&#039;s the wrong lesson to come away with. Wiki projects ATTRACT those with mindsets focused on categorization, organization, and pattern-observation. It took years before we had editors who were able to reconcile that way of thinking with our &amp;quot;and also fun!&amp;quot; approach, but they now exist, and are more interested in trying to make sure all the headers are precisely the same, that everything is in exactly the right continuity-order and header-structure and category, that all the disambigs are exact - that absolutely everything fits into its little imaginary box, and that nothing breaks the rules by coming out of its box unless there&#039;s a seventeen-week debate about it first. ORGANIZATION IS IMPORTANT, but - with the greatest of actual respect to our new editors, because it is thankless hugging busywork and its impressive that you&#039;re dedicated to it - as Sipher says, this &amp;quot;moving of the furniture&amp;quot; is all that newer-guard editors actually seem to want to do, or to be capable of doing. It&#039;s very, very easy to paste a one-or-two sentence nugget of information from AVP into the wiki, which is why so many people do it and why it got so out of control - but you don&#039;t see anyone falling over themselves to add Spacewarp&#039;s Log stuff, even before the two-week delay, because it&#039;s not presented in nugget form, it&#039;s a piece of prose that you&#039;d actually have to - shock, horror - read and summarize, and - oh christ no - it&#039;s NOT full of references to pre-existing things so you can&#039;t just paste it into existing articles or throw the AVP stub template in. When - just for a recent example - I can go to the article of a major character like Ironhide or Thundercracker and still find tons of material that needs filling in, that says &amp;quot;it doesn&#039;t matter that it&#039;s been ten years, there is a lot more important work to do than making sure that header is a level 2 or a level 3 one.&amp;quot; - [[User:Chris McFeely|Chris McFeely]] ([[User talk:Chris McFeely|talk]]) 13:32, 12 January 2016 (EST)&lt;br /&gt;
::::I just want to be clear that people who take the time to do &amp;quot;busywork&amp;quot; like, say, fixing links so they no longer lead to a redirect page are &#039;&#039;unquestionably welcome to&#039;&#039;. That&#039;s good, that has a tangible benefit to our wiki (reducing server load). That kind of &amp;quot;busywork&amp;quot; is &#039;&#039;absolutely&#039;&#039; okay. It&#039;s the seemingly-endless stream of talks about reorganizing hundreds of pages, arguments over disambigs, and yeah, the &amp;quot;easy&amp;quot; trivia-nugget work that&#039;s grinding here. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 14:01, 12 January 2016 (EST)&lt;br /&gt;
:I get the concern over the AVP-inspired editors, and even counseled Giggidy about this very issue above. In hindsight, I probably should&#039;ve waited for the dust to settle more on the GoBots matter before suggesting something similar for different reasons, but like I said, the idea was sparked by the above discussion about the Ongoing Template.&lt;br /&gt;
:And I completely agree that a Major/Minor Fiction split would likely lead to more arguments than benefits, which is why I also proposed Ongoing/Not Ongoing. That&#039;s completely binary and objective. It&#039;s not subject to debate over which fiction is &amp;quot;More Ongoing&amp;quot; than another.&lt;br /&gt;
:I agree that the IDW links above the main character images remove any need for my proposal...for the characters who have them. My concern rested with characters like Jazz or Soundwave who do not have IDW subpages, and that continuity is 21 or 24 listings down on their Fiction TOCs, nestled between things like &#039;&#039;Q-Robo&#039;&#039; and &#039;&#039;Henkei! Henkei!&#039;&#039;. But, as I believe Chip suggested on the Allspark, a way to resolve all this is to just be more lenient with allowing IDW subpages in the first place. --[[User:Xaaron|Xaaron]] ([[User talk:Xaaron|talk]]) 16:31, 12 January 2016 (EST)&lt;br /&gt;
::I too proposed that. Is there a specific reason why that tab system isn&#039;t more prominent. Heck, maybe it would even work for stuff like the Marvel and Sunbow cartoons. Those tabs are a simple and brilliant way to get our readers to what they are looking for. A casual coming here after googling say &amp;quot;Prowl Transformers&amp;quot; needs to be sent to were they need to be efficiently as possible.  A page tab on his page header right at the top with IDW staring you in the face ks a good solution that doesn&#039;t deal with any of the parliamentary bojangling that&#039;s been such a hot topic lately[[User:Lush City|Lush City]] ([[User talk:Lush City|talk]]) 01:25, 14 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuity Stream Bullshit==&lt;br /&gt;
I suggested this on the Allspark, and there&#039;s some momentum for it so I&#039;ll put it here.&lt;br /&gt;
&lt;br /&gt;
As M Sipher said above, arbitrary furniture movement is bad. That said, all the continuity stream minutae is even worse, and serves only to bloat our pagecount with duplicated information in articles that will only ever be stubs forever. Why do both [[Primax 984.0 Gamma]] and [[The Transformers (issue)]] exist? Or [[Marvel Comics continuity]] if you think the continuity is more important than what the Universal Stream indicator actually decodes to, although if there weren&#039;t significant opposition I&#039;d argue that since the stream encoding to a piece of fiction is a 1:1 mapping that we should respect that directly.&lt;br /&gt;
&lt;br /&gt;
Since a Universal Stream page will not contain any useful information other than its actual stream indicator (and VERY occasionally some detail such as &amp;quot;this universe is destroying another one&amp;quot;), I&#039;d like to propose that all universal stream pages either be redirected to the actual single piece of fiction that the stream indicator decodes to, or to the Continuity timeline page that best describes it - and somewhere on **that** page we try and find a place for the universal stream number. Perhaps in the same fashion we originally handled alternate names - directly below the introductory paragraph, in bold?&lt;br /&gt;
&lt;br /&gt;
If this causes problems, feel free to disregard... but I&#039;ve heard enough discontent about the matter and there&#039;s been enough push for it there that I feel confident enough to put my next foot forward on this happening. [[User:Sky Shadow|Sky Shadow]] ([[User talk:Sky Shadow|talk]]) 10:32, 13 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
My proposal is that rather than stream pages, major continuities would all get pages. a Marvel g1 universe page, a sunbow cartoon universe a Classicsverse page and so on. Then, stream numbers used in universe would be redirect to those pages. Minor streams would get redirected to the current list pages we have now; AVP additions to minor streams would go in notes on the works main page. (For example, Ulchtar would go in the notes of that videogame)[[User:Lush City|Lush City]] ([[User talk:Lush City|talk]]) 10:51, 13 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I just noted that the already existing Universal Stream pages could be converted into continuity pages in some instances , http://tfwiki.net/wiki/Classicsverse could be simply renamed &amp;quot;Classics Continuity/Universe&amp;quot; for example[[User:Lush City|Lush City]] ([[User talk:Lush City|talk]]) 11:07, 13 January 2016 (EST)&lt;br /&gt;
:I&#039;m not seeing how universal streams are logically any different than random crap namedropped without context in stories all the time. [[Pralmtzurlz VI]], [[Vaulted Heights of K&#039;th Kinsere]], and [[Payload of General Frightening]] have less content than most universe pages. There also isn&#039;t really a way to effectively have real-world information and then fictional universe information on the same article; [[Transformers: Mystery of Convoy]] isn&#039;t going to look any better if you put all of the [[To Die Game!]] stuff on it. (Primax 984.0 Gamma is also not limited to &amp;quot;The Transformers&amp;quot;, so, uh, what?) [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:10, 13 January 2016 (EST)&lt;br /&gt;
::The difference is those pages are not wholly redundant. For example, yeah, maybe the city &amp;quot;Gygax&amp;quot; only got mentioned offhand in one story. But as it gets a page, it goes in the Category listing of &amp;quot;Cybertron cities&amp;quot; (or whatever it&#039;s actually called) and then when, oh, say, a TV cartoon writer wants to look up cities for references...&lt;br /&gt;
::In other words, BAM, the whole reason we did this wiki. The obscure was given an outlet, and it got used again. And this is far from the only instance.&lt;br /&gt;
::But this is not a functionality that serves any real purpose for the named Streams. You need to know the code to make any sense of them, at which point you can easily make up a code for any piece of fiction that exists. And &#039;&#039;every piece of Transformers fiction that exists IS canonically its own universe&#039;&#039;, &#039;&#039;&#039;&#039;&#039;and&#039;&#039;&#039;&#039;&#039; simultaneously wholly-subsumed parts of other universes, because of quantum (read: pseudoscience arglebargle translation of a meta-based concept with no real defined rules because we, and I literally mean WE as in me and Trent, made it all up and jesus on a tilt-a-whirl some people think way too hard and too rigidly about this). All these pages do is create a hoop for people to jump through unnecessarily. We don&#039;t need the pagecount bloat.&lt;br /&gt;
::If people are REALLY concerned about stuff not from, say, that one storybook that some FunPub gag-strip or Facebook post placed some wacky new event, then there is a simple solution. NOTES SECTION. One bullet point is really all you need in the overwhelming majority of cases. Something else, a subsection under notes called, oh, &amp;quot;Use in Other Fictions&amp;quot; will cover it. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 15:49, 13 January 2016 (EST)&lt;br /&gt;
:::Yeah, the &amp;quot;club fiction adds a bunch of stuff to some random micro-continuity&amp;quot; scenario is really the only one where the stream pages are even remotely good for anything - the Shell Game/Megazarak universe springs to mind - and in those cases it is potentially useful to have the info from a bunch of separate AVP things (or whatever) collected.  But as you say, Sipher, that kind of thing could happily live in the notes section of the fiction article. [[User:Jalaguy|Jalaguy]] ([[User talk:Jalaguy|talk]]) 16:06, 13 January 2016 (EST)&lt;br /&gt;
::::From a group complaining about &amp;quot;moving the furniture around&amp;quot;, there sure have been a lot of suggestions recently about deleting a lot of pages and taking all the info in them and putting them onto slightly harder-to-find pages. I&#039;m not even sure I have an opinion on this proposal, but the observation struck me as odd. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 16:09, 13 January 2016 (EST)&lt;br /&gt;
:::::Context is important, and the context here is bandwidth issues and reader experience. Those are fucking important. Every time we bounce a reader to another page, that&#039;s another tick on our sever, and these pages are, as noted, almost wholly redundant info when we could send them to a page that has the whole thing. And you&#039;re gonna sit there and claim that a listing of made-up words and number gibberish is somehow easier for a reader to use than just putting the relevant information on a page titled in plain English they&#039;re &#039;&#039;vastly&#039;&#039; more likely to find on their own. Okay, sure, whatever. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 16:17, 13 January 2016 (EST)&lt;br /&gt;
::::::I think at the very least, there&#039;s little reason to argue that stream indicators for major continuities shouldn&#039;t just redirect to the continuity page, i.e. [[Primax 984.0 Gamma]] to [[Marvel Comics continuity]]. -- [[User:Dark T Zeratul|Dark T Zeratul]] ([[User talk:Dark T Zeratul|talk]]) 16:35, 13 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
::Let me put this another way... the stream pages feel akin to having a page for &amp;quot;Khrapovik&amp;quot; then listing only the things &#039;&#039;Prime&#039;&#039; Ratchet did in the Russian comics on it. Again, &#039;&#039;technically&#039;&#039; a different universe, sure, but it&#039;s part of the bigger universe and splitting it out really only obfuscates info in the name of pedantry, and it&#039;s just better off folding it into the main. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 17:09, 13 January 2016 (EST)&lt;br /&gt;
::: That makes a lot of sense to me. This might be one of those situations where we want to use flexibility. If there is a continuity page that already exists, maybe the redirect goes there and we have a fiction section. If there&#039;s a universal stream and little else, maybe that can just go away. And if there&#039;s a lot of information about the stream, maybe we just keep it. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 23:06, 13 January 2016 (EST)&lt;br /&gt;
::So should we start compiling solutions for wn eventual vote. I&#039;m behind the idea of replacing stream pages with pages for the continuity.  In fact I think a good way to deal with extra Avp infor is to use are already existing arrow system. Thede added storiee are just like,say Regeneration One added to the end of Marvel US in a way, so for example. Mystery of the Convoy would get an arrow that goes to To Die Game, Shell Game would get an extra a avp write up detail.&lt;br /&gt;
&lt;br /&gt;
But over all I am for us having Continuity pages instead of streams.  Like was said above we don&#039;t need Primax Whatever Gamma AND Marvel US continuity pages.&lt;br /&gt;
[[User:Lush City|Lush City]] ([[User talk:Lush City|talk]]) 10:30, 14 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
==Alternate names==&lt;br /&gt;
When we mention a character&#039;s alternate names (i.e, on X&#039;s page, we note that &amp;quot;he is sometimes known as &#039;&#039;&#039;Y&#039;&#039;&#039;), there seems to be a bit of confusion as to exactly &#039;&#039;where&#039;&#039; we do it. [http://tfwiki.net/mediawiki/index.php?title=Grapple_(G1)&amp;amp;oldid=1043677 Some pages]&amp;lt;ref&amp;gt;(EDIT: Grapple&#039;s alternate name has been moved to the bio, so the link goes to an older revision for clarity.)&amp;lt;/ref&amp;gt; place such information near the top in the continuity note, whereas [[Octane|others]] put it at the end of the opening paragraph. Is there a policy on this? I don&#039;t particularly care one way or the other, I&#039;d just like to see them made consistent. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 01:08, 17 January 2016 (EST)&lt;br /&gt;
:I prefer them to be in the top rather than in the bio.--[[User:Primestar3|Primestar3]] ([[User talk:Primestar3|talk]]) 14:54, 17 January 2016 (EST)&lt;br /&gt;
::The continuity notes are cluttered enough already. Put them at the end of the bio. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 08:57, 20 January 2016 (EST)&lt;br /&gt;
::: I think, barring the unusual case of an obscure alternate name that is seldom used, the end of the continuity note is the ideal place. But I&#039;m not sure consistency is absolutely necessary, as long as the information is conveyed in an appropriate way.--[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 10:14, 20 January 2016 (EST)&lt;br /&gt;
:::I concur with Saix. --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 10:45, 20 January 2016 (EST)&lt;br /&gt;
:::I prefer the end of the intro over the continuity note.  It leaves more room for multiple names (in case a character has 2 or more alternate names) and also makes room for context (like, when and where and why is the character sometimes called by that other name). --[[User:DrSpengler|DrSpengler]] ([[User talk:DrSpengler|talk]]) 13:54, 20 January 2016 (EST)&lt;br /&gt;
::::I prefer the end of the intro as well. Take a look at [http://tfwiki.net/mediawiki/index.php?title=Hot_Rod&amp;amp;oldid=1046644 Hot Rod]. &amp;lt;ref&amp;gt;(EDIT: as of 18:11, 20 January 2016 (EST), they&#039;ve been moved into the bio. The link goes to an older revision for clarity.)&amp;lt;/ref&amp;gt;He has all his names in the continuity note, and it&#039;s a mess. If we&#039;re going to pick just one way to do it (and I think we should), it should be at the end of the intro. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 15:45, 20 January 2016 (EST)&lt;br /&gt;
:::::You&#039;ve convinced me that the intro is a smarter spot. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 16:09, 20 January 2016 (EST)&lt;br /&gt;
How about [[Vector Prime]]&#039;s alternate names? He&#039;s never made a solid appearance using any of them, so should they be in both the intro and in the AVP story section? [[User:S.H.I.E.L.D. Agent 47|S.H.I.E.L.D. Agent 47]] ([[User talk:S.H.I.E.L.D. Agent 47|talk]]) 15:23, 21 January 2016 (EST)&lt;br /&gt;
: That feels like a great place to make an exception and only list them in the fiction section or the notes.--[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 15:44, 21 January 2016 (EST)&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
== Parodies ==&lt;br /&gt;
&lt;br /&gt;
I think we should have one page that lists notable parodies and stuff. Just to get them out of the way. [[User:HarbringerOfDoom|HarbringerOfDoom]] ([[User talk:HarbringerOfDoom|talk]]) 08:29, 20 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
:They&#039;re already out of the way, by virtue of being not on this wiki. --[[User:Riptide|Riptide]] ([[User talk:Riptide|talk]]) 08:43, 20 January 2016 (EST)&lt;br /&gt;
::I noticed recently that the other place has started listing stuff like characters&#039; appearances on &#039;&#039;Family Guy&#039;&#039; and &#039;&#039;Robot Chicken&#039;&#039; in their main profiles, which gives us even more reason not to. --[[User:Emvee|Emvee]] ([[User talk:Emvee|talk]]) 09:01, 20 January 2016 (EST)&lt;br /&gt;
:::I can see the appeal, but I suspect it would quickly get out of hand. Transformers gets referenced in a lot of pop culture. Every show, movie, and Web comic is somebody&#039;s favorite, so I suspect any such page would quickly become an unbearably long and tedious list. So what would that leave us with? A page saying Transformers often shows up in pop culture? I&#039;m not sure there&#039;s any value to that. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 10:13, 20 January 2016 (EST)&lt;br /&gt;
:You guys have got to just be doing this on purpose now. [[User:Lush City|Lush City]] ([[User talk:Lush City|talk]]) 10:53, 21 January 2016 (EST)&lt;br /&gt;
::::I will get myself banned before I will allow this wiki to cover Family Guy and Robot Chicken. --[[User:Riptide|Riptide]] ([[User talk:Riptide|talk]]) 11:23, 20 January 2016 (EST)&lt;br /&gt;
:::::&#039;&#039;&#039;&#039;&#039;NO.&#039;&#039;&#039;&#039;&#039; Like, a thousand times no. I believe similar discussions have been had in the past, and the answer was a resounding no. (I can&#039;t find that particular discussion at the moment; I&#039;ll post it here if I find it.) -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 13:43, 20 January 2016 (EST)&lt;br /&gt;
::::::We have episodes of cartoons and issues of comics that are stubs and primary character articles that need to have their fiction sections filled out, but ok, yeah.  Let&#039;s start pedantically listing every time &#039;&#039;Family Guy&#039;&#039; has referenced Transformers.  That should be a priority. --[[User:DrSpengler|DrSpengler]] ([[User talk:DrSpengler|talk]]) 13:53, 20 January 2016 (EST)&lt;br /&gt;
:&#039;&#039;&amp;lt;nowiki&amp;gt;**Condescending Wonka image**&amp;lt;/nowiki&amp;gt;&#039;&#039; --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 15:00, 20 January 2016 (EST)&lt;br /&gt;
The only page that would make sense (to me) while keeping in line with the spirit for this wiki is a simple list of times that official product was used in movies and television.&lt;br /&gt;
*This toy was in such and such movie in year 19XX. &lt;br /&gt;
*Transformers episode so&#039;n&#039;so was seen the background of movie in year 200X.&lt;br /&gt;
*A number of toys were shown featured in McTV show in episode whatzitz.&lt;br /&gt;
References are out. Parodies are out, and it&#039;s only a single page as to not clutter up the rest (similar to what we do with unofficial Transformers guides.) --[[User:Bluestreak7|Bluestreak7]] ([[User talk:Bluestreak7|talk]]) 02:36, 22 February 2016 (EST)&lt;br /&gt;
:I really don&#039;t see any potential benefit to that. Are we going to make a page full of stuff like &amp;quot;Some G1 toys showed up in &#039;&#039;Flight of the Navigator&#039;&#039;&amp;quot; and stuff like that? Why? It&#039;s pointless, and it would just open the floodgates for more of the same pointless crap, not to mention how bloated and useless it would be. Before long, people will use that page as an argument for including bullshit from Family Guy and the Chevy commercial with the car that turns into a robot and god knows what else. Information about references to &#039;&#039;Transformers&#039;&#039; in other media is something for Wikipedia to cover. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 12:24, 22 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Question about GoBots....not the one you are thinking of ==&lt;br /&gt;
&lt;br /&gt;
Is there any objection to my adding External Links to Counter-X&#039;s Challenge of the GoBots profile pages to the character pages here? --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 10:54, 3 February 2016 (EST)&lt;br /&gt;
:I was doing it only in lieu of TFU.info links.  TFU seems to be our standard for outside toys links and we typically don&#039;t do others unless TFU lacks them for some reason.  But I dunno if there&#039;s a legit policy about it or not.  (that said, Counter X is a great GoBot-centric resource and probably more informative than TFU, just my opinion) --[[User:DrSpengler|DrSpengler]] ([[User talk:DrSpengler|talk]]) 10:58, 3 February 2016 (EST)&lt;br /&gt;
::Counter-X has actual cartoon bio pages to link to, not just toy reviews.--[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 10:59, 3 February 2016 (EST)&lt;br /&gt;
:::I don&#039;t think there&#039;s any issue with adding informative links. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 11:31, 3 February 2016 (EST)&lt;br /&gt;
::::Okay, Renegade-related pages linked. I&#039;ll tackle the Guardians later. Unless someone else wants to do it. --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 12:27, 5 February 2016 (EST)&lt;br /&gt;
:::::Guardian-related pages linked. I changed format a time or two, I will go back later and harmonize ALL of them. Unless someone else beats me to it. --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 11:52, 22 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
OK, just to clarify, what Chris McFeely proposed last month was this: &#039;&#039;&amp;quot;GoBots characters only mentioned in Renegade Rhetoric stories consolidated into simplified &#039;List of Guardian&#039; and &#039;List of Renegade&#039; pages with only brief write-ups, linking readers to our archive of the Facebook posts if they want the full scoop. Characters such as Cy-Kill and those who have actually appeared in Transformers-universe stories should, of course, retain their own articles.&amp;quot;&#039;&#039; So, it&#039;s permissible to write up full articles for characters who appear in the crossover fiction, yes, detailing their adventures in said crossover fiction? Those who only appear in Renegade Rhetoric get consolidated into a list with brief description of their Renegade Rhetoric adventures with links to the RR/src archive. And for the characters who do appear in crossover fiction, their Renegade Rhetoric adventures get that brief description with link to archive. I don&#039;t want to do work that will get reverted or start an argument, which is why I&#039;m double-checking what Chris proposed and the community agreed.&lt;br /&gt;
&lt;br /&gt;
If my understanding is correct, I&#039;ll try to write up the crossover fiction stuff, and then take a stab at consolidating whoever&#039;s left. I thought I remembered seeing a sandbox of consolidation, did anyone make any progress on that?--[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 08:55, 25 February 2016 (EST)&lt;br /&gt;
:Considering that we now list it as &amp;quot;Transformers: Renegade Rhetoric&amp;quot;, does that distinction still apply? --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 09:21, 25 February 2016 (EST)&lt;br /&gt;
::Let&#039;s not bring up old wounds and rehash old arguments. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 09:43, 25 February 2016 (EST)&lt;br /&gt;
:::Chris&#039;s proposal was based on the idea that Renegade Rhetoric wasn&#039;t Transformers fiction. --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 09:50, 25 February 2016 (EST)&lt;br /&gt;
::::Jim has stated before that the &amp;quot;Transformers&amp;quot; part of the title doesn&#039;t really mean anything and shouldn&#039;t be taken too seriously. --[[User:Sabrblade|Sabrblade]] ([[User talk:Sabrblade|talk]]) 09:53, 25 February 2016 (EST)&lt;br /&gt;
:::::I guess I can&#039;t argue against that. --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 09:57, 25 February 2016 (EST)&lt;br /&gt;
::::::I would, however, argue that the RR appearances of characters who have other TF fiction appearances should be on their pages and not just on the archive. --[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 10:01, 25 February 2016 (EST)&lt;br /&gt;
::::::: I don&#039;t want to argue about anything. I just want to confirm that I am correctly understanding and interpreting what was decided.--[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 10:10, 25 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
So... no opinions on this? I&#039;m maybe 90% sure I&#039;m right in my interpretation, but I&#039;d love Chris or Walky to weigh in just to be certain. If no one cares anymore, I&#039;ll assume I&#039;m right and get started. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 09:46, 26 February 2016 (EST)&lt;br /&gt;
:Yep, your summary matches what I envisioned. I started [[User:Chris_McFeely/Sandbox:ListofRenegades|this sandbox]] for the Renegades but I&#039;ve been busy. - [[User:Chris McFeely|Chris McFeely]] ([[User talk:Chris McFeely|talk]]) 10:30, 26 February 2016 (EST)&lt;br /&gt;
::Great. I&#039;ll try to get some progress done this weekend. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 11:20, 26 February 2016 (EST)&lt;br /&gt;
:::I would say, though, that it&#039;d be worth linking to at least one of the TFU/Counter-X profiles from these list pages, given that they provide useful context &#039;&#039;without&#039;&#039; it being the wiki&#039;s coverage; in particular, the likes of Jack Attack and Decker Decker, who (on the sandbox as it stands) don&#039;t give any indication of which unused Machine Robo toys they&#039;re based on, meaning it would be pretty much impossible for casual readers to track them down. I remember that someone proposed using a table instead of headers for the list pages; maybe have a column in the table for Counter-X links? --[[User:Riptide|Riptide]] ([[User talk:Riptide|talk]]) 12:40, 26 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Is there a category for images from the &#039;&#039;Timelines&#039;&#039; Facebook pages? ==&lt;br /&gt;
&lt;br /&gt;
Do we have a category for all the images posted on the &#039;&#039;Timelines&#039;&#039; Facebook pages like [[Ask Vector Prime]], [[Transformers: Renegade Rhetoric|Renegade Rhetoric]], etc? As I&#039;ve been going through the [[Special:UncategorizedFiles|uncategorized images]], I&#039;ve noticed that quite a few of them are from those Facebook pages. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 17:16, 8 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Requested URL could not be retrieved&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
I can&#039;t seem to find any kind of technical place to post this, so I&#039;m just going to post it here in the hopes of getting some attention. For some reason, I&#039;ve been locked out of the site; trying to access the website on either of my main computers results in a white page and an &amp;quot;ERROR: The requested URL could not be retrieved&amp;quot; message. I&#039;ve tried clearing my cache, deleting cookies, all that stuff (I can still post on my phone). I suspect that it&#039;s some kind of internal server problem (I don&#039;t think I&#039;ve done anything to break the wiki on my end), but I&#039;m not sure? Any help would be appreciated. [[User:Grum|Grum]] ([[User talk:Grum|talk]]) 19:09, 28 February 2016 (EST)&lt;br /&gt;
:That might have been me being too zealous with the spam blocking. I&#039;ll send you an email shortly. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 20:36, 28 February 2016 (EST)&lt;br /&gt;
:: Thank you! I will see if it works. [[User:Grum|Grum]] ([[User talk:Grum|talk]]) 20:56, 28 February 2016 (EST)&lt;br /&gt;
:::Did you get the email? --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 22:14, 28 February 2016 (EST)&lt;br /&gt;
:::: sorry for the late response, it got put into junk mail. Clicking the link just takes me to a blocked site. [[User:Grum|Grum]] ([[User talk:Grum|talk]]) 22:43, 28 February 2016 (EST)&lt;br /&gt;
:::::OK, I think you should now be unblocked. Give it another try! --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 22:57, 28 February 2016 (EST)&lt;br /&gt;
:::::: It worked! Many thanks! [[User:Grum|Grum]] ([[User talk:Grum|talk]]) 23:03, 28 February 2016 (EST)&lt;br /&gt;
:::::::No problem - sorry about that! --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 00:05, 29 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Facebook-exclusive characters ==&lt;br /&gt;
Given the copious quantity of characters debuted through the Tornado and TransTech Facebook pages who have no toys and have yet to appear in any other fiction, would it be appropriate to create a &amp;quot;Facebook-only characters&amp;quot; subcategory of &amp;quot;Fiction-only characters&amp;quot;? [[User:S.H.I.E.L.D. Agent 47|S.H.I.E.L.D. Agent 47]] ([[User talk:S.H.I.E.L.D. Agent 47|talk]]) 19:59, 1 March 2016 (EST)&lt;br /&gt;
:Not a bad idea. I&#039;d also be down for &amp;quot;Online-media exclusive characters&amp;quot; or something along those lines. --[[User:Ascendron|Ascendron]] ([[User talk:Ascendron|talk]]) 20:15, 1 March 2016 (EST)&lt;br /&gt;
::Yeah, that sounds worthwhile. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 20:19, 1 March 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Furthering the use of list articles ==&lt;br /&gt;
&lt;br /&gt;
Looking at Chris McFeely&#039;s [[User:Chris_McFeely/Sandbox:ListofRenegades|sandbox]] for the GoBots list article, I think that maybe similar list articles would be a nice way to handle some of the minor Shattered Glass and Kre-O characters. Pages like [[Broadside (SG)]] are rather useless, and I think that consolidating such pages into a list article would lead to a better reader experience. (To save us from pointless page moves, I would suggest just turning the old pages into a redirect to the list article, keeping all the categories.) -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 19:38, 3 March 2016 (EST)&lt;br /&gt;
:No. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 19:41, 3 March 2016 (EST)&lt;br /&gt;
::Would you care to elaborate on that? -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 20:20, 3 March 2016 (EST)&lt;br /&gt;
:::We only used a list for GoBots as a compromise for the endless debate. Applying that concept to inarguable Transformers characters is senseless and leads to more arguments over what counts for a list and what doesn&#039;t. You&#039;re just causing more inconsistency and headaches for no benefit. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 20:39, 3 March 2016 (EST)&lt;br /&gt;
I still hate the list pages for Gobots, I don&#039;t want to have to spread it further. [[User:Escargon|Escargon]] ([[User talk:Escargon|talk]]) 20:25, 3 March 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
Lists are not ideal. - [[User:Chris McFeely|Chris McFeely]] ([[User talk:Chris McFeely|talk]]) 20:26, 3 March 2016 (EST)&lt;br /&gt;
:Fair enough. It was just a thought -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 20:41, 3 March 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Sick Of Arguing About GoBots II ==&lt;br /&gt;
&lt;br /&gt;
[[Transformers_Wiki_talk:Community_Portal/Archive61#We.27re_all_sick_of_arguing_about_GoBots|The existing rule was:]] &amp;quot;I think that any events described from the original, actually-existing cartoon should be reduced to minimum, and all GoBots characters only mentioned in these stories consolidated into simplified &amp;quot;List of Guardian&amp;quot; and &amp;quot;List of Renegade&amp;quot; pages with only brief write-ups, linking readers to our archive of the Facebook posts if they want the full scoop. Characters such as Cy-Kill and those who have actually appeared in Transformers-universe stories should, of course, retain their own articles&amp;quot;&lt;br /&gt;
&lt;br /&gt;
That caused a lot of argument over [[Echoes and Fragments]], since most people did not want to create new pages for each named character even though &#039;legally&#039; it&#039;s fine. This is going to come up again when new GoBots appears in a Transformers fanfic (and Macrocosmic Seekers is all about that). &lt;br /&gt;
&lt;br /&gt;
At this point, might be worth altering the law to &amp;quot;who have actually appeared in Transformers-universe stories with a moderate-to-large role in Transformers fanfiction&amp;quot; i.e. [[Major Mo]] is fine because he had a big role in Echoes but Back Grounder the Rock Lord who was only mentioned briefly in a crowd scene is not. That seems to be the spirit of the law. - [[User:Charles RB|Charles RB]] ([[User talk:Charles RB|talk]]) 17:27, 4 March 2016 (GMT)&lt;br /&gt;
:I vote no. &amp;quot;GoBots characters and concepts who have not appeared outside of Facebook-based media do not get their own pages&amp;quot; is a reasonable policy without loopholes. --[[User:Riptide|Riptide]] ([[User talk:Riptide|talk]]) 12:52, 4 March 2016 (EST)&lt;br /&gt;
::That&#039;s the crux of this all, so if it gets people to shut up about this forever, please, for the love of God. Stuff that has appeared or been mentioned in other media will still get appropriate pages—nobody has ever argued against that. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:18, 4 March 2016 (EST)&lt;br /&gt;
:::Agree with Riptide.  --[[User:Thylacine 2000|Thylacine 2000]] ([[User talk:Thylacine 2000|talk]]) 13:34, 4 March 2016 (EST)&lt;br /&gt;
::::I think this is a terrible, terrible rule and an awful precedent, but it is at least honest and non-subjective. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 14:23, 4 March 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
So, that&#039;s the concensus. The rule is &amp;quot;GoBots and major associated characters who appear only on Facebook pages get the list treatment.&amp;quot; The justification is that GoBots is a frequent source of arguments and the hope is a simple, unambiguous rule will curtail these arguments. --[[User:Giggidy|Giggidy]] ([[User talk:Giggidy|talk]]) 23:07, 5 March 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== RID Kre-O ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;re unlikely to get any more Kre-O fiction, and all of the RID Kre-O articles are pretty sparse in content, maybe they should just be merged to the main RID character articles? [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 15:27, 8 March 2016 (EST)&lt;br /&gt;
:I&#039;ll be honest, I&#039;m not averse to this at all. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 17:13, 8 March 2016 (EST)&lt;br /&gt;
::I guess nobody&#039;s really opposed to this or cares, so I&#039;ll go ahead and do it. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 13:48, 9 March 2016 (EST)&lt;br /&gt;
After looking through the Kre-O pages... I feel like the comic-only cameos should all just be merged to whatever they&#039;re referencing. After merging all of the Iocus crap, it feels right to do the same to articles that are pretty much just &amp;quot;BWII Galvatron, but as a Kreon&amp;quot;. They&#039;re very specific references removed from their context for really no good reason. Maybe not a popular suggestion, but throwing it out there. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 16:50, 9 March 2016 (EST)&lt;br /&gt;
::So long as it doesn&#039;t mess around with characters that freely switch between different incarnations of themselves, or are composite homages that can&#039;t be neatly classified. I can&#039;t think of any way those could be neatly merged into another page. --[[User:Ascendron|Ascendron]] ([[User talk:Ascendron|talk]]) 17:10, 9 March 2016 (EST)&lt;br /&gt;
:::Yeah, I&#039;m mostly focusing on unique characters (Fractyl, Atari, Tarn, etc.) and not the big archetypes like Optimus or Bumblebee. Most characters with toys will be left alone. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 18:35, 9 March 2016 (EST)&lt;br /&gt;
:I&#039;m extremely cool with this. Never been big fan of giving them individual articles in the first place. Like, honestly, in a more organized world where this stuff hadn&#039;t been created on an incremental basis, &amp;quot;Fornax&amp;quot; almost certainly wouldn&#039;t be a thing and it&#039;d all be Iocus. - [[User:Chris McFeely|Chris McFeely]] ([[User talk:Chris McFeely|talk]]) 17:48, 9 March 2016 (EST)&lt;br /&gt;
:Again, no real objection, if a tepid &amp;quot;sure&amp;quot;. I mean, I&#039;m not really convinced that Kreons based on existing characters who DO have toys but no fiction (like a hefty chunk of the &amp;quot;Class&amp;quot; sets) really need to be split out. A page from Kreon Topspin seems... overly redundant. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 22:29, 9 March 2016 (EST)&lt;br /&gt;
::Yeah, I&#039;m looking around more and it seems like there&#039;s only a select few that couldn&#039;t be encompassed by their main versions. Most of the Class series is guilty of that, but there&#039;s also lots of Kreons based on one-shot characters ([[Wingspan Hawk]], [[Barrage (Kre-O)]]). We have a lot of pages that are just &amp;quot;this exists and is obviously this other thing&amp;quot; from both the toyline and the comic. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 00:39, 10 March 2016 (EST)&lt;br /&gt;
:::You probably are doing this, but be sure to add the &amp;quot;Kreons&amp;quot; category and such when condensing. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 00:53, 10 March 2016 (EST)&lt;br /&gt;
:Ehhh... I disagree. I mean, the Kreon Class ones, sure, but I&#039;m less certain on What about the likes of the [[Soundwave&#039;s Trap? Stop Operation Brainwash Humanity!|Soundwaves and Convoys]] and [[Enter the New Emperor of Destruction!? Stop Galvatron&#039;s Rampage!|Starscreams]]? I&#039;d probably vote strong &amp;quot;yes&amp;quot; to merging the Class of 84/5 guys, weak &amp;quot;yes&amp;quot; to merging the fictionless Kreons (and maybe the non-Transformer comic cameos, I don&#039;t know), but a strong &amp;quot;no&amp;quot; to anyone who was actually in the comic. --[[User:Riptide|Riptide]] ([[User talk:Riptide|talk]]) 06:55, 10 March 2016 (EST)&lt;br /&gt;
::We do have a couple of examples where character pages have sections that cover more than one character already. The Masterforce transtectors and the BeCool cartoon come to mind. Does it really serve anything to give those tiny one-panel cameos in a referential comic their own pages? [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 09:03, 10 March 2016 (EST)&lt;br /&gt;
:::As I&#039;ve noted before, there comes a point where we&#039;re just being pointlessly pedantic, making people jump through hoops (and incrementally hitting our bandwidth limits) for... no actual &#039;&#039;benefit&#039;&#039; near as I can tell. Seriously. What&#039;s the benefit? What is the purpose? &amp;quot;Consistency&amp;quot;? Sorry, this franchise has grown and mutated too big for us to try and cram everything into no-exceptions rules. We HAVE to be flexible and make exceptions in some places, and when it comes to overly-redundant pages, that&#039;s where I&#039;m more than willing to make exceptions.&lt;br /&gt;
:::I&#039;m down with low-content one-pages for one-panel &#039;&#039;unique&#039;&#039; characters to be certain, like the Hideous Brain Guy, but for Basically The Well-Known G1 Character But In Brick Form? ehhhhhhhhhhhhhhhhhhhhhhhhhhhhhn. --[[User:M Sipher|M Sipher]] ([[User talk:M Sipher|talk]]) 16:45, 10 March 2016 (EST)&lt;br /&gt;
Should we merge [[Soundblaster (Kre-O)]] into [[Soundblaster (G1)]]? Their colors aren&#039;t exactly the same, but they&#039;re both black repaint clones of the main Soundwave. [[User:S.H.I.E.L.D. Agent 47|S.H.I.E.L.D. Agent 47]] ([[User talk:S.H.I.E.L.D. Agent 47|talk]]) 00:02, 14 March 2016 (EDT)&lt;br /&gt;
:Sure, whatever. If another independent G1 Soundblaster pops up, that&#039;s probably where they&#039;re going anyway. [[User:Saix|Saix]] ([[User talk:Saix|talk]]) 00:54, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Informing new users of the recent anti-spam measures ==&lt;br /&gt;
&lt;br /&gt;
(Slight re-editing of something I posted on the Allspark) I think we may need to put something in [[Template:Welcome|the welcome template]] and/or on [[Main Page/editing-tips|Main Page/editing-tips]] about how new users are unable to create pages because of all the spam stuff; it seems to be [[User talk:Foffy the Sheep#Extreme Editing Difficulties|confusing some people]]. -[[User:Foffy the Sheep|Foffy the Sheep]] ([[User talk:Foffy the Sheep|talk]]) 12:45, 13 March 2016 (EDT)&lt;br /&gt;
:I&#039;ve just reduced the timeout for creating new pages down to 6 hours, which should still slow down the spammers but not be quite as much of a burden on legit new users. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 15:50, 13 March 2016 (EDT)&lt;br /&gt;
Is any active admin still getting emails sent to the webmaster mailbox?  I ask because I&#039;m getting a ton of them:  Looks like new IP/User Agent blocks, and I haven&#039;t touched this setup since... 2014? [[User:McFly|McFly]] ([[User talk:McFly|talk]]) 23:12, 23 March 2016 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=845942</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=845942"/>
		<updated>2014-01-07T18:20:22Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* tfwiki.info vs tfwiki.net */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
&amp;lt;br/&amp;gt; &amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Wiki Technical Information:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers_Wiki:Tech|A Not So Brief Summary of the Horrible Things That McFly and Co. Have Done To Keep This Wiki From Melting Down]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Wiki update issues ==&lt;br /&gt;
&lt;br /&gt;
The recent wiki update seems to have affected the &amp;lt;nowiki&amp;gt;{{--}}&amp;lt;/nowiki&amp;gt; template, in that it [[Ironhide (BS)|doesn&#039;t seem to work anymore.]] &amp;lt;nowiki&amp;gt;{{-}}&amp;lt;/nowiki&amp;gt; seems to work, though. --[[User:Inkblot|Inkblot]] ([[User talk:Inkblot|talk]]) 21:39, 9 November 2013 (EST)&lt;br /&gt;
:I see the problem. Mediawiki doesn&#039;t use a name tags for anchors any more. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 22:04, 9 November 2013 (EST)&lt;br /&gt;
::And it&#039;s fixed. Thanks. :-) --[[User:Inkblot|Inkblot]] ([[User talk:Inkblot|talk]]) 22:13, 9 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
Also, I noticed that the galleries [[Homage|aren&#039;t bordered anymore.]] --[[User:Inkblot|Inkblot]] ([[User talk:Inkblot|talk]]) 01:39, 11 November 2013 (EST)&lt;br /&gt;
:That actually appears to be an intentional change. If I use the gallery tag on Wikipedia, the gallery doesn&#039;t have a border either. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 02:25, 11 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[:Category:Navigation_templates|Nav templates]] have gone a bit wibbly. [http://tfwiki.net/mediawiki/index.php?title=Template:Nav-bm&amp;amp;curid=18851&amp;amp;diff=838471&amp;amp;oldid=640853 I kludged a fix for the BM one there], but it would probably be easier converting them all to use a base template at {{tl|Nav}}, and just having the links and logo entered in the individual navs. Similar to how {{tl|Messagebox}} and many of the copyright templates work. - [[User:SanityOrMadness|SanityOrMadness]] ([[User talk:SanityOrMadness|talk]]) 13:54, 18 November 2013 (EST)&lt;br /&gt;
:Yes, that seems like a good idea. It&#039;ll keep them standard! --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 02:59, 21 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Marvel G1 Cover Artists ==&lt;br /&gt;
&lt;br /&gt;
Hi, can I just ask where we got the info for US cover artists from, as they weren&#039;t credited in the issues themselves. I only ask because this wiki says that Mark Texeira did the cover for both US#3 and US#4, but on the Comic Book Database (comicbookdb.com) they list Mike Zeck as the cover artist to #3. So, which site is correct, the TFwiki or comicbookdb? And if the wiki has the wrong cover artist for US#3, is it possible some of the cover credits to other issues might also be in need of correction? Cheers! --[[User:Ryan Frost|Ryan Frost]] ([[User talk:Ryan Frost|talk]]) 14:20, 18 November 2013 (EST)&lt;br /&gt;
:Even worse, while we credit the cover to Mark Texeira on the [[:File:MarvelUS-03.jpg|image page]], the actual [[Prisoner of War!|issue page]] credits it to Michael Golden. I think most of the Marvel cover credits really need to be double-checked against a reliable source, but I&#039;m not sure where to find one. The Titan reprints had an intro which often named the cover artists, ISTR, but not always. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 03:30, 21 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Bing==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve noticed that tfwiki doesnt show up in bing searches. Rather you&#039;ll get the wikia site even if you type in &amp;quot;tfwiki.&amp;quot;&lt;br /&gt;
Has this been dealt with?&lt;br /&gt;
&lt;br /&gt;
--[[User:Lush City|Lush City]] 20:47, 29 November 2013 (EST)&lt;br /&gt;
:I think it&#039;s one of the crawlers that got blocked for hammering the site. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 22:13, 29 November 2013 (EST)&lt;br /&gt;
::It was.  I&#039;ve re-enabled it now that I&#039;ve got the wherewithal to deal with things using a method other than the banhammer of rage.  Give it a few days. --[[User:McFly|McFly]] ([[User talk:McFly|talk]]) 17:15, 11 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Optimus Prime (Covenant of Primus)==&lt;br /&gt;
&lt;br /&gt;
Given what the COP book has put out, we know that the Thirteenth Prime is Optimus Prime. Which brings up some questions that Hasbro has saw fit to tease us with for a whikle. Now, that said, we still need to compile the information. I suggest, since we dont know HOW exactly that is supposed to work, we treat it like Sideways after the Second Allspark Almanac. We make a new page Optimus Prime (COP) detailing the history outlined in the Covenant , and then place in his and Optimus Prime (WFC)&#039;s note pages that they may or may not be the same person, or reincarnations or whatever.&lt;br /&gt;
&lt;br /&gt;
Thoughts? [[User:Lush City|Lush City]] ([[User talk:Lush City|talk]]) 16:54, 14 December 2013 (EST)&lt;br /&gt;
:Well, as far as I understand, the Covenant is all stuff that had been planned from the very conception of the Aligned universe. It&#039;s not a retcon; Aligned Optimus has been one of the Thirteen all along, so I don&#039;t see that it necessitates a new article. [[User:Jalaguy|Jalaguy]] ([[User talk:Jalaguy|talk]]) 18:59, 14 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
They way it&#039;s presented, we dont know if it&#039;s LITERALLY the same Optimus, or some kind of G1 Optimus/ Optimus Primal thing or what. The book calls him Thirteen the whole time , and then on the last page or so goes (oh yeah, he&#039;s OPTIMUS PRIME) so I dont think we can be certain if he&#039;s the same character or if the name is just the same (Like Megatronus and Megatron). Thus the idea of a separate linked page until we get confirmation on how it all sussses out.  [[User:Lush City|Lush City]] ([[User talk:Lush City|talk]]) 14:19, 15 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
Otherwise I&#039;m just going to edit COP stuff into Optimus Prime (WFC) main page.&lt;br /&gt;
&lt;br /&gt;
==What&#039;s with the completely different formats?==&lt;br /&gt;
&lt;br /&gt;
I noticed it at the beginning of this month, maybe it&#039;s been around longer than that.  Some pages randomly seem to be in a completely different format than the one I&#039;ve been used to seeing for years.  It looks like it might be a mobile format or something but there&#039;s nothing different in the address that would indicate that it&#039;s the case.  I don&#039;t really know the technical side of this wiki or what kind of decisions are officially made, so instead of trying to explain it I&#039;ll just use screenshots. &lt;br /&gt;
&lt;br /&gt;
http://i.imgur.com/lF4KWnA.png  Dark Cybertron 3 page looks like this&lt;br /&gt;
&lt;br /&gt;
http://i.imgur.com/rXR7cIo.png  but clicking to the next issue looks like this&lt;br /&gt;
&lt;br /&gt;
I hope this isn&#039;t some kind of new official format that&#039;s slowly being rolled out because I find it less user-friendly overall.  And if it isn&#039;t a new format you&#039;ve decided on, then what is it, a mistake being caused by the wiki software itself? As far as I can tell from this discussion page, no one else has mentioned it, but I can&#039;t be the only one who&#039;s seeing it can I? [[User:Arborday|Arborday]] ([[User talk:Arborday|talk]]) 11:52, 24 December 2013 (EST)&lt;br /&gt;
:It&#039;s the mobile skin, [http://tfwiki.net/mediawiki/index.php?title=Main_Page&amp;amp;useskin=WPtouch WPtouch]. Clearly, something&#039;s gone screwy if you&#039;re getting it randomly... - [[User:SanityOrMadness|SanityOrMadness]] ([[User talk:SanityOrMadness|talk]]) 11:57, 24 December 2013 (EST)&lt;br /&gt;
::Yeah, I don&#039;t even own a smart phone, I browse everything from a desktop.  Usually I can tell if something is a mobile page, like if someone using a phone links something on facebook, I&#039;ll see a &amp;quot;.m&amp;quot; in the address, but I&#039;m not seeing anything different about the address when I see these pages on this wiki.  Not sure why I&#039;d be the only one having this problem, but if other people are seeing it too then it must be a problem on the tech end right? [[User:Arborday|Arborday]] ([[User talk:Arborday|talk]]) 12:03, 24 December 2013 (EST)&lt;br /&gt;
:::The mobile skin is no more special than any other skin, so there&#039;s no difference in the URL. You might as well post up what browser you&#039;re using, since that&#039;ll no doubt be helpful information for the wiki&#039;s techy people. [[User:Jalaguy|Jalaguy]] ([[User talk:Jalaguy|talk]]) 12:10, 24 December 2013 (EST)&lt;br /&gt;
::::The wiki autodetects from the user agent when you&#039;re on a mobile device and gives you the appropriate skin. I thought it might have been squid causing the problem, but I conducted a test just now (I visited a page on my phone, and then on my PC from a logged-out browser) and it worked fine. It could be that Arborday&#039;s ISP is using a proxy which is caching the pages and so he&#039;s getting random pages with the mobile skin simply because someone on his ISP visited them with a mobile device previously. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 16:23, 24 December 2013 (EST)&lt;br /&gt;
:::::I&#039;m on Firefox, I dunno anything about proxies and the format changing seems to be just totally random.  I can be viewing one page normally, click a link and it takes me to a mobile page, and then click another link and I&#039;m on a normal page again.  It doesn&#039;t make any sense to me and I guess it could be because of what you&#039;re saying with the ISP, but I don&#039;t really understand that stuff. [[User:Arborday|Arborday]] ([[User talk:Arborday|talk]]) 01:50, 25 December 2013 (EST)&lt;br /&gt;
::::::The issue may have been fixed since the last time I posted, pages that were previously on the mobile skin are now back to normal.  Now I&#039;m having an issue where some pages will show 4 &amp;quot;GO&amp;quot; images at the same time, but this isn&#039;t nearly as much of an inconvenience as the mobile issue. [[User:Arborday|Arborday]] ([[User talk:Arborday|talk]]) 01:53, 25 December 2013 (EST)&lt;br /&gt;
:::::::You&#039;re possibly seeing it as fixed because you&#039;re logged in. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 02:32, 25 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== GoBox glitches? ==&lt;br /&gt;
&lt;br /&gt;
At least a couple of times in the past few days, instead of getting a single GoBox image, my monitor will display a whole bunch of them, sometimes instead of the Search box. Is this a site issue, or is my computer/karma to blame? --Rhymus (talk) 19:36, 22 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
--[[Template_talk:Goicons#GoBox_glitches.3F]]&lt;br /&gt;
&lt;br /&gt;
It&#039;s happened to me maybe a dozen times since then.&lt;br /&gt;
&lt;br /&gt;
--[[User:Rhymus|Rhymus]] ([[User talk:Rhymus|talk]]) 06:51, 30 December 2013 (EST)&lt;br /&gt;
:Just noticed Arborday seems to mention the same or similar problem in what&#039;s currently the second-to-last comment in [[Transformers_Wiki_talk:Community_Portal#What.27s_with_the_completely_different_formats.3F|What&#039;s with the completely different formats?]] --[[User:Rhymus|Rhymus]] ([[User talk:Rhymus|talk]]) 07:40, 30 December 2013 (EST)&lt;br /&gt;
::It&#039;s caused by the part of the skin not loading properly. I&#039;ve been trying to track down why it&#039;s happening for a while now. I guess I could tweak the skin to fail better when it happens at least. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 16:45, 30 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== format of links ==&lt;br /&gt;
&lt;br /&gt;
Is there a reason why, for example, [ [ Optimus Prime (disambiguation) | Optimus Prime ] ] is preferable to [ [ Optimus Prime (disambiguation) ] ] or [ [ Optimus Prime ] ] ?  The consensus seems to be for the first option, and i&#039;m curious why.  Does linking to a redirect increase wear and tear on computers or something?  [ [ Optimus Prime ] ] is easier to type than [ [ Optimus Prime (disambiguation) | Optimus Prime ] ] and seems to yield the same results, while [ [ Optimus Prime (disambiguation) ] ] is in between as far as difficulty to type but comes out ahead in terms of informing the user where the link will go.&lt;br /&gt;
--[[User:Rhymus|Rhymus]] ([[User talk:Rhymus|talk]]) 06:54, 30 December 2013 (EST)&lt;br /&gt;
:I tend to prefer pointing links to the final destination for a number of reasons: redirects can change what they&#039;re pointing at. If at some point in the future, we decided that &amp;quot;Optimus Prime&amp;quot; should link to Generation 1 Optimus Prime instead of the disambiguation page because G1 Prime is the most prominent, lasting incarnation of the character, then all the links that used the redirect to point to the disambiguation page would be pointing somewhere the original author didn&#039;t intend and which may not make sense.&lt;br /&gt;
:Another reason I prefer linking to the final article is that because of the way MediaWiki works, if you use the Optimus Prime link, you end up at the url tfwiki.net/wiki/Optimus_Prime instead of tfwiki.net/wiki/Optimus_Prime_(disambiguation). If someone makes a link to their own page by copying from the address bar, they&#039;re linking to a redirect which may change to point to a different place. Search engines can also have trouble because it appears to them as though they&#039;re looking at two pages instead of one, though granted most search engines are smart enough these days to figure it out. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 16:13, 30 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== When to / When not to mention nonfiction namesakes? ==&lt;br /&gt;
&lt;br /&gt;
YES!&lt;br /&gt;
*[[Ammonite]] says &amp;quot;In real life, Ammonites are either an [[wikipedia:Ammonoidea|extinct group of molluscs]] (like [[Dead End (BWN)|Dead End]]) or an [[wikipedia:Ammon|ancient tribe from Biblical times]].&amp;quot;&lt;br /&gt;
*[[Blue Maximus]] says he is &amp;quot;named after &#039;&#039;[[wikipedia:The Blue Max|The Blue Max]]&#039;&#039;, a 1966 film about a German fighter pilot during World War I.&amp;quot;&lt;br /&gt;
*[[The Magnificent Six!]] says &amp;quot;The title is a reference to &#039;&#039;[[wikipedia:The Magnificent Seven|The Magnificent Seven]]&#039;&#039;.&amp;quot;&lt;br /&gt;
*[[Optimus Prime (disambiguation)]] says &amp;quot;Optimus Prime is not to be confused with the real-life persons: [http://www.facebook.com/#!/MR0ptimusPrime?ref=profile Mr. Optimus Prime], a well-known Transfan and International Firefighter who legally changed his name to Optimus Prime.&amp;quot;  (That Facebook link, by the way, says &amp;quot;This content is currently unavailable.  The page you requested cannot be displayed right now. It may be temporarily unavailable, the link you clicked on may have expired, or you may not have permission to view this page.&amp;quot;)&lt;br /&gt;
*[[Vortex (disambiguation)]] lists 1990 Vortex, [[GiG]]&#039;s Italian-market name for the [[Battle Squad]] [[Micromaster]] [[Fireshot (G1)|Fireshot]] from Generation 1.&lt;br /&gt;
&lt;br /&gt;
NO!&lt;br /&gt;
*[[Blackwidow]] and [[Black Widow]] were deleted after i made them redirect to [[Blackarachnia (disambiguation)]], so i edited the disambiguation page itself (and its [[Talk:Blackarachnia (disambiguation)|talk page]]), and that got reverted, too.&lt;br /&gt;
*[[Magnificent Seven]] does not mention anything from the disambiguation page at http://en.wikipedia.org/wiki/Magnificent_Seven&lt;br /&gt;
*[[Magnificent Six]] does not mention anything from the disambiguation page at http://en.wikipedia.org/wiki/Magnificent_Seven (although it does link to [[The Magnificent Six!]] which links to http://en.wikipedia.org/wiki/The_Magnificent_Seven )&lt;br /&gt;
*[[Orion_(disambiguation)]] article [http://tfwiki.net/mediawiki/index.php?title=Orion_(disambiguation)&amp;amp;action=history reverted] my link to http://en.wikipedia.org/wiki/Orion_(spacecraft) (or should i have linked Wikipedia&#039;s own disambiguation page http://en.wikipedia.org/wiki/Orion )?&lt;br /&gt;
*[[Rapido]] does not mention [[Windcharger (G1)]] or [[Cliffjumper (G1)]], who were both called Rapido in Canadian-French; i made a disambiguation page which was deleted.&lt;br /&gt;
&lt;br /&gt;
i &#039;&#039;know&#039;&#039; i&#039;m forgetting a bunch more examples--more edits i&#039;ve made that other users have reverted (with some of those edits somehow getting removed from my contributions page afterward?), and more pages that i &#039;&#039;haven&#039;t&#039;&#039; edited but make references similar to the ones i&#039;ve had undone.  So i&#039;m curious if there&#039;s an official policy, with official exceptions, or something?&lt;br /&gt;
&lt;br /&gt;
--[[User:Rhymus|Rhymus]] ([[User talk:Rhymus|talk]]) 07:34, 30 December 2013 (EST)&lt;br /&gt;
:Most of those examples you&#039;ve cited under &amp;quot;no&amp;quot; are not equivalent to the ones you&#039;ve cited under &amp;quot;yes&amp;quot;. To give a few quick explanations:&lt;br /&gt;
:*We don&#039;t disambig or create redirects based on foreign names because there are so many. Disambiguation pages are created if there are three or more articles with matching English names. Fireshot is listed on the Vortex disambiguation page because there were already three or more (English-named) Vortexes, though it should probably be listed separately at the bottom like Perceptor on [[Cliffjumper (disambiguation)]]. I&#039;ve just moved it there.&lt;br /&gt;
:*[[The Magnificent Six!]] page has a note about it being a reference to The Magnificent Seven. To be consistent, the note for Magnificent Seven should probably go on [[Prime Directive issue 1]], I guess.&lt;br /&gt;
:*I&#039;m not sure about adding Wikipedia links to disambiguation pages like the Orion one, because they&#039;re disambiguation pages for articles on TFWiki. If we know a particular Orion was named after the spaceship, it should be on the relevant page anyway. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 17:43, 2 January 2014 (EST)&lt;br /&gt;
:And I&#039;m in favour of removing the Facebook link from the Optimus Prime disambig page if it no longer works. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 17:43, 2 January 2014 (EST)&lt;br /&gt;
&lt;br /&gt;
== End of 2013 toys ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been trying to correctly post the late 2013 and upcoming 2014 toys but it&#039;s sort of confusing what&#039;s been released.  Has Swerve and Cosmos actually made it to retail or just to a select few?  What about Rhinox/Doubledealer?  The latter is available at online retailers, but does that count?  Thanks. --[[User:MistaTee|MistaTee]] ([[User talk:MistaTee|talk]]) 16:46, 31 December 2013 (EST)&lt;br /&gt;
:Swerve and Cosmos are only out in Asia, I think. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 18:15, 2 January 2014 (EST)&lt;br /&gt;
&lt;br /&gt;
== tfwiki.info vs tfwiki.net ==&lt;br /&gt;
&lt;br /&gt;
Not an objection, but a genuine curiosity:  What&#039;s the point of the second url?  On my computer, tfwiki.info automatically redirects to tfwiki.net ,so it&#039;s not like we&#039;re lightening the traffic on tfwiki.net or anything.&lt;br /&gt;
&lt;br /&gt;
--[[User:Rhymus|Rhymus]] ([[User talk:Rhymus|talk]]) 23:17, 1 January 2014 (EST)&lt;br /&gt;
:Branding.  [[User:McFly|McFly]] ([[User talk:McFly|talk]]) 13:20, 7 January 2014 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=841783</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=841783"/>
		<updated>2013-12-11T22:15:27Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Bing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
&amp;lt;br/&amp;gt; &amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Wiki Technical Information:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers_Wiki:Tech|A Not So Brief Summary of the Horrible Things That McFly and Co. Have Done To Keep This Wiki From Melting Down]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::reCaptcha is a piece of poop, security-wise.  I&#039;m also reluctant to add more extensions at the moment, due to performance issues, BUT.  Find something simple and lightweight to REPLACE reCaptcha, and we can talk. --[[User:McFly|McFly]] 05:38, 15 January 2013 (UTC)&lt;br /&gt;
:::$wgSpamRegex isn&#039;t an extension, it&#039;s a line of code you can add various banned words to (i.e., if &amp;quot;viagra&amp;quot; is in the list and someone tries to save a page that includes it, the page wouldn&#039;t save and they&#039;d get a error message telling them why it wouldn&#039;t save. - [[User:SanityOrMadness|SanityOrMadness]] 07:29, 15 January 2013 (UTC)&lt;br /&gt;
::::You know what WASN&#039;T on?  wgEmailConfirmToEdit.  That may make a LOT more sense, as I&#039;d wager that spambots aren&#039;t actually including legit emails.  Email authentication is NOT the same thing. --[[User:McFly|McFly]] 16:50, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I still don&#039;t think reCaptcha is helping, as noticed, and it doesn&#039;t have anything like, say, a lockout policy, so I&#039;ve bit the bullet and added a modified version of the SpamBlacklist extension, adding in RBL support and some basic language filters in one go.  It&#039;s reasonably light on DB traffic, too.  Will it slow the flood?  That remains to be seen, but they&#039;re still getting around it right now. I also think I&#039;ve resolved the IP blocking issue, so we might (might!) be okay now.  Turns out that adding a load balancer in front of the Squid caches hurts Mediawiki&#039;s IP detection logic. --[[User:McFly|McFly]] 20:21, 16 January 2013 (EST)&lt;br /&gt;
::Alternate suggestion: could the system be modded to block an editor from creating an article until one of their edits is marked as patrolled (and thus approved as legitimate)?[[User:KrytenKoro|KrytenKoro]] 00:53, 24 March 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;br /&gt;
::::Most of what&#039;s left is going to be us rejiggering some templates to more efficient code, and documenting the snot out of things so McFly doesn&#039;t name his first ulcer after us.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:02, 15 January 2013 (UTC)&lt;br /&gt;
::::: http://science.education.nih.gov/home2.nsf/Educational+ResourcesResource+FormatsOnline+Resources+High+School/928BAB9A176A71B585256CCD00634489 :p - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
:::::: Pedantry aside, I CAN name my migraines after you. Stress exacerbates THOSE. --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::::::: Which migraine&#039;s stronger then? Madness or little Sanity? :p - [[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC) &lt;br /&gt;
&lt;br /&gt;
===Stuffs what have gone wrong(er)===&lt;br /&gt;
User CSS files aren&#039;t being called post-move. Basically, the stuff [https://www.mediawiki.org/wiki/Manual:Configuration_settings#CSS.2FJs here] was previously all set true, now it&#039;s set false. [Is [[MediaWiki:Common.css]] even working?] - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
: Compared old LocalSettings.php to new, wgUseSiteJs/wgUseSiteCss were NOT set over there.  If you&#039;re not just making blanket assumptions, please point my not-MediaWiki-understanding ass to the right place.  Remember, I built the house, but others (Scout?  Derik?) actually laid out the rooms and installed the appliances.  My understanding of Mediawiki extends out to &amp;quot;Ooh, shiny mediawiki package in apt repositories...&amp;quot;  Anything else is a &#039;&#039;&#039;Wild. Ass. Guess.&#039;&#039;&#039; --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::I&#039;m not an expert (&#039;&#039;&#039;And I can&#039;t see the Wiki&#039;s LocalSettings.php myself to be sure!&#039;&#039;&#039;), but I have played around with MediaWiki a fair bit, so I&#039;m beyond the &amp;quot;oh, shiny&amp;quot; stage and I know where to look at in http://www.mediawiki.org/wiki/Manual:Contents .&lt;br /&gt;
::For instance, I don&#039;t know what $wgAutoConfirmAge and $wgAutoConfirmCount are currrently set to. If the createpage and upload &#039;&#039;have&#039;&#039; been set, but those two variables are &#039;&#039;not&#039;&#039; set, a fairly minimal barrier would be two days &amp;amp; four edits before you can create pages and upload files - certainly, very few spambots will hang around for two whole days before editing!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAutoConfirmAge = 86400 * 2; # Two days times 86400 seconds/day&lt;br /&gt;
$wgAutoConfirmCount = 4;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::If they HAVEN&#039;T been set, you can add them with:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can create pages:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;createpage&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can upload files:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;upload&#039;] = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
::-[[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
===Broken templates===&lt;br /&gt;
{{tl|cal-date}} is broken, but I&#039;m not template savvy enough to fix it. Anyone want to have a go? --[[User:Abates|abates]] 07:17, 16 January 2013 (UTC)&lt;br /&gt;
:Ja, I will fix it.  -[[User:Derik|Derik]] 00:15, 17 January 2013 (EST)&lt;br /&gt;
::$%^&amp;amp;*  I&#039;m getting &#039;&#039;closer&#039;&#039; to fixing it.  -[[User:Derik|Derik]] 15:02, 17 January 2013 (EST)&lt;br /&gt;
:::&#039;&#039;*cries piteously*&#039;&#039; -[[User:Derik|Derik]] 15:43, 17 January 2013 (EST)&lt;br /&gt;
::::I&#039;ve just had a go and I think that&#039;s sorted it! Not sure if there are any other broken templates lurking out there... --[[User:Abates|abates]] 05:58, 20 January 2013 (EST)&lt;br /&gt;
===Storylink===&lt;br /&gt;
Are the storylinks looking odd for anyone else? They appear as full size text without the surrounding box from before for me. --[[User:Khajidha|Khajidha]] 12:29, 20 January 2013 (EST)&lt;br /&gt;
:Yeah, storylinks, note boxes, disambig boxes, organisation templates (eg. listing comics issues) and episode/issue/etc. infoboxes are all not displaying correctly. I assume that the folks who know what they&#039;re doing with this kind of stuff are working on getting them fixed.. [[User:Jalaguy|Jalaguy]] 12:42, 20 January 2013 (EST)&lt;br /&gt;
::I think that&#039;s done it - or at least it&#039;s displaying normally for me now. Well done to all involved, much appreciated. --[[User:Emvee|Emvee]] 17:04, 22 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Still Confused About All This ==&lt;br /&gt;
&lt;br /&gt;
I just got registered so that I can always find this site.&lt;br /&gt;
&lt;br /&gt;
When I search for Transformers Wiki, all I get is Teletraan 1 and I don&#039;t like that site as well. Heck, their information on BotShots is woefully unsatisfactory.&lt;br /&gt;
&lt;br /&gt;
Did this site used to be that site or the other way around? Much of the information in articles looks copied from one site or the other.&lt;br /&gt;
&lt;br /&gt;
Apologies if this is the wrong place to ask these questions. I was looking for an e-mail address or something and couldn&#039;t find it. {{unsigned|Haven13}}&lt;br /&gt;
:No worries! We were originally at Wikia, but split with them in September 2008 and went independent. Wikia are still operating the old version, but it doesn&#039;t get updated in a lot of areas.&lt;br /&gt;
:Where is it you&#039;re searching for Transformers Wiki? We come up first on Google when I search on there. --[[User:Abates|abates]] 18:16, 23 January 2013 (EST)&lt;br /&gt;
::Ooh!  Ooh!  Let me guess!  BING.  (Who are blocked for &#039;&#039;&#039;hammering&#039;&#039;&#039; our wee servers.) --[[User:McFly|McFly]] 23:52, 23 January 2013 (EST)&lt;br /&gt;
:::Well, I just searched for &amp;quot;transformers wiki&amp;quot; on bing.com and we were the first result. Followed by the wikia site, wikipedia&#039;s main Transformers page, and wikipedia&#039;s Transformers (film) page. --[[User:Khajidha|Khajidha]] 07:01, 24 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Key things missing from toy sections on character pages ==&lt;br /&gt;
&lt;br /&gt;
There are a couple of things most toy sections don&#039;t have that would probably be useful:&lt;br /&gt;
* a link to the page about the toyline - some articles have it, but they don&#039;t seem to be the majority.&lt;br /&gt;
* for characters who&#039;ve been more than one faction in fiction, knowing what faction their toy was sold as would be useful, especially if the toyline&#039;s page isn&#039;t split into Autobots and Decepticons.&lt;br /&gt;
Just a couple of ideas. --[[User:Flicky1991|Flicky1991]] 16:45, 2 February 2013 (EST)&lt;br /&gt;
:More than once I have thought a link to the toyline would be handy. - [[User:Starfield|Starfield]] 21:31, 2 February 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== New Theme ==&lt;br /&gt;
&lt;br /&gt;
So, according to Hasbro, basically the entire new theme of the Transformers brand is now Beast Hunters. So why not change the wiki theme from Animated to Beast Hunters? Just a suggestion,if people don&#039;t like it, whatever. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 12:15, 10 February 2013 (EST)&lt;br /&gt;
:That&#039;s a good idea. Even if not Beast Hunters specifically, a Prime-related theme would make more sense than Animated now, considering it&#039;s been a couple of years. --[[User:Flicky1991|Flicky1991]] 12:43, 10 February 2013 (EST)&lt;br /&gt;
:Yeah, sounds awesome! I&#039;m in favor of a TFP theme, when do we change?  - [[User:Bumblejumper|Bumblejumper]] 22:42, 4 November 2013 (EST)&lt;br /&gt;
::Why would we change to TFP after it just ended rather conclusively?--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 23:23, 4 November 2013 (EST)&lt;br /&gt;
:::Yeah, you&#039;ve got a point, maybe TF4, when it comes out? - [[User:Bumblejumper|Bumblejumper]] 23:27, 4 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Trivia/notes sections ==&lt;br /&gt;
&lt;br /&gt;
While I have nothing against a &amp;quot;trivia&amp;quot; or &amp;quot;notes&amp;quot; section (we are not Wikipedia, after all), it is my opinion that such a section should really only contain general notes about the article&#039;s subject that are either really trivial, or too general to fit into any specific paragraph. In particular, a noteworthy two-line bit regarding a specific toy in an article about a character with multiple toys might better fit into the specific toy&#039;s entry. For example, if the toy had a prototype that was very different from the final toy, the toy&#039;s entry isn&#039;t very long and the info about the prototype doesn&#039;t fill the page either, it could better be added to the toy&#039;s entry (since it&#039;s actual information about the toy, and its design process), rather than treating it as marginal trivia that is ostracized from the main portion of the article. Likewise, informative notes about fictional appearances of a character and after-the-fact retcons that affect the general perception of said character are better added as notes to the specific fiction writeup, rather than shoving it into the &amp;quot;notes&amp;quot; ghetto. So simply put: Short notes that are directly related to a specific part of the article might better be placed in that very part, rather than in an inflated catch-all &amp;quot;notes&amp;quot; section. Thoughts?--[[User:Nevermore|Nevermore]] 15:45, 16 February 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Proposal to rename an article. ==&lt;br /&gt;
&lt;br /&gt;
Hi, I&#039;m proposing that the article &amp;quot;Brick Springhorn&amp;quot; be renamed to &amp;quot;Brick Springstern&amp;quot;. Because of an error in the original comic, the character was given both names at various points during the story. A radio announcer called him &amp;quot;Springstern&amp;quot; and an editorial caption said he was &amp;quot;Springhorn&amp;quot;. Usually, I&#039;d agree with calling him &amp;quot;Springhorn&amp;quot;. We can rationalise the mistake by saying the announcer was mistaken or drunk or something, and of course &amp;quot;Springhorn&amp;quot; is just a damn funny name. Except...&lt;br /&gt;
&lt;br /&gt;
In the recent IDW reprint (which I was re-reading today), they have corrected the error, and he&#039;s now called &amp;quot;Springstern&amp;quot; throughout the comic. (Similar to how the IDW reprints corrected the Sherman Dam / Boulder Dam mistake).&lt;br /&gt;
&lt;br /&gt;
Given that &amp;quot;Springstern&amp;quot; is now his name throughout the most recent printing, I&#039;d suggest that most readers trying to look up the character will type &amp;quot;Springstern&amp;quot; into the search box. I know the redirect is in place, but I feel that maybe it should now be the other way round, with &#039;Horn&#039; redirecing to a main article located at &#039;Stern&#039;.&lt;br /&gt;
&lt;br /&gt;
Advice and opinion welcome! --[[User:Ryan Frost|Ryan Frost]] 17:55, 14 March 2013 (EDT)&lt;br /&gt;
:This is terrible news, because you&#039;re probably right, and I hate it.  --[[User:ItsWalky|ItsWalky]] 18:01, 14 March 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Database dump ==&lt;br /&gt;
&lt;br /&gt;
Hello! In my region I have a bit of an internet connection issue so I&#039;m using WikiTaxi for offline wikia browsing. Since tfwiki is based on wikimedia system I was wondering if a database dump of current pages could possibly be generated for download? I see that it currently doesn&#039;t exist on your special: statistics page. I&#039;d rather avoid any mirroring software as it would no doubt cause issues with the site so I hope someone can help with this.&lt;br /&gt;
&lt;br /&gt;
Thank you in advance,&lt;br /&gt;
&lt;br /&gt;
[[User:NocteDraconis|NocteDraconis]]&lt;br /&gt;
:I can&#039;t help personally, but it might be worth also posting this over in the  [http://www.allspark.com/forums/index.php?showtopic=83287 TFWiki discussion thread] on the Allspark board, it&#039;s frequented by several of the sysops/technical-know-how guys from here. [[User:Jalaguy|Jalaguy]] 09:05, 27 March 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Thank you for pointing me in the right direction :)Though, I do hope someone will take notice of the question here as well. [[User:NocteDraconis|NocteDraconis]] 15:12, 27 March 2013 (EDIT)&lt;br /&gt;
&lt;br /&gt;
== Proposing New Continuity Term for Multipath Books == &lt;br /&gt;
&lt;br /&gt;
Hi, I&#039;ve been working on the first six Find Your Fate Junior books since I joined about a month ago, and just finished a summary for [[Dinobots Strike Back]]. While I&#039;m still revising it, I just began editing relevant info into character pages, and starting with Starscream&#039;s, I found I needed a new term to explain how paths within the same book relate to each other without using the word &amp;quot;book&amp;quot;. I didn&#039;t see anything that applies to this in the Continuities page, so I began referring to each individual book as its own &amp;quot;micro-continuity nexus&amp;quot;. I think this is necessary to clarify that each book has its own tangle of paths which don&#039;t carry over to other books in the series, even though the books in that particular series are numbered by Ballantine. &lt;br /&gt;
&lt;br /&gt;
For example, when moving from that first book onto Starscream&#039;s actions in [[Battle Drive]], I&#039;d begin the first paragraph with: &amp;quot;In the next adjacent micro-continuity nexus, Starscream and Blitzwing were on a strafing-run to torch farmland, when...&amp;quot; since &amp;quot;later&amp;quot; isn&#039;t true with no possible book-to-book continuity, but I need to indicate that the summaries are moving on to the next book beyond just the storylinks in that section of the character page. &lt;br /&gt;
&lt;br /&gt;
Please let me know if there&#039;s a better, established term I should be using for this phenomenon. Perhaps some term applied to video games with alternate endings? I don&#039;t know jack about TFVGs, and haven&#039;t studied those pages yet. I intend to add all relevant content from Dinobots Strike Back to the character pages soon, while it&#039;s still fresh in my mind, so please let me know if I&#039;m at risk of muddying them up with a nonsensical term. [[User:Bumblevivisector|Bumblevivisector]] 23:49, 4 May 2013 (EDT)&lt;br /&gt;
: A couple years ago [[User:Hooper_X/SANDBALLS/Example_character_article/Games|I was trying to figure out how to describe video games with multiple playable characters, different endings, etc.]] and was leaning towards considering each individual path a [[splinter timeline]].  But that&#039;s just me and nobody else ever looked at what I came up with.  So. [[User:Hooper X|-hx]] 12:51, 14 May 2013 (EDT)&lt;br /&gt;
::Yeah, I&#039;ve gotten the impression that no one will say anything about others&#039; sandboxes, but might once something&#039;s actually implemented and becomes a potential problem. I agree that &amp;quot;splinter&amp;quot; is as good a term as &amp;quot;path&amp;quot;, and I see now that even the splinter page could use some work; seems like [[Earthforce]] should be mentioned as the first &#039;&#039;possible&#039;&#039; splinter, setting the precedent for the other Marvel examples listed, but that was likely a touchy subject for tending to veer into endless speculation. &lt;br /&gt;
&lt;br /&gt;
::Your example looked like a workable outline, but I don&#039;t know enough about different TF games to visualize in detail how it&#039;d apply. Have there been any two TF games with continuity that retroactively makes one possible outcome the &amp;quot;real&amp;quot; ending? (non-TF ex: Mortal Kombat II stating Johnny Cage beat Goro) &amp;quot;Nexus&amp;quot; just seems like the best word for a clump of splinters that all have equal weight, continuity-wise (one game, one book).[[User:Bumblevivisector|Bumblevivisector]] 19:11, 14 May 2013 (EDT)&lt;br /&gt;
:::How much of the [[splinter timeline]] article is from sources? Is that term actually used? If so, I think it would be best to keep with it. --[[User:Khajidha|Khajidha]] 20:22, 14 May 2013 (EDT)&lt;br /&gt;
::::Oh, I just meant that the article looked like it could use a few more examples of splinters, assuming the word was most relevant as a descriptive fan term. If it&#039;s only documenting uses of &amp;quot;splinter&amp;quot; from official sources, then forget it. As long as no one&#039;s objecting to terms I&#039;m using in FYF books and character page subsections, I&#039;ll just keep using them until I&#039;m done documenting the first 6 books and worry about the wiki&#039;s broader terminology later. &lt;br /&gt;
&lt;br /&gt;
::::Since they&#039;re classified as &amp;quot;multipath adventures&amp;quot;, I&#039;ll usually just say &amp;quot;path&amp;quot; or &amp;quot;outcome&amp;quot; to indicate that they&#039;re all viable options with the same canonical weight, since &amp;quot;splinter&amp;quot; &#039;&#039;could&#039;&#039; imply either a timeline-shifting cataclysm, or that the splinter is inferior to a &amp;quot;main&amp;quot; timeline that far more fans are familiar with, a principle which would just inject fan-judgement into these particular books. [[User:Bumblevivisector|Bumblevivisector]] 21:16, 14 May 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Holy grails and Want list need to be more visible. ==&lt;br /&gt;
&lt;br /&gt;
Judging by just how long Jake/Stingray has been on the want list, these two things need to be more visible. Many people visiting the wiki probably don&#039;t even visit the home page let alone scroll down far enough to read those two little boxes.&lt;br /&gt;
Would it be possible to do something like the Go! boxes for them? [[User:RavenG|RavenG]] 02:40, 14 May 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
So nobody else thinks something like this would be good?[[User:RavenG|RavenG]] 08:58, 2 June 2013 (EDT)&lt;br /&gt;
:I think the problem is more likely that no one has the items in question than that they need to be more visible. Most of those things are very obscure. --[[User:Abates|abates]] 18:37, 2 June 2013 (EDT)&lt;br /&gt;
:: All the more reason it should be more visible. The more people that know to look for this stuff, the more chances there are of actually finding it.[[User:RavenG|RavenG]] 01:51, 5 June 2013 (EDT)&lt;br /&gt;
::: It&#039;s second from the top, just below the Featured Article.  It&#039;s more visible than 90% of the rest of the frontpage.  And finding Holy Grails is NOT more important than showcasing our good content that we actually have.  --[[User:ItsWalky|ItsWalky]] 02:04, 5 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Seen this? ==&lt;br /&gt;
[http://lmb3.net/2013/04/18/3633/ More info than you ever thought you&#039;d need about the Ziploc TFTM iron-on promotion.]  This all should be wiki&#039;d up by someone.  Possibly me.  09:51, 17 May 2013 (EDT) (look at that 100 million dollar growth in the first year - that&#039;s like &#039;&#039;Angry Birds&#039;&#039; levels of success.)&lt;br /&gt;
&lt;br /&gt;
== Left-hand menu ==&lt;br /&gt;
&lt;br /&gt;
FOC and Prime - the Game have been and gone by now, so we can probably take them off there. It&#039;s probably a bit early to put Transformers 4 on. Maybe we could put links to the MTMTE and RID comics? Is Transformers: Legends high-profile enough that a link on the menu would be useful? --[[User:Abates|abates]] 22:31, 21 May 2013 (EDT)&lt;br /&gt;
:Anyone else have an opinion? --[[User:Abates|abates]] 21:34, 27 May 2013 (EDT)&lt;br /&gt;
::I&#039;d be down with MTMTE and RID on the sidebar, considering the level of popularity IDW&#039;s stuff is currently enjoying in the fandom. Legends is probably high-profile enough, but our article for it &#039;&#039;is&#039;&#039; still sporting a stub template, and I&#039;d reckon that most people looking for information on the game will end up at the specialised Wikia rather than here. Once we get closer to 2014, I&#039;d suggest we might subsequently want Thrilling 30 (once we have a page up) and Transformers 4 on there. [[User:Jalaguy|Jalaguy]] 04:54, 28 May 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Spam filter acting up ==&lt;br /&gt;
&lt;br /&gt;
Japanese Wikipedia is being blocked by our spam filter. Can it be whitelisted? [[User:Mimi|Mimi]] 20:42, 3 June 2013 (EDT)&lt;br /&gt;
:The spam filter is blocking all external links at the moment. I&#039;ve given it a poke, but because of the caching we do, it may take a few hours before it comes right. --[[User:Abates|abates]] 21:15, 3 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New Category ==&lt;br /&gt;
&lt;br /&gt;
Have we considered adding a category for characters that debuted in fiction before receiving a toy? As in, no toy was in production at the time they first appeared, but it was eventually made. I&#039;ve noticed the number of examples growing lately, with [[Straxus (G1)|Straxus]], [[Grindcore (G1)|Grindcore]], [[Drift (G1)|Drift]], [[Nightstalker]], [[Wipe-Out]], the Female Autobots, [[Dion]], [[Hauler]], [[Devcon]]...&lt;br /&gt;
&lt;br /&gt;
Can&#039;t think of a way to phrase it, though. &amp;quot;Fiction First characters&amp;quot;? --[[User:Xaaron|Xaaron]] 10:31, 10 June 2013 (EDT)&lt;br /&gt;
:[http://tfwiki.net/mediawiki/index.php?ns14=1&amp;amp;search=Original&amp;amp;title=Special%3ASearch&amp;amp;fulltext=Advanced+search&amp;amp;fulltext=Advanced+search Precedent] suggests Cat:Fiction-original characters, with Comic-original and Cartoon-original subcategories. - [[User:SanityOrMadness|SanityOrMadness]] 11:52, 10 June 2013 (EDT)&lt;br /&gt;
::But there&#039;s already a Fiction-Only characters category (with Comic- and Cartoon-only subcategories). So Fiction-original would therefore encompass Comic-original and Cartoon-original sub-categories, plus a Fiction-Only subcategory with Comic- and Cartoon-only as sub-subcategories? --[[User:Xaaron|Xaaron]] 21:53, 10 June 2013 (EDT)&lt;br /&gt;
:::Sure. That would make, e.g., [[:Category:Comic-only characters]] a (direct) subcategory of both Cat:Fiction-only and Cat:Comic-original. (NB: There are, of course, more possibilities than comic- and cartoon-. I just picked them up as the most frequent) - [[User:SanityOrMadness|SanityOrMadness]] 23:00, 10 June 2013 (EDT)&lt;br /&gt;
::::I&#039;m curious, would you include such characters as G1 Shockwave, G1 Reflector, and the casts of &#039;&#039;Animated&#039;&#039; and &#039;&#039;Prime&#039;&#039;? Why or why not? - [[User:Starfield|Starfield]] 13:54, 11 June 2013 (EDT)&lt;br /&gt;
:::::In Shockwave and Reflector&#039;s cases, the toy was made first despite the character actually appearing first, so it&#039;s hard to judge, but I&#039;d be inclined not to put them in the category, although I see why others would disagree. I don&#039;t know about the &#039;&#039;Animated&#039;&#039; situation, but the &#039;&#039;Prime&#039;&#039; show was made well before any toys were, so they certainly belong there. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 14:01, 11 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
Yeah, I think this gets pretty hinky when you consider that to be technically correct we&#039;d have to apply it in &#039;&#039;every&#039;&#039; instance where the fiction debuted before the toys did, regardless of whether toys were planned all along and it was just a quirk of release order.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:21, 11 June 2013 (EDT)&lt;br /&gt;
: Shouldn&#039;t it be a case of who developed it first? Dion was developed for fiction and then later turned into a toy (much later). Where a toy is designed and developed and then turns up in fiction (even if this is aired/ released before the toy is released) it was originally developed as toy. The Shockwave et al issue is easy to resolve if you forget about whether they were a transformer toy or not and focus on whether they were a toy or not. Here the character model for fiction is based on a toy, it is an artistic representation of something filtered through the necessities of the medium in which appears along with aesthetic considerations. Where a character is developped for fiction first the starting point is the characterization, personality, needs of the story etc. It is a different creative process. You have to consider if we have toy designers going for show accuracy or illustrators going for toy accuracy (or in some cases not worrying about accuracy at all). I do think the category tells us something about the creative process that has gone into each character/ toy especially where the dates on release as toy/ fiction are similar. I agree though that it could be a potential minefield and we will need source/ link information to back up which category each character would go in..... [[User:Mister Jazzz|Mister Jazz]] 14:48, 11 June 2013 (EDT)&lt;br /&gt;
The above is why I wanted to be clear on the wording. I&#039;m thinking ONLY about characters who were first introduced in fiction at a time when there were no official plans to produce a toy of them...not characters whose first appearance in fiction just happened to beat their toy to release. --[[User:Xaaron|Xaaron]] 15:56, 11 June 2013 (EDT)&lt;br /&gt;
:Because if you split hairs that fine, it becomes an increasingly meaningless distinction relative to our existing categories. A category ought to be relatively simple to apply. Ideally it should be obvious without even needing to go to the category&#039;s page to read the description.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 19:02, 11 June 2013 (EDT)&lt;br /&gt;
::It seems fairly simple to me - toys don&#039;t pop up out of nowhere, there are catalogue solicitations, ToyFairs, adverts and so forth that happen months before toys are/were released. To be &amp;quot;Fiction-original&amp;quot;, the point would be to demonstrate that they weren&#039;t planned as a toy at any point around the release of the comic/etc (and we know it takes yoinks to develop a toy - diverging from actual original characters for the sake of examples - IDW Stealth Bomber Megatron and IDW muscle car Bumblebee were both fiction-original designs, and the not-quite-accurate toys took so long to develop and schedule that both announced after the IDW characters had *stopped* using those bodies! Whereas &amp;quot;Goldfire Bumblebee&amp;quot; may not have been officially announced before RiDW #18 came out, but is anyone in any doubt that the design was toy-first?) If in doubt, leave it out. - [[User:SanityOrMadness|SanityOrMadness]] 15:01, 19 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Gallery space ==&lt;br /&gt;
&lt;br /&gt;
I know that the majority of this would already be covered on the fiction articles, and we want the wiki to have an organic and fun read to it, rather than being tables and lists, but would it be acceptable to add a gallery space for stuff like depicting the various designs and robot/alt mode pairs? For example, when reading about G1 Bumblebee in IDW having umpteen different designs, I kind of want to be able to see an exhaustive list pointing out each design and saying where it&#039;s from. Since this would be a separate namespace, it wouldn&#039;t clutter up the fiction articles, and might actually relieve some pressure to add a screenshot to the fiction articles just because it depicts a design or mode that no interesting screenshots had depicted.&lt;br /&gt;
&lt;br /&gt;
This could also be expanded into interesting screenshots themselves, or for the Japanese series, animated gifs depicting named attacks. Something similar to [http://digimon.wikia.com/wiki/Gallery:Greymon this] or [http://digimon.wikia.com/wiki/Gallery:Ravemon this].&lt;br /&gt;
&lt;br /&gt;
Suggestions and objections welcome, and if you guys aren&#039;t interested in this but know of a fansite that already does it, please bring it up as well, as this kind of obsessive categorizing is what I live for.[[User:KrytenKoro|KrytenKoro]] 14:55, 14 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== tales of the beast hunters chapter 22 sharkticon megatron ==&lt;br /&gt;
&lt;br /&gt;
chapter 21 vertebreak&lt;br /&gt;
&lt;br /&gt;
Chapter 22 (Sharkticon Megatron)&lt;br /&gt;
&lt;br /&gt;
chapter 23 night shadow bumblebee&lt;br /&gt;
&lt;br /&gt;
someone add this to tales of the beast hunters thanks {{unsigned|Jazz-meister}}&lt;br /&gt;
:This is copyvio, right? Don&#039;t we need to delete this?[[User:KrytenKoro|KrytenKoro]] 20:04, 14 June 2013 (EDT)&lt;br /&gt;
::It&#039;s not really a good place for it, no... --[[User:Abates|abates]] 21:18, 14 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Romanizations of purely Japanese names ==&lt;br /&gt;
&lt;br /&gt;
It has come to my attention that the way this Wiki romanizes Transformer names that are purely Japanese in origin (such as for [[Shouki|Shōki]], each member of the [[Dinoforce]], the recent [[Gan&#039;ō]], etc.) feels a bit at odds with how we also handle official name spellings. Generally speaking, we tend to go with the names that are official, and seem to only really diverge from this if there&#039;s something inherently wrong with the official spellings, right? Well, for the aforementioned examples, each of them has an official spelling of their names written in English, yet this Wiki seems to forgo those official spellings for some reason and instead opts for a different spelling of each. My question is, if we have an official spelling of a purely Japanese name, and there seems to be little-to-nothing wrong with said official spelling, then why don&#039;t we always use it?, For Shōki, for instance, we&#039;ve gone with spelling his name as such despite official packaging material with his toy spelling his name as &amp;quot;Shouki&amp;quot; in English. Similar cases also apply for the Dinoforce members and Gan&#039;ō, as well. The only exception to this I can think of that we do use is &amp;quot;Ginrai&amp;quot;, whose name would be more straightforwardly Romanized as &amp;quot;Jinrai&amp;quot;, but we went with &amp;quot;Ginrai&amp;quot; due to official sources spelling his name with a G. So what makes Ginrai special enough for him to use the official spelling over the straight Romanization spelling?&amp;lt;br&amp;gt;&lt;br /&gt;
Now, I&#039;m not suggesting that we switch every single romanized purely Japanese name out of the Hepburn style that we use. On the contrary, I think we should at least continue to utilize the current Hepburn style for names that have no official spelling in English whatsoever, or at least for those who haven&#039;t had theirs revealed yet. But for those who have (Shouki, the Dinoforce, Ganoh, etc.), I ponder as to why we don&#039;t just use what is official if what&#039;s official is indeed a decently acceptable alternative to what ths Wiki uses. I mean, there is precedence in us using the official spellings since we use &amp;quot;Ginrai&amp;quot; over &amp;quot;Jinrai&amp;quot;. Why, we even use &amp;quot;Dinoforce&amp;quot; when the box and fiction both clearly say &amp;quot;Kyoryu Sentai&amp;quot; (Dinosaur Squadron/Taskforce) in Japanese. So what&#039;s been stopping us from using the official names for the non-Ginrai Japanese word TF names? --[[User:Sabrblade|Sabrblade]] 01:08, 18 June 2013 (EDT)&lt;br /&gt;
:Part of the problem I feel here is evokes the &amp;quot;Spell My Name With An S&amp;quot; trope, and part trying to keep the spirit of the name&#039;s original meaning. For example, &amp;quot;Dinoforce&amp;quot; from &amp;quot;Kyoryu Sentai&amp;quot; feels more... real in English, I suppose, as contrast to someone actually writing out &amp;quot;Dinosaur Squadron/Taskforce&amp;quot;. &amp;quot;Dinoforce&amp;quot; has that sense of quirkiness but it still carries the meaning without loosing too much. Sometimes, the official spelling that Takara uses just seems odd ([[Mirage (G1)|Ligier]]/[[Engrish#Deliberate Engrish|Rijie]] or [[Rartorata]], anyone?), and other times the name only makes sense if you have a passable grasp of the language. &amp;lt;sub&amp;gt;(The arguments I could bring up from subbing toku. Then of course, someone else could argue about &amp;quot;sentai&amp;quot; that used in the Super Sentai series...)&amp;lt;/sub&amp;gt; --[[User:Lonegamer78|Lonegamer78]] 01:52, 18 June 2013 (EDT)&lt;br /&gt;
::I&#039;m fine with us using &amp;quot;Dinoforce&amp;quot;. I was just pointing it out as an example of us using an official spelling over a more literal one. Same with &amp;quot;Ginrai&amp;quot; vs. &amp;quot;Jinrai&amp;quot;. But, what I&#039;m really getting at is why we use spellings like &amp;quot;Shōki&amp;quot;, &amp;quot;Gōryū&amp;quot;, &amp;quot;Gan&#039;ō&amp;quot;, etc. when there are official TakaraTomy spellings of these as &amp;quot;[http://tftechspecs.com/pics2/12668.jpg Shouki]&amp;quot;, &amp;quot;[http://tftechspecs.com/pics2/12710.jpg Goryu]&amp;quot;, [https://twitter.com/tagoal/status/345702332438302720/photo/1 Ganoh]&amp;quot;, etc. that feel just as valid as alternatives to what we currently use. (Not to mention easier to type.) This inquiry mostly stems from the discussion on [[Talk:Gan&#039;ō|Gan&#039;ō&#039;s talk page]], and raises the question as to why we don&#039;t use the official spellings in cases like these when there doesn&#039;t seem to be that much, if anything at all, inherently wrong with those spellings. --[[User:Sabrblade|Sabrblade]] 09:53, 18 June 2013 (EDT)&lt;br /&gt;
:::Look, there&#039;s pretty much one reason we do it this way - Interrobang&#039;s unconquerable boner for the Japanese language. He pushed for it, and the reason it wound up happening is the same reason that right now nobody is taking on this argument against it. Because &#039;&#039;&#039;&#039;&#039;nobody caaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaares.&#039;&#039;&#039;&#039;&#039; And nobody wants to have to go through changing everything again. - [[User:Chris McFeely|Chris McFeely]] 15:12, 18 June 2013 (EDT)&lt;br /&gt;
::::In other words, &amp;quot;Sabrblade, have at it.&amp;quot; - [[User:SanityOrMadness|SanityOrMadness]] 17:27, 18 June 2013 (EDT)&lt;br /&gt;
:::::Basically. I should point out I pretty much NEVER see Japanese use of English letters actually involving macrons and blardeeblar. And if we can get rid of a lot of that shit on the wiki, I&#039;ll be... well, I dunno about &#039;&#039;happy&#039;&#039;, but less aggravated. I am 100% in favor of using the given romanization when it&#039;s obviously not incorrect. --[[User:M Sipher|M Sipher]] 13:49, 19 June 2013 (EDT)&lt;br /&gt;
::At least going forward, I personally support the &amp;quot;use the romanization given&amp;quot; initiative, unless it gets as bad as Minelba.[[User:KrytenKoro|KrytenKoro]] 16:13, 18 June 2013 (EDT)&lt;br /&gt;
::::I&#039;m all for consistency with the Japanese packaging when it&#039;s basically the same pronunciation. -[[User:LV|LV]] 18:51, 18 June 2013 (EDT)&lt;br /&gt;
Very well, then. Interrobang, huh? Figures. --[[User:Sabrblade|Sabrblade]] 00:25, 19 June 2013 (EDT)&lt;br /&gt;
:Erg, just hit a speedbump. Tried to move Shōki&#039;s page to &amp;quot;Shouki&amp;quot;, but it won&#039;t let me. --[[User:Sabrblade|Sabrblade]] 11:17, 19 June 2013 (EDT)&lt;br /&gt;
::It&#039;s because there&#039;s already a page, redirecting to Shōki. An admin will have to delete the Shouki page. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 11:47, 19 June 2013 (EDT)&lt;br /&gt;
Can an admin delete the Dinoforce redirects? All of them have history, so I can&#039;t move them over. [[User:Mimi|Mimi]] 10:51, 20 June 2013 (EDT)&lt;br /&gt;
:There&#039;s still [[Būpink]], [[Pīpō]], and [[Kōmoribreast]], but I can&#039;t find any official romanizations, so I guess they stay where they are? [[User:Mimi|Mimi]] 13:22, 20 June 2013 (EDT)&lt;br /&gt;
::Yeah, I&#039;d say we can stick with the Hepburn style Romanizations for names/terms that haven&#039;t official been spelled in English yet (or unless there is something genuinely and inherently wrong with its English spelling). &lt;br /&gt;
::Also, thanks a bunch for helping out with this. I started to, but I got stuck when the redirects needed to be deleted first, and then came the TF: The Ride grand opening in Orlando that I was in attendance of, which took a lot of my time away from the Internet. --[[User:Sabrblade|Sabrblade]] 20:29, 21 June 2013 (EDT)&lt;br /&gt;
:::No problem. Happy to help. [[User:Mimi|Mimi]] 22:31, 21 June 2013 (EDT)&lt;br /&gt;
Should real people be included in this? According to the talk page, [[Yūki Ōshima]] is generally credited as Yuki Ohshima. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 06:29, 25 June 2013 (EDT)&lt;br /&gt;
:I should think so. I know he&#039;s not relevant to our wiki, but [http://en.wikipedia.org/wiki/Yasuhiro_Nightow Yasuhiro Nightow] is pretty specific about his name&#039;s Romanization, and I&#039;d think there would be other people who had put thought into it. -[[User:LV|LV]] 09:28, 25 June 2013 (EDT)&lt;br /&gt;
::I&#039;d say that, if there are real Japanese people who have their names spelled a particular way officially (in English letters), then by all means, let us reflect that. If they don&#039;t, however, we can just keep them in the Hepburn style. --[[User:Sabrblade|Sabrblade]] 12:49, 25 June 2013 (EDT)&lt;br /&gt;
:The [[Yuki Ohshima]] page already exists... can someone remove it, please? --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 09:41, 28 June 2013 (EDT)&lt;br /&gt;
::[[Yuki Ohshima]] is still there. Also, [[Shaoshao Li (KP)|Shaoshao Li]] is officially spelt &amp;quot;Syaosyao Li&amp;quot;, so we should probably treat her the way we treat the Japanese ones to be consistent. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 05:59, 1 August 2013 (EDT)&lt;br /&gt;
:::Deleted! There&#039;s a {{tl|tobedeleted}} template you can put on pages, BTW. --[[User:Abates|abates]] 07:11, 1 August 2013 (EDT)&lt;br /&gt;
::::Thanks, I didn&#039;t know! --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 07:37, 1 August 2013 (EDT)&lt;br /&gt;
:::::No problem. I think there should probably be some debate before moving Shaoshao as I get the impression from the talk page that it&#039;s another Minelba type situation possibly? --[[User:Abates|abates]] 16:26, 1 August 2013 (EDT)&lt;br /&gt;
::::::It is, and the page went through a LOT of romanization revisions before we settled on where it is now. --[[User:M Sipher|M Sipher]] 17:04, 1 August 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== DuckDuckGo ==&lt;br /&gt;
&lt;br /&gt;
Could whoever-has-FTP-access unblock [https://duckduckgo.com/duckduckbot DuckDuckBot] in http://tfwiki.net/robots.txt, please. - [[User:SanityOrMadness|SanityOrMadness]] 13:59, 22 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Robot ==&lt;br /&gt;
&lt;br /&gt;
I was quite surprised to see we don&#039;t have an article about robots in general! There are robots other than Cybertronians in &#039;&#039;Transformers&#039;&#039;, both man-made and natural lifeforms. We probably should have an article summing up the different types - after all, we do have an article on [[alien]]s. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 09:42, 28 June 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Archives ==&lt;br /&gt;
&lt;br /&gt;
Do we have a way of searching the archives, other than just manually opening them and looking through each and every one? --[[User:Khajidha|Khajidha]] 14:53, 2 July 2013 (EDT)&lt;br /&gt;
:You can restrict a search to the &amp;quot;Transformers Wiki talk&amp;quot; namespace, which usually works for me. At one point we had a form to do it at the top of this page. --[[User:Abates|abates]] 16:54, 2 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Disambiguation pages and parsing ==&lt;br /&gt;
&lt;br /&gt;
If the names on a disambiguation page differ in parsing, should the page name follow the initial use or the most common use? See [[Heavytread (disambiguation)]] and [[Knockout (disambiguation)]] for examples. The first case is at the most common form while the second is at the first used form. --[[User:Khajidha|Khajidha]] 11:54, 3 July 2013 (EDT)&lt;br /&gt;
:There is [[Help:Disambiguation#Disambiguation pages|no policy]] that I can find. I would say it makes little difference, unless one of the forms was well recognized and the other was super obscure. Otherwise it is six of one, half dozen of the other. Not worth moving pages over. - [[User:Starfield|Starfield]] 19:41, 3 July 2013 (EDT)&lt;br /&gt;
::I would agree it doesn&#039;t make much difference. Most of the time people are going to arrive there via redirection from a link whose text has the parsing that they&#039;re looking for. Only we Wiki editors are likely to go straight to a disambig and we already know what the other parsings are. I don&#039;t think the parsing is going to hinder anyone in trying to find the page. --[[User:Tigerpaw28|Tigerpaw28]] 21:00, 3 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Wiki content used in official materials, again. ==&lt;br /&gt;
So &#039;&#039;Transformers Legends&#039;&#039; just put out a Doctor Arkeville card, and the character bio is a truncated version of the Wiki introduction.  &amp;quot;DR. ARKEVILLE is a self-proclaimed evil genius who often allies himself with the DECEPTICONS.  Like all mad scientists, he has designs to rule the planet Earth.... however, his success rate is sorely lacking.&amp;quot;  It doesn&#039;t MATTER or anything, but it seemed strangely familiar.  [[User:Hooper X|-hx]] 09:13, 9 July 2013 (EDT)&lt;br /&gt;
:Derik checked a while back and found a whole ton of the Legends bios were copied from here.[http://www.allspark.com/forums/index.php?showtopic=83287&amp;amp;view=findpost&amp;amp;p=2310050] I think the conclusion was we weren&#039;t going to worry about it too much. --[[User:Abates|abates]] 19:18, 9 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Sizes ==&lt;br /&gt;
&lt;br /&gt;
I brought this up on the [[Talk:Scale|scale talk page]] but got no response. Basically, for a wiki that tries to include as much as possible, tfwiki doesn&#039;t really address the sizes of the toys. For someone who&#039;s never actually bought any toys, terms like &amp;quot;Deluxe&amp;quot; and &amp;quot;Mega&amp;quot;, or &amp;quot;Small Headmaster&amp;quot; and &amp;quot;Large Headmaster&amp;quot;, or &amp;quot;Autobot Car&amp;quot; and &amp;quot;Mini Vehicle&amp;quot;, aren&#039;t useful for telling how tall the toys actually are. Pretty much the only place this is addressed is the pages for the original Fort Max and the new Metroplex, which actually have numbers (22&amp;quot; and 24&amp;quot;), and seem to be the only place on the wiki where this is addressed, despite articles on both [[Scale]] and [[Size class]]. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 11:00, 10 July 2013 (EDT)&lt;br /&gt;
:I don&#039;t think an &amp;quot;average size&amp;quot; has ever been calculated for a deluxe. Look at the current Beast Hunters line, Starscream is quite a bit smaller than Ripclaw. As far as I know, size classes aren&#039;t really about the size of the toy but of the &#039;&#039;packaging&#039;&#039;. Any deluxe figures should fit in the same shelf/peg space as any other. --[[User:Khajidha|Khajidha]] 11:22, 10 July 2013 (EDT)&lt;br /&gt;
::That way lies madness.  There&#039;s been enough fandom beardwringing about &amp;quot;shrinking/growing deluxes&amp;quot; for a lifetime.  Let&#039;s not fall into that trap.  [[User:Hooper X|-hx]] 13:40, 10 July 2013 (EDT)&lt;br /&gt;
::Khajidha, that&#039;s the sort of thing I&#039;m talking about. Nothing on the wiki actually indicates how tall any of these toys are. You mention &#039;&#039;Beast Hunters&#039;&#039; Starscream, but all it says on his page is that that toy is &amp;quot;shorter than his First Edition toy&amp;quot;. As far as I&#039;m concerned, he could be anything from a couple of inches to over a foot! Everything just seems to be described in terms of other toys - as another example, the original Omnibots are only described as being &amp;quot;shorter than Autobot Cars&amp;quot;. I&#039;m not asking for a true average size - just enough to have some point of reference. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 14:25, 10 July 2013 (EDT)&lt;br /&gt;
:::I think actual measuements would be useful. You would need to standardise what you measure (i.e. from the feet to the top of the head or to the highest point on the toy - not always the same, and determine whether this included any removable weapons/ accesories). We should probably limit the amount of info to stop it turning into an unnecessarily long list (you don&#039;t need height to head, shoulders and cannon where these are progressively taller for example). I&#039;d also like to see both metric and imperial measurements, it&#039;s odd that the only system we seem to have is in imperial when metric would make more sense to me, I suppose both is better than choosing one or the other. It&#039;s a mammoth task though and I&#039;m not sure it could ever be completed. If we start we will have to live with a degree on inconsistency. [[User:Mister Jazzz|Mister Jazz]] 13:54, 17 July 2013 (EDT)&lt;br /&gt;
:So, what if you can stretch their arms up in the air, or they can hold accessories in an unmarked position (maybe on their back?)&lt;br /&gt;
:Eh...I think it would be, at best, reasonable to measure them with no accessories in the pose depicted in the instructions.[[User:KrytenKoro|KrytenKoro]] 16:15, 17 July 2013 (EDT)&lt;br /&gt;
:: Ok, I&#039;ve added height info for [[Prowl (G1)/toys| Prowl]]. I&#039;m not going to add any more yet until I get some feedback on whether the format I&#039;ve used is acceptable. What do you guys think? [[User:Mister Jazzz|Mister Jazz]] 09:30, 23 July 2013 (EDT)&lt;br /&gt;
:::I think that if this is to go forward, that the length of the altmode is of more interest than its height in most cases. --[[User:Khajidha|Khajidha]] 10:43, 23 July 2013 (EDT)&lt;br /&gt;
Figuring out the format should be done on a delete-able &amp;quot;sandbox&amp;quot; page rather than on a &amp;quot;live&amp;quot; one. And honestly, I&#039;m still unsold on the usefulness of the info. But I&#039;ll humor for now...&amp;lt;br&amp;gt;&lt;br /&gt;
:* &#039;&#039;Dimensions&#039;&#039;: ??in / ??cm (robot height), ??in / ??cm (vehicle length)&amp;lt;br&amp;gt;&lt;br /&gt;
This does bring up the question of how many dimensions to measure, and how to non-clunkily add it. It kind of feels like if you&#039;re going to actually put a numbered measurement down, just picking ONE dimension is insufficient... or to put it another way, you halfassed the job. Go full height/width/depth or go home. Toys with multiple altmodes present bigger problems of readability; the more numbers, the more boring a morass the entry becomes. (THIS kind of thing is why you sandbox format changes rather than put them on live pages.) --[[User:M Sipher|M Sipher]] 16:57, 23 July 2013 (EDT)&lt;br /&gt;
:Ok but halfassed is a bit harsh, three quartersassed perhaps... I&#039;m not sure about sandboxing so for Prowl&lt;br /&gt;
&#039;&#039;Dimensions&#039;&#039;: 10.5 cm/ 4⅛ in (robot height), 11.3cm/ 4⅜ in (vehicle length)&lt;br /&gt;
As for the reason to do it we can&#039;t assume everyone visiting the Wiki is a Transformers expert, you or I might understand &#039;about the same size as the 1984 Autobot Cars&#039; but not every visitor will. The casual fan or even parent looking for information regarding what present to buy a child might really appreciate this. You also have to consider that the secondary market is now huge and this info isn&#039;t always present, you would expect this wiki to be able to fill in that gap. As a public service information provider we have to consider that not everyone has our background knowledge and be just as informative to the novice as we are to the expert, otherwise we are in danger of becoming a jargonistic clique who only provide for ourselves. In the same way I think we should also add difficulty rating as stated on the box (where present). If you consider the potential audience in its entirity I think the case for size information is obvious. [[User:Mister Jazzz|Mister Jazz]] 08:30, 24 July 2013 (EDT)&lt;br /&gt;
::In that case, why not just do weight? It&#039;s not going to be changed by altmode, it&#039;s easy to measure, and you&#039;d have a reasonable idea of scale from the weight; besides, the precision of exact size isn&#039;t really going to matter unless you&#039;re putting it in a display case, and in that case you&#039;re almost certainly a collector who understands size classes. Casual fans or parents just looking for a toy to play with aren&#039;t going to need precise measurements of size.[[User:KrytenKoro|KrytenKoro]] 08:44, 24 July 2013 (EDT)&lt;br /&gt;
:::Weight would vary too much due to the density of the materials. A mostly diecast figure may have the same mass as a MUCH larger modern figure with the thin plastic panels they use now. Robot height and altmode length are probably the most relevant measures for most figures. --[[User:Khajidha|Khajidha]] 10:30, 24 July 2013 (EDT)&lt;br /&gt;
::::Yeah, weight is definitely not a thing we need to measure. --[[User:M Sipher|M Sipher]] 19:54, 24 July 2013 (EDT)&lt;br /&gt;
::Any non-TF-fan parent looking to our wiki for toy purchasing information is already well and truly fucked. We really &#039;&#039;aren&#039;t&#039;&#039; a good resource for casual kid-toy purchase information for non-fans at all... I mean, just look at Movie Bumblebee&#039;s toy page. What parent is gonna wanna dig through all that to find their kid&#039;s birthday toy? (Never mind that the toy information is one of the &#039;&#039;last&#039;&#039; things we present; we handle their fiction first.) That demographic is gonna go to TRU&#039;s website and see what&#039;s available now, assuming they web-shop that way at all. And as pointed out, they most certainly aren&#039;t going to need precise measurements.&lt;br /&gt;
:: For &amp;quot;casual&amp;quot; fans, I think they have enough prior experience with toys to know the rough sizes most TFs fall under per given class (standard largish action figure range is the most common). For the more advanced fan who might conceivably need dimensions... then yes, width and depth are as relevant as height, if not moreso. Height doesn&#039;t play into stuffing robot-mode guys onto a display shelf anywhere as much as how much horizontal space a toy takes up... and frankly numbers are nothing next to just plain old physical trial-and-error on that score.&lt;br /&gt;
::As for difficulty ratings... that&#039;s a whole other can of worms. Hasbro&#039;s own ratings are horsehockey; they rated conversions mostly by size-class, not actual difficulty. At this point, that&#039;s basically giving out &#039;&#039;mis&#039;&#039;information. And giving subjective difficulty ratings... less than ideal. Some people &#039;&#039;don&#039;t&#039;&#039; find RiD Side Burn or the Alternators unfun morasses of panel-massaging.&lt;br /&gt;
::And as for &amp;quot;jargonistic clique who only provide for ourselves&amp;quot;... you do know what site you&#039;re on, don&#039;t you? This is akin to accusing TVtropes of not being a good resource for people who want to get into a TV show they&#039;ve not seen but have heard about. We are, ultimately, not a resource for people who kinda sorta maybe think Transformers are okay, but for people keen on digging into the guts of the franchise, the nitty-gritty, the obscure, the corners not often seen. We are very much a metaphorical rabbit hole; by design and intent we run far deeper than anyone on the outside would need. And yes, sometimes we DON&#039;T provide info by choice... like the exact box-back bios and tech-spec numbers, but we DO provide links to places that you can get those if you really want them. The latter we don&#039;t provide because we could find no non-clunky-and-horrible way to present said info, which is very much a problem with measurements... which brings us back to the start. We&#039;d pretty much have to provide &#039;&#039;all&#039;&#039; relevant dimensions to be of actual use to the people who&#039;d conceivably need that kind of information, and presenting that in a way that&#039;s not clunky is a major issue. --[[User:M Sipher|M Sipher]] 19:54, 24 July 2013 (EDT)&lt;br /&gt;
Possibility?  When photographing TFs (or accessories or merchandise, such as statues, [[Robot Heroes]], [[Attacktix]], or [[Movie board and card games|board games/pieces]]), include a ruler or measuring stick in the photo, or if one isn&#039;t handy, photograph the item in or next to your open palm.  (In your palm if it&#039;s obviously smaller than your hand, next to your palm if it&#039;s nearly the size of your hand or larger, and zoom out far enough that your whole hand is in the picture.)  Doesn&#039;t provide all the dimensions (unless you use multiple rulers simultaneously or take multiple photos) and only addresses one mode (unless you have duplicate figures photographed together or take multiple photos), but it&#039;s an easy-to-understand frame of reference, and other measurements can be approximated.&lt;br /&gt;
&lt;br /&gt;
When no photos are available, or when we already have photos which do not include rulers or anything, i have no objection to the inclusion of text giving the length, width, and/or height for any, all, or none of the TF toys/merchandise on this site.  If someone wants to know, and the information is there, great!  If the information there is presented in a clunky way, odds are it&#039;s still better than nothing for anyone curious, and odds are it&#039;s still brief enough for the uninterested to ignore.  Anyone who thinks the presentation of the info is too clunky can reformat it, and anyone who thinks the revision is still too clunky can refine it further, until we arrive at an elegant format we can standardize.  And if the information is not there at all, well, that&#039;s what we have now--an incomplete database which will never be complete as long as Hasbro/TakaraTomy keeps making Transformers, but an incomplete database which contains A) plenty of other interesting tidbits to read about and B) plenty of opportunities for contributors to add what they can.&lt;br /&gt;
&lt;br /&gt;
For the record, sometimes i see photos of TF figures online, and am surprised by how small/large the actual figures are when i eventually see them in person for the first time--even if i own other figures of the same size class (like 1984 Autobot cars, or Legends class figures).  Do i need to know beforehand how big a figure is?  Probably not.  But i may be curious anyhow, and if it pleases someone to satisfy my curiosity, whom does it hurt?&lt;br /&gt;
&lt;br /&gt;
--[[User:Rhymus|Rhymus]] ([[User talk:Rhymus|talk]]) 13:09, 5 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
we are not going to photograph toys in the palms of hands --[[User:ItsWalky|ItsWalky]] ([[User talk:ItsWalky|talk]]) 16:23, 5 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
:Holy [[Wikipedia:Cowcatcher|cowcatchers]], [[Ratbat (SG)|Batbot]]--it&#039;s Walky!  Forgive me for being flustered, but i&#039;ve long thought of you as something of a Transformers [[Legends (disambiguation)|legend]].  (Is that the same as saying you&#039;ve got [[Legends Class|class]]?)  i envy your artistic capability and productivity, admire your dedication to Transformers lore and collecting, and further envy that your art/writing has elevated you beyond the &amp;quot;caste&amp;quot; of mere fandom into the &amp;quot;council&amp;quot; of official TF writers/artists whose works can become canon.  And if you think i&#039;m just kissing your aft, well, i should admit that i&#039;m trying very hard to get on your good side right now as i am a little intimidated by how hard i&#039;ve seen you come down on people whose opinions differ from yours.&lt;br /&gt;
:That being said, you seem to be opposed to using images of toys in/alongside a Human hand as a size reference; have you anything to say about the photographing toys alongside measuring sticks?  Also, are you so opposed to hands being used to show scale that you would remove such images if others post them?&lt;br /&gt;
:(i ask only hypothetically; the only camera i can claim at this time is a G1 Reflector.)&lt;br /&gt;
:--[[User:Rhymus|Rhymus]] ([[User talk:Rhymus|talk]]) 03:42, 6 December 2013 (EST)&lt;br /&gt;
::Aside from the sheer ugliness of having hands or rulers in the photo, you would need to have separate scales for each mode so that it is clear that none of the individual images has been reduced or enlarged relative to the others before combining them. `--[[User:Khajidha|Khajidha]] ([[User talk:Khajidha|talk]]) 09:16, 6 December 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign Localization placement - again!!! ==&lt;br /&gt;
&lt;br /&gt;
Said it on the page for the 1984 cartoon, will say it again here: the Foreign Localization section for cartoon episodes needs to go at the very bottom. It makes no sense to go from factoids (notes, etc.) to a list of names, then back to factoids (Trivia). Disrupts the flow of the page, buries the trivia, looks bad. -- [[User:Repowers|Repowers]] 17:51, 16 July 2013 (EDT)&lt;br /&gt;
:I&#039;ve had this thought a couple of times. It seems like it would be more naturally placed below Trivia with the home video releases. --[[User:Abates|abates]] 05:41, 21 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Some Transformer Knock-off cartoon ==&lt;br /&gt;
&lt;br /&gt;
We have some Transformer-Knock-off cartoon made by china ( Not a big deal huh how about they use that cartoon charracter toy make them loke idiot cut and turn it into &amp;quot;Transformer Gobot Toyline )&lt;br /&gt;
Here the Final Episode&lt;br /&gt;
http://www.youtube.com/watch?v=tI5fXIJY5_U&lt;br /&gt;
&lt;br /&gt;
To Story:&lt;br /&gt;
&lt;br /&gt;
Some stupid kid play games about Transoformer and get sucked into the game world who Transoformer get seperate into 2 side Animal ( Deceticon ) and Vehicle ( Autobot )&lt;br /&gt;
&lt;br /&gt;
Vehicle: With 6 Clan Car,Police Car,Hellicopter,Bulldozer,Jeep ( They are Extinct only the stongest guy alive ),Jet and one extra Bike ( Only One ) ( Clan i mean they Fucking look like the Same Fucking Guy only the Officer on specific clan have different Color that mean they use the Same Fucking Model to make Hundred Guy )&lt;br /&gt;
&lt;br /&gt;
Animal: Only 3 : Jaguar,Gorilla ( Only the leader the infanry are Rat but they look like the mech from Battle Tech Series ) and Dragon&lt;br /&gt;
&lt;br /&gt;
== Korean, not Indonesian ==&lt;br /&gt;
&lt;br /&gt;
The Indonesian foreign names of many of the Transformers are written in Korean. Why? They use a completely different script. I can&#039;t distinguish whether someone just phoneticized Indonesian names and have written them in Korean, or if they&#039;re Korean names and someone just mislabeled them as Indonesian. (I think I see examples of both, although I only have a passing familiarity with Indonesian so I&#039;m not sure.)  --[[User:Noviere|Noviere]] 14:23, 18 July 2013 (EDT)&lt;br /&gt;
:The one that you changed was added by Andreanromanky18, I guess we should review all of the others that he/she has added. --[[User:Khajidha|Khajidha]] 15:43, 18 July 2013 (EDT)&lt;br /&gt;
::[http://id.wikipedia.org/wiki/Grimlock Indonesia Wikipedia] shows most of the characters have the same name as they do in English. [http://ko.wikipedia.org/wiki/%ED%8A%B8%EB%9E%9C%EC%8A%A4%ED%8F%AC%EB%A8%B8_%EB%8D%94_%EB%AC%B4%EB%B9%84 Korean Wikipedia] had Grimlock&#039;s name written differently. Hrm. --[[User:Abates|abates]] 16:36, 18 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Grouping American/Japanese divergent fiction ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m trying to standardize the G1 cartoon fiction sections, particularly when characters have both American and Japanese histories. For larger characters like [[Kup (G1)#Generation 1 cartoon continuity|Kup]] we have a big &amp;quot;&#039;&#039;Generation 1 cartoon continuity&#039;&#039;&amp;quot; masthead, with &amp;quot;&#039;&#039;The Transformers cartoon&#039;&#039;&amp;quot; underneath, some micro-continuities, and &amp;quot;&#039;&#039;Japanese cartoon continuity&#039;&#039;&amp;quot;, which has its own sub-sections. On the other hand, we&#039;ve got [[Hound (G1)|Hound]] with a &amp;quot;G1cc&amp;quot; heading, and all the Japanese sections as equal to &amp;quot;&#039;&#039;The Transformers cartoon&#039;&#039;&amp;quot; instead of under a &amp;quot;Jcc&amp;quot; header. I think Hound should have (1st tier) &amp;quot;G1cc&amp;quot;, (2nd) &amp;quot;&#039;&#039;The Transformers cartoon&#039;&#039;&amp;quot; &amp;amp; &amp;quot;Jcc&amp;quot;, (3rd) the various Japanese fictions.&lt;br /&gt;
&lt;br /&gt;
There&#039;s also some discrepancies between characters that only appeared after [[The Return of Optimus Prime, Part 2|TROOP]], where American and Japanese continuity completely diverged. [[Pointblank]] has a &amp;quot;G1cc&amp;quot; header that includes &amp;quot;&#039;&#039;The Transformers cartoon&#039;&#039;&amp;quot; and &amp;quot;&#039;&#039;The Headmasters cartoon&#039;&#039;&amp;quot;. [[Chromedome (G1)|Chromedome]], however, has &amp;quot;&#039;&#039;The Transformers cartoon&#039;&#039;&amp;quot; (and Wings as a sub-section) completely separated from the &amp;quot;&#039;&#039;Japanese cartoon continuity&#039;&#039;&amp;quot;. I think a &amp;quot;G1cc&amp;quot; is preferable, since the stories flowing forward from &#039;&#039;The Rebirth&#039;&#039; or &#039;&#039;Transformers: The Headmasters&#039;&#039; do share the same underlying backstory.&lt;br /&gt;
&lt;br /&gt;
Finally, there are characters that have only appeared in Japanese and American cartoon micro-continuities. [[Roadblock (G2)|Roadblock]] has appeared in America&#039;s Wingsverse and Japan&#039;s &#039;&#039;United EX&#039;&#039; fiction. Both of these continuities come from the original cartoon, as &amp;quot;add-ons&amp;quot;, but there&#039;s nothing to indicate that in the way they&#039;re grouped under his fiction section. I think characters like Roadblock, Rapido, etc. should have their Wings/United EX sections grouped together, with a note of some kind explaining the connection.&lt;br /&gt;
&lt;br /&gt;
Anyway, I wanted to bring this up here before I started sweeping through the G1 sections. Preferences one way or another? --[[User:Xaaron|Xaaron]] 08:56, 23 July 2013 (EDT)&lt;br /&gt;
:I don&#039;t think character pages should concern themselves with continuity beyond the characters themselves. &#039;&#039;Headmasters&#039;&#039; Chromedome has absolutely no connection to Rebirth Chromedome in any way and putting them under the same section is deceptive. [[User:Mimi|Mimi]] 22:15, 24 July 2013 (EDT)&lt;br /&gt;
::The problem with that is that a casual reader of the page may not know the connection between the US and Japan cartoons. Whichever way it&#039;s written, it will be clear that Chromedome was introduced separately in both the US and Japanese cartoons - however, grouping the two together would signify that, despite the difference in the portrayal of the character, these are two similar universes, as opposed to the fairly different Marvel universe or the radically different IDW universe. I don&#039;t like it when the wiki assumes too much prior knowledge on the part of the reader - just because &#039;&#039;we&#039;&#039; know the story behind the Rebirth/Headmasters timeline split, someone who only knows Chromedome from the IDW comics may not be as aware, and wiki articles should above all aim to be informative. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 03:26, 25 July 2013 (EDT)&lt;br /&gt;
:::I don&#039;t see why that&#039;s the responsibility of character pages or how that would enlighten them instead of making them think there&#039;s a linear chronology for the character when there isn&#039;t one. [[User:Mimi|Mimi]] 11:00, 25 July 2013 (EDT)&lt;br /&gt;
::::The point I&#039;m trying to make is that, assuming the article is written clearly, there would be no confusion as to whether there is a linear chronology, as the sections would be labelled &amp;quot;US continuity&amp;quot; and &amp;quot;Japanese continuity&amp;quot; or something similar - so as long as we&#039;ve made that clear, we might as well point out that these two separate timelines were once the same timeline, but branched off before this character was introduced, so as not to give the impression of a completely separate &amp;quot;Japanese cartoon continuity&amp;quot; that is unrelated to the US one, unlike the actual situation which has a split timeline. Looking at Chromedome&#039;s page, both the Rebirth section and the Headmasters section mention Galvatron, but the page as written gives no indication that both &amp;quot;versions&amp;quot; of Galvatron, unlike the two Chromedomes, experienced exactly the same events for a while before Chromedome appeared - if Chromedome&#039;s page was the first page I ever read on the wiki, I would conclude that the Headmasters series was as unrelated to the US series as it is to the IDW comics. Grouping the two together would prevent any such misunderstandings without going into too much detail, and the reader could then consult the page about the Headmasters series if they want a full explanation. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 11:19, 25 July 2013 (EDT)&lt;br /&gt;
:::::That was my concern. There could even be an opening note on the subject, like:&lt;br /&gt;
:::::{{note|The underlying history for American and Japanese G1 cartoon continuity is the first 95 episodes of the Sunbow cartoon, before splitting in two directions. Chromedome first appeared in the cartoon continuity after the split occurred, with two distinct histories.}}&lt;br /&gt;
:::::--[[User:Xaaron|Xaaron]] 11:53, 25 July 2013 (EDT)&lt;br /&gt;
::::::The Marvel comic sections are already drowned in obnoxious continuity notes. Do we really need to do the same to the cartoon sections? [[User:Mimi|Mimi]] 15:52, 25 July 2013 (EDT)&lt;br /&gt;
:::::::I&#039;m confused -- how are you making &amp;quot;being informed&amp;quot; sound like a negative? --[[User:Xaaron|Xaaron]] 17:56, 25 July 2013 (EDT)&lt;br /&gt;
:::::::I&#039;d rather have &amp;quot;obnoxious&amp;quot; continuity notes than a confusing article. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 17:17, 25 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New templates ==&lt;br /&gt;
&lt;br /&gt;
[[Template:Nihongo]], same one as used on wikipedia.&lt;br /&gt;
&lt;br /&gt;
Also, I had a suggestion for a [[Template:L]] (I forgot to get approval the first time) that would simplify the coding for any article with a parser from &amp;lt;nowiki&amp;gt;[[Optimus Prime (WFC)|Optimus]]&amp;lt;/nowiki&amp;gt; to &amp;lt;nowiki&amp;gt;{{l|Optimus Prime|WFC|Optimus}}&amp;lt;/nowiki&amp;gt;, and &amp;lt;nowiki&amp;gt;[[Optimus Prime (WFC)|Optimus Prime]]&amp;lt;/nowiki&amp;gt; to &amp;lt;nowiki&amp;gt;{{l|Optimus Prime|WFC}}&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thoughts?[[User:KrytenKoro|KrytenKoro]] 11:51, 25 July 2013 (EDT)&lt;br /&gt;
:I really don&#039;t see the need for a link template like that. It increases the learning curve to edit the wiki in exchange for a only a slight saving of characters. --[[User:Khajidha|Khajidha]] 13:37, 25 July 2013 (EDT)&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 14:07, 25 July 2013 (EDT)&lt;br /&gt;
::Like Khajidha said, it&#039;s a solution that solves nothing in particular. Not everything needs to be relegated to templates. (I&#039;m looking right at that awful Comicstory template.) [[User:Mimi|Mimi]] 15:49, 25 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Regarding the Nihongo template, I wonder if there&#039;s somewhere more useful we can point the question mark thingy at the end rather than a Wikipedia page with general Japanese info and WP-specific stuff for dealing with Japanese, though I&#039;m not sure if we have a relevant help page (perhaps this is a sign we need one). --[[User:Abates|abates]] 19:03, 30 July 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== trying to find a template ==&lt;br /&gt;
&lt;br /&gt;
I believe the subarticle [[2006/toys]], and the like, used to have a template pointing back to the year at the top of the article, but I can&#039;t seem to find that template.  Does anyone know what it should be?  Also, should these subarticles have a category?  Thanks. --[[User:MistaTee|MistaTee]] 10:23, 15 August 2013 (EDT)&lt;br /&gt;
:I don&#039;t think &amp;quot;2006/toys&amp;quot; is meant to be viewed on its own. It exists for some organizational reason or another. Its content is automatically put on the [[2006]] page. - [[User:Starfield|Starfield]] 19:05, 16 August 2013 (EDT)&lt;br /&gt;
::They can come up when you use the random page function though, like the suite pages do. As for the uplink, that wasn&#039;t a template, it was a [http://www.mediawiki.org/wiki/Help:Subpages subpages setting]. --[[User:Abates|abates]] 18:46, 21 August 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Thin gray line&amp;quot; template for splitting sub-sections visually==&lt;br /&gt;
Okay, this kinda hit me while working on [[Glit (KP)|Glit]]&#039;s page... look at that fiction section. How can you tell where one one continuity ends and another begins at a glance? It&#039;s kind of a mess. The size differences between the subheader text is almost negligible. And Glit isn&#039;t even the most complex fiction section we got. The more subheadings we add to a section, and the loner those entries get, the worse it gets.&amp;lt;br&amp;gt;&lt;br /&gt;
Testing things out, I tried the &amp;quot;&amp;lt;nowiki&amp;gt;----&amp;lt;/nowiki&amp;gt;&amp;quot; template, which puts a thin dividing line across the page. It works well as a visual separation, but the line itself is too dark. Can we either change the template so the line is, say, %50 gray (making it subtle but still noticeable and not confusing with the main subheader line breaks), or make a new template that does this function? This would be put between major subheadings; in this case, over the &amp;quot;IDW&amp;quot; and &amp;quot;Classics&amp;quot; headers. This might also be nice for Toy sections. --[[User:M Sipher|M Sipher]] 03:14, 28 August 2013 (EDT)&lt;br /&gt;
:I suggested that like three or four years ago and got yelled at by everybody.  --[[User:ItsWalky|ItsWalky]] 04:17, 28 August 2013 (EDT)&lt;br /&gt;
::I would support it.&lt;br /&gt;
::I think it&#039;d be a bit of a mess for characters around, say the marvel G1 stuff with its multiple branches... but definately worth it in the end. -[[User:Derik|Derik]] 16:17, 12 October 2013 (EDT)&lt;br /&gt;
:::I can dig it. Honestly, I&#039;ve used solid black lines to divide continuity clusters in a few huge articles myself already. - [[User:Chris McFeely|Chris McFeely]] 16:35, 12 October 2013 (EDT)&lt;br /&gt;
:::Well, I don&#039;t think we&#039;d put the line between the Marvel G1 sub-sections since they&#039;re all part of the same &amp;quot;branch&amp;quot;. But between Marvel and IDW? Oh yeah. --[[User:M Sipher|M Sipher]] 16:44, 12 October 2013 (EDT)&lt;br /&gt;
::::I raise the idea of solid black lines between Mrvel and IDW and gray lines between branches.&lt;br /&gt;
::::Does McFeely have an example of an article with a solid black line?  -[[User:Derik|Derik]] 17:11, 12 October 2013 (EDT)&lt;br /&gt;
:::::The trouble there is &amp;quot;solid black&amp;quot; already denotes the spit between MAJOR headers, like &amp;quot;Fiction&amp;quot; and &amp;quot;Toys&amp;quot;. Gray is a &amp;quot;soft separator&amp;quot;; a visible marking, but not as STOP WE ARE MOVING TO AN ENTIRELY NEW SUBJECT as solid black. --[[User:M Sipher|M Sipher]] 17:24, 12 October 2013 (EDT)&lt;br /&gt;
::::::Yeah, that&#039;s an accurate assessment. Re Derik&#039;s question, I know it I did it on [[Matrix of Leadership]] and [[Transwarp]], I might&#039;ve done it on some others but I honestly forget at this point. - [[User:Chris McFeely|Chris McFeely]] 17:52, 12 October 2013 (EDT)&lt;br /&gt;
:::::::To follow up, I don&#039;t think we need a soft-line break between EVERY sub-header. I think that under, say, the Marvel G1 continuity clump, a header is enough to denote &amp;quot;here&#039;s where continuity may jump/branch so just a heads-up&amp;quot;. The line better notes an out-and-out break where what came before had no ties to what comes after... jsut with the gray, we&#039;re still staying in the same ballpark of &amp;quot;Fiction&amp;quot; (or possibly even &amp;quot;Toys&amp;quot;). --[[User:M Sipher|M Sipher]] 18:51, 12 October 2013 (EDT)&lt;br /&gt;
::::::::We&#039;d use a different visual obviously...&lt;br /&gt;
::::::::I&#039;m going to dinner but I&#039;ll do some mockups later so you call can go &amp;quot;Hell no, I hate that, are you crazy?!&amp;quot; and we&#039;ll get a better idea of what we &#039;&#039;don&#039;t&#039;&#039; want, and can maybe figure out something useful.  -[[User:Derik|Derik]] 19:28, 12 October 2013 (EDT)&lt;br /&gt;
::::::::(Unrelated: I think I know what cluster Bot-Shots goes in.) -[[User:Derik|Derik]] 19:28, 12 October 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Disambiguation suffixes ==&lt;br /&gt;
&lt;br /&gt;
I would like to propose two modifications of our disambiguation style, both of which merely codify principles that we already seem to follow. First, I propose that franchise of origin disambiguation suffixes be limited specifically to characters, not places or things. Second, I propose that characters from external properties should never be given Transformers franchise disambiguations, but should always use tags appropriate to the external property. The first rule underlies the logic behind the recent move of [[Tyrest (Autobot)]] to [[Tyrest (G1)]] despite the presence of [[Tyrest (polity)]], which also originated in G1. The second is why [[Roadblock (G1)]] can be at that location despite the existence of [[Roadblock (G.I. Joe)]], whose first TF appearance was during G1. As these examples demonstrate, we are already actually doing this, we just don’t explain it very well. If there are no objections, I intend to clarify [[Help:Disambiguation]] with notes about these principles. --[[User:Khajidha|Khajidha]] 09:42, 2 September 2013 (EDT)&lt;br /&gt;
:We don&#039;t strictly follow that first rule - see the various &amp;quot;Great War&amp;quot; pages, for example. --[[User:Flicky1991|flicky]][[User talk:Flicky1991|1991]] 14:26, 2 September 2013 (EDT)&lt;br /&gt;
::Plus there&#039;s [[Ark (G1)]], [[Ark (Movie)]], etc. --[[User:Abates|abates]] 00:22, 3 September 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
:The one that always gets me is &amp;quot;(TF 2010)&amp;quot;. [[Lugnut (TF 2010)]] is treated as G1, most of the others (e.g., [[Override (TF 2010)]], [[Terradive (TF 2010)]], [[Highbrow (TF 2010)]]) are treated as movieverse (oh, and the Mini-Cons just say &amp;quot;who knows&amp;quot;). The word is DISambiguation, people - G1 characters and movieverse characters should not share a disambig tag. - [[User:SanityOrMadness|SanityOrMadness]] 23:48, 2 September 2013 (EDT)&lt;br /&gt;
::The (TF 2010) toys are disambiged by franchise. That toyline contained toys representing characters from more than one continuity. Lugnut was part of that line&#039;s Reveal the Shield subline imprint, which is when the line switched from a mostly Movieverse toyline to a mostly G1-based/Classics-style toyline. The end result of the characters you mentioned all sharing the same disambig despite being in separate continuities is due to the unfortunate nature of that franchise spanning more than one continuity. --[[User:Sabrblade|Sabrblade]] 00:19, 3 September 2013 (EDT)&lt;br /&gt;
:::I know all that and don&#039;t really care, because the end result is a broken disambig model that only works for rules lawyers. [Note that (Timelines) as a disambig is avoided &#039;&#039;&#039;for this very reason&#039;&#039;&#039;.] - [[User:SanityOrMadness|SanityOrMadness]] 01:19, 3 September 2013 (EDT)&lt;br /&gt;
::::I love it when people tell me they don&#039;t care how the wiki chooses to disambiguate things.  It makes me super want to talk with them further about these issues.  --[[User:ItsWalky|ItsWalky]] 01:23, 3 September 2013 (EDT)&lt;br /&gt;
:::::You never talk &#039;&#039;with&#039;&#039; people on the public internet anyway. You talk &#039;&#039;at&#039;&#039; them.&lt;br /&gt;
:::::As for the subject... disambiguating by franchise may be a great plan (mileages may vary - I think it works only in the simplest cases), but it completely breaks in contact with a multi-continuity franchise. [And is more than a bit wibbly in the case of stuff like toys designed to match pre-existing High Moon WfC/FoC designs being listed only as &amp;quot;repurposes&amp;quot; in those articles because of &#039;&#039;later&#039;&#039; material.] - [[User:SanityOrMadness|SanityOrMadness]] 02:30, 3 September 2013 (EDT)&lt;br /&gt;
::::::Ultimately I don&#039;t think TF2010 is big enough of a franchise for it to be bothered breaking into tiny pieces.  It&#039;s got eight new characters in it.  It&#039;s not like Timelines, which spans years and years and multiple continuities.  It&#039;s not a Big Deal enough to make a mess within the existing rules.  It&#039;s nowhere near a quagmire.   --[[User:ItsWalky|ItsWalky]] 02:45, 3 September 2013 (EDT)&lt;br /&gt;
::::::Also also, the reason Timelines is better split up is because due to its nature of also containing Shattered Glass and fifteen different permutations of many popular character names, disambiguating within it is pretty pointless anyway.  Starscream (Timelines) would refer to which guy, exactly?  The MW clone?  The TransTech guy?  The Shattered Glass version?  Timelines breaks itself within our established rules.  TF2010 absolutely does not, no matter how much you individually think having G1 and Movie guys in the same disambig is wrong. --[[User:ItsWalky|ItsWalky]] 02:53, 3 September 2013 (EDT)&lt;br /&gt;
::::::How is a disambig tag in any way related to how toys are listed on pages? I mean, unless you are legitimately suggesting that instead of disambiguating by franchise, we put all Thundercrackers ever on the same page, I cannot understand the connection here. -[[User:LV|LV]] 02:50, 3 September 2013 (EDT)&lt;br /&gt;
:::::::It isn&#039;t, really, I jumped a track there [posting while insomniac and cranky is never advisable]. It just offends my sense of chronology to see the guy &#039;&#039;the design originated for&#039;&#039; listed as a &amp;quot;repurpose&amp;quot; rather than just listing the thing on both pages equally. - [[User:SanityOrMadness|SanityOrMadness]] 03:07, 3 September 2013 (EDT)&lt;br /&gt;
::::::::Which... we DO. List on both pages. See: lots of Shattered Glass character pages. --[[User:M Sipher|M Sipher]] 03:10, 3 September 2013 (EDT)&lt;br /&gt;
:::::::::It&#039;s listed, but [[Thundercracker_(WFC)#Generations|with a particularly silly note]] given that WfC Thundercracker is the original design. There&#039;s a difference between Shattered Glass using a toy that existed years before SG did as an entirely different character (e.g., SG Ravage from Glit), which is repurposing, and listing the &#039;&#039;original&#039;&#039; as a &amp;quot;repurpose&amp;quot;. - [[User:SanityOrMadness|SanityOrMadness]] 03:44, 3 September 2013 (EDT)&lt;br /&gt;
::::::::::Yeah, that happens not infrequently, like with Megabolt Megatron.  It doesn&#039;t bother me.  This wiki reports what actually happens, not what we wish would happen.  --[[User:ItsWalky|ItsWalky]] 04:11, 3 September 2013 (EDT)&lt;br /&gt;
Hmm. Seems I overlooked a few things about franchise identifications on non-character articles. It still seems that characters take priority over non-characters (per the Tyrest example I gave), but it isn&#039;t quite as strict a rule as I thought. Is there any dispute over the external properties point? --[[User:Khajidha|Khajidha]] 10:41, 3 September 2013 (EDT)&lt;br /&gt;
: I don&#039;t think so.  --[[User:ItsWalky|ItsWalky]] 13:08, 3 September 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
Added an external properties note to [[Help:Disambiguation]]. Feel free to modify it if it seems warranted. Also, do we want to go at least as far as saying that if a character and a non-character from the same franchise need disambiguating that the character can retain the franchise parenthetical while the non-character gets something different? Basically saying that the characters get dibs on franchise tags. --[[User:Khajidha|Khajidha]] 10:50, 7 September 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Stub Templates ==&lt;br /&gt;
&lt;br /&gt;
Okay, so at this point I think I should change my username to &amp;quot;Stubtemplatesix&amp;quot;...so before I go looking through the stub category, are there any other stub templates that people want made? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 16:21, 11 October 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
==From the Marvel Comics portion of the Generation 1 continuity family==&lt;br /&gt;
So I&#039;ve been doing a bit of work with the Comic-only characters lately and I&#039;ve noticed that while we have &amp;quot;from the Hearts of Steel portion of the G1 continuity family&amp;quot; and &amp;quot;from the IDW portion of the G1 continuity family&amp;quot; at the top of various characters&#039; pages, all of the &amp;quot;from the Marvel Comics portion&amp;quot;s seem to have disappeared. Was there a purge of these? Do we not do them any more? Is there a good reason why not? Cheers --[[User:Emvee|Emvee]] 11:15, 28 October 2013 (EDT)&lt;br /&gt;
:There are some &amp;quot;from the Marvel portion...&amp;quot;s. I suspect it&#039;s more a case of &amp;quot;they were never added&amp;quot; than &amp;quot;they were removed&amp;quot;. - [[User:SanityOrMadness|SanityOrMadness]] 13:01, 28 October 2013 (EDT)&lt;br /&gt;
::Okay, just making sure I&#039;m not stepping on any toes if I start adding them --[[User:Emvee|Emvee]] 13:47, 28 October 2013 (EDT)&lt;br /&gt;
:::Well, I added a lot of the &amp;quot;IDW portion&amp;quot;s myself, so...&lt;br /&gt;
:::One thing - &amp;quot;portion&amp;quot; should be included in the link (&amp;lt;nowiki&amp;gt;[[Marvel Comics continuity|Marvel portion]] or [[Marvel Comics continuity|Marvel Comics portion]]&amp;lt;/nowiki&amp;gt;) to distinguish from links to &amp;lt;nowiki&amp;gt;[[Marvel Comics]]&amp;lt;/nowiki&amp;gt;. [I tend to prefer the former, since RG1, Classics and Fleetway are MCC splinters without being published by Marvel Comics.] - [[User:SanityOrMadness|SanityOrMadness]] 16:35, 28 October 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The AllSpark and the Allspark ==&lt;br /&gt;
&lt;br /&gt;
At the end of the Predacons Rising movie, after Optimus tells the others of how he had to put the energy of the [[AllSpark]] into the Matrix of Leadership, thus rendering his spark incapable of separating from the multitude of others, Ratchet asks him &amp;quot;Are you telling us... that you are now... one with the AllSpark?!&amp;quot; Smokescreen answers with &amp;quot;That&#039;s what you say when someone kicks the...&amp;quot; and all proceeding dialogue and action pertain to that meaning that Optimus is on his way to die and go into the afterlife. BUT, up until now, all instances of the term &amp;quot;AllSpark&amp;quot; have been used to refer to the life-granting thing on the physical plane of reality, while the afterlife has been referred to (by us fans) as the &amp;quot;[[Allspark|All&#039;&#039;&#039;&#039;&#039;s&#039;&#039;&#039;&#039;&#039;park]]&amp;quot; (lowercase S), as a means to differentiate the two (since the afterlife dimension first introduced in Beast Machines and the life-granting cube first seen in the movies were hardly the same thing at the time). Like, a TF who&#039;s dead is one who is &amp;quot;one with the Allspark.&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
But now, with the use of the phrase &amp;quot;[being] one with the AllSpark&amp;quot; in this scene, it seems to strongly suggest that the term related to source of Cybertronian life and the term related to the Cybertronian afterlife are now considered to be one concept containing all of the aspects of Cybertronian life, birth, death, and afterlife. And if such is now the case, does this call for a massive re-merging of the two separate articles with some McFeely-levels of rewriting? --[[User:Sabrblade|Sabrblade]] 00:45, 29 October 2013 (EDT)&lt;br /&gt;
:I&#039;ll just say I happen to be working on something already that pertains to this. But that that also seems like an overly specific reading of the dialogue on your part when it could just as easily mean the same thing it&#039;s always meant up until now (that the energy-AllSpark of &#039;&#039;Prime&#039;&#039; is, like all other AllSparks, merely a means of accessing the afterlife, rather than some physical manifestation of the afterlife in the material plane, and that Prime merely &amp;quot;became one&amp;quot; with it in an overly literal way that is not the norm that happened to poetically mirror the normal meaning of the expression), and that such a vague foundation is not one to justify a merging of the articles on. - [[User:Chris McFeely|Chris McFeely]] 06:06, 29 October 2013 (EDT)&lt;br /&gt;
::Well, how many times has the phrase &amp;quot;[being] one with the Allspark&amp;quot; been used to refer to the Uppercase S life-giving concept of the physical plane instead of the lowercase S afterlife concept that it originally referred to? I highly (and sadly) doubt the folks at Hasbro bother to think of the two terms as referring to separate things like we fans do. --[[User:Sabrblade|Sabrblade]] 11:25, 29 October 2013 (EDT)&lt;br /&gt;
:::I&#039;ve never made the distinction as it has always been obvious to me that Hasbro didn&#039;t. --[[User:Khajidha|Khajidha]] 12:23, 29 October 2013 (EDT)&lt;br /&gt;
::::It&#039;s a vague distinction anyway. It&#039;s basically the same as all those times in the G1 cartoon that characters professed to be &amp;quot;joining the Matrix&amp;quot; or &amp;quot;entering the Matrix&amp;quot;, or the time Rampage told Silverbolt it was &amp;quot;time to go back to the Matrix&amp;quot; at a time when the writers envisioned the Matrix as a protoform production facility. Characters in-universe talk a fair bit about returning to or becoming one with the object that spawned them; &#039;&#039;Beast Machines&#039;&#039; and subsequent work built on what that show did just lets us know there&#039;s more to it than that, without invalidating that sentiment either. - [[User:Chris McFeely|Chris McFeely]] 12:29, 29 October 2013 (EDT) &lt;br /&gt;
:I had to reread this several times to even understand what your concern was. Suffice it to say that I don&#039;t view this dialogue as changing anything we knew about either concept. -[[User:LV|LV]] 13:37, 29 October 2013 (EDT)&lt;br /&gt;
:::::In that case, I now ask why we split the two in the first place back when the Cube info was being put on the afterlife dimension&#039;s page if the distinction is so vague as to be nonexistent/unnecessary. --[[User:Sabrblade|Sabrblade]] 14:07, 29 October 2013 (EDT)&lt;br /&gt;
::::::The Allspark is only one name for the afterlife. You could just as easily phrase your question &amp;quot;Why aren&#039;t the Matrix of Leadership and the Matrix dimension on the same page?&amp;quot; because that&#039;s exactly the same notion. And you wouldn&#039;t do that, now would you? Like I said, though, I&#039;m gearing up to do some stuff with the Allspark article, which chiefly includes moving it to &amp;quot;Transformer afterlife&amp;quot; to separate out and better explain these distinctions and problems. I think it&#039;s the last major cross-universal meta-concept left after the Matrix, Energon and Transwarp, and the sparseness of the current article annoys me because, given how the Wiki is slowly but surely becoming a major resource consulted by the people creating the fiction, a thorough detailing of it can help mitigate &#039;&#039;exactly this sort of confusion&#039;&#039; in the future. - [[User:Chris McFeely|Chris McFeely]]&lt;br /&gt;
:::::::But wasn&#039;t the term &amp;quot;Allspark&amp;quot; created specifically to refer to the afterlife? To clarify that &amp;quot;the Matrix&amp;quot; was just its nickname and not meant to refer to the Matrix of Leadership? --[[User:Sabrblade|Sabrblade]] 20:19, 29 October 2013 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Wiki update issues ==&lt;br /&gt;
&lt;br /&gt;
The recent wiki update seems to have affected the &amp;lt;nowiki&amp;gt;{{--}}&amp;lt;/nowiki&amp;gt; template, in that it [[Ironhide (BS)|doesn&#039;t seem to work anymore.]] &amp;lt;nowiki&amp;gt;{{-}}&amp;lt;/nowiki&amp;gt; seems to work, though. --[[User:Inkblot|Inkblot]] ([[User talk:Inkblot|talk]]) 21:39, 9 November 2013 (EST)&lt;br /&gt;
:I see the problem. Mediawiki doesn&#039;t use a name tags for anchors any more. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 22:04, 9 November 2013 (EST)&lt;br /&gt;
::And it&#039;s fixed. Thanks. :-) --[[User:Inkblot|Inkblot]] ([[User talk:Inkblot|talk]]) 22:13, 9 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
Also, I noticed that the galleries [[Homage|aren&#039;t bordered anymore.]] --[[User:Inkblot|Inkblot]] ([[User talk:Inkblot|talk]]) 01:39, 11 November 2013 (EST)&lt;br /&gt;
:That actually appears to be an intentional change. If I use the gallery tag on Wikipedia, the gallery doesn&#039;t have a border either. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 02:25, 11 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[:Category:Navigation_templates|Nav templates]] have gone a bit wibbly. [http://tfwiki.net/mediawiki/index.php?title=Template:Nav-bm&amp;amp;curid=18851&amp;amp;diff=838471&amp;amp;oldid=640853 I kludged a fix for the BM one there], but it would probably be easier converting them all to use a base template at {{tl|Nav}}, and just having the links and logo entered in the individual navs. Similar to how {{tl|Messagebox}} and many of the copyright templates work. - [[User:SanityOrMadness|SanityOrMadness]] ([[User talk:SanityOrMadness|talk]]) 13:54, 18 November 2013 (EST)&lt;br /&gt;
:Yes, that seems like a good idea. It&#039;ll keep them standard! --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 02:59, 21 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Marvel G1 Cover Artists ==&lt;br /&gt;
&lt;br /&gt;
Hi, can I just ask where we got the info for US cover artists from, as they weren&#039;t credited in the issues themselves. I only ask because this wiki says that Mark Texeira did the cover for both US#3 and US#4, but on the Comic Book Database (comicbookdb.com) they list Mike Zeck as the cover artist to #3. So, which site is correct, the TFwiki or comicbookdb? And if the wiki has the wrong cover artist for US#3, is it possible some of the cover credits to other issues might also be in need of correction? Cheers! --[[User:Ryan Frost|Ryan Frost]] ([[User talk:Ryan Frost|talk]]) 14:20, 18 November 2013 (EST)&lt;br /&gt;
:Even worse, while we credit the cover to Mark Texeira on the [[:File:MarvelUS-03.jpg|image page]], the actual [[Prisoner of War!|issue page]] credits it to Michael Golden. I think most of the Marvel cover credits really need to be double-checked against a reliable source, but I&#039;m not sure where to find one. The Titan reprints had an intro which often named the cover artists, ISTR, but not always. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 03:30, 21 November 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Bing==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve noticed that tfwiki doesnt show up in bing searches. Rather you&#039;ll get the wikia site even if you type in &amp;quot;tfwiki.&amp;quot;&lt;br /&gt;
Has this been dealt with?&lt;br /&gt;
&lt;br /&gt;
--[[User:Lush City|Lush City]] 20:47, 29 November 2013 (EST)&lt;br /&gt;
:I think it&#039;s one of the crawlers that got blocked for hammering the site. --[[User:Abates|abates]] ([[User talk:Abates|talk]]) 22:13, 29 November 2013 (EST)&lt;br /&gt;
::It was.  I&#039;ve re-enabled it now that I&#039;ve got the wherewithal to deal with things using a method other than the banhammer of rage.  Give it a few days. --[[User:McFly|McFly]] ([[User talk:McFly|talk]]) 17:15, 11 December 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=File_talk:TFU03-toy_Ratchet.jpg&amp;diff=837806</id>
		<title>File talk:TFU03-toy Ratchet.jpg</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=File_talk:TFU03-toy_Ratchet.jpg&amp;diff=837806"/>
		<updated>2013-11-13T14:24:50Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hey, we have a weird glitch happening with this picture. It&#039;s turned on its side and squashed. {{unsigned|PunchSydeiron}}&lt;br /&gt;
:I have no idea what&#039;s causing this on the image page, but it seems to display okay when embedded into an article... Also, please sign your posts by typing four tildes: &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; [[User:Jalaguy|Jalaguy]] ([[User talk:Jalaguy|talk]]) 18:20, 9 November 2013 (EST)&lt;br /&gt;
::Fine here in Chrome 30.0.1599.101 m. -[[User:LV|LV]] ([[User talk:LV|talk]]) 20:47, 9 November 2013 (EST)&lt;br /&gt;
:::Yeah, I fixed it by swapping the image on the server.  We jumped from Mediawiki 1.15 to to 1.19. They only started honoring EXIF rotation data in 1.18, and they apparently messed it up somehow. [[User:McFly|McFly]] ([[User talk:McFly|talk]]) 21:24, 9 November 2013 (EST)&lt;br /&gt;
::::You always have all the answers, McFly! Well, what&#039;s your answer to THAT--? -[[User:LV|LV]] ([[User talk:LV|talk]]) 23:12, 9 November 2013 (EST)&lt;br /&gt;
:::::... It&#039;s the taste you can see? [[User:McFly|McFly]] ([[User talk:McFly|talk]]) 09:24, 13 November 2013 (EST)&lt;br /&gt;
Okay, but how do I sign my posts?&lt;br /&gt;
:I told you just above - type four tildes (&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;), and it&#039;ll automatically become a signature when you save the page. [[User:Jalaguy|Jalaguy]] ([[User talk:Jalaguy|talk]]) 18:17, 12 November 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=File_talk:TFU03-toy_NemesisStrika.jpg&amp;diff=837530</id>
		<title>File talk:TFU03-toy NemesisStrika.jpg</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=File_talk:TFU03-toy_NemesisStrika.jpg&amp;diff=837530"/>
		<updated>2013-11-10T14:47:38Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This image&#039;s orientation is also glitched. --[[User:Inkblot|Inkblot]] ([[User talk:Inkblot|talk]]) 08:03, 10 November 2013 (EST)&lt;br /&gt;
: Fixed. [[User:McFly|McFly]] ([[User talk:McFly|talk]]) 09:47, 10 November 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=File_talk:TFU03-toy_Ratchet.jpg&amp;diff=837305</id>
		<title>File talk:TFU03-toy Ratchet.jpg</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=File_talk:TFU03-toy_Ratchet.jpg&amp;diff=837305"/>
		<updated>2013-11-10T02:24:49Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hey, we have a weird glitch happening with this picture. It&#039;s turned on its side and squashed. {{unsigned|PunchSydeiron}}&lt;br /&gt;
:I have no idea what&#039;s causing this on the image page, but it seems to display okay when embedded into an article... Also, please sign your posts by typing four tildes: &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; [[User:Jalaguy|Jalaguy]] ([[User talk:Jalaguy|talk]]) 18:20, 9 November 2013 (EST)&lt;br /&gt;
::Fine here in Chrome 30.0.1599.101 m. -[[User:LV|LV]] ([[User talk:LV|talk]]) 20:47, 9 November 2013 (EST)&lt;br /&gt;
:::Yeah, I fixed it by swapping the image on the server.  We jumped from Mediawiki 1.15 to to 1.19. They only started honoring EXIF rotation data in 1.18, and they apparently messed it up somehow. [[User:McFly|McFly]] ([[User talk:McFly|talk]]) 21:24, 9 November 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837281</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837281"/>
		<updated>2013-11-09T22:07:31Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Mighty Feature, Mighty Server Drain===&lt;br /&gt;
* The Go-Box!&lt;br /&gt;
* No, seriously, the Go-Box was originally written to poll [http://tfwiki.net/mediawiki/index.php?title=Template:Goicons&amp;amp;action=raw] each time it runs, as was the generator used for off-site signature blocks.  So every time you pull up a page with a Gobox, the server polls itself for that list, using up a second connection, AND taxing the server to execute the PHP code.&lt;br /&gt;
* The GoBoxes are also called from MonacoBook, the TFWiki skin, so every time you pull up a page?  You use up an Apache process JUST TO GRAB SOME RARELY-UPDATED XML.&lt;br /&gt;
* We&#039;ve changed that to poll a file in &amp;lt;code&amp;gt;/var/lib/mediawiki/goicons.xml&amp;lt;/code&amp;gt; instead, which is updated via a cron job.  Make sure you replicate that whole deal if you ever duplicate the wiki, it&#039;s kinda important.&lt;br /&gt;
* Or, you could NOT replicate this step, and suffer the consequences of increased CPU load, and have an annoyed sysadmin.  You don&#039;t want that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
* I&#039;ve had to make manual changes to the 1.19 codebase to function cleanly with PHP 5.4 and some long-deprecated functions used in our older codebase:&lt;br /&gt;
** MemcachedClient.php was defining parameters to the stream_select function directly in the function call.  These variables are now defined prior to the function call.  This change appears to be live in later versions of the client.&lt;br /&gt;
** ConfirmEdit was calling a wgSeedRandom function that has been deprecated.  I&#039;ve commented it out, as that seems to have been the accepted solution to the problem.&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 7.0, Kernel 3.11.6&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.22&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* PHP: 5.4.4&lt;br /&gt;
* MediaWiki:  1.19.5&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
** Done, more or less.  Memcached runs on the Squid servers.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
** Soon!&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
** Done and done, we&#039;re running pretty smoothly at present.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
*We are running a slightly newer version of the ConfirmEdit extension, specifically the one for Mediawiki 1.16 (it works with 1.15 fortunately) primarily because the newer version comes with QuestyCaptcha, which does a lot better job of keeping the spammers out.&lt;br /&gt;
* ConfirmEdit is now the 1.19 version, keeping things in-line with the Debian package manager.&lt;br /&gt;
* Multi-Category Search is presently disabled, it was borking the server completely.  We&#039;ll need to do an error trace later.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837280</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837280"/>
		<updated>2013-11-09T22:04:08Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Future ideas */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Mighty Feature, Mighty Server Drain===&lt;br /&gt;
* The Go-Box!&lt;br /&gt;
* No, seriously, the Go-Box was originally written to poll [http://tfwiki.net/mediawiki/index.php?title=Template:Goicons&amp;amp;action=raw] each time it runs, as was the generator used for off-site signature blocks.  So every time you pull up a page with a Gobox, the server polls itself for that list, using up a second connection, AND taxing the server to execute the PHP code.&lt;br /&gt;
* The GoBoxes are also called from MonacoBook, the TFWiki skin, so every time you pull up a page?  You use up an Apache process JUST TO GRAB SOME RARELY-UPDATED XML.&lt;br /&gt;
* We&#039;ve changed that to poll a file in &amp;lt;code&amp;gt;/var/lib/mediawiki/goicons.xml&amp;lt;/code&amp;gt; instead, which is updated via a cron job.  Make sure you replicate that whole deal if you ever duplicate the wiki, it&#039;s kinda important.&lt;br /&gt;
* Or, you could NOT replicate this step, and suffer the consequences of increased CPU load, and have an annoyed sysadmin.  You don&#039;t want that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 7.0, Kernel 3.11.6&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.22&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* PHP: 5.4.4&lt;br /&gt;
* MediaWiki:  1.19.5&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
** Done, more or less.  Memcached runs on the Squid servers.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
** Soon!&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
** Done and done, we&#039;re running pretty smoothly at present.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
*We are running a slightly newer version of the ConfirmEdit extension, specifically the one for Mediawiki 1.16 (it works with 1.15 fortunately) primarily because the newer version comes with QuestyCaptcha, which does a lot better job of keeping the spammers out.&lt;br /&gt;
* ConfirmEdit is now the 1.19 version, keeping things in-line with the Debian package manager.&lt;br /&gt;
* Multi-Category Search is presently disabled, it was borking the server completely.  We&#039;ll need to do an error trace later.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837279</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837279"/>
		<updated>2013-11-09T22:02:59Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Extensions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Mighty Feature, Mighty Server Drain===&lt;br /&gt;
* The Go-Box!&lt;br /&gt;
* No, seriously, the Go-Box was originally written to poll [http://tfwiki.net/mediawiki/index.php?title=Template:Goicons&amp;amp;action=raw] each time it runs, as was the generator used for off-site signature blocks.  So every time you pull up a page with a Gobox, the server polls itself for that list, using up a second connection, AND taxing the server to execute the PHP code.&lt;br /&gt;
* The GoBoxes are also called from MonacoBook, the TFWiki skin, so every time you pull up a page?  You use up an Apache process JUST TO GRAB SOME RARELY-UPDATED XML.&lt;br /&gt;
* We&#039;ve changed that to poll a file in &amp;lt;code&amp;gt;/var/lib/mediawiki/goicons.xml&amp;lt;/code&amp;gt; instead, which is updated via a cron job.  Make sure you replicate that whole deal if you ever duplicate the wiki, it&#039;s kinda important.&lt;br /&gt;
* Or, you could NOT replicate this step, and suffer the consequences of increased CPU load, and have an annoyed sysadmin.  You don&#039;t want that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 7.0, Kernel 3.11.6&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.22&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* PHP: 5.4.4&lt;br /&gt;
* MediaWiki:  1.19.5&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
*We are running a slightly newer version of the ConfirmEdit extension, specifically the one for Mediawiki 1.16 (it works with 1.15 fortunately) primarily because the newer version comes with QuestyCaptcha, which does a lot better job of keeping the spammers out.&lt;br /&gt;
* ConfirmEdit is now the 1.19 version, keeping things in-line with the Debian package manager.&lt;br /&gt;
* Multi-Category Search is presently disabled, it was borking the server completely.  We&#039;ll need to do an error trace later.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837264</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837264"/>
		<updated>2013-11-09T20:58:17Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Mighty Feature, Mighty Server Drain===&lt;br /&gt;
* The Go-Box!&lt;br /&gt;
* No, seriously, the Go-Box was originally written to poll [http://tfwiki.net/mediawiki/index.php?title=Template:Goicons&amp;amp;action=raw] each time it runs, as was the generator used for off-site signature blocks.  So every time you pull up a page with a Gobox, the server polls itself for that list, using up a second connection, AND taxing the server to execute the PHP code.&lt;br /&gt;
* The GoBoxes are also called from MonacoBook, the TFWiki skin, so every time you pull up a page?  You use up an Apache process JUST TO GRAB SOME RARELY-UPDATED XML.&lt;br /&gt;
* We&#039;ve changed that to poll a file in &amp;lt;code&amp;gt;/var/lib/mediawiki/goicons.xml&amp;lt;/code&amp;gt; instead, which is updated via a cron job.  Make sure you replicate that whole deal if you ever duplicate the wiki, it&#039;s kinda important.&lt;br /&gt;
* Or, you could NOT replicate this step, and suffer the consequences of increased CPU load, and have an annoyed sysadmin.  You don&#039;t want that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 7.0, Kernel 3.11.6&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.22&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* PHP: 5.4.4&lt;br /&gt;
* MediaWiki:  1.19.5&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
*We are running a slightly newer version of the ConfirmEdit extension, specifically the one for Mediawiki 1.16 (it works with 1.15 fortunately) primarily because the newer version comes with QuestyCaptcha, which does a lot better job of keeping the spammers out.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837262</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=837262"/>
		<updated>2013-11-09T20:55:46Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki..&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Mighty Feature, Mighty Server Drain===&lt;br /&gt;
* The Go-Box!&lt;br /&gt;
* No, seriously, the Go-Box was originally written to poll [http://tfwiki.net/mediawiki/index.php?title=Template:Goicons&amp;amp;action=raw] each time it runs, as was the generator used for off-site signature blocks.  So every time you pull up a page with a Gobox, the server polls itself for that list, using up a second connection, AND taxing the server to execute the PHP code.&lt;br /&gt;
* The GoBoxes are also called from MonacoBook, the TFWiki skin, so every time you pull up a page?  You use up an Apache process JUST TO GRAB SOME RARELY-UPDATED XML.&lt;br /&gt;
* We&#039;ve changed that to poll a file in &amp;lt;code&amp;gt;/var/lib/mediawiki/goicons.xml&amp;lt;/code&amp;gt; instead, which is updated via a cron job.  Make sure you replicate that whole deal if you ever duplicate the wiki, it&#039;s kinda important.&lt;br /&gt;
* Or, you could NOT replicate this step, and suffer the consequences of increased CPU load, and have an annoyed sysadmin.  You don&#039;t want that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 6.0, Kernel 3.6.5&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.16&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* MediaWiki:  1.15.0&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
*We are running a slightly newer version of the ConfirmEdit extension, specifically the one for Mediawiki 1.16 (it works with 1.15 fortunately) primarily because the newer version comes with QuestyCaptcha, which does a lot better job of keeping the spammers out.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=Main_Page&amp;diff=816443</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=Main_Page&amp;diff=816443"/>
		<updated>2013-07-21T05:19:57Z</updated>

		<summary type="html">&lt;p&gt;McFly: Just forcing a cache update, since squid went a little wonky on the main page.  Bad squid!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
&amp;lt;span id=&amp;quot;esmeral&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
{{:Main Page/disambig}}&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot; width=&amp;quot;60%&amp;quot; valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
{{:Main Page/logo}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:272px;margin-left:auto;margin-right:auto;position:relative;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:160px;position:absolute;z-index:2;top:10px;&amp;quot;&amp;gt;We&#039;re also at [http://www.tfwiki.info/ tfwiki.info], [https://plus.google.com/b/106006102124340784739/ Google+], and these websites:&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;&amp;quot;&amp;gt;&amp;lt;imagemap&amp;gt;&lt;br /&gt;
Image:External website link icons.png|center|272px&lt;br /&gt;
rect 4 65 50 111 [http://www.facebook.com/group.php?gid=28226443881 Give me your Facebook!]&lt;br /&gt;
rect 72 65 119 111 [http://twitter.com/tfwiki Our Twitter feed]&lt;br /&gt;
rect 141 65 186 111 [http://tfwiki.blogspot.com/ Our status blog]&lt;br /&gt;
rect 187 0 271 112 [[Ravage (SG)|Can you see me?  I&#039;m waving!]]&lt;br /&gt;
rect 160 0 186 64 [[Ravage (SG)|Can you see me?  I&#039;m waving!]]&lt;br /&gt;
desc none&lt;br /&gt;
&amp;lt;/imagemap&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
|width=&amp;quot;30%&amp;quot;|&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Current Releases&lt;br /&gt;
|color=#999&lt;br /&gt;
|id=featured-series&lt;br /&gt;
|view=Main Page/featured-series&lt;br /&gt;
|content={{:Main Page/featured-series}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;50%&amp;quot;|&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Featured Article&lt;br /&gt;
|color=#c93&lt;br /&gt;
|id=featured-article&lt;br /&gt;
|view=Main Page/featured-article&lt;br /&gt;
|content={{:Main Page/featured-article}}&amp;lt;p style=&amp;quot;text-align:right&amp;quot;&amp;gt;[[:Category:Featured articles|More Featured Articles]]&amp;lt;/p&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Holy Grails&lt;br /&gt;
|color=#606&lt;br /&gt;
|id=holy-grails&lt;br /&gt;
|content={{:Main Page/holy-grails}}&lt;br /&gt;
|view=Main Page/holy-grails&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Want List&lt;br /&gt;
|color=#606&lt;br /&gt;
|id=want-list&lt;br /&gt;
|content={{:Main Page/want-list}}&lt;br /&gt;
|view=Main Page/want-list&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Editing Tips&lt;br /&gt;
|color=#000&lt;br /&gt;
|id=editing-tips&lt;br /&gt;
|content={{:Main Page/editing-tips}}&lt;br /&gt;
|view=Main Page/editing-tips&lt;br /&gt;
}}&lt;br /&gt;
|width=&amp;quot;50%&amp;quot;|&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Continuities&lt;br /&gt;
|color=#039&lt;br /&gt;
|id=continuities&lt;br /&gt;
|content={{:Main_Page/continuities}}&lt;br /&gt;
|view=Main_Page/continuities&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Categories&lt;br /&gt;
|color=#c03&lt;br /&gt;
|id=categories&lt;br /&gt;
|content={{:Main_Page/categories}}&lt;br /&gt;
|view=Main_Page/categories&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|This Day in History: {{#ifeq:{{LOCALMONTHNAME}} {{LOCALDAY}}|May 8|{{LOCALMONTHNAME}} {{LOCALDAY}}&amp;lt;br&amp;gt;Happy {{#expr:{{CURRENTYEAR}}-1984}}{{#switch:{{#expr:({{CURRENTYEAR}}-1984) mod 10}}|1=st|2=nd|3=rd|th}} Anniversary to Transformers!|{{LOCALMONTHNAME}} {{LOCALDAY}}}}&lt;br /&gt;
|content={{#ifexist:{{LOCALMONTHNAME}} {{LOCALDAY}}| {{:{{LOCALMONTHNAME}} {{LOCALDAY}}}}|&lt;br /&gt;
*It looks like today was a pretty boring day in Transformers history. If you can think of anything we missed, please [[{{LOCALMONTHNAME}} {{LOCALDAY}}|help us by adding it]]!}}&lt;br /&gt;
|id=this-day&lt;br /&gt;
|color=green&lt;br /&gt;
|view={{LOCALMONTHNAME}} {{LOCALDAY}}&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Schedule&lt;br /&gt;
|color=#754c24&lt;br /&gt;
|id=schedule&lt;br /&gt;
|content={{:Main Page/schedule}}&lt;br /&gt;
|view=Main Page/schedule&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Series Information&lt;br /&gt;
|color=#096&lt;br /&gt;
|id=series-information&lt;br /&gt;
|content={{:Main_Page/series-information}}&lt;br /&gt;
|view=Main_Page/series-information&lt;br /&gt;
}}&lt;br /&gt;
[[Category:Top-level categories]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=Main_Page&amp;diff=816442</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=Main_Page&amp;diff=816442"/>
		<updated>2013-07-21T05:18:22Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
&amp;lt;span id=&amp;quot;esmeral&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
{{:Main Page/disambig}}&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot; width=&amp;quot;60%&amp;quot; valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
{{:Main Page/logo}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:272px;margin-left:auto;margin-right:auto;position:relative;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:160px;position:absolute;z-index:2;top:10px;&amp;quot;&amp;gt;We&#039;re also at [http://www.tfwiki.info/ tfwiki.info], [https://plus.google.com/b/106006102124340784739/ Google+], and these websites:&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;&amp;quot;&amp;gt;&amp;lt;imagemap&amp;gt;&lt;br /&gt;
Image:External website link icons.png|center|272px&lt;br /&gt;
rect 4 65 50 111 [http://www.facebook.com/group.php?gid=28226443881 Give me your Facebook!]&lt;br /&gt;
rect 72 65 119 111 [http://twitter.com/tfwiki Our Twitter feed]&lt;br /&gt;
rect 141 65 186 111 [http://tfwiki.blogspot.com/ Our status blag]&lt;br /&gt;
rect 187 0 271 112 [[Ravage (SG)|Can you see me?  I&#039;m waving!]]&lt;br /&gt;
rect 160 0 186 64 [[Ravage (SG)|Can you see me?  I&#039;m waving!]]&lt;br /&gt;
desc none&lt;br /&gt;
&amp;lt;/imagemap&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
|width=&amp;quot;30%&amp;quot;|&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Current Releases&lt;br /&gt;
|color=#999&lt;br /&gt;
|id=featured-series&lt;br /&gt;
|view=Main Page/featured-series&lt;br /&gt;
|content={{:Main Page/featured-series}}&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;50%&amp;quot;|&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Featured Article&lt;br /&gt;
|color=#c93&lt;br /&gt;
|id=featured-article&lt;br /&gt;
|view=Main Page/featured-article&lt;br /&gt;
|content={{:Main Page/featured-article}}&amp;lt;p style=&amp;quot;text-align:right&amp;quot;&amp;gt;[[:Category:Featured articles|More Featured Articles]]&amp;lt;/p&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Holy Grails&lt;br /&gt;
|color=#606&lt;br /&gt;
|id=holy-grails&lt;br /&gt;
|content={{:Main Page/holy-grails}}&lt;br /&gt;
|view=Main Page/holy-grails&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Want List&lt;br /&gt;
|color=#606&lt;br /&gt;
|id=want-list&lt;br /&gt;
|content={{:Main Page/want-list}}&lt;br /&gt;
|view=Main Page/want-list&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Editing Tips&lt;br /&gt;
|color=#000&lt;br /&gt;
|id=editing-tips&lt;br /&gt;
|content={{:Main Page/editing-tips}}&lt;br /&gt;
|view=Main Page/editing-tips&lt;br /&gt;
}}&lt;br /&gt;
|width=&amp;quot;50%&amp;quot;|&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Continuities&lt;br /&gt;
|color=#039&lt;br /&gt;
|id=continuities&lt;br /&gt;
|content={{:Main_Page/continuities}}&lt;br /&gt;
|view=Main_Page/continuities&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Categories&lt;br /&gt;
|color=#c03&lt;br /&gt;
|id=categories&lt;br /&gt;
|content={{:Main_Page/categories}}&lt;br /&gt;
|view=Main_Page/categories&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|This Day in History: {{#ifeq:{{LOCALMONTHNAME}} {{LOCALDAY}}|May 8|{{LOCALMONTHNAME}} {{LOCALDAY}}&amp;lt;br&amp;gt;Happy {{#expr:{{CURRENTYEAR}}-1984}}{{#switch:{{#expr:({{CURRENTYEAR}}-1984) mod 10}}|1=st|2=nd|3=rd|th}} Anniversary to Transformers!|{{LOCALMONTHNAME}} {{LOCALDAY}}}}&lt;br /&gt;
|content={{#ifexist:{{LOCALMONTHNAME}} {{LOCALDAY}}| {{:{{LOCALMONTHNAME}} {{LOCALDAY}}}}|&lt;br /&gt;
*It looks like today was a pretty boring day in Transformers history. If you can think of anything we missed, please [[{{LOCALMONTHNAME}} {{LOCALDAY}}|help us by adding it]]!}}&lt;br /&gt;
|id=this-day&lt;br /&gt;
|color=green&lt;br /&gt;
|view={{LOCALMONTHNAME}} {{LOCALDAY}}&lt;br /&gt;
}}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Schedule&lt;br /&gt;
|color=#754c24&lt;br /&gt;
|id=schedule&lt;br /&gt;
|content={{:Main Page/schedule}}&lt;br /&gt;
|view=Main Page/schedule&lt;br /&gt;
}}&lt;br /&gt;
|}&lt;br /&gt;
{{Featurebox&lt;br /&gt;
|Series Information&lt;br /&gt;
|color=#096&lt;br /&gt;
|id=series-information&lt;br /&gt;
|content={{:Main_Page/series-information}}&lt;br /&gt;
|view=Main_Page/series-information&lt;br /&gt;
}}&lt;br /&gt;
[[Category:Top-level categories]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=780832</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=780832"/>
		<updated>2013-01-28T22:50:23Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
&amp;lt;br/&amp;gt; &amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Wiki Technical Information:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers_Wiki:Tech|A Not So Brief Summary of the Horrible Things That McFly and Co. Have Done To Keep This Wiki From Melting Down]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== G.I. Joe wiki - a little help? ==&lt;br /&gt;
&lt;br /&gt;
Hello, all. I just wanted to add a request for some help for what should really by this wiki&#039;s sister site, Joepedia, the G.I. Joe Wiki. Now, I posted a similar request on some other sci-fi themed wiki, but the only answer I got was being told that the rules forbid a request from another wiki to be made. Well, I think that was kind of stupid, considering the communal attitude the whole wiki concept represents. BUT, ANYWAY, the Joepedia has been growing over the years, but it&#039;s mostly frequented by a small dedicated group of contributors. Since Transformers and G.I. Joe are so closely linked, I hoped some folks on here would like to help.&lt;br /&gt;
&lt;br /&gt;
I will add that I have no authority over on that site, and I don&#039;t really contribute much, mostly because of the time spent my own website. I&#039;m just a concerned geeky citizen drumming up some support. --[[User:JMM|JMM]] 10:26, 7 September 2012 (EDT)&lt;br /&gt;
:Well, I would, but I really don&#039;t know jack shit about G.I. Joe. And when I think about it, I&#039;m not sure this post belongs here. -- [[User:Spydersix|spyder]] 17:36, 7 September 2012 (EDT)&lt;br /&gt;
::Just looking around for a little help. This seemed like the closest thing to a G.I. Joe wiki out there, and I figured it was worth a try. --[[User:JMM|JMM]] 13:23, 13 September 2012 (EDT)&lt;br /&gt;
::I don&#039;t see a problem with a polite request for assistance or notification that a Joe wiki exists, since there IS some crossover interest. I just don&#039;t know how much &#039;&#039;useful&#039;&#039; crossover interest for the Joe wiki there is from this end outside of what we&#039;ve already done. I mean, we&#039;ve got extensive coverage of the parts of Joe directly involving TFs... I&#039;d say that&#039;s probably going to be the most useful thing we have for you. But, if others wanna try it out...&amp;lt;br&amp;gt;&lt;br /&gt;
::...unless you&#039;re on Wikia.... --[[User:M Sipher|M Sipher]] 13:27, 13 September 2012 (EDT)&lt;br /&gt;
:::Yeah, it was just a quick heads up so people who may be interested are aware. I know a number of people who are equally obsessed with TF and Joe. :) Oh, and yes, it is on Wikia! --[[User:JMM|JMM]] 14:22, 13 September 2012 (EDT)&lt;br /&gt;
::::We did at one point approach a partnership with Joepedia, and even had a template that cross-linked articles we shared. It was just a little premature at the time (which was years ago) as Joepedia was just starting out and often our articles were more complete than theirs, or theirs were just stubs. It looks like they&#039;ve gotten off the ground a bit more now.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:30, 13 September 2012 (EDT)&lt;br /&gt;
:::::Yes, their wiki got started later than this one. They have a small group of dedicated contributers, but the site&#039;s yet to attract the kind of interest this one does. --[[User:JMM|JMM]] 16:34, 13 September 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New stub templates ==&lt;br /&gt;
=== Video game stub template ===&lt;br /&gt;
Does anybody have any objections to a video game stub template? It would look something like this:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This article is still in beta stage.&lt;br /&gt;
 |message_text=&#039;&#039;This video game article is a [[:Category:Video game stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=ProwlTFU.JPG&lt;br /&gt;
 |image_width=40px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Video game stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
If anybody knows of a better picture that would go well with this, please upload it so it can be put in. Thanks! -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:52, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:How about a pic from the story where Prime dies in a video game? Heh if only Beta had ever been in a game, that&#039;d be perfect. --[[Special:Contributions/76.28.76.206|76.28.76.206]] 16:03, 2 October 2012 (EDT)&lt;br /&gt;
::What story was that? And yeah, that woulda been great. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 19:53, 2 October 2012 (EDT)&lt;br /&gt;
:::That would be [[Afterdeath!]]. --[[User:Detour|Detour]] 21:56, 2 October 2012 (EDT)&lt;br /&gt;
::::Well if people really want a picture from that, someone else will have to upload it, as I don&#039;t have access to it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 21:59, 2 October 2012 (EDT)&lt;br /&gt;
:::::[[:Image:Afterdeath-gameoverman.jpg|Right here, dude.]]--[[User:Detour|Detour]] 22:34, 2 October 2012 (EDT)&lt;br /&gt;
::::::Thanks, man. It&#039;s on the &#039;&#039;[[Transformers: Prime - The Game|Prime: The Game]]&#039;&#039; page if you want to see it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:50, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
In addition to the video game stub, I&#039;d like to suggest adding several templates, such as &amp;quot;section stub&amp;quot; and &amp;quot;fiction stub&amp;quot;. Right now, we only have &amp;quot;characer stub fiction&amp;quot; for pages only missing fiction section, but no templates for non-character page missing fiction appearance. While &amp;quot;section stub&amp;quot; can use for articles only missing one or two sections. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:05, 2 October 2012 (EDT)&lt;br /&gt;
:Ok, so I&#039;m gonna go ahead and make the video game one, and TX, if I get around to it later, maybe the others. If not, well, someone else will. Oh, and if I miss an article that the video game one should go on, put it here. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:31, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== Novel stub template ===&lt;br /&gt;
Ok, who has an idea for a picture for a novel stub template? I&#039;m not good with coming up with pictures for these templates. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:11, 20 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
It would look like this like this: &lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This manuscript still needs work.&lt;br /&gt;
 |message_text=&#039;&#039;This novel article is a [[:Category:Novel stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=DOTM Code-Name Hero.jpg&lt;br /&gt;
 |image_width=70px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Novel stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
-- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 10:23, 21 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Megatron Barcode Battler Card ==&lt;br /&gt;
&lt;br /&gt;
Hi, I was wondering if anyone here had come across this Megatron card for the Barcode Battler, or knows where in the Wiki it should go:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Front.jpg|200px]]&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Back.jpg|200px]]&lt;br /&gt;
|}&lt;br /&gt;
It seems to have been released by Toys R Us in 1992 as a promo for the Barcode Battler (which they were trying to sell in store), and was (as far as is known) the only such Transformers card, probably given away with two [http://barcodebattler.co.uk/scans/UK/ToysRUsF.jpg blank] [http://barcodebattler.co.uk/scans/UK/ToysRUsB.jpg cards] (the bottom scan - the middle is from the Barcode Battler box) to add your own barcodes to, and a card wallet.&lt;br /&gt;
&lt;br /&gt;
The text (&amp;quot;Clad in steel, armed to the teeth, nobody toys with us good guys when this moody cool deadly-dudey is around.&amp;quot;) is probably enough to make you want to forget this was ever made (is it really calling Megatron a good guy?), but it&#039;s cropped up in enough eBay sales (occasionally found in Barcode Battler lots with the seller unaware that they&#039;ve got something rare) to make it likely to be genuine.&lt;br /&gt;
&lt;br /&gt;
So does anyone else have any information on it, and whereabouts should this go? [[User:Xensyria|xensyria]] 12:26, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:10, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:I definitely don&#039;t know anything about it, besides that it&#039;s awesome, but if it&#039;s from 1992, then the only Megatron it could be is Megatron (G1), and so it should probably be on his toys/merchandise page.&lt;br /&gt;
:It&#039;s also plausible that someone who knows something about Barcode Battlers should make a short article on them for the wiki, since we have a lot of those &amp;quot;this broader thing had a TF thing released under it&amp;quot; pages. -[[User:LV|LV]] 12:31, 16 October 2012 (EDT)&lt;br /&gt;
::Or...this isn&#039;t anything to do with a licensed Transformers thing? I sort of blindly assumed Hasbro was the entity selling the Barcode Battler in the UK, but the packaging doesn&#039;t seem to support that. It&#039;s hard to believe it&#039;s not intended to be TF Megatron, but I&#039;m also not sure it&#039;s an official product. Especially since this Megatron guy seems to be the boxfront &amp;quot;main character&amp;quot; for the UK Barcode Battler release. -[[User:LV|LV]] 12:37, 16 October 2012 (EDT)&lt;br /&gt;
:::Ah, that&#039;s a possibility, but Barcode Battler was being distributed in most of Europe by Tomy, so they probably gave Toys R Us rights to use Megatron. Perhaps they couldn&#039;t get the rights to use his picture though (as you say, it&#039;s Tomy&#039;s Barcode Battler cover on the card, so anyone who used the card probably wouldn&#039;t think it was supposed to be Megatron). I should also say that 1992 is more of an educated guess than fact, but it&#039;s bound to be somewhere around that.&lt;br /&gt;
:::If it&#039;s offical I don&#039;t mind making a Barcode Battler article (though I&#039;ll have to check out some of the other examples you mention first). [[User:Xensyria|xensyria]] 13:02, 16 October 2012 (EDT)&lt;br /&gt;
::::Wait, I just re-read Wikipedia, and Tomy was rivals with Takara who owned Transformers at the time. Still, I wonder if such big companies would risk a lawsuit over using Megatron, when they had all sorts of other franchises they could use instead; more likely Toys R Us arranged the deal with Hasbro, who they no doubt were one of the biggest retailers for at the time. [[User:Xensyria|xensyria]] 13:04, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:12, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:::::Unlikely to be a Hasbro/TF related thing. In 1992 TFs weren&#039;t even being made in the US and the UK line didn&#039;t have a Megatron, the Decepticons were led by Skyquake at that time. --[[User:Khajidha|Khajidha]] 13:14, 16 October 2012 (EDT)&lt;br /&gt;
:::::Well, this is sort of like with Yu-Gi-Oh&#039;s Space Megatron, Hasbro&#039;s trademark just didn&#039;t apply to things like gaming cards, so Tomy, just like Konami later, was in a safe zone. --[[User:Detour|Detour]] 14:20, 16 October 2012 (EDT)&lt;br /&gt;
::::::Ah, that would explain the &amp;quot;good guys&amp;quot; text as well. It seems to be a U.K. only thing, and though there may not have been Megatron toys there (is there a reference to them not being released in the U.K. on this on the wiki?) the name would have been familiar from the the film. Is there anywhere for similarly unofficial merchandice here, or should it be cast back into the purgatory of its makers&#039; device? [[User:Xensyria|xensyria]] 15:11, 16 October 2012 (EDT)&lt;br /&gt;
:::::::While I never played it, I distinctively remember Barcode Battlers as well, so it&#039;s not a UK-only thing. --[[User:Detour|Detour]] 15:15, 16 October 2012 (EDT)&lt;br /&gt;
::::::::My bad, I mean the Megatron card, which uses the Tomy box art (the U.S. version was by Irwin, and Japan by the developer, Epoch). [[User:Xensyria|xensyria]] 15:22, 16 October 2012 (EDT)&lt;br /&gt;
:::::::::See [[The Transformers (toyline)]] and [[Generation 1 (European toyline)]] for lists of what was released in the US and Europe each year of the original toyline. --[[User:Khajidha|Khajidha]] 15:37, 16 October 2012 (EDT)&lt;br /&gt;
::::::::::Also, in answer to your question about unofficial merchandise, we only cover official products from Hasbro, Takara and their license holders. About the only place that this could really go on this site is the [[trademark]] page, in a similar use as the &amp;quot;Space Megatron&amp;quot; card from Yu-Gi-Oh! --[[User:Khajidha|Khajidha]] 07:53, 18 October 2012 (EDT)&lt;br /&gt;
:::::::::::Thanks to all of you for the info. I&#039;ve added it to the [[Talk:Trademark#Old example: .22Megatron.22 Barcode Battler promo card|trademark talk page]], but will leave it up to you whether it&#039;s a notable enough example to be added to the article or not. [[User:Xensyria|xensyria]] 15:55, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Recent spamming==&lt;br /&gt;
Granted, I haven&#039;t been here all that often, but the recent spamming has me wondering if the perpetrator(s) are using some form of IP hopping. It&#039;s feeling rather hydra-ish at the moment. --[[User:Lonegamer78|Lonegamer78]] 07:22, 18 October 2012 (EDT)&lt;br /&gt;
:I still suggest you add a recaptcha for edits that add external links, at least for new accounts.[[Special:Contributions/192.249.47.177|192.249.47.177]] 14:09, 18 October 2012 (EDT)&lt;br /&gt;
::If that&#039;s possible, I like that idea. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:34, 18 October 2012 (EDT)&lt;br /&gt;
:::What IP guy said. Also, if we disabled all &amp;quot;Talk:/Talk&amp;quot; pages, that&#039;d help a bit. Either way, the latest spambot assault is obliterating the recent changes page. -- [[User:Repowers|Repowers]] 08:21, 24 October 2012 (EDT)&lt;br /&gt;
::::The &amp;quot;Talk:/Talk&amp;quot; thing has been mentioned numerous times in the past, I was actually surprised to see these still popping up. I&#039;m guessing some other wikis have already implemented this, as there seems no other reason for the several &amp;quot;Talk:T/alk&amp;quot; (note order of characters) pages that have popped up recently. --[[User:Khajidha|Khajidha]] 10:03, 24 October 2012 (EDT)&lt;br /&gt;
:::::I don&#039;t care what we do, but we need to do something, and we need to do it now. - [[User:Chris McFeely|Chris McFeely]] 10:09, 24 October 2012 (EDT)&lt;br /&gt;
::::::What McFeely said. This crap needs to stop. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 08:47, 25 October 2012 (EDT)&lt;br /&gt;
:::::::Looking at the recent changes, this is getting worse. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:20, 25 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
According to McFly, anon editing has been eliminated. This kills a lot of it, plus a chunk of human-born vandalism. The next step is that new accounts will get an automated confirmation email with a link that will unlock the new account, which should hopefully take out the other major spambot problems. --[[User:M Sipher|M Sipher]] 18:30, 25 October 2012 (EDT)&lt;br /&gt;
:Leaving those that make accounts just to spam. Well, one step at a time. --[[User:Lonegamer78|Lonegamer78]] 00:29, 26 October 2012 (EDT)&lt;br /&gt;
::Well, there&#039;s not much we can do with dedicated human antagonists. --[[User:M Sipher|M Sipher]] 00:43, 26 October 2012 (EDT)&lt;br /&gt;
:::And, the worst problem was the spambots anyway. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 06:45, 26 October 2012 (EDT)&lt;br /&gt;
::::Rather than blocking all IP editing, did you guys ever try out recaptcha for new accounts or articles?[[User:KrytenKoro|KrytenKoro]] 20:27, 9 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Universe/UT Micromaster combiners ==&lt;br /&gt;
&lt;br /&gt;
There isn&#039;t any general page for these, so I&#039;m putting this here.&lt;br /&gt;
&lt;br /&gt;
Given our treatment of the ROTF/Universe (2008) Bruticus Maximus and Superion sets, I wonder if the Universe (2003) Micromaster combiners whose European releases were branded as Energon ([[Defensor (Universe)|Defensor]], [[Constructicon Devastator (Micromaster)|Constructicon Devastator]]) or Cybertron ([[Superion (Universe)|Superion]], [[Rail Racer (Universe)|Rail Racer]]) should be considered Unicron Trilogy characters.  It&#039;s the same basic situation, except that the nature of Universe (2003) means that just because the European versions are Energon/Cybertron doesn&#039;t mean they&#039;re different guys.  --[[User:Andrusi|Andrusi]] 11:00, 18 October 2012 (EDT)&lt;br /&gt;
:Aren&#039;t they already listed that way? Defensor and Constructicon Devastator have &amp;quot;Energon Autobot&amp;quot; and &amp;quot;Energon Decepticon&amp;quot; categories and Superion and Rail Racer are in the category &amp;quot;Cybertron Autobots&amp;quot;. I haven&#039;t checked the individual team members yet. --[[User:Khajidha|Khajidha]] 12:59, 18 October 2012 (EDT)&lt;br /&gt;
:Just checked the team members and found only one that was not categorized as Energon or Cybertron characters (Long Haul), I added the appropriate category. --[[User:Khajidha|Khajidha]] 13:04, 18 October 2012 (EDT)&lt;br /&gt;
::I guess he&#039;s talking about the continuity identifier at the top? [[Special:Contributions/24.211.29.87|24.211.29.87]] 13:24, 18 October 2012 (EDT)&lt;br /&gt;
:::Ah, that makes sense. I could see something like the one used for [[King Atlas]]. --[[User:Khajidha|Khajidha]] 13:49, 18 October 2012 (EDT)&lt;br /&gt;
::::Yeah, I meant the continuity identifiers (and in the case of some components, like [[Red Alert (Universe)|Red Alert]], the &amp;quot;relation unknown&amp;quot; bio notes).  The categories honestly never occurred to me.  --[[User:Andrusi|Andrusi]] 12:36, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Election Day ==&lt;br /&gt;
&lt;br /&gt;
Perhaps the [[President of the United States]] should be the featured article... just for today.--[[User:Jimsorenson|Jimsorenson]] 10:41, 6 November 2012 (EST)&lt;br /&gt;
:Much as I like the idea, it doesn&#039;t have much of an intro paragraph, which makes it hard to front-page it.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:20, 6 November 2012 (EST)&lt;br /&gt;
::Transtech Optimus and Megatron might also be good choices.[[User:KrytenKoro|KrytenKoro]] 13:02, 6 November 2012 (EST)&lt;br /&gt;
:::[[Democracy]]? --[[User:Emvee|Emvee]] 13:06, 6 November 2012 (EST)&lt;br /&gt;
::::Yeah, that&#039;s got a proper intro paragraph and is actually a fairly nice article. [[User:Jalaguy|Jalaguy]] 13:08, 6 November 2012 (EST)&lt;br /&gt;
:::::We&#039;ve used it on Election Day before, s&#039;why.  --[[User:ItsWalky|ItsWalky]] 13:23, 6 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned ==&lt;br /&gt;
&lt;br /&gt;
Can we... can we just disambiguate WFC/FOC/Prime stuff like we do everything else on this wiki, please?  --[[User:ItsWalky|ItsWalky]] 14:51, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I am still not clear as to why WFC and FOC are treated as franchises of their own rather than specific iterations of the Prime franchise. I would support changing all the disambigs of WFC/FOC/Prime to Prime. --[[User:Khajidha|Khajidha]] 15:03, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::WFC and FOC have their own franchise branding.   For example, the Fall of Cybertron comic is branded as Fall of Cybertron, not as Prime.  When you have a series of related properties with &amp;quot;Transformers: ________&amp;quot; as a shared title with its own logo, that&#039;s a more often than not a franchise.  --[[User:ItsWalky|ItsWalky]] 01:26, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::And for that matter, WFC and FOC encompass even our most strict definition of franchise, as each of them is at minimum a game, a comic, and a toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 03:54, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:So what are you asking for, here, Walky? For [[Optimus Prime (Prime)]] to be at &amp;quot;Optimus Prime (WFC)&amp;quot;? - [[User:Chris McFeely|Chris McFeely]] 05:05, 12 November 2012 (EST)&lt;br /&gt;
::::Yes.  --[[User:ItsWalky|ItsWalky]] 15:15, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::Frankly, I&#039;d love to see Optimus Prime (WFC), Optimus Prime (Prime) and Optimus Prime (RB). --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 12:31, 12 November 2012 (EST)&lt;br /&gt;
:::Why would we part out a character&#039;s page by separate franchises within the same continuity family? --[[User:Detour|Detour]] 13:00, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I agree that some of the disambig&#039;ing is getting pretty mad. Like Aligned Bruticus being at (Prime) due to a piece of concept art for a foreign-market MMO that isn&#039;t even used on the page, for instance. Given that the original reason for overriding (WFC) disambigs was to avoid confusion, it seems pretty ridiculous. I understand the original intention was to help people looking for the show characters, but the same could be said of, say, [[Sideways (RID)|Sideways]], who is disambig&#039;d based on a less well known first appearance rather than a starring cartoon role, and we haven&#039;t changed him. My opinion&#039;s that we should either, as Walky says, abandon the &#039;Prime takes precedence for disambigs&#039; thing, or come up with a more concrete set of guidelines than &#039;the moment they appear in anything the tiniest bit &#039;&#039;Prime&#039;&#039;-y, change the disambig&#039;. [[User:Jalaguy|Jalaguy]] 13:36, 12 November 2012 (EST)&lt;br /&gt;
::As someone who initially advocated for our current methodology, I&#039;d really only intended it for show characters or characters in the Prime toyline. That&#039;s my only real hang-up here, that if a new user comes here after watching the show or picking up a toy, they shouldn&#039;t get tangled up by the fact that we&#039;re insisting on putting (WFC) on the end of something because it debuted in the game. Parentheticals are for ease of use, not dogmatic technicality.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:59, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.  We still have one article per character per continuity family, so it seems the most logical to me to call that the disambiguation and only go deeper when we have two different characters from the same continuity family with the same name.  After all, when you go to the current disambiguation pages, that&#039;s how we describe the character in text.&lt;br /&gt;
It would avoid this entire mess.  Basically, the principal I think we should employ is to use the highest possible level when disambiguating characters.  If a character is unique, no disambiguation necessary.  If only one guy named &#039;Optimus Prime&#039; shows up in Aligned, then call him Optimus Prime (Aligned).  I realized that that means that the Unicron Trilogy and movie franchises, with their rampant name reuse, will tend to go one level deeper... but since that&#039;s what we&#039;re doing today, it shouldn&#039;t be too big of an issue. &lt;br /&gt;
As we&#039;ve seen, the lines between franchises are only getting blurrier, and we have every reason to believe this trend will continue.  In maybe 95% of cases, we really will have only one character per name per continuity family, and then we (and our readers) won&#039;t have to try to figure out where Aligned Prime first popped his head up. --[[User:Jimsorenson|Jimsorenson]] 18:33, 12 November 2012 (EST)&lt;br /&gt;
:I find myself agreeing with this. As someone who was not to long ago just a reader, I can say that disambiguating by continuity family would probably help &#039;&#039;a lot&#039;&#039; of people. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 20:00, 12 November 2012 (EST)&lt;br /&gt;
::If you do that, may I suggest you take the opportunity to come up with a less confusing name for the G1 continuity family that isn&#039;t the same as the franchise. That way there won&#039;t be a bunch of Beast Wars characters with (G1). How about the &amp;quot;inaugural continuity family&amp;quot;? Optimus Prime (Inaugural)&lt;br /&gt;
::Cons&lt;br /&gt;
::*Continuity family names are unofficial for the most part.&lt;br /&gt;
::*Fiction-only dimension hoppers are a bit of a problem. Do they go in their &amp;quot;home&amp;quot; continuity family or the continuity family of the piece of fiction they originated in?&lt;br /&gt;
::*Pros&lt;br /&gt;
::*I would personally feel better about the IDW original characters if they were disambiguated by the G1 continuity family (or the inaugural continuity family) instead of the G1 franchise. - [[User:Starfield|Starfield]] 20:17, 12 November 2012 (EST)&lt;br /&gt;
:If it&#039;s a choice between having (WFC) disambigs on Prime characters or radically changing how we organize the wiki and having to move thousands of articles (who&#039;s going to have time to even do that?), I prefer the former as a solution. --[[User:Abates|abates]] 20:36, 12 November 2012 (EST)&lt;br /&gt;
::In full agreement there. But I do think redirects with other franchise disambigs would be helpful to newcomers. Like someone who may have watched Cybertron but not be aware of the Armada toy who might try to search for &amp;quot;Thundercracker (Cybertron)&amp;quot;, for example. --[[User:Detour|Detour]] 20:49, 12 November 2012 (EST)&lt;br /&gt;
:&#039;&#039;For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.&#039;&#039;&lt;br /&gt;
:Agree.  The only reason we don&#039;t for the Unicron Trilogy is because of the absolutely rampant name reuse, but Prime hasn&#039;t seen that problem.  I think that (in principle) everyone should be disambig&#039;d (Aligned).&lt;br /&gt;
:That or you have to more Breakdown (Prime) to Breakdown (WFC).&lt;br /&gt;
:...also Rescue Bots.  Aligned they are.  -[[User:Derik|Derik]] 00:45, 13 November 2012 (EST)&lt;br /&gt;
::I strongly feel we should stick to using official terms and abbreviations thereof in our disambiguation, and &amp;quot;aligned&amp;quot; is not really official (it was from a Hasbro guy describing their aim as a &amp;quot;new aligned continuity&amp;quot; ISTR). Unless we renamed it to the &amp;quot;Prime continuity family&amp;quot;, but that way possibly lies madness. --[[User:Abates|abates]] 22:33, 13 November 2012 (EST)&lt;br /&gt;
:::I bet you anything that if we looked around we could find someone official referring to it as Aligned.  (If only because we do.)  -[[User:Derik|Derik]] 22:36, 13 November 2012 (EST)&lt;br /&gt;
::::Not that I want to do everything by continuity family, because I absolutely do not, but even &amp;quot;Generation 1&amp;quot; started out as a fan term, and &amp;quot;Unicron Trilogy&amp;quot; was based on something Aaron Archer said once but became widespread because the Wiki used it.  &amp;quot;Aligned,&amp;quot; another thing said once by Hasbro, is no different.  But again, argh, no, disambiging by continuity family raises more headaches than it solves.  UT isn&#039;t the only continuity family where name reuse is rampant.  --[[User:ItsWalky|ItsWalky]] 01:08, 14 November 2012 (EST)&lt;br /&gt;
:::::Yeah, &#039;&#039;colossal&#039;&#039; headaches if we tried to smoosh the various comic and toy characters from each movie&#039;s ancillary franchise together.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:22, 14 November 2012 (EST)&lt;br /&gt;
::::::Would it be?  If they&#039;re different characters, they&#039;re different characters.  So, Sentinel Prime would go from Sentienl Prime (ROTF) to Sentinel Prime (Movie).  He&#039;s a good example of a confusing disambiuation.  He&#039;s the villain in movie 3, but is at movie 2 because of an unnamed montage sequence.  Someone like movie Devastator, who is two separate characters, would remain exactly as they are.--[[User:Joefan|Joefan]] 12:06, 14 November 2012 (EST)&lt;br /&gt;
:::::::Except if it&#039;s by continuity family, he&#039;d be at &amp;quot;Sentinel Prime (LAMS)&amp;quot;. I think changing our entire way of naming articles and moving thousands of articles just to fix the &amp;quot;(Prime)&amp;quot; issue is like using a nuclear bomb to hammer in a nail. --[[User:Abates|abates]] 14:12, 14 November 2012 (EST)&lt;br /&gt;
::::::::My view on this topic has changed, and I now agree with this. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:44, 14 November 2012 (EST)&lt;br /&gt;
:::::::::My understanding was that we HAD been disambig-ing by Continuity family, and chose NOT to for the Unicron Trilogy and LAMS because the rampant name reuse would make this horribly confusing.  But for Aligned... so far we&#039;ve already gotten &amp;lt;u&amp;gt;three&amp;lt;/u&amp;gt; franchises and virtually no overlap.&lt;br /&gt;
:::::::::I&#039;m going to cite [[Help:Ignore all standards]], which states that &#039;&#039;Standards are good; TFWiki.net likes standards. We&#039;re just not under the illusion that standards are perfect.&#039;&#039; and more importantly &#039;&#039;&#039;&amp;quot;In situations where the standards intended to prevent confusion would instead contribute to it, common sense should rule.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
:::::::::Actually... wasn&#039;t disambiging the UT series by franchise a case of H:IAS?  We decided to do that because the way rampant name reuse rendered other approaches impractical.  -[[User:Derik|Derik]] 14:05, 16 November 2012 (EST)&lt;br /&gt;
::::::::::We don&#039;t disambig by franchise because of the UT.  We disambig by franchise because of EVERYTHING.  UT was never ever ever the straw that broke the camel&#039;s back.  The back came pre-broken.  --[[User:ItsWalky|ItsWalky]] 14:22, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::Whatever.  Can I move Breakdown (Prime) to Breakdown (WFC) or not?  -[[User:Derik|Derik]] 15:35, 16 November 2012 (EST)&lt;br /&gt;
::::::::::::That&#039;s what I&#039;d like to do eventually, but I don&#039;t think we&#039;ve reached a firm enough consensus to do something that big and sprawling.  --[[User:ItsWalky|ItsWalky]] 16:16, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::...he&#039;s got the wrong disambig.  We disambig by the franchise he first appeared in.  His WFC appearance was 6 months prior to his Prime appearance.  Why does that require some sort of confab?&lt;br /&gt;
:::::::::::::: You are preaching to the choir on this point, but previously a consensus was made that Prime stuff operates differently from everything else on the wiki.  I want to overturn that, but until I do, the previous consensus stands.  --[[User:ItsWalky|ItsWalky]] 16:58, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::Of course the answer is &amp;quot;because we&#039;re already in an &amp;lt;tt&amp;gt;Ignore all standards&amp;lt;/tt&amp;gt; situation; we want to disambig them with (Prime) even though that&#039;s against our standard treatment, but we haven&#039;t properly dealt-with/processed/mourned that.&amp;quot;&lt;br /&gt;
:::::::::::::If we give in to a rigid standard and move him (and everyone else) to (WFC), &#039;&#039;I&#039;&#039; think it&#039;s almost inevitable that there will be a pushback against the anti-intuitive mess that makes the disambigs, which will itself lead to either returning them to (Prime) or switching everything to (Aligned)  I just do not see (WFC) for the main characters &#039;standing.&#039;&lt;br /&gt;
:::::::::::::Which would mean that we aren&#039;t facing a choice between standard-vs-nonstandard, but between nonstandard-vs-nonstandard.  And given that choice I think (Aligned) is the better nonstandard.&lt;br /&gt;
:::::::::::::(You may feel free to disagree with my assessment of the outcome of a (WFC) move.  I recognize that my beliefs about &amp;quot;what would probably happen after&amp;quot; are just a hypothesis and should not be treated as fact.)  -[[User:Derik|Derik]] 16:56, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
If we do go to strict franchise of origin on Aligned continuity family characters, we are going to have to be &#039;&#039;super&#039;&#039; diligent on redirects for anyone that appears in the Prime show or toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 17:55, 16 November 2012 (EST)&lt;br /&gt;
: I half-agree, if only because we won&#039;t have to be TOO diligent on the pages that exist already, because that would involve merely not deleting the redirects from the old locations once we move the pages.  It&#039;d be a kind of reverse-diligence, since it would really mean one less step than usual.  Otherwise, yes, if a character is in Prime, there should be a redirect from there. --[[User:ItsWalky|ItsWalky]] 19:13, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
So have people have a chance to mull this over some? I&#039;m leaning towards going back to the &amp;quot;by franchise&amp;quot; rule and having &amp;quot;Breakdown (WFC)&amp;quot; because it&#039;s both simpler than any of the alternatives, and it&#039;s consistent with what we do everywhere else. So long as &amp;quot;Breakdown (Prime)&amp;quot; redirects there, and I don&#039;t see any reason for it not to, people will still be able to find it. --[[User:Abates|abates]] 18:56, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fun fact ==&lt;br /&gt;
&lt;br /&gt;
According to my calculations we had around about 6876 articles when we left Wikia, so we&#039;ve added over 10000 more in the four and a bit years since we left. --[[User:Abates|abates]] 03:27, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:While wikia has added... 929 articles.--[[User:Carrion|Carrion]] 12:09, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::929, really? No offense but I thought it was less. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 13:47, 19 November 2012 (EST) &amp;lt;13:57, 19 November 2012 (EST) edit&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::Hey, be fair, they&#039;ve also added a blog. GUH. --[[User:Khajidha|Khajidha]] 13:49, 19 November 2012 (EST)&lt;br /&gt;
::::And a video library! Because people go to wikis to watch movie trailers! --[[User:Abates|abates]] 14:43, 19 November 2012 (EST)&lt;br /&gt;
:::I was just there the other day... their article for Animated Bulkhead still has an &amp;quot;ongoing&amp;quot; tag... --[[User:Detour|Detour]] 19:06, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Split Pages ==&lt;br /&gt;
&lt;br /&gt;
We have several characters on the list of [[Special:Longpages|Long pages]]–such as [[Kup (G1)]], ‎[[Prowl (G1)]], [[Megatron (G1)]], [[Ratchet (G1)]], and [[Hot Rod (G1)]]. So I suggest to split their G1 cartoon, Marvel comics, and IDW comics section into new pages. – [[User:Thunderweb|Thunderweb]] 01:40, 20 November 2012 (EST)&lt;br /&gt;
:That&#039;s cool and all, but please don&#039;t split off pages if you&#039;re not going to write proper intros/summaries for them and include appropriate categories on the sub pages. --[[User:Abates|abates]] 17:12, 24 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned section breakup is warping canon ==&lt;br /&gt;
&lt;br /&gt;
Currently{{now|21:19, 26 November 2012 (EST)}} our [[Breakdown (Prime)]] page lists all his Prime appearances then ghettotizes out his Fall of Cybertron appearances into a subsequent section as a separate continuity, and thus less important than the cartoon despite coming first.  &lt;br /&gt;
&lt;br /&gt;
[[Bulkhead (Prime)]] and [[Knock Out (Prime)]] are a little better, but the Prime wii game (by the series writers, intended to fit in season 2 albeit without a specific &amp;quot;after this episode and before this episode&amp;quot; date) is broken out as a &#039;&#039;&#039;seperate continuity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traditionally this has been our way of dealing with games because they are a secondary media; being sorta warped reflections of some core media with (for the most part) minimal contribution to continuity.  But, you know, Aligned is different.  The War for Cybertron / Fall of Cybertron games are part of the same continuity, occurring before the cartoon.  We sort of rolled our eyes when Hasbro first insisted on this (mostly because the [[Transformers: Exodus]] novel doesn&#039;t fit well with the game &#039;&#039;or&#039;&#039; the cartoon.)  But the reality increasingly is that they &#039;&#039;&#039;are&#039;&#039;&#039; one continuity.  Hell, this is a quote from an interview w/ John Barber, writer of [[Rage of the Dinobots]].&lt;br /&gt;
&lt;br /&gt;
{{quote|JB: The Transformers story has been going on continuously for a very long time, and I think it’s fair to say the Prime universe is working to take the best elements of every expression and build a world. What’s really exciting is that what we’re doing in the comic is going to impact this world across various mediums. So, it isn’t a case where we’re doing a book that’s subservient to the TV show—we’re doing an all-new story set in that same universe, and the stories we tell are going to be reflected in the shows and the novels and everything else. It’s “canon.” Which is cool, and sort of rare and unique.&lt;br /&gt;
&lt;br /&gt;
RS: The book is a truly cross-media venture tying in with the upcoming game Fall of Cybertron as well as the Transformers Prime series, how much of a &#039;juggling act&#039; is it to coordinate the story between the different outlets?&lt;br /&gt;
&lt;br /&gt;
JB: Fortunately I get to work with some of the best people in the business. Michael Kelly, who’s Hasbro’s Director of Global Publishing, is a great friend and somebody I get to work with very closely. He coordinates with the Transformers brand team at Hasbro—which contains some really good friends of mine, too. Plus I’ll talk to the folks at Random House, and we’re constantly emailing with everybody at High Moon, who produce FALL OF CYBERTRON, so while there are a lot of moving parts, we’re all talking. And we’re all building toward the same goals of good storytelling and a cohesive worldview.&lt;br /&gt;
&lt;br /&gt;
Also—the new Prime comic is being written by Mike Johnson and Mairghread Scott, both of whom—in addition to being comics writers, both write for thePrime TV show. So they know what’s what.|John Barber|[http://www.aintitcool.com/node/58236 AICN COMICS Q&amp;amp;@: Russ Sheath talks to IDW&#039;s John Barber about TRANSFORMERS PRIME: RAGE OF THE DINOBOTS!]}}&lt;br /&gt;
&lt;br /&gt;
Messy as it was for the rollout, the people producing the stuff &#039;&#039;&#039;intend for it to be one universe and are writing it at such&#039;&#039;&#039;.  And the various franchises &#039;&#039;&#039;are&#039;&#039;&#039; slowly converging as a result.&lt;br /&gt;
&lt;br /&gt;
We &amp;lt;u&amp;gt;need&amp;lt;/u&amp;gt; to consolidate these sections under a single &amp;quot;Aligned continuity&amp;quot; header.  Because the way we&#039;re doing it right now is fucking things up.  &lt;br /&gt;
&lt;br /&gt;
(And no we can&#039;t have WFC/Prime subsection headers for the same reason we can&#039;t separate the Movieverse prequel minis, they interleve.  The games don&#039;t deal with Prime and Megatron&#039;s pre-war history bot the novels and TV shows do mention it.)  -[[User:Derik|Derik]] 21:19, 26 November 2012 (EST)&lt;br /&gt;
: Yeah, I think the way we do it now is better-organized.  Video game stuff, no matter how high-profile it is, tends to be overwritten by the &amp;quot;real&amp;quot; stories that later adapt it.  I&#039;d rather keep stuff separated by medium.  --[[User:ItsWalky|ItsWalky]] 22:28, 26 November 2012 (EST)&lt;br /&gt;
::Agreed. There&#039;s no way to kludge it all together under one heading without either ignoring some details or presenting them in a vague, unhelpful manner, given the contradictions that exist. You cite the Prime game, but at no point in season 2 do the Decepticons EVER consist of Megatron, Starscream, Airachnid and Dreadwing at the same time. It can&#039;t fit. And your other example - it&#039;s all well and good to quote that Barber quote, Derik, but the preview for &amp;quot;Rage of the Dinobots&amp;quot; alone has shown Grimlock present on Cybertron, Sludge being alive and Blast Off dying at a point when in the games, Grimlock has vanished, Sludge has died and Blast Off needs to be alive. (Not to say that the comic might not address these points, it&#039;s just the example foremost in my brain as it&#039;s been discussed recently.) - [[User:Chris McFeely|Chris McFeely]] 05:16, 27 November 2012 (EST)&lt;br /&gt;
:::Chris, the only contradiction we&#039;ve seen in the Rage of the Dinobots comic preview thus far is Sludge being alive. It&#039;s set after the Ark left, during which Grimlock &#039;&#039;was&#039;&#039; still on Cybertron. And Blast Off being there ties in with Jazz and Jetfire having knocked Bruticus off the Ark before it went through the space bridge. He was last seen plummeting, seemingly, back to Cybertron; and judging by this comic, it looks like he made it.&lt;br /&gt;
:::Now, as for my thoughts on the reorganization of the Aligned fiction sections, I offer a counterproposal. Keep each section separate as they are, but I&#039;d feel more confortable with the WFC and FOC sections place above the Prime sections to coincide with their chronological placement in the timeline. Perhaps put the Exodus section first, then the WFC sections, then the FOC comic section, the FOC the game, then Exiles or Rage of the Dinobots (depending on how that comic with play out will determent if it&#039;s better set before or after Exiles), then the Prime comic, then the Prime cartoon, then the Prime game, and then the Rescue Bots cartoon. Each keeps its own section, but arranged in as close to chronological order as possible. --[[User:Sabrblade|Sabrblade]] 12:20, 27 November 2012 (EST)&lt;br /&gt;
::::I don&#039;t understand how putting some of the video game stuff outside of the video game section is intuitive, because presumably we&#039;d be keeping the Prime game stuff down below.  --[[User:ItsWalky|ItsWalky]] 12:23, 27 November 2012 (EST)&lt;br /&gt;
:::::I&#039;m saying to treat the games as fiction themselves instead of a second tier category, since, unlike previous continuities, they&#039;re of a greater importance to their master continuity than any past games have ever been. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::The [[Breakdown (Prime)]] article separates along &#039;&#039;&#039;Fiction&#039;&#039;&#039; and &#039;&#039;&#039;Games&#039;&#039;&#039;, placing the WFC/FOC games in the latter when they are part of the same body of fiction.  Even if you don&#039;t want to place them in the same continuity, they should both be in the &#039;&#039;&#039;Fiction&#039;&#039;&#039; header.&lt;br /&gt;
::::::The separate header for games system has its origins in the traditional relationship of games to other fiction, where they present a wildly divergent or exclusive or alternate version of another existing franchise or story.  These are primary story material which have no &#039;primary story&#039; they present an alternate version of because they &#039;&#039;are&#039;&#039; the primary story.  You can&#039;t ghettoize them as &amp;quot;something other than fiction.&amp;quot;  -[[User:Derik|Derik]] 17:28, 27 November 2012 (EST)&lt;br /&gt;
:::::::That&#039;s what I&#039;m saying. Putting the individual video game subsections into the main fiction section instead of putting them in a separate video game section since the games aren&#039;t a second tier of the main story this time. --[[User:Sabrblade|Sabrblade]] 17:37, 27 November 2012 (EST)&lt;br /&gt;
::::I realize this isn&#039;t the time or place for this, but regarding those points, I&#039;ll say that the clear implication at the end of FoC is that Grimlock has vanished through the spacebridge (he doesn&#039;t get out before the explosion and the Dinobots watch as something shoots up the beam into the portal), and as the Ark is the &#039;&#039;last&#039;&#039; of the vessels to leave in the game, it can&#039;t fit with what we&#039;re seeing here with Blast Off&#039;s timeline. - [[User:Chris McFeely|Chris McFeely]] 12:26, 27 November 2012 (EST)&lt;br /&gt;
:::::I never got the impression that Grimlock got sent through the space bridge. His fate was rather amibiguous to the nth degree, leaving plenty open room for him to still be on Cybertron after the game. He&#039;s running away, there&#039;s a blinding light, and then the scene cuts away. for all we know, he could have fallen off the platform he was on and plummeted far to the ground below, away from the space bridge&#039;s reach (though he&#039;d be in for some serious repairs after a fall form that height). As for the other ships, we know that the planet was completely abandoned by the present day, so the Dinobots and Wreckers would have had to have gotten off the planet somehow and at some point. Just because the Ark was the last vessel to leave during the Great Exodus doesn&#039;t mean there weren&#039;t more ships set aside in reserve for or built later by those who stayed behind so they could eventually leave when the time would come for them to do so &#039;&#039;after&#039;&#039; the Great Exodus. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::And thus, we see the the hand-wringing necessary to align everything. - [[User:Chris McFeely|Chris McFeely]] 12:50, 27 November 2012 (EST)&lt;br /&gt;
:::::::Pun not intended.  --[[User:ItsWalky|ItsWalky]] 13:39, 27 November 2012 (EST)&lt;br /&gt;
:::::::Yeah, and until we get canonical answers to things like where the Prime game or Optimus/Bumblebee&#039;s appearances in Rescue Bots fit, sticking everything under one header is just not possible. --[[User:Abates|abates]] 14:59, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
I think my main qualm here is that every time someone tries to make the case that Aligned is somehow &#039;&#039;different&#039;&#039; and thus deserves us altering the way we treat it relative to other continuity families, we end up with &#039;&#039;even more&#039;&#039; examples of how Aligned is pretty much a branching, loosely-connected thing &#039;&#039;just like every other continuity family&#039;&#039;. I mean sure, it&#039;ll never get quite to the point of how spread out the G1 continuity family is. Regardless, this is no different from how obvious it was that Bay&#039;s writers didn&#039;t give a damn about the movie comics, and so forth.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:49, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s very easy to say &amp;quot;this doesn&#039;t seem to fit&amp;quot; but Barber says he&#039;s coordinating his story with High Moon Studios so there aren&#039;t any conflicts.&lt;br /&gt;
:The people writing these things are &#039;&#039;trying&#039;&#039; to make them one continuity, damnit!  Do we have to fight them this hard?  -[[User:Derik|Derik]] 13:22, 27 November 2012 (EST)&lt;br /&gt;
::And IDW &#039;&#039;tried&#039;&#039; to make the comics jive with the live-action movies, and Barber himself is the one that had to get the mop whenever that didn&#039;t work out. Heck, Barber had early drafts of the movie scripts in many cases, and ended up drawing off of concepts that ultimately weren&#039;t even used in the movies.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 20:07, 27 November 2012 (EST)&lt;br /&gt;
:::I cant&#039; tell if you&#039;re saying IDW succeeded or not, there&#039;s a lot of handwaving in the IDW timeline but it mostly works, largely thanks to Barber bending over backwards to explain how the DotM conspiracy could possibly be present during the 2007 movie and somehow miss Megatron.  ;)  -[[User:Derik|Derik]] 00:05, 28 November 2012 (EST)&lt;br /&gt;
::::I&#039;m not faulting the man&#039;s efforts, and certainly he must have won a No-Prize back in the day from the Merry Marvel Marching Squad, but all I&#039;m really saying is &#039;&#039;this is nothing new&#039;&#039;.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:43, 28 November 2012 (EST)&lt;br /&gt;
:::::What are you saying? The Movieverse comics and the films are in the same continuity. Just read the [[Movie continuity]] page. I don&#039;t care so much how the fiction is listed in character pages, but I&#039;d like to see the [[Aligned continuity family]] page moved to &amp;quot;Aligned continuity&amp;quot; and the appropriate changes made to reflect the fact that the Aligned stuff is all &#039;&#039;officially&#039;&#039; the same continuity. Officially! Nobody in G1 tried to say &amp;quot;all this stuff is in the same continuity.&amp;quot; - [[User:Starfield|Starfield]] 11:10, 28 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== James Roberts notes ==&lt;br /&gt;
&lt;br /&gt;
As self-referencial as Roberts&#039; work gets, most of the notes sections on MTMTE pages are getting ridiculously long. Some of them have become big blocks of text that cover an entire screen. Is there any way we can break these down into smaller subsections? &#039;&#039;&amp;quot;Roberts referencing Roberts&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Roberts referencing other stories&amp;quot;&#039;&#039;? &#039;&#039;&amp;quot;Story notes&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Easter eggs&amp;quot;&#039;&#039;?--[[User:Xaaron|Xaaron]] 09:52, 13 December 2012 (EST)&lt;br /&gt;
: I don&#039;t think any of the notes sections for Roberts stories are &amp;quot;ridiculously long.&amp;quot;  --[[User:ItsWalky|ItsWalky]] 10:41, 13 December 2012 (EST)&lt;br /&gt;
:: Four of the last five regular issues have Notes sections that cover my entire monitor. One big screen of bullet points. It&#039;s aesthetically unpleasing, my eyes glaze over just looking at it, and I can&#039;t be the only one. We discourage big blocks of text in the History sections, and this isn&#039;t much different. &lt;br /&gt;
:: I&#039;m not saying the Notes themselves aren&#039;t &amp;quot;note-worthy&amp;quot;. It just...doesn&#039;t look good. I think an effort could be made to make it easier on the eyes. More images in that section, or some sub-sections to break up the bullet points is not unreasonable to suggest. --[[User:Xaaron|Xaaron]] 11:12, 13 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Things that don&#039;t exist&amp;quot; category ==&lt;br /&gt;
&lt;br /&gt;
FYI, readers that don&#039;t have accounts can&#039;t access this category through articles because they&#039;re blocked from the editing page, which the red link automatically takes them to. [[User:Mimi|Mimi]] 02:52, 18 December 2012 (EST)&lt;br /&gt;
:Hmm, we could possibly use javascript to amend links to it to point to http://tfwiki.net/wiki/Category:Things_that_don%27t_exist instead, which does work for logged out users. --[[User:Abates|abates]] 03:06, 18 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::reCaptcha is a piece of poop, security-wise.  I&#039;m also reluctant to add more extensions at the moment, due to performance issues, BUT.  Find something simple and lightweight to REPLACE reCaptcha, and we can talk. --[[User:McFly|McFly]] 05:38, 15 January 2013 (UTC)&lt;br /&gt;
:::$wgSpamRegex isn&#039;t an extension, it&#039;s a line of code you can add various banned words to (i.e., if &amp;quot;viagra&amp;quot; is in the list and someone tries to save a page that includes it, the page wouldn&#039;t save and they&#039;d get a error message telling them why it wouldn&#039;t save. - [[User:SanityOrMadness|SanityOrMadness]] 07:29, 15 January 2013 (UTC)&lt;br /&gt;
::::You know what WASN&#039;T on?  wgEmailConfirmToEdit.  That may make a LOT more sense, as I&#039;d wager that spambots aren&#039;t actually including legit emails.  Email authentication is NOT the same thing. --[[User:McFly|McFly]] 16:50, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I still don&#039;t think reCaptcha is helping, as noticed, and it doesn&#039;t have anything like, say, a lockout policy, so I&#039;ve bit the bullet and added a modified version of the SpamBlacklist extension, adding in RBL support and some basic language filters in one go.  It&#039;s reasonably light on DB traffic, too.  Will it slow the flood?  That remains to be seen, but they&#039;re still getting around it right now. I also think I&#039;ve resolved the IP blocking issue, so we might (might!) be okay now.  Turns out that adding a load balancer in front of the Squid caches hurts Mediawiki&#039;s IP detection logic. --[[User:McFly|McFly]] 20:21, 16 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;br /&gt;
::::Most of what&#039;s left is going to be us rejiggering some templates to more efficient code, and documenting the snot out of things so McFly doesn&#039;t name his first ulcer after us.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:02, 15 January 2013 (UTC)&lt;br /&gt;
::::: http://science.education.nih.gov/home2.nsf/Educational+ResourcesResource+FormatsOnline+Resources+High+School/928BAB9A176A71B585256CCD00634489 :p - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
:::::: Pedantry aside, I CAN name my migraines after you. Stress exacerbates THOSE. --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::::::: Which migraine&#039;s stronger then? Madness or little Sanity? :p - [[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC) &lt;br /&gt;
&lt;br /&gt;
===Stuffs what have gone wrong(er)===&lt;br /&gt;
User CSS files aren&#039;t being called post-move. Basically, the stuff [https://www.mediawiki.org/wiki/Manual:Configuration_settings#CSS.2FJs here] was previously all set true, now it&#039;s set false. [Is [[MediaWiki:Common.css]] even working?] - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
: Compared old LocalSettings.php to new, wgUseSiteJs/wgUseSiteCss were NOT set over there.  If you&#039;re not just making blanket assumptions, please point my not-MediaWiki-understanding ass to the right place.  Remember, I built the house, but others (Scout?  Derik?) actually laid out the rooms and installed the appliances.  My understanding of Mediawiki extends out to &amp;quot;Ooh, shiny mediawiki package in apt repositories...&amp;quot;  Anything else is a &#039;&#039;&#039;Wild. Ass. Guess.&#039;&#039;&#039; --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::I&#039;m not an expert (&#039;&#039;&#039;And I can&#039;t see the Wiki&#039;s LocalSettings.php myself to be sure!&#039;&#039;&#039;), but I have played around with MediaWiki a fair bit, so I&#039;m beyond the &amp;quot;oh, shiny&amp;quot; stage and I know where to look at in http://www.mediawiki.org/wiki/Manual:Contents .&lt;br /&gt;
::For instance, I don&#039;t know what $wgAutoConfirmAge and $wgAutoConfirmCount are currrently set to. If the createpage and upload &#039;&#039;have&#039;&#039; been set, but those two variables are &#039;&#039;not&#039;&#039; set, a fairly minimal barrier would be two days &amp;amp; four edits before you can create pages and upload files - certainly, very few spambots will hang around for two whole days before editing!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAutoConfirmAge = 86400 * 2; # Two days times 86400 seconds/day&lt;br /&gt;
$wgAutoConfirmCount = 4;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::If they HAVEN&#039;T been set, you can add them with:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can create pages:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;createpage&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can upload files:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;upload&#039;] = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
::-[[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
===Broken templates===&lt;br /&gt;
{{tl|cal-date}} is broken, but I&#039;m not template savvy enough to fix it. Anyone want to have a go? --[[User:Abates|abates]] 07:17, 16 January 2013 (UTC)&lt;br /&gt;
:Ja, I will fix it.  -[[User:Derik|Derik]] 00:15, 17 January 2013 (EST)&lt;br /&gt;
::$%^&amp;amp;*  I&#039;m getting &#039;&#039;closer&#039;&#039; to fixing it.  -[[User:Derik|Derik]] 15:02, 17 January 2013 (EST)&lt;br /&gt;
:::&#039;&#039;*cries piteously*&#039;&#039; -[[User:Derik|Derik]] 15:43, 17 January 2013 (EST)&lt;br /&gt;
::::I&#039;ve just had a go and I think that&#039;s sorted it! Not sure if there are any other broken templates lurking out there... --[[User:Abates|abates]] 05:58, 20 January 2013 (EST)&lt;br /&gt;
===Storylink===&lt;br /&gt;
Are the storylinks looking odd for anyone else? They appear as full size text without the surrounding box from before for me. --[[User:Khajidha|Khajidha]] 12:29, 20 January 2013 (EST)&lt;br /&gt;
:Yeah, storylinks, note boxes, disambig boxes, organisation templates (eg. listing comics issues) and episode/issue/etc. infoboxes are all not displaying correctly. I assume that the folks who know what they&#039;re doing with this kind of stuff are working on getting them fixed.. [[User:Jalaguy|Jalaguy]] 12:42, 20 January 2013 (EST)&lt;br /&gt;
::I think that&#039;s done it - or at least it&#039;s displaying normally for me now. Well done to all involved, much appreciated. --[[User:Emvee|Emvee]] 17:04, 22 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Still Confused About All This ==&lt;br /&gt;
&lt;br /&gt;
I just got registered so that I can always find this site.&lt;br /&gt;
&lt;br /&gt;
When I search for Transformers Wiki, all I get is Teletraan 1 and I don&#039;t like that site as well. Heck, their information on BotShots is woefully unsatisfactory.&lt;br /&gt;
&lt;br /&gt;
Did this site used to be that site or the other way around? Much of the information in articles looks copied from one site or the other.&lt;br /&gt;
&lt;br /&gt;
Apologies if this is the wrong place to ask these questions. I was looking for an e-mail address or something and couldn&#039;t find it. {{unsigned|Haven13}}&lt;br /&gt;
:No worries! We were originally at Wikia, but split with them in September 2008 and went independent. Wikia are still operating the old version, but it doesn&#039;t get updated in a lot of areas.&lt;br /&gt;
:Where is it you&#039;re searching for Transformers Wiki? We come up first on Google when I search on there. --[[User:Abates|abates]] 18:16, 23 January 2013 (EST)&lt;br /&gt;
::Ooh!  Ooh!  Let me guess!  BING.  (Who are blocked for &#039;&#039;&#039;hammering&#039;&#039;&#039; our wee servers.) --[[User:McFly|McFly]] 23:52, 23 January 2013 (EST)&lt;br /&gt;
:::Well, I just searched for &amp;quot;transformers wiki&amp;quot; on bing.com and we were the first result. Followed by the wikia site, wikipedia&#039;s main Transformers page, and wikipedia&#039;s Transformers (film) page. --[[User:Khajidha|Khajidha]] 07:01, 24 January 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=780828</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=780828"/>
		<updated>2013-01-28T22:45:18Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Mighty Feature, Mighty Server Drain===&lt;br /&gt;
* The Go-Box!&lt;br /&gt;
* No, seriously, the Go-Box was originally written to poll [http://tfwiki.net/mediawiki/index.php?title=Template:Goicons&amp;amp;action=raw] each time it runs, as was the generator used for off-site signature blocks.  So every time you pull up a page with a Gobox, the server polls itself for that list, using up a second connection, AND taxing the server to execute the PHP code.&lt;br /&gt;
* The GoBoxes are also called from MonacoBook, the TFWiki skin, so every time you pull up a page?  You use up an Apache process JUST TO GRAB SOME RARELY-UPDATED XML.&lt;br /&gt;
* We&#039;ve changed that to poll a file in &amp;lt;code&amp;gt;/var/lib/mediawiki/goicons.xml&amp;lt;/code&amp;gt; instead, which is updated via a cron job.  Make sure you replicate that whole deal if you ever duplicate the wiki, it&#039;s kinda important.&lt;br /&gt;
* Or, you could NOT replicate this step, and suffer the consequences of increased CPU load, and have an annoyed sysadmin.  You don&#039;t want that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 6.0, Kernel 3.6.5&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.16&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* MediaWiki:  1.15.0&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=780078</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=780078"/>
		<updated>2013-01-24T04:52:59Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Still Confused About All This */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== G.I. Joe wiki - a little help? ==&lt;br /&gt;
&lt;br /&gt;
Hello, all. I just wanted to add a request for some help for what should really by this wiki&#039;s sister site, Joepedia, the G.I. Joe Wiki. Now, I posted a similar request on some other sci-fi themed wiki, but the only answer I got was being told that the rules forbid a request from another wiki to be made. Well, I think that was kind of stupid, considering the communal attitude the whole wiki concept represents. BUT, ANYWAY, the Joepedia has been growing over the years, but it&#039;s mostly frequented by a small dedicated group of contributors. Since Transformers and G.I. Joe are so closely linked, I hoped some folks on here would like to help.&lt;br /&gt;
&lt;br /&gt;
I will add that I have no authority over on that site, and I don&#039;t really contribute much, mostly because of the time spent my own website. I&#039;m just a concerned geeky citizen drumming up some support. --[[User:JMM|JMM]] 10:26, 7 September 2012 (EDT)&lt;br /&gt;
:Well, I would, but I really don&#039;t know jack shit about G.I. Joe. And when I think about it, I&#039;m not sure this post belongs here. -- [[User:Spydersix|spyder]] 17:36, 7 September 2012 (EDT)&lt;br /&gt;
::Just looking around for a little help. This seemed like the closest thing to a G.I. Joe wiki out there, and I figured it was worth a try. --[[User:JMM|JMM]] 13:23, 13 September 2012 (EDT)&lt;br /&gt;
::I don&#039;t see a problem with a polite request for assistance or notification that a Joe wiki exists, since there IS some crossover interest. I just don&#039;t know how much &#039;&#039;useful&#039;&#039; crossover interest for the Joe wiki there is from this end outside of what we&#039;ve already done. I mean, we&#039;ve got extensive coverage of the parts of Joe directly involving TFs... I&#039;d say that&#039;s probably going to be the most useful thing we have for you. But, if others wanna try it out...&amp;lt;br&amp;gt;&lt;br /&gt;
::...unless you&#039;re on Wikia.... --[[User:M Sipher|M Sipher]] 13:27, 13 September 2012 (EDT)&lt;br /&gt;
:::Yeah, it was just a quick heads up so people who may be interested are aware. I know a number of people who are equally obsessed with TF and Joe. :) Oh, and yes, it is on Wikia! --[[User:JMM|JMM]] 14:22, 13 September 2012 (EDT)&lt;br /&gt;
::::We did at one point approach a partnership with Joepedia, and even had a template that cross-linked articles we shared. It was just a little premature at the time (which was years ago) as Joepedia was just starting out and often our articles were more complete than theirs, or theirs were just stubs. It looks like they&#039;ve gotten off the ground a bit more now.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:30, 13 September 2012 (EDT)&lt;br /&gt;
:::::Yes, their wiki got started later than this one. They have a small group of dedicated contributers, but the site&#039;s yet to attract the kind of interest this one does. --[[User:JMM|JMM]] 16:34, 13 September 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New stub templates ==&lt;br /&gt;
=== Video game stub template ===&lt;br /&gt;
Does anybody have any objections to a video game stub template? It would look something like this:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This article is still in beta stage.&lt;br /&gt;
 |message_text=&#039;&#039;This video game article is a [[:Category:Video game stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=ProwlTFU.JPG&lt;br /&gt;
 |image_width=40px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Video game stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
If anybody knows of a better picture that would go well with this, please upload it so it can be put in. Thanks! -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:52, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:How about a pic from the story where Prime dies in a video game? Heh if only Beta had ever been in a game, that&#039;d be perfect. --[[Special:Contributions/76.28.76.206|76.28.76.206]] 16:03, 2 October 2012 (EDT)&lt;br /&gt;
::What story was that? And yeah, that woulda been great. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 19:53, 2 October 2012 (EDT)&lt;br /&gt;
:::That would be [[Afterdeath!]]. --[[User:Detour|Detour]] 21:56, 2 October 2012 (EDT)&lt;br /&gt;
::::Well if people really want a picture from that, someone else will have to upload it, as I don&#039;t have access to it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 21:59, 2 October 2012 (EDT)&lt;br /&gt;
:::::[[:Image:Afterdeath-gameoverman.jpg|Right here, dude.]]--[[User:Detour|Detour]] 22:34, 2 October 2012 (EDT)&lt;br /&gt;
::::::Thanks, man. It&#039;s on the &#039;&#039;[[Transformers: Prime - The Game|Prime: The Game]]&#039;&#039; page if you want to see it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:50, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
In addition to the video game stub, I&#039;d like to suggest adding several templates, such as &amp;quot;section stub&amp;quot; and &amp;quot;fiction stub&amp;quot;. Right now, we only have &amp;quot;characer stub fiction&amp;quot; for pages only missing fiction section, but no templates for non-character page missing fiction appearance. While &amp;quot;section stub&amp;quot; can use for articles only missing one or two sections. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:05, 2 October 2012 (EDT)&lt;br /&gt;
:Ok, so I&#039;m gonna go ahead and make the video game one, and TX, if I get around to it later, maybe the others. If not, well, someone else will. Oh, and if I miss an article that the video game one should go on, put it here. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:31, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== Novel stub template ===&lt;br /&gt;
Ok, who has an idea for a picture for a novel stub template? I&#039;m not good with coming up with pictures for these templates. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:11, 20 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
It would look like this like this: &lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This manuscript still needs work.&lt;br /&gt;
 |message_text=&#039;&#039;This novel article is a [[:Category:Novel stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=DOTM Code-Name Hero.jpg&lt;br /&gt;
 |image_width=70px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Novel stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
-- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 10:23, 21 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Megatron Barcode Battler Card ==&lt;br /&gt;
&lt;br /&gt;
Hi, I was wondering if anyone here had come across this Megatron card for the Barcode Battler, or knows where in the Wiki it should go:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Front.jpg|200px]]&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Back.jpg|200px]]&lt;br /&gt;
|}&lt;br /&gt;
It seems to have been released by Toys R Us in 1992 as a promo for the Barcode Battler (which they were trying to sell in store), and was (as far as is known) the only such Transformers card, probably given away with two [http://barcodebattler.co.uk/scans/UK/ToysRUsF.jpg blank] [http://barcodebattler.co.uk/scans/UK/ToysRUsB.jpg cards] (the bottom scan - the middle is from the Barcode Battler box) to add your own barcodes to, and a card wallet.&lt;br /&gt;
&lt;br /&gt;
The text (&amp;quot;Clad in steel, armed to the teeth, nobody toys with us good guys when this moody cool deadly-dudey is around.&amp;quot;) is probably enough to make you want to forget this was ever made (is it really calling Megatron a good guy?), but it&#039;s cropped up in enough eBay sales (occasionally found in Barcode Battler lots with the seller unaware that they&#039;ve got something rare) to make it likely to be genuine.&lt;br /&gt;
&lt;br /&gt;
So does anyone else have any information on it, and whereabouts should this go? [[User:Xensyria|xensyria]] 12:26, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:10, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:I definitely don&#039;t know anything about it, besides that it&#039;s awesome, but if it&#039;s from 1992, then the only Megatron it could be is Megatron (G1), and so it should probably be on his toys/merchandise page.&lt;br /&gt;
:It&#039;s also plausible that someone who knows something about Barcode Battlers should make a short article on them for the wiki, since we have a lot of those &amp;quot;this broader thing had a TF thing released under it&amp;quot; pages. -[[User:LV|LV]] 12:31, 16 October 2012 (EDT)&lt;br /&gt;
::Or...this isn&#039;t anything to do with a licensed Transformers thing? I sort of blindly assumed Hasbro was the entity selling the Barcode Battler in the UK, but the packaging doesn&#039;t seem to support that. It&#039;s hard to believe it&#039;s not intended to be TF Megatron, but I&#039;m also not sure it&#039;s an official product. Especially since this Megatron guy seems to be the boxfront &amp;quot;main character&amp;quot; for the UK Barcode Battler release. -[[User:LV|LV]] 12:37, 16 October 2012 (EDT)&lt;br /&gt;
:::Ah, that&#039;s a possibility, but Barcode Battler was being distributed in most of Europe by Tomy, so they probably gave Toys R Us rights to use Megatron. Perhaps they couldn&#039;t get the rights to use his picture though (as you say, it&#039;s Tomy&#039;s Barcode Battler cover on the card, so anyone who used the card probably wouldn&#039;t think it was supposed to be Megatron). I should also say that 1992 is more of an educated guess than fact, but it&#039;s bound to be somewhere around that.&lt;br /&gt;
:::If it&#039;s offical I don&#039;t mind making a Barcode Battler article (though I&#039;ll have to check out some of the other examples you mention first). [[User:Xensyria|xensyria]] 13:02, 16 October 2012 (EDT)&lt;br /&gt;
::::Wait, I just re-read Wikipedia, and Tomy was rivals with Takara who owned Transformers at the time. Still, I wonder if such big companies would risk a lawsuit over using Megatron, when they had all sorts of other franchises they could use instead; more likely Toys R Us arranged the deal with Hasbro, who they no doubt were one of the biggest retailers for at the time. [[User:Xensyria|xensyria]] 13:04, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:12, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:::::Unlikely to be a Hasbro/TF related thing. In 1992 TFs weren&#039;t even being made in the US and the UK line didn&#039;t have a Megatron, the Decepticons were led by Skyquake at that time. --[[User:Khajidha|Khajidha]] 13:14, 16 October 2012 (EDT)&lt;br /&gt;
:::::Well, this is sort of like with Yu-Gi-Oh&#039;s Space Megatron, Hasbro&#039;s trademark just didn&#039;t apply to things like gaming cards, so Tomy, just like Konami later, was in a safe zone. --[[User:Detour|Detour]] 14:20, 16 October 2012 (EDT)&lt;br /&gt;
::::::Ah, that would explain the &amp;quot;good guys&amp;quot; text as well. It seems to be a U.K. only thing, and though there may not have been Megatron toys there (is there a reference to them not being released in the U.K. on this on the wiki?) the name would have been familiar from the the film. Is there anywhere for similarly unofficial merchandice here, or should it be cast back into the purgatory of its makers&#039; device? [[User:Xensyria|xensyria]] 15:11, 16 October 2012 (EDT)&lt;br /&gt;
:::::::While I never played it, I distinctively remember Barcode Battlers as well, so it&#039;s not a UK-only thing. --[[User:Detour|Detour]] 15:15, 16 October 2012 (EDT)&lt;br /&gt;
::::::::My bad, I mean the Megatron card, which uses the Tomy box art (the U.S. version was by Irwin, and Japan by the developer, Epoch). [[User:Xensyria|xensyria]] 15:22, 16 October 2012 (EDT)&lt;br /&gt;
:::::::::See [[The Transformers (toyline)]] and [[Generation 1 (European toyline)]] for lists of what was released in the US and Europe each year of the original toyline. --[[User:Khajidha|Khajidha]] 15:37, 16 October 2012 (EDT)&lt;br /&gt;
::::::::::Also, in answer to your question about unofficial merchandise, we only cover official products from Hasbro, Takara and their license holders. About the only place that this could really go on this site is the [[trademark]] page, in a similar use as the &amp;quot;Space Megatron&amp;quot; card from Yu-Gi-Oh! --[[User:Khajidha|Khajidha]] 07:53, 18 October 2012 (EDT)&lt;br /&gt;
:::::::::::Thanks to all of you for the info. I&#039;ve added it to the [[Talk:Trademark#Old example: .22Megatron.22 Barcode Battler promo card|trademark talk page]], but will leave it up to you whether it&#039;s a notable enough example to be added to the article or not. [[User:Xensyria|xensyria]] 15:55, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Recent spamming==&lt;br /&gt;
Granted, I haven&#039;t been here all that often, but the recent spamming has me wondering if the perpetrator(s) are using some form of IP hopping. It&#039;s feeling rather hydra-ish at the moment. --[[User:Lonegamer78|Lonegamer78]] 07:22, 18 October 2012 (EDT)&lt;br /&gt;
:I still suggest you add a recaptcha for edits that add external links, at least for new accounts.[[Special:Contributions/192.249.47.177|192.249.47.177]] 14:09, 18 October 2012 (EDT)&lt;br /&gt;
::If that&#039;s possible, I like that idea. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:34, 18 October 2012 (EDT)&lt;br /&gt;
:::What IP guy said. Also, if we disabled all &amp;quot;Talk:/Talk&amp;quot; pages, that&#039;d help a bit. Either way, the latest spambot assault is obliterating the recent changes page. -- [[User:Repowers|Repowers]] 08:21, 24 October 2012 (EDT)&lt;br /&gt;
::::The &amp;quot;Talk:/Talk&amp;quot; thing has been mentioned numerous times in the past, I was actually surprised to see these still popping up. I&#039;m guessing some other wikis have already implemented this, as there seems no other reason for the several &amp;quot;Talk:T/alk&amp;quot; (note order of characters) pages that have popped up recently. --[[User:Khajidha|Khajidha]] 10:03, 24 October 2012 (EDT)&lt;br /&gt;
:::::I don&#039;t care what we do, but we need to do something, and we need to do it now. - [[User:Chris McFeely|Chris McFeely]] 10:09, 24 October 2012 (EDT)&lt;br /&gt;
::::::What McFeely said. This crap needs to stop. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 08:47, 25 October 2012 (EDT)&lt;br /&gt;
:::::::Looking at the recent changes, this is getting worse. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:20, 25 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
According to McFly, anon editing has been eliminated. This kills a lot of it, plus a chunk of human-born vandalism. The next step is that new accounts will get an automated confirmation email with a link that will unlock the new account, which should hopefully take out the other major spambot problems. --[[User:M Sipher|M Sipher]] 18:30, 25 October 2012 (EDT)&lt;br /&gt;
:Leaving those that make accounts just to spam. Well, one step at a time. --[[User:Lonegamer78|Lonegamer78]] 00:29, 26 October 2012 (EDT)&lt;br /&gt;
::Well, there&#039;s not much we can do with dedicated human antagonists. --[[User:M Sipher|M Sipher]] 00:43, 26 October 2012 (EDT)&lt;br /&gt;
:::And, the worst problem was the spambots anyway. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 06:45, 26 October 2012 (EDT)&lt;br /&gt;
::::Rather than blocking all IP editing, did you guys ever try out recaptcha for new accounts or articles?[[User:KrytenKoro|KrytenKoro]] 20:27, 9 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Universe/UT Micromaster combiners ==&lt;br /&gt;
&lt;br /&gt;
There isn&#039;t any general page for these, so I&#039;m putting this here.&lt;br /&gt;
&lt;br /&gt;
Given our treatment of the ROTF/Universe (2008) Bruticus Maximus and Superion sets, I wonder if the Universe (2003) Micromaster combiners whose European releases were branded as Energon ([[Defensor (Universe)|Defensor]], [[Constructicon Devastator (Micromaster)|Constructicon Devastator]]) or Cybertron ([[Superion (Universe)|Superion]], [[Rail Racer (Universe)|Rail Racer]]) should be considered Unicron Trilogy characters.  It&#039;s the same basic situation, except that the nature of Universe (2003) means that just because the European versions are Energon/Cybertron doesn&#039;t mean they&#039;re different guys.  --[[User:Andrusi|Andrusi]] 11:00, 18 October 2012 (EDT)&lt;br /&gt;
:Aren&#039;t they already listed that way? Defensor and Constructicon Devastator have &amp;quot;Energon Autobot&amp;quot; and &amp;quot;Energon Decepticon&amp;quot; categories and Superion and Rail Racer are in the category &amp;quot;Cybertron Autobots&amp;quot;. I haven&#039;t checked the individual team members yet. --[[User:Khajidha|Khajidha]] 12:59, 18 October 2012 (EDT)&lt;br /&gt;
:Just checked the team members and found only one that was not categorized as Energon or Cybertron characters (Long Haul), I added the appropriate category. --[[User:Khajidha|Khajidha]] 13:04, 18 October 2012 (EDT)&lt;br /&gt;
::I guess he&#039;s talking about the continuity identifier at the top? [[Special:Contributions/24.211.29.87|24.211.29.87]] 13:24, 18 October 2012 (EDT)&lt;br /&gt;
:::Ah, that makes sense. I could see something like the one used for [[King Atlas]]. --[[User:Khajidha|Khajidha]] 13:49, 18 October 2012 (EDT)&lt;br /&gt;
::::Yeah, I meant the continuity identifiers (and in the case of some components, like [[Red Alert (Universe)|Red Alert]], the &amp;quot;relation unknown&amp;quot; bio notes).  The categories honestly never occurred to me.  --[[User:Andrusi|Andrusi]] 12:36, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Election Day ==&lt;br /&gt;
&lt;br /&gt;
Perhaps the [[President of the United States]] should be the featured article... just for today.--[[User:Jimsorenson|Jimsorenson]] 10:41, 6 November 2012 (EST)&lt;br /&gt;
:Much as I like the idea, it doesn&#039;t have much of an intro paragraph, which makes it hard to front-page it.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:20, 6 November 2012 (EST)&lt;br /&gt;
::Transtech Optimus and Megatron might also be good choices.[[User:KrytenKoro|KrytenKoro]] 13:02, 6 November 2012 (EST)&lt;br /&gt;
:::[[Democracy]]? --[[User:Emvee|Emvee]] 13:06, 6 November 2012 (EST)&lt;br /&gt;
::::Yeah, that&#039;s got a proper intro paragraph and is actually a fairly nice article. [[User:Jalaguy|Jalaguy]] 13:08, 6 November 2012 (EST)&lt;br /&gt;
:::::We&#039;ve used it on Election Day before, s&#039;why.  --[[User:ItsWalky|ItsWalky]] 13:23, 6 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned ==&lt;br /&gt;
&lt;br /&gt;
Can we... can we just disambiguate WFC/FOC/Prime stuff like we do everything else on this wiki, please?  --[[User:ItsWalky|ItsWalky]] 14:51, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I am still not clear as to why WFC and FOC are treated as franchises of their own rather than specific iterations of the Prime franchise. I would support changing all the disambigs of WFC/FOC/Prime to Prime. --[[User:Khajidha|Khajidha]] 15:03, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::WFC and FOC have their own franchise branding.   For example, the Fall of Cybertron comic is branded as Fall of Cybertron, not as Prime.  When you have a series of related properties with &amp;quot;Transformers: ________&amp;quot; as a shared title with its own logo, that&#039;s a more often than not a franchise.  --[[User:ItsWalky|ItsWalky]] 01:26, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::And for that matter, WFC and FOC encompass even our most strict definition of franchise, as each of them is at minimum a game, a comic, and a toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 03:54, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:So what are you asking for, here, Walky? For [[Optimus Prime (Prime)]] to be at &amp;quot;Optimus Prime (WFC)&amp;quot;? - [[User:Chris McFeely|Chris McFeely]] 05:05, 12 November 2012 (EST)&lt;br /&gt;
::::Yes.  --[[User:ItsWalky|ItsWalky]] 15:15, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::Frankly, I&#039;d love to see Optimus Prime (WFC), Optimus Prime (Prime) and Optimus Prime (RB). --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 12:31, 12 November 2012 (EST)&lt;br /&gt;
:::Why would we part out a character&#039;s page by separate franchises within the same continuity family? --[[User:Detour|Detour]] 13:00, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I agree that some of the disambig&#039;ing is getting pretty mad. Like Aligned Bruticus being at (Prime) due to a piece of concept art for a foreign-market MMO that isn&#039;t even used on the page, for instance. Given that the original reason for overriding (WFC) disambigs was to avoid confusion, it seems pretty ridiculous. I understand the original intention was to help people looking for the show characters, but the same could be said of, say, [[Sideways (RID)|Sideways]], who is disambig&#039;d based on a less well known first appearance rather than a starring cartoon role, and we haven&#039;t changed him. My opinion&#039;s that we should either, as Walky says, abandon the &#039;Prime takes precedence for disambigs&#039; thing, or come up with a more concrete set of guidelines than &#039;the moment they appear in anything the tiniest bit &#039;&#039;Prime&#039;&#039;-y, change the disambig&#039;. [[User:Jalaguy|Jalaguy]] 13:36, 12 November 2012 (EST)&lt;br /&gt;
::As someone who initially advocated for our current methodology, I&#039;d really only intended it for show characters or characters in the Prime toyline. That&#039;s my only real hang-up here, that if a new user comes here after watching the show or picking up a toy, they shouldn&#039;t get tangled up by the fact that we&#039;re insisting on putting (WFC) on the end of something because it debuted in the game. Parentheticals are for ease of use, not dogmatic technicality.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:59, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.  We still have one article per character per continuity family, so it seems the most logical to me to call that the disambiguation and only go deeper when we have two different characters from the same continuity family with the same name.  After all, when you go to the current disambiguation pages, that&#039;s how we describe the character in text.&lt;br /&gt;
It would avoid this entire mess.  Basically, the principal I think we should employ is to use the highest possible level when disambiguating characters.  If a character is unique, no disambiguation necessary.  If only one guy named &#039;Optimus Prime&#039; shows up in Aligned, then call him Optimus Prime (Aligned).  I realized that that means that the Unicron Trilogy and movie franchises, with their rampant name reuse, will tend to go one level deeper... but since that&#039;s what we&#039;re doing today, it shouldn&#039;t be too big of an issue. &lt;br /&gt;
As we&#039;ve seen, the lines between franchises are only getting blurrier, and we have every reason to believe this trend will continue.  In maybe 95% of cases, we really will have only one character per name per continuity family, and then we (and our readers) won&#039;t have to try to figure out where Aligned Prime first popped his head up. --[[User:Jimsorenson|Jimsorenson]] 18:33, 12 November 2012 (EST)&lt;br /&gt;
:I find myself agreeing with this. As someone who was not to long ago just a reader, I can say that disambiguating by continuity family would probably help &#039;&#039;a lot&#039;&#039; of people. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 20:00, 12 November 2012 (EST)&lt;br /&gt;
::If you do that, may I suggest you take the opportunity to come up with a less confusing name for the G1 continuity family that isn&#039;t the same as the franchise. That way there won&#039;t be a bunch of Beast Wars characters with (G1). How about the &amp;quot;inaugural continuity family&amp;quot;? Optimus Prime (Inaugural)&lt;br /&gt;
::Cons&lt;br /&gt;
::*Continuity family names are unofficial for the most part.&lt;br /&gt;
::*Fiction-only dimension hoppers are a bit of a problem. Do they go in their &amp;quot;home&amp;quot; continuity family or the continuity family of the piece of fiction they originated in?&lt;br /&gt;
::*Pros&lt;br /&gt;
::*I would personally feel better about the IDW original characters if they were disambiguated by the G1 continuity family (or the inaugural continuity family) instead of the G1 franchise. - [[User:Starfield|Starfield]] 20:17, 12 November 2012 (EST)&lt;br /&gt;
:If it&#039;s a choice between having (WFC) disambigs on Prime characters or radically changing how we organize the wiki and having to move thousands of articles (who&#039;s going to have time to even do that?), I prefer the former as a solution. --[[User:Abates|abates]] 20:36, 12 November 2012 (EST)&lt;br /&gt;
::In full agreement there. But I do think redirects with other franchise disambigs would be helpful to newcomers. Like someone who may have watched Cybertron but not be aware of the Armada toy who might try to search for &amp;quot;Thundercracker (Cybertron)&amp;quot;, for example. --[[User:Detour|Detour]] 20:49, 12 November 2012 (EST)&lt;br /&gt;
:&#039;&#039;For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.&#039;&#039;&lt;br /&gt;
:Agree.  The only reason we don&#039;t for the Unicron Trilogy is because of the absolutely rampant name reuse, but Prime hasn&#039;t seen that problem.  I think that (in principle) everyone should be disambig&#039;d (Aligned).&lt;br /&gt;
:That or you have to more Breakdown (Prime) to Breakdown (WFC).&lt;br /&gt;
:...also Rescue Bots.  Aligned they are.  -[[User:Derik|Derik]] 00:45, 13 November 2012 (EST)&lt;br /&gt;
::I strongly feel we should stick to using official terms and abbreviations thereof in our disambiguation, and &amp;quot;aligned&amp;quot; is not really official (it was from a Hasbro guy describing their aim as a &amp;quot;new aligned continuity&amp;quot; ISTR). Unless we renamed it to the &amp;quot;Prime continuity family&amp;quot;, but that way possibly lies madness. --[[User:Abates|abates]] 22:33, 13 November 2012 (EST)&lt;br /&gt;
:::I bet you anything that if we looked around we could find someone official referring to it as Aligned.  (If only because we do.)  -[[User:Derik|Derik]] 22:36, 13 November 2012 (EST)&lt;br /&gt;
::::Not that I want to do everything by continuity family, because I absolutely do not, but even &amp;quot;Generation 1&amp;quot; started out as a fan term, and &amp;quot;Unicron Trilogy&amp;quot; was based on something Aaron Archer said once but became widespread because the Wiki used it.  &amp;quot;Aligned,&amp;quot; another thing said once by Hasbro, is no different.  But again, argh, no, disambiging by continuity family raises more headaches than it solves.  UT isn&#039;t the only continuity family where name reuse is rampant.  --[[User:ItsWalky|ItsWalky]] 01:08, 14 November 2012 (EST)&lt;br /&gt;
:::::Yeah, &#039;&#039;colossal&#039;&#039; headaches if we tried to smoosh the various comic and toy characters from each movie&#039;s ancillary franchise together.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:22, 14 November 2012 (EST)&lt;br /&gt;
::::::Would it be?  If they&#039;re different characters, they&#039;re different characters.  So, Sentinel Prime would go from Sentienl Prime (ROTF) to Sentinel Prime (Movie).  He&#039;s a good example of a confusing disambiuation.  He&#039;s the villain in movie 3, but is at movie 2 because of an unnamed montage sequence.  Someone like movie Devastator, who is two separate characters, would remain exactly as they are.--[[User:Joefan|Joefan]] 12:06, 14 November 2012 (EST)&lt;br /&gt;
:::::::Except if it&#039;s by continuity family, he&#039;d be at &amp;quot;Sentinel Prime (LAMS)&amp;quot;. I think changing our entire way of naming articles and moving thousands of articles just to fix the &amp;quot;(Prime)&amp;quot; issue is like using a nuclear bomb to hammer in a nail. --[[User:Abates|abates]] 14:12, 14 November 2012 (EST)&lt;br /&gt;
::::::::My view on this topic has changed, and I now agree with this. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:44, 14 November 2012 (EST)&lt;br /&gt;
:::::::::My understanding was that we HAD been disambig-ing by Continuity family, and chose NOT to for the Unicron Trilogy and LAMS because the rampant name reuse would make this horribly confusing.  But for Aligned... so far we&#039;ve already gotten &amp;lt;u&amp;gt;three&amp;lt;/u&amp;gt; franchises and virtually no overlap.&lt;br /&gt;
:::::::::I&#039;m going to cite [[Help:Ignore all standards]], which states that &#039;&#039;Standards are good; TFWiki.net likes standards. We&#039;re just not under the illusion that standards are perfect.&#039;&#039; and more importantly &#039;&#039;&#039;&amp;quot;In situations where the standards intended to prevent confusion would instead contribute to it, common sense should rule.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
:::::::::Actually... wasn&#039;t disambiging the UT series by franchise a case of H:IAS?  We decided to do that because the way rampant name reuse rendered other approaches impractical.  -[[User:Derik|Derik]] 14:05, 16 November 2012 (EST)&lt;br /&gt;
::::::::::We don&#039;t disambig by franchise because of the UT.  We disambig by franchise because of EVERYTHING.  UT was never ever ever the straw that broke the camel&#039;s back.  The back came pre-broken.  --[[User:ItsWalky|ItsWalky]] 14:22, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::Whatever.  Can I move Breakdown (Prime) to Breakdown (WFC) or not?  -[[User:Derik|Derik]] 15:35, 16 November 2012 (EST)&lt;br /&gt;
::::::::::::That&#039;s what I&#039;d like to do eventually, but I don&#039;t think we&#039;ve reached a firm enough consensus to do something that big and sprawling.  --[[User:ItsWalky|ItsWalky]] 16:16, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::...he&#039;s got the wrong disambig.  We disambig by the franchise he first appeared in.  His WFC appearance was 6 months prior to his Prime appearance.  Why does that require some sort of confab?&lt;br /&gt;
:::::::::::::: You are preaching to the choir on this point, but previously a consensus was made that Prime stuff operates differently from everything else on the wiki.  I want to overturn that, but until I do, the previous consensus stands.  --[[User:ItsWalky|ItsWalky]] 16:58, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::Of course the answer is &amp;quot;because we&#039;re already in an &amp;lt;tt&amp;gt;Ignore all standards&amp;lt;/tt&amp;gt; situation; we want to disambig them with (Prime) even though that&#039;s against our standard treatment, but we haven&#039;t properly dealt-with/processed/mourned that.&amp;quot;&lt;br /&gt;
:::::::::::::If we give in to a rigid standard and move him (and everyone else) to (WFC), &#039;&#039;I&#039;&#039; think it&#039;s almost inevitable that there will be a pushback against the anti-intuitive mess that makes the disambigs, which will itself lead to either returning them to (Prime) or switching everything to (Aligned)  I just do not see (WFC) for the main characters &#039;standing.&#039;&lt;br /&gt;
:::::::::::::Which would mean that we aren&#039;t facing a choice between standard-vs-nonstandard, but between nonstandard-vs-nonstandard.  And given that choice I think (Aligned) is the better nonstandard.&lt;br /&gt;
:::::::::::::(You may feel free to disagree with my assessment of the outcome of a (WFC) move.  I recognize that my beliefs about &amp;quot;what would probably happen after&amp;quot; are just a hypothesis and should not be treated as fact.)  -[[User:Derik|Derik]] 16:56, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
If we do go to strict franchise of origin on Aligned continuity family characters, we are going to have to be &#039;&#039;super&#039;&#039; diligent on redirects for anyone that appears in the Prime show or toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 17:55, 16 November 2012 (EST)&lt;br /&gt;
: I half-agree, if only because we won&#039;t have to be TOO diligent on the pages that exist already, because that would involve merely not deleting the redirects from the old locations once we move the pages.  It&#039;d be a kind of reverse-diligence, since it would really mean one less step than usual.  Otherwise, yes, if a character is in Prime, there should be a redirect from there. --[[User:ItsWalky|ItsWalky]] 19:13, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
So have people have a chance to mull this over some? I&#039;m leaning towards going back to the &amp;quot;by franchise&amp;quot; rule and having &amp;quot;Breakdown (WFC)&amp;quot; because it&#039;s both simpler than any of the alternatives, and it&#039;s consistent with what we do everywhere else. So long as &amp;quot;Breakdown (Prime)&amp;quot; redirects there, and I don&#039;t see any reason for it not to, people will still be able to find it. --[[User:Abates|abates]] 18:56, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fun fact ==&lt;br /&gt;
&lt;br /&gt;
According to my calculations we had around about 6876 articles when we left Wikia, so we&#039;ve added over 10000 more in the four and a bit years since we left. --[[User:Abates|abates]] 03:27, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:While wikia has added... 929 articles.--[[User:Carrion|Carrion]] 12:09, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::929, really? No offense but I thought it was less. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 13:47, 19 November 2012 (EST) &amp;lt;13:57, 19 November 2012 (EST) edit&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::Hey, be fair, they&#039;ve also added a blog. GUH. --[[User:Khajidha|Khajidha]] 13:49, 19 November 2012 (EST)&lt;br /&gt;
::::And a video library! Because people go to wikis to watch movie trailers! --[[User:Abates|abates]] 14:43, 19 November 2012 (EST)&lt;br /&gt;
:::I was just there the other day... their article for Animated Bulkhead still has an &amp;quot;ongoing&amp;quot; tag... --[[User:Detour|Detour]] 19:06, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Split Pages ==&lt;br /&gt;
&lt;br /&gt;
We have several characters on the list of [[Special:Longpages|Long pages]]–such as [[Kup (G1)]], ‎[[Prowl (G1)]], [[Megatron (G1)]], [[Ratchet (G1)]], and [[Hot Rod (G1)]]. So I suggest to split their G1 cartoon, Marvel comics, and IDW comics section into new pages. – [[User:Thunderweb|Thunderweb]] 01:40, 20 November 2012 (EST)&lt;br /&gt;
:That&#039;s cool and all, but please don&#039;t split off pages if you&#039;re not going to write proper intros/summaries for them and include appropriate categories on the sub pages. --[[User:Abates|abates]] 17:12, 24 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned section breakup is warping canon ==&lt;br /&gt;
&lt;br /&gt;
Currently{{now|21:19, 26 November 2012 (EST)}} our [[Breakdown (Prime)]] page lists all his Prime appearances then ghettotizes out his Fall of Cybertron appearances into a subsequent section as a separate continuity, and thus less important than the cartoon despite coming first.  &lt;br /&gt;
&lt;br /&gt;
[[Bulkhead (Prime)]] and [[Knock Out (Prime)]] are a little better, but the Prime wii game (by the series writers, intended to fit in season 2 albeit without a specific &amp;quot;after this episode and before this episode&amp;quot; date) is broken out as a &#039;&#039;&#039;seperate continuity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traditionally this has been our way of dealing with games because they are a secondary media; being sorta warped reflections of some core media with (for the most part) minimal contribution to continuity.  But, you know, Aligned is different.  The War for Cybertron / Fall of Cybertron games are part of the same continuity, occurring before the cartoon.  We sort of rolled our eyes when Hasbro first insisted on this (mostly because the [[Transformers: Exodus]] novel doesn&#039;t fit well with the game &#039;&#039;or&#039;&#039; the cartoon.)  But the reality increasingly is that they &#039;&#039;&#039;are&#039;&#039;&#039; one continuity.  Hell, this is a quote from an interview w/ John Barber, writer of [[Rage of the Dinobots]].&lt;br /&gt;
&lt;br /&gt;
{{quote|JB: The Transformers story has been going on continuously for a very long time, and I think it’s fair to say the Prime universe is working to take the best elements of every expression and build a world. What’s really exciting is that what we’re doing in the comic is going to impact this world across various mediums. So, it isn’t a case where we’re doing a book that’s subservient to the TV show—we’re doing an all-new story set in that same universe, and the stories we tell are going to be reflected in the shows and the novels and everything else. It’s “canon.” Which is cool, and sort of rare and unique.&lt;br /&gt;
&lt;br /&gt;
RS: The book is a truly cross-media venture tying in with the upcoming game Fall of Cybertron as well as the Transformers Prime series, how much of a &#039;juggling act&#039; is it to coordinate the story between the different outlets?&lt;br /&gt;
&lt;br /&gt;
JB: Fortunately I get to work with some of the best people in the business. Michael Kelly, who’s Hasbro’s Director of Global Publishing, is a great friend and somebody I get to work with very closely. He coordinates with the Transformers brand team at Hasbro—which contains some really good friends of mine, too. Plus I’ll talk to the folks at Random House, and we’re constantly emailing with everybody at High Moon, who produce FALL OF CYBERTRON, so while there are a lot of moving parts, we’re all talking. And we’re all building toward the same goals of good storytelling and a cohesive worldview.&lt;br /&gt;
&lt;br /&gt;
Also—the new Prime comic is being written by Mike Johnson and Mairghread Scott, both of whom—in addition to being comics writers, both write for thePrime TV show. So they know what’s what.|John Barber|[http://www.aintitcool.com/node/58236 AICN COMICS Q&amp;amp;@: Russ Sheath talks to IDW&#039;s John Barber about TRANSFORMERS PRIME: RAGE OF THE DINOBOTS!]}}&lt;br /&gt;
&lt;br /&gt;
Messy as it was for the rollout, the people producing the stuff &#039;&#039;&#039;intend for it to be one universe and are writing it at such&#039;&#039;&#039;.  And the various franchises &#039;&#039;&#039;are&#039;&#039;&#039; slowly converging as a result.&lt;br /&gt;
&lt;br /&gt;
We &amp;lt;u&amp;gt;need&amp;lt;/u&amp;gt; to consolidate these sections under a single &amp;quot;Aligned continuity&amp;quot; header.  Because the way we&#039;re doing it right now is fucking things up.  &lt;br /&gt;
&lt;br /&gt;
(And no we can&#039;t have WFC/Prime subsection headers for the same reason we can&#039;t separate the Movieverse prequel minis, they interleve.  The games don&#039;t deal with Prime and Megatron&#039;s pre-war history bot the novels and TV shows do mention it.)  -[[User:Derik|Derik]] 21:19, 26 November 2012 (EST)&lt;br /&gt;
: Yeah, I think the way we do it now is better-organized.  Video game stuff, no matter how high-profile it is, tends to be overwritten by the &amp;quot;real&amp;quot; stories that later adapt it.  I&#039;d rather keep stuff separated by medium.  --[[User:ItsWalky|ItsWalky]] 22:28, 26 November 2012 (EST)&lt;br /&gt;
::Agreed. There&#039;s no way to kludge it all together under one heading without either ignoring some details or presenting them in a vague, unhelpful manner, given the contradictions that exist. You cite the Prime game, but at no point in season 2 do the Decepticons EVER consist of Megatron, Starscream, Airachnid and Dreadwing at the same time. It can&#039;t fit. And your other example - it&#039;s all well and good to quote that Barber quote, Derik, but the preview for &amp;quot;Rage of the Dinobots&amp;quot; alone has shown Grimlock present on Cybertron, Sludge being alive and Blast Off dying at a point when in the games, Grimlock has vanished, Sludge has died and Blast Off needs to be alive. (Not to say that the comic might not address these points, it&#039;s just the example foremost in my brain as it&#039;s been discussed recently.) - [[User:Chris McFeely|Chris McFeely]] 05:16, 27 November 2012 (EST)&lt;br /&gt;
:::Chris, the only contradiction we&#039;ve seen in the Rage of the Dinobots comic preview thus far is Sludge being alive. It&#039;s set after the Ark left, during which Grimlock &#039;&#039;was&#039;&#039; still on Cybertron. And Blast Off being there ties in with Jazz and Jetfire having knocked Bruticus off the Ark before it went through the space bridge. He was last seen plummeting, seemingly, back to Cybertron; and judging by this comic, it looks like he made it.&lt;br /&gt;
:::Now, as for my thoughts on the reorganization of the Aligned fiction sections, I offer a counterproposal. Keep each section separate as they are, but I&#039;d feel more confortable with the WFC and FOC sections place above the Prime sections to coincide with their chronological placement in the timeline. Perhaps put the Exodus section first, then the WFC sections, then the FOC comic section, the FOC the game, then Exiles or Rage of the Dinobots (depending on how that comic with play out will determent if it&#039;s better set before or after Exiles), then the Prime comic, then the Prime cartoon, then the Prime game, and then the Rescue Bots cartoon. Each keeps its own section, but arranged in as close to chronological order as possible. --[[User:Sabrblade|Sabrblade]] 12:20, 27 November 2012 (EST)&lt;br /&gt;
::::I don&#039;t understand how putting some of the video game stuff outside of the video game section is intuitive, because presumably we&#039;d be keeping the Prime game stuff down below.  --[[User:ItsWalky|ItsWalky]] 12:23, 27 November 2012 (EST)&lt;br /&gt;
:::::I&#039;m saying to treat the games as fiction themselves instead of a second tier category, since, unlike previous continuities, they&#039;re of a greater importance to their master continuity than any past games have ever been. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::The [[Breakdown (Prime)]] article separates along &#039;&#039;&#039;Fiction&#039;&#039;&#039; and &#039;&#039;&#039;Games&#039;&#039;&#039;, placing the WFC/FOC games in the latter when they are part of the same body of fiction.  Even if you don&#039;t want to place them in the same continuity, they should both be in the &#039;&#039;&#039;Fiction&#039;&#039;&#039; header.&lt;br /&gt;
::::::The separate header for games system has its origins in the traditional relationship of games to other fiction, where they present a wildly divergent or exclusive or alternate version of another existing franchise or story.  These are primary story material which have no &#039;primary story&#039; they present an alternate version of because they &#039;&#039;are&#039;&#039; the primary story.  You can&#039;t ghettoize them as &amp;quot;something other than fiction.&amp;quot;  -[[User:Derik|Derik]] 17:28, 27 November 2012 (EST)&lt;br /&gt;
:::::::That&#039;s what I&#039;m saying. Putting the individual video game subsections into the main fiction section instead of putting them in a separate video game section since the games aren&#039;t a second tier of the main story this time. --[[User:Sabrblade|Sabrblade]] 17:37, 27 November 2012 (EST)&lt;br /&gt;
::::I realize this isn&#039;t the time or place for this, but regarding those points, I&#039;ll say that the clear implication at the end of FoC is that Grimlock has vanished through the spacebridge (he doesn&#039;t get out before the explosion and the Dinobots watch as something shoots up the beam into the portal), and as the Ark is the &#039;&#039;last&#039;&#039; of the vessels to leave in the game, it can&#039;t fit with what we&#039;re seeing here with Blast Off&#039;s timeline. - [[User:Chris McFeely|Chris McFeely]] 12:26, 27 November 2012 (EST)&lt;br /&gt;
:::::I never got the impression that Grimlock got sent through the space bridge. His fate was rather amibiguous to the nth degree, leaving plenty open room for him to still be on Cybertron after the game. He&#039;s running away, there&#039;s a blinding light, and then the scene cuts away. for all we know, he could have fallen off the platform he was on and plummeted far to the ground below, away from the space bridge&#039;s reach (though he&#039;d be in for some serious repairs after a fall form that height). As for the other ships, we know that the planet was completely abandoned by the present day, so the Dinobots and Wreckers would have had to have gotten off the planet somehow and at some point. Just because the Ark was the last vessel to leave during the Great Exodus doesn&#039;t mean there weren&#039;t more ships set aside in reserve for or built later by those who stayed behind so they could eventually leave when the time would come for them to do so &#039;&#039;after&#039;&#039; the Great Exodus. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::And thus, we see the the hand-wringing necessary to align everything. - [[User:Chris McFeely|Chris McFeely]] 12:50, 27 November 2012 (EST)&lt;br /&gt;
:::::::Pun not intended.  --[[User:ItsWalky|ItsWalky]] 13:39, 27 November 2012 (EST)&lt;br /&gt;
:::::::Yeah, and until we get canonical answers to things like where the Prime game or Optimus/Bumblebee&#039;s appearances in Rescue Bots fit, sticking everything under one header is just not possible. --[[User:Abates|abates]] 14:59, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
I think my main qualm here is that every time someone tries to make the case that Aligned is somehow &#039;&#039;different&#039;&#039; and thus deserves us altering the way we treat it relative to other continuity families, we end up with &#039;&#039;even more&#039;&#039; examples of how Aligned is pretty much a branching, loosely-connected thing &#039;&#039;just like every other continuity family&#039;&#039;. I mean sure, it&#039;ll never get quite to the point of how spread out the G1 continuity family is. Regardless, this is no different from how obvious it was that Bay&#039;s writers didn&#039;t give a damn about the movie comics, and so forth.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:49, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s very easy to say &amp;quot;this doesn&#039;t seem to fit&amp;quot; but Barber says he&#039;s coordinating his story with High Moon Studios so there aren&#039;t any conflicts.&lt;br /&gt;
:The people writing these things are &#039;&#039;trying&#039;&#039; to make them one continuity, damnit!  Do we have to fight them this hard?  -[[User:Derik|Derik]] 13:22, 27 November 2012 (EST)&lt;br /&gt;
::And IDW &#039;&#039;tried&#039;&#039; to make the comics jive with the live-action movies, and Barber himself is the one that had to get the mop whenever that didn&#039;t work out. Heck, Barber had early drafts of the movie scripts in many cases, and ended up drawing off of concepts that ultimately weren&#039;t even used in the movies.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 20:07, 27 November 2012 (EST)&lt;br /&gt;
:::I cant&#039; tell if you&#039;re saying IDW succeeded or not, there&#039;s a lot of handwaving in the IDW timeline but it mostly works, largely thanks to Barber bending over backwards to explain how the DotM conspiracy could possibly be present during the 2007 movie and somehow miss Megatron.  ;)  -[[User:Derik|Derik]] 00:05, 28 November 2012 (EST)&lt;br /&gt;
::::I&#039;m not faulting the man&#039;s efforts, and certainly he must have won a No-Prize back in the day from the Merry Marvel Marching Squad, but all I&#039;m really saying is &#039;&#039;this is nothing new&#039;&#039;.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:43, 28 November 2012 (EST)&lt;br /&gt;
:::::What are you saying? The Movieverse comics and the films are in the same continuity. Just read the [[Movie continuity]] page. I don&#039;t care so much how the fiction is listed in character pages, but I&#039;d like to see the [[Aligned continuity family]] page moved to &amp;quot;Aligned continuity&amp;quot; and the appropriate changes made to reflect the fact that the Aligned stuff is all &#039;&#039;officially&#039;&#039; the same continuity. Officially! Nobody in G1 tried to say &amp;quot;all this stuff is in the same continuity.&amp;quot; - [[User:Starfield|Starfield]] 11:10, 28 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== James Roberts notes ==&lt;br /&gt;
&lt;br /&gt;
As self-referencial as Roberts&#039; work gets, most of the notes sections on MTMTE pages are getting ridiculously long. Some of them have become big blocks of text that cover an entire screen. Is there any way we can break these down into smaller subsections? &#039;&#039;&amp;quot;Roberts referencing Roberts&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Roberts referencing other stories&amp;quot;&#039;&#039;? &#039;&#039;&amp;quot;Story notes&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Easter eggs&amp;quot;&#039;&#039;?--[[User:Xaaron|Xaaron]] 09:52, 13 December 2012 (EST)&lt;br /&gt;
: I don&#039;t think any of the notes sections for Roberts stories are &amp;quot;ridiculously long.&amp;quot;  --[[User:ItsWalky|ItsWalky]] 10:41, 13 December 2012 (EST)&lt;br /&gt;
:: Four of the last five regular issues have Notes sections that cover my entire monitor. One big screen of bullet points. It&#039;s aesthetically unpleasing, my eyes glaze over just looking at it, and I can&#039;t be the only one. We discourage big blocks of text in the History sections, and this isn&#039;t much different. &lt;br /&gt;
:: I&#039;m not saying the Notes themselves aren&#039;t &amp;quot;note-worthy&amp;quot;. It just...doesn&#039;t look good. I think an effort could be made to make it easier on the eyes. More images in that section, or some sub-sections to break up the bullet points is not unreasonable to suggest. --[[User:Xaaron|Xaaron]] 11:12, 13 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Things that don&#039;t exist&amp;quot; category ==&lt;br /&gt;
&lt;br /&gt;
FYI, readers that don&#039;t have accounts can&#039;t access this category through articles because they&#039;re blocked from the editing page, which the red link automatically takes them to. [[User:Mimi|Mimi]] 02:52, 18 December 2012 (EST)&lt;br /&gt;
:Hmm, we could possibly use javascript to amend links to it to point to http://tfwiki.net/wiki/Category:Things_that_don%27t_exist instead, which does work for logged out users. --[[User:Abates|abates]] 03:06, 18 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::reCaptcha is a piece of poop, security-wise.  I&#039;m also reluctant to add more extensions at the moment, due to performance issues, BUT.  Find something simple and lightweight to REPLACE reCaptcha, and we can talk. --[[User:McFly|McFly]] 05:38, 15 January 2013 (UTC)&lt;br /&gt;
:::$wgSpamRegex isn&#039;t an extension, it&#039;s a line of code you can add various banned words to (i.e., if &amp;quot;viagra&amp;quot; is in the list and someone tries to save a page that includes it, the page wouldn&#039;t save and they&#039;d get a error message telling them why it wouldn&#039;t save. - [[User:SanityOrMadness|SanityOrMadness]] 07:29, 15 January 2013 (UTC)&lt;br /&gt;
::::You know what WASN&#039;T on?  wgEmailConfirmToEdit.  That may make a LOT more sense, as I&#039;d wager that spambots aren&#039;t actually including legit emails.  Email authentication is NOT the same thing. --[[User:McFly|McFly]] 16:50, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I still don&#039;t think reCaptcha is helping, as noticed, and it doesn&#039;t have anything like, say, a lockout policy, so I&#039;ve bit the bullet and added a modified version of the SpamBlacklist extension, adding in RBL support and some basic language filters in one go.  It&#039;s reasonably light on DB traffic, too.  Will it slow the flood?  That remains to be seen, but they&#039;re still getting around it right now. I also think I&#039;ve resolved the IP blocking issue, so we might (might!) be okay now.  Turns out that adding a load balancer in front of the Squid caches hurts Mediawiki&#039;s IP detection logic. --[[User:McFly|McFly]] 20:21, 16 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;br /&gt;
::::Most of what&#039;s left is going to be us rejiggering some templates to more efficient code, and documenting the snot out of things so McFly doesn&#039;t name his first ulcer after us.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:02, 15 January 2013 (UTC)&lt;br /&gt;
::::: http://science.education.nih.gov/home2.nsf/Educational+ResourcesResource+FormatsOnline+Resources+High+School/928BAB9A176A71B585256CCD00634489 :p - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
:::::: Pedantry aside, I CAN name my migraines after you. Stress exacerbates THOSE. --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::::::: Which migraine&#039;s stronger then? Madness or little Sanity? :p - [[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC) &lt;br /&gt;
&lt;br /&gt;
===Stuffs what have gone wrong(er)===&lt;br /&gt;
User CSS files aren&#039;t being called post-move. Basically, the stuff [https://www.mediawiki.org/wiki/Manual:Configuration_settings#CSS.2FJs here] was previously all set true, now it&#039;s set false. [Is [[MediaWiki:Common.css]] even working?] - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
: Compared old LocalSettings.php to new, wgUseSiteJs/wgUseSiteCss were NOT set over there.  If you&#039;re not just making blanket assumptions, please point my not-MediaWiki-understanding ass to the right place.  Remember, I built the house, but others (Scout?  Derik?) actually laid out the rooms and installed the appliances.  My understanding of Mediawiki extends out to &amp;quot;Ooh, shiny mediawiki package in apt repositories...&amp;quot;  Anything else is a &#039;&#039;&#039;Wild. Ass. Guess.&#039;&#039;&#039; --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::I&#039;m not an expert (&#039;&#039;&#039;And I can&#039;t see the Wiki&#039;s LocalSettings.php myself to be sure!&#039;&#039;&#039;), but I have played around with MediaWiki a fair bit, so I&#039;m beyond the &amp;quot;oh, shiny&amp;quot; stage and I know where to look at in http://www.mediawiki.org/wiki/Manual:Contents .&lt;br /&gt;
::For instance, I don&#039;t know what $wgAutoConfirmAge and $wgAutoConfirmCount are currrently set to. If the createpage and upload &#039;&#039;have&#039;&#039; been set, but those two variables are &#039;&#039;not&#039;&#039; set, a fairly minimal barrier would be two days &amp;amp; four edits before you can create pages and upload files - certainly, very few spambots will hang around for two whole days before editing!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAutoConfirmAge = 86400 * 2; # Two days times 86400 seconds/day&lt;br /&gt;
$wgAutoConfirmCount = 4;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::If they HAVEN&#039;T been set, you can add them with:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can create pages:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;createpage&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can upload files:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;upload&#039;] = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
::-[[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
===Broken templates===&lt;br /&gt;
{{tl|cal-date}} is broken, but I&#039;m not template savvy enough to fix it. Anyone want to have a go? --[[User:Abates|abates]] 07:17, 16 January 2013 (UTC)&lt;br /&gt;
:Ja, I will fix it.  -[[User:Derik|Derik]] 00:15, 17 January 2013 (EST)&lt;br /&gt;
::$%^&amp;amp;*  I&#039;m getting &#039;&#039;closer&#039;&#039; to fixing it.  -[[User:Derik|Derik]] 15:02, 17 January 2013 (EST)&lt;br /&gt;
:::&#039;&#039;*cries piteously*&#039;&#039; -[[User:Derik|Derik]] 15:43, 17 January 2013 (EST)&lt;br /&gt;
::::I&#039;ve just had a go and I think that&#039;s sorted it! Not sure if there are any other broken templates lurking out there... --[[User:Abates|abates]] 05:58, 20 January 2013 (EST)&lt;br /&gt;
===Storylink===&lt;br /&gt;
Are the storylinks looking odd for anyone else? They appear as full size text without the surrounding box from before for me. --[[User:Khajidha|Khajidha]] 12:29, 20 January 2013 (EST)&lt;br /&gt;
:Yeah, storylinks, note boxes, disambig boxes, organisation templates (eg. listing comics issues) and episode/issue/etc. infoboxes are all not displaying correctly. I assume that the folks who know what they&#039;re doing with this kind of stuff are working on getting them fixed.. [[User:Jalaguy|Jalaguy]] 12:42, 20 January 2013 (EST)&lt;br /&gt;
::I think that&#039;s done it - or at least it&#039;s displaying normally for me now. Well done to all involved, much appreciated. --[[User:Emvee|Emvee]] 17:04, 22 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Still Confused About All This ==&lt;br /&gt;
&lt;br /&gt;
I just got registered so that I can always find this site.&lt;br /&gt;
&lt;br /&gt;
When I search for Transformers Wiki, all I get is Teletraan 1 and I don&#039;t like that site as well. Heck, their information on BotShots is woefully unsatisfactory.&lt;br /&gt;
&lt;br /&gt;
Did this site used to be that site or the other way around? Much of the information in articles looks copied from one site or the other.&lt;br /&gt;
&lt;br /&gt;
Apologies if this is the wrong place to ask these questions. I was looking for an e-mail address or something and couldn&#039;t find it. {{unsigned|Haven13}}&lt;br /&gt;
:No worries! We were originally at Wikia, but split with them in September 2008 and went independent. Wikia are still operating the old version, but it doesn&#039;t get updated in a lot of areas.&lt;br /&gt;
:Where is it you&#039;re searching for Transformers Wiki? We come up first on Google when I search on there. --[[User:Abates|abates]] 18:16, 23 January 2013 (EST)&lt;br /&gt;
::Ooh!  Ooh!  Let me guess!  BING.  (Who are blocked for &#039;&#039;&#039;hammering&#039;&#039;&#039; our wee servers.) --[[User:McFly|McFly]] 23:52, 23 January 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=779435</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=779435"/>
		<updated>2013-01-22T22:30:07Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Basic Maintenance===&lt;br /&gt;
* Linode&#039;s given us a lot of new tricks.  The big thing to keep in mind is that the new wiki depends upon two servers which are backed up nightly:&lt;br /&gt;
** The Database Server:  This is running MySQL, and if we lose it, everyone&#039;s hard work goes down the toilet.&lt;br /&gt;
** The Application Server:  This is running Apache, ProFTPd, and Postfix.  If we lose it, we lose the mediawiki installation, all customizations (MonacoBook, GoBoxes, etc.), and even if we revive the wiki, it won&#039;t look the same.&lt;br /&gt;
&lt;br /&gt;
* There are, however, a lovely middle layer:  The Caching Servers.  Each of these has a nigh-identical configuration, so if one dies, we simply don&#039;t care, as we can rebuild it very quickly from one of its brothers.&lt;br /&gt;
** Each Caching Server runs Squid and Memcached, and their IPs need to be registered in Mediawiki&#039;s LocalSettings.php so that it knows to handle them properly.  Failure to do so will break IP address blocks in Mediawiki, and will waste RAM on the Caching servers that could otherwise go to Memcached, a &#039;&#039;&#039;powerful&#039;&#039;&#039; object caching engine that accelerates everything we do by avoiding long database queries.&lt;br /&gt;
** Each Caching Server also needs to be registered with the LoadBalancer, by simply copying the configuration of one of its peers and changing the internal IP address to match.&lt;br /&gt;
** Finally, due to webcrawler abuse, each Caching Server also needs to be updated with new hostnames.  If we start adding foreign-language wikis to the mix, we would have to add en.tfwiki.net, es.tfwiki.net (Spanish,) and so on.  If we ever launch that GoBots sub-wiki, we already have gb.tfwiki.net enabled.  These strings need to be added to the mySites ACL definitions in /etc/squid/squid.conf on EVERY Caching Server.&lt;br /&gt;
&lt;br /&gt;
* Similarly, abusive webcrawlers are filtered by User-Agent via regexes in the /etc/squid/badbrowsers.conf file.  Well-behaved bots can be removed accordingly, but again, make sure that your edits are done to ALL Caching Servers!&lt;br /&gt;
** (At some point, this needs to go into a change control system and set to rsync transparently.)&lt;br /&gt;
** If you edit these files, a config reload is all that you&#039;ll need.  Don&#039;t waste time restarting Squid.&lt;br /&gt;
&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 6.0, Kernel 3.6.5&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.16&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* MediaWiki:  1.15.0&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=User_talk:Jalaguy&amp;diff=778157</id>
		<title>User talk:Jalaguy</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=User_talk:Jalaguy&amp;diff=778157"/>
		<updated>2013-01-18T21:43:59Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Maintenance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I hope I&#039;m not bothering but, who is going to write the new episodes in TFP? [[User:Joybells|Joybells]] 09:57, 15 October 2012 (EDT)Joybells&lt;br /&gt;
&lt;br /&gt;
Thanks for helping me with that question though. I&#039;ll just wait.[[User:Joybells|Joybells]] 23:27, 15 October 2012 (EDT)Joybells&lt;br /&gt;
&lt;br /&gt;
I understand, but I made more images of the Constructicon shovel from TF2 ROTF and I planned to upload them to that page.--[[User:Constructifan|Constructifan]] 12:48, 8 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
Ok, I&#039;ll try my best. :)--[[User:Constructifan|Constructifan]] 12:49, 8 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
Now what? I just started adding jpg images and you go ahead and take them off. (sigh) Why?--[[User:Constructifan|Constructifan]] 13:49, 8 December 2012 (EST)&lt;br /&gt;
:What I said about the wiki not doing anything like step-by-step transformations still stands. With the images, I meant for future reference. [[User:Jalaguy|Jalaguy]] 14:14, 8 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Predacon bird ==&lt;br /&gt;
&lt;br /&gt;
Do you know anything of the &amp;quot;Predacon bird&amp;quot;? Where can I find a picture of it?[[User:Transfan 1992|Transfan 1992]] 19:10, 11 December 2012 (EST)&lt;br /&gt;
:Beyond advising searching the internet for the Car Robot episode in question, I&#039;m afraid I can&#039;t help. Sorry. [[User:Jalaguy|Jalaguy]] 19:36, 11 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Maintenance ==&lt;br /&gt;
&lt;br /&gt;
Hey, if they&#039;re a new user who&#039;s spamming right away, feel free to block them and delete all of their content.  We can always revert if it was a mistake, and the rest of us play a zero-tolerance game with the spammers.  Thanks for your help!--[[User:McFly|McFly]] 15:48, 18 January 2013 (EST)&lt;br /&gt;
:I can blank their spam pages, sure, but I can&#039;t block them, don&#039;t have sysops... [[User:Jalaguy|Jalaguy]] 15:53, 18 January 2013 (EST)&lt;br /&gt;
::Well then, keep it up!  Your efforts keep this wiki clean! Thank you!--[[User:McFly|McFly]] 16:43, 18 January 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=User_talk:Jalaguy&amp;diff=778146</id>
		<title>User talk:Jalaguy</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=User_talk:Jalaguy&amp;diff=778146"/>
		<updated>2013-01-18T20:48:12Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I hope I&#039;m not bothering but, who is going to write the new episodes in TFP? [[User:Joybells|Joybells]] 09:57, 15 October 2012 (EDT)Joybells&lt;br /&gt;
&lt;br /&gt;
Thanks for helping me with that question though. I&#039;ll just wait.[[User:Joybells|Joybells]] 23:27, 15 October 2012 (EDT)Joybells&lt;br /&gt;
&lt;br /&gt;
I understand, but I made more images of the Constructicon shovel from TF2 ROTF and I planned to upload them to that page.--[[User:Constructifan|Constructifan]] 12:48, 8 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
Ok, I&#039;ll try my best. :)--[[User:Constructifan|Constructifan]] 12:49, 8 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
Now what? I just started adding jpg images and you go ahead and take them off. (sigh) Why?--[[User:Constructifan|Constructifan]] 13:49, 8 December 2012 (EST)&lt;br /&gt;
:What I said about the wiki not doing anything like step-by-step transformations still stands. With the images, I meant for future reference. [[User:Jalaguy|Jalaguy]] 14:14, 8 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Predacon bird ==&lt;br /&gt;
&lt;br /&gt;
Do you know anything of the &amp;quot;Predacon bird&amp;quot;? Where can I find a picture of it?[[User:Transfan 1992|Transfan 1992]] 19:10, 11 December 2012 (EST)&lt;br /&gt;
:Beyond advising searching the internet for the Car Robot episode in question, I&#039;m afraid I can&#039;t help. Sorry. [[User:Jalaguy|Jalaguy]] 19:36, 11 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Maintenance ==&lt;br /&gt;
&lt;br /&gt;
Hey, if they&#039;re a new user who&#039;s spamming right away, feel free to block them and delete all of their content.  We can always revert if it was a mistake, and the rest of us play a zero-tolerance game with the spammers.  Thanks for your help!--[[User:McFly|McFly]] 15:48, 18 January 2013 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=778016</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=778016"/>
		<updated>2013-01-17T04:26:35Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 6.0, Kernel 3.6.5&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.16&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* MediaWiki:  1.15.0&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
===Extensions===&lt;br /&gt;
* Aside from the ones that were blindly imported from the old wiki, we&#039;re now using the SpamBlacklist extension, with a modification to support Reverse DNS blacklist lookups. In short, make the wrong edit, or come from the wrong IP address, and you won&#039;t even get to make your edit.&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777988</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777988"/>
		<updated>2013-01-17T01:21:33Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Continuing spam */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== G.I. Joe wiki - a little help? ==&lt;br /&gt;
&lt;br /&gt;
Hello, all. I just wanted to add a request for some help for what should really by this wiki&#039;s sister site, Joepedia, the G.I. Joe Wiki. Now, I posted a similar request on some other sci-fi themed wiki, but the only answer I got was being told that the rules forbid a request from another wiki to be made. Well, I think that was kind of stupid, considering the communal attitude the whole wiki concept represents. BUT, ANYWAY, the Joepedia has been growing over the years, but it&#039;s mostly frequented by a small dedicated group of contributors. Since Transformers and G.I. Joe are so closely linked, I hoped some folks on here would like to help.&lt;br /&gt;
&lt;br /&gt;
I will add that I have no authority over on that site, and I don&#039;t really contribute much, mostly because of the time spent my own website. I&#039;m just a concerned geeky citizen drumming up some support. --[[User:JMM|JMM]] 10:26, 7 September 2012 (EDT)&lt;br /&gt;
:Well, I would, but I really don&#039;t know jack shit about G.I. Joe. And when I think about it, I&#039;m not sure this post belongs here. -- [[User:Spydersix|spyder]] 17:36, 7 September 2012 (EDT)&lt;br /&gt;
::Just looking around for a little help. This seemed like the closest thing to a G.I. Joe wiki out there, and I figured it was worth a try. --[[User:JMM|JMM]] 13:23, 13 September 2012 (EDT)&lt;br /&gt;
::I don&#039;t see a problem with a polite request for assistance or notification that a Joe wiki exists, since there IS some crossover interest. I just don&#039;t know how much &#039;&#039;useful&#039;&#039; crossover interest for the Joe wiki there is from this end outside of what we&#039;ve already done. I mean, we&#039;ve got extensive coverage of the parts of Joe directly involving TFs... I&#039;d say that&#039;s probably going to be the most useful thing we have for you. But, if others wanna try it out...&amp;lt;br&amp;gt;&lt;br /&gt;
::...unless you&#039;re on Wikia.... --[[User:M Sipher|M Sipher]] 13:27, 13 September 2012 (EDT)&lt;br /&gt;
:::Yeah, it was just a quick heads up so people who may be interested are aware. I know a number of people who are equally obsessed with TF and Joe. :) Oh, and yes, it is on Wikia! --[[User:JMM|JMM]] 14:22, 13 September 2012 (EDT)&lt;br /&gt;
::::We did at one point approach a partnership with Joepedia, and even had a template that cross-linked articles we shared. It was just a little premature at the time (which was years ago) as Joepedia was just starting out and often our articles were more complete than theirs, or theirs were just stubs. It looks like they&#039;ve gotten off the ground a bit more now.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:30, 13 September 2012 (EDT)&lt;br /&gt;
:::::Yes, their wiki got started later than this one. They have a small group of dedicated contributers, but the site&#039;s yet to attract the kind of interest this one does. --[[User:JMM|JMM]] 16:34, 13 September 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New stub templates ==&lt;br /&gt;
=== Video game stub template ===&lt;br /&gt;
Does anybody have any objections to a video game stub template? It would look something like this:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This article is still in beta stage.&lt;br /&gt;
 |message_text=&#039;&#039;This video game article is a [[:Category:Video game stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=ProwlTFU.JPG&lt;br /&gt;
 |image_width=40px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Video game stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
If anybody knows of a better picture that would go well with this, please upload it so it can be put in. Thanks! -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:52, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:How about a pic from the story where Prime dies in a video game? Heh if only Beta had ever been in a game, that&#039;d be perfect. --[[Special:Contributions/76.28.76.206|76.28.76.206]] 16:03, 2 October 2012 (EDT)&lt;br /&gt;
::What story was that? And yeah, that woulda been great. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 19:53, 2 October 2012 (EDT)&lt;br /&gt;
:::That would be [[Afterdeath!]]. --[[User:Detour|Detour]] 21:56, 2 October 2012 (EDT)&lt;br /&gt;
::::Well if people really want a picture from that, someone else will have to upload it, as I don&#039;t have access to it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 21:59, 2 October 2012 (EDT)&lt;br /&gt;
:::::[[:Image:Afterdeath-gameoverman.jpg|Right here, dude.]]--[[User:Detour|Detour]] 22:34, 2 October 2012 (EDT)&lt;br /&gt;
::::::Thanks, man. It&#039;s on the &#039;&#039;[[Transformers: Prime - The Game|Prime: The Game]]&#039;&#039; page if you want to see it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:50, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
In addition to the video game stub, I&#039;d like to suggest adding several templates, such as &amp;quot;section stub&amp;quot; and &amp;quot;fiction stub&amp;quot;. Right now, we only have &amp;quot;characer stub fiction&amp;quot; for pages only missing fiction section, but no templates for non-character page missing fiction appearance. While &amp;quot;section stub&amp;quot; can use for articles only missing one or two sections. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:05, 2 October 2012 (EDT)&lt;br /&gt;
:Ok, so I&#039;m gonna go ahead and make the video game one, and TX, if I get around to it later, maybe the others. If not, well, someone else will. Oh, and if I miss an article that the video game one should go on, put it here. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:31, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== Novel stub template ===&lt;br /&gt;
Ok, who has an idea for a picture for a novel stub template? I&#039;m not good with coming up with pictures for these templates. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:11, 20 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
It would look like this like this: &lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This manuscript still needs work.&lt;br /&gt;
 |message_text=&#039;&#039;This novel article is a [[:Category:Novel stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=DOTM Code-Name Hero.jpg&lt;br /&gt;
 |image_width=70px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Novel stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
-- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 10:23, 21 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Megatron Barcode Battler Card ==&lt;br /&gt;
&lt;br /&gt;
Hi, I was wondering if anyone here had come across this Megatron card for the Barcode Battler, or knows where in the Wiki it should go:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Front.jpg|200px]]&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Back.jpg|200px]]&lt;br /&gt;
|}&lt;br /&gt;
It seems to have been released by Toys R Us in 1992 as a promo for the Barcode Battler (which they were trying to sell in store), and was (as far as is known) the only such Transformers card, probably given away with two [http://barcodebattler.co.uk/scans/UK/ToysRUsF.jpg blank] [http://barcodebattler.co.uk/scans/UK/ToysRUsB.jpg cards] (the bottom scan - the middle is from the Barcode Battler box) to add your own barcodes to, and a card wallet.&lt;br /&gt;
&lt;br /&gt;
The text (&amp;quot;Clad in steel, armed to the teeth, nobody toys with us good guys when this moody cool deadly-dudey is around.&amp;quot;) is probably enough to make you want to forget this was ever made (is it really calling Megatron a good guy?), but it&#039;s cropped up in enough eBay sales (occasionally found in Barcode Battler lots with the seller unaware that they&#039;ve got something rare) to make it likely to be genuine.&lt;br /&gt;
&lt;br /&gt;
So does anyone else have any information on it, and whereabouts should this go? [[User:Xensyria|xensyria]] 12:26, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:10, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:I definitely don&#039;t know anything about it, besides that it&#039;s awesome, but if it&#039;s from 1992, then the only Megatron it could be is Megatron (G1), and so it should probably be on his toys/merchandise page.&lt;br /&gt;
:It&#039;s also plausible that someone who knows something about Barcode Battlers should make a short article on them for the wiki, since we have a lot of those &amp;quot;this broader thing had a TF thing released under it&amp;quot; pages. -[[User:LV|LV]] 12:31, 16 October 2012 (EDT)&lt;br /&gt;
::Or...this isn&#039;t anything to do with a licensed Transformers thing? I sort of blindly assumed Hasbro was the entity selling the Barcode Battler in the UK, but the packaging doesn&#039;t seem to support that. It&#039;s hard to believe it&#039;s not intended to be TF Megatron, but I&#039;m also not sure it&#039;s an official product. Especially since this Megatron guy seems to be the boxfront &amp;quot;main character&amp;quot; for the UK Barcode Battler release. -[[User:LV|LV]] 12:37, 16 October 2012 (EDT)&lt;br /&gt;
:::Ah, that&#039;s a possibility, but Barcode Battler was being distributed in most of Europe by Tomy, so they probably gave Toys R Us rights to use Megatron. Perhaps they couldn&#039;t get the rights to use his picture though (as you say, it&#039;s Tomy&#039;s Barcode Battler cover on the card, so anyone who used the card probably wouldn&#039;t think it was supposed to be Megatron). I should also say that 1992 is more of an educated guess than fact, but it&#039;s bound to be somewhere around that.&lt;br /&gt;
:::If it&#039;s offical I don&#039;t mind making a Barcode Battler article (though I&#039;ll have to check out some of the other examples you mention first). [[User:Xensyria|xensyria]] 13:02, 16 October 2012 (EDT)&lt;br /&gt;
::::Wait, I just re-read Wikipedia, and Tomy was rivals with Takara who owned Transformers at the time. Still, I wonder if such big companies would risk a lawsuit over using Megatron, when they had all sorts of other franchises they could use instead; more likely Toys R Us arranged the deal with Hasbro, who they no doubt were one of the biggest retailers for at the time. [[User:Xensyria|xensyria]] 13:04, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:12, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:::::Unlikely to be a Hasbro/TF related thing. In 1992 TFs weren&#039;t even being made in the US and the UK line didn&#039;t have a Megatron, the Decepticons were led by Skyquake at that time. --[[User:Khajidha|Khajidha]] 13:14, 16 October 2012 (EDT)&lt;br /&gt;
:::::Well, this is sort of like with Yu-Gi-Oh&#039;s Space Megatron, Hasbro&#039;s trademark just didn&#039;t apply to things like gaming cards, so Tomy, just like Konami later, was in a safe zone. --[[User:Detour|Detour]] 14:20, 16 October 2012 (EDT)&lt;br /&gt;
::::::Ah, that would explain the &amp;quot;good guys&amp;quot; text as well. It seems to be a U.K. only thing, and though there may not have been Megatron toys there (is there a reference to them not being released in the U.K. on this on the wiki?) the name would have been familiar from the the film. Is there anywhere for similarly unofficial merchandice here, or should it be cast back into the purgatory of its makers&#039; device? [[User:Xensyria|xensyria]] 15:11, 16 October 2012 (EDT)&lt;br /&gt;
:::::::While I never played it, I distinctively remember Barcode Battlers as well, so it&#039;s not a UK-only thing. --[[User:Detour|Detour]] 15:15, 16 October 2012 (EDT)&lt;br /&gt;
::::::::My bad, I mean the Megatron card, which uses the Tomy box art (the U.S. version was by Irwin, and Japan by the developer, Epoch). [[User:Xensyria|xensyria]] 15:22, 16 October 2012 (EDT)&lt;br /&gt;
:::::::::See [[The Transformers (toyline)]] and [[Generation 1 (European toyline)]] for lists of what was released in the US and Europe each year of the original toyline. --[[User:Khajidha|Khajidha]] 15:37, 16 October 2012 (EDT)&lt;br /&gt;
::::::::::Also, in answer to your question about unofficial merchandise, we only cover official products from Hasbro, Takara and their license holders. About the only place that this could really go on this site is the [[trademark]] page, in a similar use as the &amp;quot;Space Megatron&amp;quot; card from Yu-Gi-Oh! --[[User:Khajidha|Khajidha]] 07:53, 18 October 2012 (EDT)&lt;br /&gt;
:::::::::::Thanks to all of you for the info. I&#039;ve added it to the [[Talk:Trademark#Old example: .22Megatron.22 Barcode Battler promo card|trademark talk page]], but will leave it up to you whether it&#039;s a notable enough example to be added to the article or not. [[User:Xensyria|xensyria]] 15:55, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Recent spamming==&lt;br /&gt;
Granted, I haven&#039;t been here all that often, but the recent spamming has me wondering if the perpetrator(s) are using some form of IP hopping. It&#039;s feeling rather hydra-ish at the moment. --[[User:Lonegamer78|Lonegamer78]] 07:22, 18 October 2012 (EDT)&lt;br /&gt;
:I still suggest you add a recaptcha for edits that add external links, at least for new accounts.[[Special:Contributions/192.249.47.177|192.249.47.177]] 14:09, 18 October 2012 (EDT)&lt;br /&gt;
::If that&#039;s possible, I like that idea. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:34, 18 October 2012 (EDT)&lt;br /&gt;
:::What IP guy said. Also, if we disabled all &amp;quot;Talk:/Talk&amp;quot; pages, that&#039;d help a bit. Either way, the latest spambot assault is obliterating the recent changes page. -- [[User:Repowers|Repowers]] 08:21, 24 October 2012 (EDT)&lt;br /&gt;
::::The &amp;quot;Talk:/Talk&amp;quot; thing has been mentioned numerous times in the past, I was actually surprised to see these still popping up. I&#039;m guessing some other wikis have already implemented this, as there seems no other reason for the several &amp;quot;Talk:T/alk&amp;quot; (note order of characters) pages that have popped up recently. --[[User:Khajidha|Khajidha]] 10:03, 24 October 2012 (EDT)&lt;br /&gt;
:::::I don&#039;t care what we do, but we need to do something, and we need to do it now. - [[User:Chris McFeely|Chris McFeely]] 10:09, 24 October 2012 (EDT)&lt;br /&gt;
::::::What McFeely said. This crap needs to stop. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 08:47, 25 October 2012 (EDT)&lt;br /&gt;
:::::::Looking at the recent changes, this is getting worse. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:20, 25 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
According to McFly, anon editing has been eliminated. This kills a lot of it, plus a chunk of human-born vandalism. The next step is that new accounts will get an automated confirmation email with a link that will unlock the new account, which should hopefully take out the other major spambot problems. --[[User:M Sipher|M Sipher]] 18:30, 25 October 2012 (EDT)&lt;br /&gt;
:Leaving those that make accounts just to spam. Well, one step at a time. --[[User:Lonegamer78|Lonegamer78]] 00:29, 26 October 2012 (EDT)&lt;br /&gt;
::Well, there&#039;s not much we can do with dedicated human antagonists. --[[User:M Sipher|M Sipher]] 00:43, 26 October 2012 (EDT)&lt;br /&gt;
:::And, the worst problem was the spambots anyway. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 06:45, 26 October 2012 (EDT)&lt;br /&gt;
::::Rather than blocking all IP editing, did you guys ever try out recaptcha for new accounts or articles?[[User:KrytenKoro|KrytenKoro]] 20:27, 9 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Universe/UT Micromaster combiners ==&lt;br /&gt;
&lt;br /&gt;
There isn&#039;t any general page for these, so I&#039;m putting this here.&lt;br /&gt;
&lt;br /&gt;
Given our treatment of the ROTF/Universe (2008) Bruticus Maximus and Superion sets, I wonder if the Universe (2003) Micromaster combiners whose European releases were branded as Energon ([[Defensor (Universe)|Defensor]], [[Constructicon Devastator (Micromaster)|Constructicon Devastator]]) or Cybertron ([[Superion (Universe)|Superion]], [[Rail Racer (Universe)|Rail Racer]]) should be considered Unicron Trilogy characters.  It&#039;s the same basic situation, except that the nature of Universe (2003) means that just because the European versions are Energon/Cybertron doesn&#039;t mean they&#039;re different guys.  --[[User:Andrusi|Andrusi]] 11:00, 18 October 2012 (EDT)&lt;br /&gt;
:Aren&#039;t they already listed that way? Defensor and Constructicon Devastator have &amp;quot;Energon Autobot&amp;quot; and &amp;quot;Energon Decepticon&amp;quot; categories and Superion and Rail Racer are in the category &amp;quot;Cybertron Autobots&amp;quot;. I haven&#039;t checked the individual team members yet. --[[User:Khajidha|Khajidha]] 12:59, 18 October 2012 (EDT)&lt;br /&gt;
:Just checked the team members and found only one that was not categorized as Energon or Cybertron characters (Long Haul), I added the appropriate category. --[[User:Khajidha|Khajidha]] 13:04, 18 October 2012 (EDT)&lt;br /&gt;
::I guess he&#039;s talking about the continuity identifier at the top? [[Special:Contributions/24.211.29.87|24.211.29.87]] 13:24, 18 October 2012 (EDT)&lt;br /&gt;
:::Ah, that makes sense. I could see something like the one used for [[King Atlas]]. --[[User:Khajidha|Khajidha]] 13:49, 18 October 2012 (EDT)&lt;br /&gt;
::::Yeah, I meant the continuity identifiers (and in the case of some components, like [[Red Alert (Universe)|Red Alert]], the &amp;quot;relation unknown&amp;quot; bio notes).  The categories honestly never occurred to me.  --[[User:Andrusi|Andrusi]] 12:36, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Election Day ==&lt;br /&gt;
&lt;br /&gt;
Perhaps the [[President of the United States]] should be the featured article... just for today.--[[User:Jimsorenson|Jimsorenson]] 10:41, 6 November 2012 (EST)&lt;br /&gt;
:Much as I like the idea, it doesn&#039;t have much of an intro paragraph, which makes it hard to front-page it.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:20, 6 November 2012 (EST)&lt;br /&gt;
::Transtech Optimus and Megatron might also be good choices.[[User:KrytenKoro|KrytenKoro]] 13:02, 6 November 2012 (EST)&lt;br /&gt;
:::[[Democracy]]? --[[User:Emvee|Emvee]] 13:06, 6 November 2012 (EST)&lt;br /&gt;
::::Yeah, that&#039;s got a proper intro paragraph and is actually a fairly nice article. [[User:Jalaguy|Jalaguy]] 13:08, 6 November 2012 (EST)&lt;br /&gt;
:::::We&#039;ve used it on Election Day before, s&#039;why.  --[[User:ItsWalky|ItsWalky]] 13:23, 6 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned ==&lt;br /&gt;
&lt;br /&gt;
Can we... can we just disambiguate WFC/FOC/Prime stuff like we do everything else on this wiki, please?  --[[User:ItsWalky|ItsWalky]] 14:51, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I am still not clear as to why WFC and FOC are treated as franchises of their own rather than specific iterations of the Prime franchise. I would support changing all the disambigs of WFC/FOC/Prime to Prime. --[[User:Khajidha|Khajidha]] 15:03, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::WFC and FOC have their own franchise branding.   For example, the Fall of Cybertron comic is branded as Fall of Cybertron, not as Prime.  When you have a series of related properties with &amp;quot;Transformers: ________&amp;quot; as a shared title with its own logo, that&#039;s a more often than not a franchise.  --[[User:ItsWalky|ItsWalky]] 01:26, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::And for that matter, WFC and FOC encompass even our most strict definition of franchise, as each of them is at minimum a game, a comic, and a toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 03:54, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:So what are you asking for, here, Walky? For [[Optimus Prime (Prime)]] to be at &amp;quot;Optimus Prime (WFC)&amp;quot;? - [[User:Chris McFeely|Chris McFeely]] 05:05, 12 November 2012 (EST)&lt;br /&gt;
::::Yes.  --[[User:ItsWalky|ItsWalky]] 15:15, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::Frankly, I&#039;d love to see Optimus Prime (WFC), Optimus Prime (Prime) and Optimus Prime (RB). --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 12:31, 12 November 2012 (EST)&lt;br /&gt;
:::Why would we part out a character&#039;s page by separate franchises within the same continuity family? --[[User:Detour|Detour]] 13:00, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I agree that some of the disambig&#039;ing is getting pretty mad. Like Aligned Bruticus being at (Prime) due to a piece of concept art for a foreign-market MMO that isn&#039;t even used on the page, for instance. Given that the original reason for overriding (WFC) disambigs was to avoid confusion, it seems pretty ridiculous. I understand the original intention was to help people looking for the show characters, but the same could be said of, say, [[Sideways (RID)|Sideways]], who is disambig&#039;d based on a less well known first appearance rather than a starring cartoon role, and we haven&#039;t changed him. My opinion&#039;s that we should either, as Walky says, abandon the &#039;Prime takes precedence for disambigs&#039; thing, or come up with a more concrete set of guidelines than &#039;the moment they appear in anything the tiniest bit &#039;&#039;Prime&#039;&#039;-y, change the disambig&#039;. [[User:Jalaguy|Jalaguy]] 13:36, 12 November 2012 (EST)&lt;br /&gt;
::As someone who initially advocated for our current methodology, I&#039;d really only intended it for show characters or characters in the Prime toyline. That&#039;s my only real hang-up here, that if a new user comes here after watching the show or picking up a toy, they shouldn&#039;t get tangled up by the fact that we&#039;re insisting on putting (WFC) on the end of something because it debuted in the game. Parentheticals are for ease of use, not dogmatic technicality.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:59, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.  We still have one article per character per continuity family, so it seems the most logical to me to call that the disambiguation and only go deeper when we have two different characters from the same continuity family with the same name.  After all, when you go to the current disambiguation pages, that&#039;s how we describe the character in text.&lt;br /&gt;
It would avoid this entire mess.  Basically, the principal I think we should employ is to use the highest possible level when disambiguating characters.  If a character is unique, no disambiguation necessary.  If only one guy named &#039;Optimus Prime&#039; shows up in Aligned, then call him Optimus Prime (Aligned).  I realized that that means that the Unicron Trilogy and movie franchises, with their rampant name reuse, will tend to go one level deeper... but since that&#039;s what we&#039;re doing today, it shouldn&#039;t be too big of an issue. &lt;br /&gt;
As we&#039;ve seen, the lines between franchises are only getting blurrier, and we have every reason to believe this trend will continue.  In maybe 95% of cases, we really will have only one character per name per continuity family, and then we (and our readers) won&#039;t have to try to figure out where Aligned Prime first popped his head up. --[[User:Jimsorenson|Jimsorenson]] 18:33, 12 November 2012 (EST)&lt;br /&gt;
:I find myself agreeing with this. As someone who was not to long ago just a reader, I can say that disambiguating by continuity family would probably help &#039;&#039;a lot&#039;&#039; of people. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 20:00, 12 November 2012 (EST)&lt;br /&gt;
::If you do that, may I suggest you take the opportunity to come up with a less confusing name for the G1 continuity family that isn&#039;t the same as the franchise. That way there won&#039;t be a bunch of Beast Wars characters with (G1). How about the &amp;quot;inaugural continuity family&amp;quot;? Optimus Prime (Inaugural)&lt;br /&gt;
::Cons&lt;br /&gt;
::*Continuity family names are unofficial for the most part.&lt;br /&gt;
::*Fiction-only dimension hoppers are a bit of a problem. Do they go in their &amp;quot;home&amp;quot; continuity family or the continuity family of the piece of fiction they originated in?&lt;br /&gt;
::*Pros&lt;br /&gt;
::*I would personally feel better about the IDW original characters if they were disambiguated by the G1 continuity family (or the inaugural continuity family) instead of the G1 franchise. - [[User:Starfield|Starfield]] 20:17, 12 November 2012 (EST)&lt;br /&gt;
:If it&#039;s a choice between having (WFC) disambigs on Prime characters or radically changing how we organize the wiki and having to move thousands of articles (who&#039;s going to have time to even do that?), I prefer the former as a solution. --[[User:Abates|abates]] 20:36, 12 November 2012 (EST)&lt;br /&gt;
::In full agreement there. But I do think redirects with other franchise disambigs would be helpful to newcomers. Like someone who may have watched Cybertron but not be aware of the Armada toy who might try to search for &amp;quot;Thundercracker (Cybertron)&amp;quot;, for example. --[[User:Detour|Detour]] 20:49, 12 November 2012 (EST)&lt;br /&gt;
:&#039;&#039;For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.&#039;&#039;&lt;br /&gt;
:Agree.  The only reason we don&#039;t for the Unicron Trilogy is because of the absolutely rampant name reuse, but Prime hasn&#039;t seen that problem.  I think that (in principle) everyone should be disambig&#039;d (Aligned).&lt;br /&gt;
:That or you have to more Breakdown (Prime) to Breakdown (WFC).&lt;br /&gt;
:...also Rescue Bots.  Aligned they are.  -[[User:Derik|Derik]] 00:45, 13 November 2012 (EST)&lt;br /&gt;
::I strongly feel we should stick to using official terms and abbreviations thereof in our disambiguation, and &amp;quot;aligned&amp;quot; is not really official (it was from a Hasbro guy describing their aim as a &amp;quot;new aligned continuity&amp;quot; ISTR). Unless we renamed it to the &amp;quot;Prime continuity family&amp;quot;, but that way possibly lies madness. --[[User:Abates|abates]] 22:33, 13 November 2012 (EST)&lt;br /&gt;
:::I bet you anything that if we looked around we could find someone official referring to it as Aligned.  (If only because we do.)  -[[User:Derik|Derik]] 22:36, 13 November 2012 (EST)&lt;br /&gt;
::::Not that I want to do everything by continuity family, because I absolutely do not, but even &amp;quot;Generation 1&amp;quot; started out as a fan term, and &amp;quot;Unicron Trilogy&amp;quot; was based on something Aaron Archer said once but became widespread because the Wiki used it.  &amp;quot;Aligned,&amp;quot; another thing said once by Hasbro, is no different.  But again, argh, no, disambiging by continuity family raises more headaches than it solves.  UT isn&#039;t the only continuity family where name reuse is rampant.  --[[User:ItsWalky|ItsWalky]] 01:08, 14 November 2012 (EST)&lt;br /&gt;
:::::Yeah, &#039;&#039;colossal&#039;&#039; headaches if we tried to smoosh the various comic and toy characters from each movie&#039;s ancillary franchise together.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:22, 14 November 2012 (EST)&lt;br /&gt;
::::::Would it be?  If they&#039;re different characters, they&#039;re different characters.  So, Sentinel Prime would go from Sentienl Prime (ROTF) to Sentinel Prime (Movie).  He&#039;s a good example of a confusing disambiuation.  He&#039;s the villain in movie 3, but is at movie 2 because of an unnamed montage sequence.  Someone like movie Devastator, who is two separate characters, would remain exactly as they are.--[[User:Joefan|Joefan]] 12:06, 14 November 2012 (EST)&lt;br /&gt;
:::::::Except if it&#039;s by continuity family, he&#039;d be at &amp;quot;Sentinel Prime (LAMS)&amp;quot;. I think changing our entire way of naming articles and moving thousands of articles just to fix the &amp;quot;(Prime)&amp;quot; issue is like using a nuclear bomb to hammer in a nail. --[[User:Abates|abates]] 14:12, 14 November 2012 (EST)&lt;br /&gt;
::::::::My view on this topic has changed, and I now agree with this. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:44, 14 November 2012 (EST)&lt;br /&gt;
:::::::::My understanding was that we HAD been disambig-ing by Continuity family, and chose NOT to for the Unicron Trilogy and LAMS because the rampant name reuse would make this horribly confusing.  But for Aligned... so far we&#039;ve already gotten &amp;lt;u&amp;gt;three&amp;lt;/u&amp;gt; franchises and virtually no overlap.&lt;br /&gt;
:::::::::I&#039;m going to cite [[Help:Ignore all standards]], which states that &#039;&#039;Standards are good; TFWiki.net likes standards. We&#039;re just not under the illusion that standards are perfect.&#039;&#039; and more importantly &#039;&#039;&#039;&amp;quot;In situations where the standards intended to prevent confusion would instead contribute to it, common sense should rule.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
:::::::::Actually... wasn&#039;t disambiging the UT series by franchise a case of H:IAS?  We decided to do that because the way rampant name reuse rendered other approaches impractical.  -[[User:Derik|Derik]] 14:05, 16 November 2012 (EST)&lt;br /&gt;
::::::::::We don&#039;t disambig by franchise because of the UT.  We disambig by franchise because of EVERYTHING.  UT was never ever ever the straw that broke the camel&#039;s back.  The back came pre-broken.  --[[User:ItsWalky|ItsWalky]] 14:22, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::Whatever.  Can I move Breakdown (Prime) to Breakdown (WFC) or not?  -[[User:Derik|Derik]] 15:35, 16 November 2012 (EST)&lt;br /&gt;
::::::::::::That&#039;s what I&#039;d like to do eventually, but I don&#039;t think we&#039;ve reached a firm enough consensus to do something that big and sprawling.  --[[User:ItsWalky|ItsWalky]] 16:16, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::...he&#039;s got the wrong disambig.  We disambig by the franchise he first appeared in.  His WFC appearance was 6 months prior to his Prime appearance.  Why does that require some sort of confab?&lt;br /&gt;
:::::::::::::: You are preaching to the choir on this point, but previously a consensus was made that Prime stuff operates differently from everything else on the wiki.  I want to overturn that, but until I do, the previous consensus stands.  --[[User:ItsWalky|ItsWalky]] 16:58, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::Of course the answer is &amp;quot;because we&#039;re already in an &amp;lt;tt&amp;gt;Ignore all standards&amp;lt;/tt&amp;gt; situation; we want to disambig them with (Prime) even though that&#039;s against our standard treatment, but we haven&#039;t properly dealt-with/processed/mourned that.&amp;quot;&lt;br /&gt;
:::::::::::::If we give in to a rigid standard and move him (and everyone else) to (WFC), &#039;&#039;I&#039;&#039; think it&#039;s almost inevitable that there will be a pushback against the anti-intuitive mess that makes the disambigs, which will itself lead to either returning them to (Prime) or switching everything to (Aligned)  I just do not see (WFC) for the main characters &#039;standing.&#039;&lt;br /&gt;
:::::::::::::Which would mean that we aren&#039;t facing a choice between standard-vs-nonstandard, but between nonstandard-vs-nonstandard.  And given that choice I think (Aligned) is the better nonstandard.&lt;br /&gt;
:::::::::::::(You may feel free to disagree with my assessment of the outcome of a (WFC) move.  I recognize that my beliefs about &amp;quot;what would probably happen after&amp;quot; are just a hypothesis and should not be treated as fact.)  -[[User:Derik|Derik]] 16:56, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
If we do go to strict franchise of origin on Aligned continuity family characters, we are going to have to be &#039;&#039;super&#039;&#039; diligent on redirects for anyone that appears in the Prime show or toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 17:55, 16 November 2012 (EST)&lt;br /&gt;
: I half-agree, if only because we won&#039;t have to be TOO diligent on the pages that exist already, because that would involve merely not deleting the redirects from the old locations once we move the pages.  It&#039;d be a kind of reverse-diligence, since it would really mean one less step than usual.  Otherwise, yes, if a character is in Prime, there should be a redirect from there. --[[User:ItsWalky|ItsWalky]] 19:13, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
So have people have a chance to mull this over some? I&#039;m leaning towards going back to the &amp;quot;by franchise&amp;quot; rule and having &amp;quot;Breakdown (WFC)&amp;quot; because it&#039;s both simpler than any of the alternatives, and it&#039;s consistent with what we do everywhere else. So long as &amp;quot;Breakdown (Prime)&amp;quot; redirects there, and I don&#039;t see any reason for it not to, people will still be able to find it. --[[User:Abates|abates]] 18:56, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fun fact ==&lt;br /&gt;
&lt;br /&gt;
According to my calculations we had around about 6876 articles when we left Wikia, so we&#039;ve added over 10000 more in the four and a bit years since we left. --[[User:Abates|abates]] 03:27, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:While wikia has added... 929 articles.--[[User:Carrion|Carrion]] 12:09, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::929, really? No offense but I thought it was less. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 13:47, 19 November 2012 (EST) &amp;lt;13:57, 19 November 2012 (EST) edit&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::Hey, be fair, they&#039;ve also added a blog. GUH. --[[User:Khajidha|Khajidha]] 13:49, 19 November 2012 (EST)&lt;br /&gt;
::::And a video library! Because people go to wikis to watch movie trailers! --[[User:Abates|abates]] 14:43, 19 November 2012 (EST)&lt;br /&gt;
:::I was just there the other day... their article for Animated Bulkhead still has an &amp;quot;ongoing&amp;quot; tag... --[[User:Detour|Detour]] 19:06, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Split Pages ==&lt;br /&gt;
&lt;br /&gt;
We have several characters on the list of [[Special:Longpages|Long pages]]–such as [[Kup (G1)]], ‎[[Prowl (G1)]], [[Megatron (G1)]], [[Ratchet (G1)]], and [[Hot Rod (G1)]]. So I suggest to split their G1 cartoon, Marvel comics, and IDW comics section into new pages. – [[User:Thunderweb|Thunderweb]] 01:40, 20 November 2012 (EST)&lt;br /&gt;
:That&#039;s cool and all, but please don&#039;t split off pages if you&#039;re not going to write proper intros/summaries for them and include appropriate categories on the sub pages. --[[User:Abates|abates]] 17:12, 24 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned section breakup is warping canon ==&lt;br /&gt;
&lt;br /&gt;
Currently{{now|21:19, 26 November 2012 (EST)}} our [[Breakdown (Prime)]] page lists all his Prime appearances then ghettotizes out his Fall of Cybertron appearances into a subsequent section as a separate continuity, and thus less important than the cartoon despite coming first.  &lt;br /&gt;
&lt;br /&gt;
[[Bulkhead (Prime)]] and [[Knock Out (Prime)]] are a little better, but the Prime wii game (by the series writers, intended to fit in season 2 albeit without a specific &amp;quot;after this episode and before this episode&amp;quot; date) is broken out as a &#039;&#039;&#039;seperate continuity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traditionally this has been our way of dealing with games because they are a secondary media; being sorta warped reflections of some core media with (for the most part) minimal contribution to continuity.  But, you know, Aligned is different.  The War for Cybertron / Fall of Cybertron games are part of the same continuity, occurring before the cartoon.  We sort of rolled our eyes when Hasbro first insisted on this (mostly because the [[Transformers: Exodus]] novel doesn&#039;t fit well with the game &#039;&#039;or&#039;&#039; the cartoon.)  But the reality increasingly is that they &#039;&#039;&#039;are&#039;&#039;&#039; one continuity.  Hell, this is a quote from an interview w/ John Barber, writer of [[Rage of the Dinobots]].&lt;br /&gt;
&lt;br /&gt;
{{quote|JB: The Transformers story has been going on continuously for a very long time, and I think it’s fair to say the Prime universe is working to take the best elements of every expression and build a world. What’s really exciting is that what we’re doing in the comic is going to impact this world across various mediums. So, it isn’t a case where we’re doing a book that’s subservient to the TV show—we’re doing an all-new story set in that same universe, and the stories we tell are going to be reflected in the shows and the novels and everything else. It’s “canon.” Which is cool, and sort of rare and unique.&lt;br /&gt;
&lt;br /&gt;
RS: The book is a truly cross-media venture tying in with the upcoming game Fall of Cybertron as well as the Transformers Prime series, how much of a &#039;juggling act&#039; is it to coordinate the story between the different outlets?&lt;br /&gt;
&lt;br /&gt;
JB: Fortunately I get to work with some of the best people in the business. Michael Kelly, who’s Hasbro’s Director of Global Publishing, is a great friend and somebody I get to work with very closely. He coordinates with the Transformers brand team at Hasbro—which contains some really good friends of mine, too. Plus I’ll talk to the folks at Random House, and we’re constantly emailing with everybody at High Moon, who produce FALL OF CYBERTRON, so while there are a lot of moving parts, we’re all talking. And we’re all building toward the same goals of good storytelling and a cohesive worldview.&lt;br /&gt;
&lt;br /&gt;
Also—the new Prime comic is being written by Mike Johnson and Mairghread Scott, both of whom—in addition to being comics writers, both write for thePrime TV show. So they know what’s what.|John Barber|[http://www.aintitcool.com/node/58236 AICN COMICS Q&amp;amp;@: Russ Sheath talks to IDW&#039;s John Barber about TRANSFORMERS PRIME: RAGE OF THE DINOBOTS!]}}&lt;br /&gt;
&lt;br /&gt;
Messy as it was for the rollout, the people producing the stuff &#039;&#039;&#039;intend for it to be one universe and are writing it at such&#039;&#039;&#039;.  And the various franchises &#039;&#039;&#039;are&#039;&#039;&#039; slowly converging as a result.&lt;br /&gt;
&lt;br /&gt;
We &amp;lt;u&amp;gt;need&amp;lt;/u&amp;gt; to consolidate these sections under a single &amp;quot;Aligned continuity&amp;quot; header.  Because the way we&#039;re doing it right now is fucking things up.  &lt;br /&gt;
&lt;br /&gt;
(And no we can&#039;t have WFC/Prime subsection headers for the same reason we can&#039;t separate the Movieverse prequel minis, they interleve.  The games don&#039;t deal with Prime and Megatron&#039;s pre-war history bot the novels and TV shows do mention it.)  -[[User:Derik|Derik]] 21:19, 26 November 2012 (EST)&lt;br /&gt;
: Yeah, I think the way we do it now is better-organized.  Video game stuff, no matter how high-profile it is, tends to be overwritten by the &amp;quot;real&amp;quot; stories that later adapt it.  I&#039;d rather keep stuff separated by medium.  --[[User:ItsWalky|ItsWalky]] 22:28, 26 November 2012 (EST)&lt;br /&gt;
::Agreed. There&#039;s no way to kludge it all together under one heading without either ignoring some details or presenting them in a vague, unhelpful manner, given the contradictions that exist. You cite the Prime game, but at no point in season 2 do the Decepticons EVER consist of Megatron, Starscream, Airachnid and Dreadwing at the same time. It can&#039;t fit. And your other example - it&#039;s all well and good to quote that Barber quote, Derik, but the preview for &amp;quot;Rage of the Dinobots&amp;quot; alone has shown Grimlock present on Cybertron, Sludge being alive and Blast Off dying at a point when in the games, Grimlock has vanished, Sludge has died and Blast Off needs to be alive. (Not to say that the comic might not address these points, it&#039;s just the example foremost in my brain as it&#039;s been discussed recently.) - [[User:Chris McFeely|Chris McFeely]] 05:16, 27 November 2012 (EST)&lt;br /&gt;
:::Chris, the only contradiction we&#039;ve seen in the Rage of the Dinobots comic preview thus far is Sludge being alive. It&#039;s set after the Ark left, during which Grimlock &#039;&#039;was&#039;&#039; still on Cybertron. And Blast Off being there ties in with Jazz and Jetfire having knocked Bruticus off the Ark before it went through the space bridge. He was last seen plummeting, seemingly, back to Cybertron; and judging by this comic, it looks like he made it.&lt;br /&gt;
:::Now, as for my thoughts on the reorganization of the Aligned fiction sections, I offer a counterproposal. Keep each section separate as they are, but I&#039;d feel more confortable with the WFC and FOC sections place above the Prime sections to coincide with their chronological placement in the timeline. Perhaps put the Exodus section first, then the WFC sections, then the FOC comic section, the FOC the game, then Exiles or Rage of the Dinobots (depending on how that comic with play out will determent if it&#039;s better set before or after Exiles), then the Prime comic, then the Prime cartoon, then the Prime game, and then the Rescue Bots cartoon. Each keeps its own section, but arranged in as close to chronological order as possible. --[[User:Sabrblade|Sabrblade]] 12:20, 27 November 2012 (EST)&lt;br /&gt;
::::I don&#039;t understand how putting some of the video game stuff outside of the video game section is intuitive, because presumably we&#039;d be keeping the Prime game stuff down below.  --[[User:ItsWalky|ItsWalky]] 12:23, 27 November 2012 (EST)&lt;br /&gt;
:::::I&#039;m saying to treat the games as fiction themselves instead of a second tier category, since, unlike previous continuities, they&#039;re of a greater importance to their master continuity than any past games have ever been. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::The [[Breakdown (Prime)]] article separates along &#039;&#039;&#039;Fiction&#039;&#039;&#039; and &#039;&#039;&#039;Games&#039;&#039;&#039;, placing the WFC/FOC games in the latter when they are part of the same body of fiction.  Even if you don&#039;t want to place them in the same continuity, they should both be in the &#039;&#039;&#039;Fiction&#039;&#039;&#039; header.&lt;br /&gt;
::::::The separate header for games system has its origins in the traditional relationship of games to other fiction, where they present a wildly divergent or exclusive or alternate version of another existing franchise or story.  These are primary story material which have no &#039;primary story&#039; they present an alternate version of because they &#039;&#039;are&#039;&#039; the primary story.  You can&#039;t ghettoize them as &amp;quot;something other than fiction.&amp;quot;  -[[User:Derik|Derik]] 17:28, 27 November 2012 (EST)&lt;br /&gt;
:::::::That&#039;s what I&#039;m saying. Putting the individual video game subsections into the main fiction section instead of putting them in a separate video game section since the games aren&#039;t a second tier of the main story this time. --[[User:Sabrblade|Sabrblade]] 17:37, 27 November 2012 (EST)&lt;br /&gt;
::::I realize this isn&#039;t the time or place for this, but regarding those points, I&#039;ll say that the clear implication at the end of FoC is that Grimlock has vanished through the spacebridge (he doesn&#039;t get out before the explosion and the Dinobots watch as something shoots up the beam into the portal), and as the Ark is the &#039;&#039;last&#039;&#039; of the vessels to leave in the game, it can&#039;t fit with what we&#039;re seeing here with Blast Off&#039;s timeline. - [[User:Chris McFeely|Chris McFeely]] 12:26, 27 November 2012 (EST)&lt;br /&gt;
:::::I never got the impression that Grimlock got sent through the space bridge. His fate was rather amibiguous to the nth degree, leaving plenty open room for him to still be on Cybertron after the game. He&#039;s running away, there&#039;s a blinding light, and then the scene cuts away. for all we know, he could have fallen off the platform he was on and plummeted far to the ground below, away from the space bridge&#039;s reach (though he&#039;d be in for some serious repairs after a fall form that height). As for the other ships, we know that the planet was completely abandoned by the present day, so the Dinobots and Wreckers would have had to have gotten off the planet somehow and at some point. Just because the Ark was the last vessel to leave during the Great Exodus doesn&#039;t mean there weren&#039;t more ships set aside in reserve for or built later by those who stayed behind so they could eventually leave when the time would come for them to do so &#039;&#039;after&#039;&#039; the Great Exodus. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::And thus, we see the the hand-wringing necessary to align everything. - [[User:Chris McFeely|Chris McFeely]] 12:50, 27 November 2012 (EST)&lt;br /&gt;
:::::::Pun not intended.  --[[User:ItsWalky|ItsWalky]] 13:39, 27 November 2012 (EST)&lt;br /&gt;
:::::::Yeah, and until we get canonical answers to things like where the Prime game or Optimus/Bumblebee&#039;s appearances in Rescue Bots fit, sticking everything under one header is just not possible. --[[User:Abates|abates]] 14:59, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
I think my main qualm here is that every time someone tries to make the case that Aligned is somehow &#039;&#039;different&#039;&#039; and thus deserves us altering the way we treat it relative to other continuity families, we end up with &#039;&#039;even more&#039;&#039; examples of how Aligned is pretty much a branching, loosely-connected thing &#039;&#039;just like every other continuity family&#039;&#039;. I mean sure, it&#039;ll never get quite to the point of how spread out the G1 continuity family is. Regardless, this is no different from how obvious it was that Bay&#039;s writers didn&#039;t give a damn about the movie comics, and so forth.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:49, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s very easy to say &amp;quot;this doesn&#039;t seem to fit&amp;quot; but Barber says he&#039;s coordinating his story with High Moon Studios so there aren&#039;t any conflicts.&lt;br /&gt;
:The people writing these things are &#039;&#039;trying&#039;&#039; to make them one continuity, damnit!  Do we have to fight them this hard?  -[[User:Derik|Derik]] 13:22, 27 November 2012 (EST)&lt;br /&gt;
::And IDW &#039;&#039;tried&#039;&#039; to make the comics jive with the live-action movies, and Barber himself is the one that had to get the mop whenever that didn&#039;t work out. Heck, Barber had early drafts of the movie scripts in many cases, and ended up drawing off of concepts that ultimately weren&#039;t even used in the movies.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 20:07, 27 November 2012 (EST)&lt;br /&gt;
:::I cant&#039; tell if you&#039;re saying IDW succeeded or not, there&#039;s a lot of handwaving in the IDW timeline but it mostly works, largely thanks to Barber bending over backwards to explain how the DotM conspiracy could possibly be present during the 2007 movie and somehow miss Megatron.  ;)  -[[User:Derik|Derik]] 00:05, 28 November 2012 (EST)&lt;br /&gt;
::::I&#039;m not faulting the man&#039;s efforts, and certainly he must have won a No-Prize back in the day from the Merry Marvel Marching Squad, but all I&#039;m really saying is &#039;&#039;this is nothing new&#039;&#039;.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:43, 28 November 2012 (EST)&lt;br /&gt;
:::::What are you saying? The Movieverse comics and the films are in the same continuity. Just read the [[Movie continuity]] page. I don&#039;t care so much how the fiction is listed in character pages, but I&#039;d like to see the [[Aligned continuity family]] page moved to &amp;quot;Aligned continuity&amp;quot; and the appropriate changes made to reflect the fact that the Aligned stuff is all &#039;&#039;officially&#039;&#039; the same continuity. Officially! Nobody in G1 tried to say &amp;quot;all this stuff is in the same continuity.&amp;quot; - [[User:Starfield|Starfield]] 11:10, 28 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== James Roberts notes ==&lt;br /&gt;
&lt;br /&gt;
As self-referencial as Roberts&#039; work gets, most of the notes sections on MTMTE pages are getting ridiculously long. Some of them have become big blocks of text that cover an entire screen. Is there any way we can break these down into smaller subsections? &#039;&#039;&amp;quot;Roberts referencing Roberts&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Roberts referencing other stories&amp;quot;&#039;&#039;? &#039;&#039;&amp;quot;Story notes&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Easter eggs&amp;quot;&#039;&#039;?--[[User:Xaaron|Xaaron]] 09:52, 13 December 2012 (EST)&lt;br /&gt;
: I don&#039;t think any of the notes sections for Roberts stories are &amp;quot;ridiculously long.&amp;quot;  --[[User:ItsWalky|ItsWalky]] 10:41, 13 December 2012 (EST)&lt;br /&gt;
:: Four of the last five regular issues have Notes sections that cover my entire monitor. One big screen of bullet points. It&#039;s aesthetically unpleasing, my eyes glaze over just looking at it, and I can&#039;t be the only one. We discourage big blocks of text in the History sections, and this isn&#039;t much different. &lt;br /&gt;
:: I&#039;m not saying the Notes themselves aren&#039;t &amp;quot;note-worthy&amp;quot;. It just...doesn&#039;t look good. I think an effort could be made to make it easier on the eyes. More images in that section, or some sub-sections to break up the bullet points is not unreasonable to suggest. --[[User:Xaaron|Xaaron]] 11:12, 13 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Things that don&#039;t exist&amp;quot; category ==&lt;br /&gt;
&lt;br /&gt;
FYI, readers that don&#039;t have accounts can&#039;t access this category through articles because they&#039;re blocked from the editing page, which the red link automatically takes them to. [[User:Mimi|Mimi]] 02:52, 18 December 2012 (EST)&lt;br /&gt;
:Hmm, we could possibly use javascript to amend links to it to point to http://tfwiki.net/wiki/Category:Things_that_don%27t_exist instead, which does work for logged out users. --[[User:Abates|abates]] 03:06, 18 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::reCaptcha is a piece of poop, security-wise.  I&#039;m also reluctant to add more extensions at the moment, due to performance issues, BUT.  Find something simple and lightweight to REPLACE reCaptcha, and we can talk. --[[User:McFly|McFly]] 05:38, 15 January 2013 (UTC)&lt;br /&gt;
:::$wgSpamRegex isn&#039;t an extension, it&#039;s a line of code you can add various banned words to (i.e., if &amp;quot;viagra&amp;quot; is in the list and someone tries to save a page that includes it, the page wouldn&#039;t save and they&#039;d get a error message telling them why it wouldn&#039;t save. - [[User:SanityOrMadness|SanityOrMadness]] 07:29, 15 January 2013 (UTC)&lt;br /&gt;
::::You know what WASN&#039;T on?  wgEmailConfirmToEdit.  That may make a LOT more sense, as I&#039;d wager that spambots aren&#039;t actually including legit emails.  Email authentication is NOT the same thing. --[[User:McFly|McFly]] 16:50, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I still don&#039;t think reCaptcha is helping, as noticed, and it doesn&#039;t have anything like, say, a lockout policy, so I&#039;ve bit the bullet and added a modified version of the SpamBlacklist extension, adding in RBL support and some basic language filters in one go.  It&#039;s reasonably light on DB traffic, too.  Will it slow the flood?  That remains to be seen, but they&#039;re still getting around it right now. I also think I&#039;ve resolved the IP blocking issue, so we might (might!) be okay now.  Turns out that adding a load balancer in front of the Squid caches hurts Mediawiki&#039;s IP detection logic. --[[User:McFly|McFly]] 20:21, 16 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;br /&gt;
::::Most of what&#039;s left is going to be us rejiggering some templates to more efficient code, and documenting the snot out of things so McFly doesn&#039;t name his first ulcer after us.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:02, 15 January 2013 (UTC)&lt;br /&gt;
::::: http://science.education.nih.gov/home2.nsf/Educational+ResourcesResource+FormatsOnline+Resources+High+School/928BAB9A176A71B585256CCD00634489 :p - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
:::::: Pedantry aside, I CAN name my migraines after you. Stress exacerbates THOSE. --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::::::: Which migraine&#039;s stronger then? Madness or little Sanity? :p - [[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC) &lt;br /&gt;
&lt;br /&gt;
===Stuffs what have gone wrong(er)===&lt;br /&gt;
User CSS files aren&#039;t being called post-move. Basically, the stuff [https://www.mediawiki.org/wiki/Manual:Configuration_settings#CSS.2FJs here] was previously all set true, now it&#039;s set false. [Is [[MediaWiki:Common.css]] even working?] - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
: Compared old LocalSettings.php to new, wgUseSiteJs/wgUseSiteCss were NOT set over there.  If you&#039;re not just making blanket assumptions, please point my not-MediaWiki-understanding ass to the right place.  Remember, I built the house, but others (Scout?  Derik?) actually laid out the rooms and installed the appliances.  My understanding of Mediawiki extends out to &amp;quot;Ooh, shiny mediawiki package in apt repositories...&amp;quot;  Anything else is a &#039;&#039;&#039;Wild. Ass. Guess.&#039;&#039;&#039; --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::I&#039;m not an expert (&#039;&#039;&#039;And I can&#039;t see the Wiki&#039;s LocalSettings.php myself to be sure!&#039;&#039;&#039;), but I have played around with MediaWiki a fair bit, so I&#039;m beyond the &amp;quot;oh, shiny&amp;quot; stage and I know where to look at in http://www.mediawiki.org/wiki/Manual:Contents .&lt;br /&gt;
::For instance, I don&#039;t know what $wgAutoConfirmAge and $wgAutoConfirmCount are currrently set to. If the createpage and upload &#039;&#039;have&#039;&#039; been set, but those two variables are &#039;&#039;not&#039;&#039; set, a fairly minimal barrier would be two days &amp;amp; four edits before you can create pages and upload files - certainly, very few spambots will hang around for two whole days before editing!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAutoConfirmAge = 86400 * 2; # Two days times 86400 seconds/day&lt;br /&gt;
$wgAutoConfirmCount = 4;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::If they HAVEN&#039;T been set, you can add them with:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can create pages:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;createpage&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can upload files:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;upload&#039;] = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
::-[[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
===Broken templates===&lt;br /&gt;
{{tl|cal-date}} is broken, but I&#039;m not template savvy enough to fix it. Anyone want to have a go? --[[User:Abates|abates]] 07:17, 16 January 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777940</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777940"/>
		<updated>2013-01-16T16:50:53Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Continuing spam */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== G.I. Joe wiki - a little help? ==&lt;br /&gt;
&lt;br /&gt;
Hello, all. I just wanted to add a request for some help for what should really by this wiki&#039;s sister site, Joepedia, the G.I. Joe Wiki. Now, I posted a similar request on some other sci-fi themed wiki, but the only answer I got was being told that the rules forbid a request from another wiki to be made. Well, I think that was kind of stupid, considering the communal attitude the whole wiki concept represents. BUT, ANYWAY, the Joepedia has been growing over the years, but it&#039;s mostly frequented by a small dedicated group of contributors. Since Transformers and G.I. Joe are so closely linked, I hoped some folks on here would like to help.&lt;br /&gt;
&lt;br /&gt;
I will add that I have no authority over on that site, and I don&#039;t really contribute much, mostly because of the time spent my own website. I&#039;m just a concerned geeky citizen drumming up some support. --[[User:JMM|JMM]] 10:26, 7 September 2012 (EDT)&lt;br /&gt;
:Well, I would, but I really don&#039;t know jack shit about G.I. Joe. And when I think about it, I&#039;m not sure this post belongs here. -- [[User:Spydersix|spyder]] 17:36, 7 September 2012 (EDT)&lt;br /&gt;
::Just looking around for a little help. This seemed like the closest thing to a G.I. Joe wiki out there, and I figured it was worth a try. --[[User:JMM|JMM]] 13:23, 13 September 2012 (EDT)&lt;br /&gt;
::I don&#039;t see a problem with a polite request for assistance or notification that a Joe wiki exists, since there IS some crossover interest. I just don&#039;t know how much &#039;&#039;useful&#039;&#039; crossover interest for the Joe wiki there is from this end outside of what we&#039;ve already done. I mean, we&#039;ve got extensive coverage of the parts of Joe directly involving TFs... I&#039;d say that&#039;s probably going to be the most useful thing we have for you. But, if others wanna try it out...&amp;lt;br&amp;gt;&lt;br /&gt;
::...unless you&#039;re on Wikia.... --[[User:M Sipher|M Sipher]] 13:27, 13 September 2012 (EDT)&lt;br /&gt;
:::Yeah, it was just a quick heads up so people who may be interested are aware. I know a number of people who are equally obsessed with TF and Joe. :) Oh, and yes, it is on Wikia! --[[User:JMM|JMM]] 14:22, 13 September 2012 (EDT)&lt;br /&gt;
::::We did at one point approach a partnership with Joepedia, and even had a template that cross-linked articles we shared. It was just a little premature at the time (which was years ago) as Joepedia was just starting out and often our articles were more complete than theirs, or theirs were just stubs. It looks like they&#039;ve gotten off the ground a bit more now.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:30, 13 September 2012 (EDT)&lt;br /&gt;
:::::Yes, their wiki got started later than this one. They have a small group of dedicated contributers, but the site&#039;s yet to attract the kind of interest this one does. --[[User:JMM|JMM]] 16:34, 13 September 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New stub templates ==&lt;br /&gt;
=== Video game stub template ===&lt;br /&gt;
Does anybody have any objections to a video game stub template? It would look something like this:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This article is still in beta stage.&lt;br /&gt;
 |message_text=&#039;&#039;This video game article is a [[:Category:Video game stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=ProwlTFU.JPG&lt;br /&gt;
 |image_width=40px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Video game stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
If anybody knows of a better picture that would go well with this, please upload it so it can be put in. Thanks! -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:52, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:How about a pic from the story where Prime dies in a video game? Heh if only Beta had ever been in a game, that&#039;d be perfect. --[[Special:Contributions/76.28.76.206|76.28.76.206]] 16:03, 2 October 2012 (EDT)&lt;br /&gt;
::What story was that? And yeah, that woulda been great. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 19:53, 2 October 2012 (EDT)&lt;br /&gt;
:::That would be [[Afterdeath!]]. --[[User:Detour|Detour]] 21:56, 2 October 2012 (EDT)&lt;br /&gt;
::::Well if people really want a picture from that, someone else will have to upload it, as I don&#039;t have access to it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 21:59, 2 October 2012 (EDT)&lt;br /&gt;
:::::[[:Image:Afterdeath-gameoverman.jpg|Right here, dude.]]--[[User:Detour|Detour]] 22:34, 2 October 2012 (EDT)&lt;br /&gt;
::::::Thanks, man. It&#039;s on the &#039;&#039;[[Transformers: Prime - The Game|Prime: The Game]]&#039;&#039; page if you want to see it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:50, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
In addition to the video game stub, I&#039;d like to suggest adding several templates, such as &amp;quot;section stub&amp;quot; and &amp;quot;fiction stub&amp;quot;. Right now, we only have &amp;quot;characer stub fiction&amp;quot; for pages only missing fiction section, but no templates for non-character page missing fiction appearance. While &amp;quot;section stub&amp;quot; can use for articles only missing one or two sections. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:05, 2 October 2012 (EDT)&lt;br /&gt;
:Ok, so I&#039;m gonna go ahead and make the video game one, and TX, if I get around to it later, maybe the others. If not, well, someone else will. Oh, and if I miss an article that the video game one should go on, put it here. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:31, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== Novel stub template ===&lt;br /&gt;
Ok, who has an idea for a picture for a novel stub template? I&#039;m not good with coming up with pictures for these templates. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:11, 20 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
It would look like this like this: &lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This manuscript still needs work.&lt;br /&gt;
 |message_text=&#039;&#039;This novel article is a [[:Category:Novel stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=DOTM Code-Name Hero.jpg&lt;br /&gt;
 |image_width=70px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Novel stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
-- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 10:23, 21 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Megatron Barcode Battler Card ==&lt;br /&gt;
&lt;br /&gt;
Hi, I was wondering if anyone here had come across this Megatron card for the Barcode Battler, or knows where in the Wiki it should go:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Front.jpg|200px]]&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Back.jpg|200px]]&lt;br /&gt;
|}&lt;br /&gt;
It seems to have been released by Toys R Us in 1992 as a promo for the Barcode Battler (which they were trying to sell in store), and was (as far as is known) the only such Transformers card, probably given away with two [http://barcodebattler.co.uk/scans/UK/ToysRUsF.jpg blank] [http://barcodebattler.co.uk/scans/UK/ToysRUsB.jpg cards] (the bottom scan - the middle is from the Barcode Battler box) to add your own barcodes to, and a card wallet.&lt;br /&gt;
&lt;br /&gt;
The text (&amp;quot;Clad in steel, armed to the teeth, nobody toys with us good guys when this moody cool deadly-dudey is around.&amp;quot;) is probably enough to make you want to forget this was ever made (is it really calling Megatron a good guy?), but it&#039;s cropped up in enough eBay sales (occasionally found in Barcode Battler lots with the seller unaware that they&#039;ve got something rare) to make it likely to be genuine.&lt;br /&gt;
&lt;br /&gt;
So does anyone else have any information on it, and whereabouts should this go? [[User:Xensyria|xensyria]] 12:26, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:10, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:I definitely don&#039;t know anything about it, besides that it&#039;s awesome, but if it&#039;s from 1992, then the only Megatron it could be is Megatron (G1), and so it should probably be on his toys/merchandise page.&lt;br /&gt;
:It&#039;s also plausible that someone who knows something about Barcode Battlers should make a short article on them for the wiki, since we have a lot of those &amp;quot;this broader thing had a TF thing released under it&amp;quot; pages. -[[User:LV|LV]] 12:31, 16 October 2012 (EDT)&lt;br /&gt;
::Or...this isn&#039;t anything to do with a licensed Transformers thing? I sort of blindly assumed Hasbro was the entity selling the Barcode Battler in the UK, but the packaging doesn&#039;t seem to support that. It&#039;s hard to believe it&#039;s not intended to be TF Megatron, but I&#039;m also not sure it&#039;s an official product. Especially since this Megatron guy seems to be the boxfront &amp;quot;main character&amp;quot; for the UK Barcode Battler release. -[[User:LV|LV]] 12:37, 16 October 2012 (EDT)&lt;br /&gt;
:::Ah, that&#039;s a possibility, but Barcode Battler was being distributed in most of Europe by Tomy, so they probably gave Toys R Us rights to use Megatron. Perhaps they couldn&#039;t get the rights to use his picture though (as you say, it&#039;s Tomy&#039;s Barcode Battler cover on the card, so anyone who used the card probably wouldn&#039;t think it was supposed to be Megatron). I should also say that 1992 is more of an educated guess than fact, but it&#039;s bound to be somewhere around that.&lt;br /&gt;
:::If it&#039;s offical I don&#039;t mind making a Barcode Battler article (though I&#039;ll have to check out some of the other examples you mention first). [[User:Xensyria|xensyria]] 13:02, 16 October 2012 (EDT)&lt;br /&gt;
::::Wait, I just re-read Wikipedia, and Tomy was rivals with Takara who owned Transformers at the time. Still, I wonder if such big companies would risk a lawsuit over using Megatron, when they had all sorts of other franchises they could use instead; more likely Toys R Us arranged the deal with Hasbro, who they no doubt were one of the biggest retailers for at the time. [[User:Xensyria|xensyria]] 13:04, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:12, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:::::Unlikely to be a Hasbro/TF related thing. In 1992 TFs weren&#039;t even being made in the US and the UK line didn&#039;t have a Megatron, the Decepticons were led by Skyquake at that time. --[[User:Khajidha|Khajidha]] 13:14, 16 October 2012 (EDT)&lt;br /&gt;
:::::Well, this is sort of like with Yu-Gi-Oh&#039;s Space Megatron, Hasbro&#039;s trademark just didn&#039;t apply to things like gaming cards, so Tomy, just like Konami later, was in a safe zone. --[[User:Detour|Detour]] 14:20, 16 October 2012 (EDT)&lt;br /&gt;
::::::Ah, that would explain the &amp;quot;good guys&amp;quot; text as well. It seems to be a U.K. only thing, and though there may not have been Megatron toys there (is there a reference to them not being released in the U.K. on this on the wiki?) the name would have been familiar from the the film. Is there anywhere for similarly unofficial merchandice here, or should it be cast back into the purgatory of its makers&#039; device? [[User:Xensyria|xensyria]] 15:11, 16 October 2012 (EDT)&lt;br /&gt;
:::::::While I never played it, I distinctively remember Barcode Battlers as well, so it&#039;s not a UK-only thing. --[[User:Detour|Detour]] 15:15, 16 October 2012 (EDT)&lt;br /&gt;
::::::::My bad, I mean the Megatron card, which uses the Tomy box art (the U.S. version was by Irwin, and Japan by the developer, Epoch). [[User:Xensyria|xensyria]] 15:22, 16 October 2012 (EDT)&lt;br /&gt;
:::::::::See [[The Transformers (toyline)]] and [[Generation 1 (European toyline)]] for lists of what was released in the US and Europe each year of the original toyline. --[[User:Khajidha|Khajidha]] 15:37, 16 October 2012 (EDT)&lt;br /&gt;
::::::::::Also, in answer to your question about unofficial merchandise, we only cover official products from Hasbro, Takara and their license holders. About the only place that this could really go on this site is the [[trademark]] page, in a similar use as the &amp;quot;Space Megatron&amp;quot; card from Yu-Gi-Oh! --[[User:Khajidha|Khajidha]] 07:53, 18 October 2012 (EDT)&lt;br /&gt;
:::::::::::Thanks to all of you for the info. I&#039;ve added it to the [[Talk:Trademark#Old example: .22Megatron.22 Barcode Battler promo card|trademark talk page]], but will leave it up to you whether it&#039;s a notable enough example to be added to the article or not. [[User:Xensyria|xensyria]] 15:55, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Recent spamming==&lt;br /&gt;
Granted, I haven&#039;t been here all that often, but the recent spamming has me wondering if the perpetrator(s) are using some form of IP hopping. It&#039;s feeling rather hydra-ish at the moment. --[[User:Lonegamer78|Lonegamer78]] 07:22, 18 October 2012 (EDT)&lt;br /&gt;
:I still suggest you add a recaptcha for edits that add external links, at least for new accounts.[[Special:Contributions/192.249.47.177|192.249.47.177]] 14:09, 18 October 2012 (EDT)&lt;br /&gt;
::If that&#039;s possible, I like that idea. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:34, 18 October 2012 (EDT)&lt;br /&gt;
:::What IP guy said. Also, if we disabled all &amp;quot;Talk:/Talk&amp;quot; pages, that&#039;d help a bit. Either way, the latest spambot assault is obliterating the recent changes page. -- [[User:Repowers|Repowers]] 08:21, 24 October 2012 (EDT)&lt;br /&gt;
::::The &amp;quot;Talk:/Talk&amp;quot; thing has been mentioned numerous times in the past, I was actually surprised to see these still popping up. I&#039;m guessing some other wikis have already implemented this, as there seems no other reason for the several &amp;quot;Talk:T/alk&amp;quot; (note order of characters) pages that have popped up recently. --[[User:Khajidha|Khajidha]] 10:03, 24 October 2012 (EDT)&lt;br /&gt;
:::::I don&#039;t care what we do, but we need to do something, and we need to do it now. - [[User:Chris McFeely|Chris McFeely]] 10:09, 24 October 2012 (EDT)&lt;br /&gt;
::::::What McFeely said. This crap needs to stop. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 08:47, 25 October 2012 (EDT)&lt;br /&gt;
:::::::Looking at the recent changes, this is getting worse. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:20, 25 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
According to McFly, anon editing has been eliminated. This kills a lot of it, plus a chunk of human-born vandalism. The next step is that new accounts will get an automated confirmation email with a link that will unlock the new account, which should hopefully take out the other major spambot problems. --[[User:M Sipher|M Sipher]] 18:30, 25 October 2012 (EDT)&lt;br /&gt;
:Leaving those that make accounts just to spam. Well, one step at a time. --[[User:Lonegamer78|Lonegamer78]] 00:29, 26 October 2012 (EDT)&lt;br /&gt;
::Well, there&#039;s not much we can do with dedicated human antagonists. --[[User:M Sipher|M Sipher]] 00:43, 26 October 2012 (EDT)&lt;br /&gt;
:::And, the worst problem was the spambots anyway. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 06:45, 26 October 2012 (EDT)&lt;br /&gt;
::::Rather than blocking all IP editing, did you guys ever try out recaptcha for new accounts or articles?[[User:KrytenKoro|KrytenKoro]] 20:27, 9 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Universe/UT Micromaster combiners ==&lt;br /&gt;
&lt;br /&gt;
There isn&#039;t any general page for these, so I&#039;m putting this here.&lt;br /&gt;
&lt;br /&gt;
Given our treatment of the ROTF/Universe (2008) Bruticus Maximus and Superion sets, I wonder if the Universe (2003) Micromaster combiners whose European releases were branded as Energon ([[Defensor (Universe)|Defensor]], [[Constructicon Devastator (Micromaster)|Constructicon Devastator]]) or Cybertron ([[Superion (Universe)|Superion]], [[Rail Racer (Universe)|Rail Racer]]) should be considered Unicron Trilogy characters.  It&#039;s the same basic situation, except that the nature of Universe (2003) means that just because the European versions are Energon/Cybertron doesn&#039;t mean they&#039;re different guys.  --[[User:Andrusi|Andrusi]] 11:00, 18 October 2012 (EDT)&lt;br /&gt;
:Aren&#039;t they already listed that way? Defensor and Constructicon Devastator have &amp;quot;Energon Autobot&amp;quot; and &amp;quot;Energon Decepticon&amp;quot; categories and Superion and Rail Racer are in the category &amp;quot;Cybertron Autobots&amp;quot;. I haven&#039;t checked the individual team members yet. --[[User:Khajidha|Khajidha]] 12:59, 18 October 2012 (EDT)&lt;br /&gt;
:Just checked the team members and found only one that was not categorized as Energon or Cybertron characters (Long Haul), I added the appropriate category. --[[User:Khajidha|Khajidha]] 13:04, 18 October 2012 (EDT)&lt;br /&gt;
::I guess he&#039;s talking about the continuity identifier at the top? [[Special:Contributions/24.211.29.87|24.211.29.87]] 13:24, 18 October 2012 (EDT)&lt;br /&gt;
:::Ah, that makes sense. I could see something like the one used for [[King Atlas]]. --[[User:Khajidha|Khajidha]] 13:49, 18 October 2012 (EDT)&lt;br /&gt;
::::Yeah, I meant the continuity identifiers (and in the case of some components, like [[Red Alert (Universe)|Red Alert]], the &amp;quot;relation unknown&amp;quot; bio notes).  The categories honestly never occurred to me.  --[[User:Andrusi|Andrusi]] 12:36, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Election Day ==&lt;br /&gt;
&lt;br /&gt;
Perhaps the [[President of the United States]] should be the featured article... just for today.--[[User:Jimsorenson|Jimsorenson]] 10:41, 6 November 2012 (EST)&lt;br /&gt;
:Much as I like the idea, it doesn&#039;t have much of an intro paragraph, which makes it hard to front-page it.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:20, 6 November 2012 (EST)&lt;br /&gt;
::Transtech Optimus and Megatron might also be good choices.[[User:KrytenKoro|KrytenKoro]] 13:02, 6 November 2012 (EST)&lt;br /&gt;
:::[[Democracy]]? --[[User:Emvee|Emvee]] 13:06, 6 November 2012 (EST)&lt;br /&gt;
::::Yeah, that&#039;s got a proper intro paragraph and is actually a fairly nice article. [[User:Jalaguy|Jalaguy]] 13:08, 6 November 2012 (EST)&lt;br /&gt;
:::::We&#039;ve used it on Election Day before, s&#039;why.  --[[User:ItsWalky|ItsWalky]] 13:23, 6 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned ==&lt;br /&gt;
&lt;br /&gt;
Can we... can we just disambiguate WFC/FOC/Prime stuff like we do everything else on this wiki, please?  --[[User:ItsWalky|ItsWalky]] 14:51, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I am still not clear as to why WFC and FOC are treated as franchises of their own rather than specific iterations of the Prime franchise. I would support changing all the disambigs of WFC/FOC/Prime to Prime. --[[User:Khajidha|Khajidha]] 15:03, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::WFC and FOC have their own franchise branding.   For example, the Fall of Cybertron comic is branded as Fall of Cybertron, not as Prime.  When you have a series of related properties with &amp;quot;Transformers: ________&amp;quot; as a shared title with its own logo, that&#039;s a more often than not a franchise.  --[[User:ItsWalky|ItsWalky]] 01:26, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::And for that matter, WFC and FOC encompass even our most strict definition of franchise, as each of them is at minimum a game, a comic, and a toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 03:54, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:So what are you asking for, here, Walky? For [[Optimus Prime (Prime)]] to be at &amp;quot;Optimus Prime (WFC)&amp;quot;? - [[User:Chris McFeely|Chris McFeely]] 05:05, 12 November 2012 (EST)&lt;br /&gt;
::::Yes.  --[[User:ItsWalky|ItsWalky]] 15:15, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::Frankly, I&#039;d love to see Optimus Prime (WFC), Optimus Prime (Prime) and Optimus Prime (RB). --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 12:31, 12 November 2012 (EST)&lt;br /&gt;
:::Why would we part out a character&#039;s page by separate franchises within the same continuity family? --[[User:Detour|Detour]] 13:00, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I agree that some of the disambig&#039;ing is getting pretty mad. Like Aligned Bruticus being at (Prime) due to a piece of concept art for a foreign-market MMO that isn&#039;t even used on the page, for instance. Given that the original reason for overriding (WFC) disambigs was to avoid confusion, it seems pretty ridiculous. I understand the original intention was to help people looking for the show characters, but the same could be said of, say, [[Sideways (RID)|Sideways]], who is disambig&#039;d based on a less well known first appearance rather than a starring cartoon role, and we haven&#039;t changed him. My opinion&#039;s that we should either, as Walky says, abandon the &#039;Prime takes precedence for disambigs&#039; thing, or come up with a more concrete set of guidelines than &#039;the moment they appear in anything the tiniest bit &#039;&#039;Prime&#039;&#039;-y, change the disambig&#039;. [[User:Jalaguy|Jalaguy]] 13:36, 12 November 2012 (EST)&lt;br /&gt;
::As someone who initially advocated for our current methodology, I&#039;d really only intended it for show characters or characters in the Prime toyline. That&#039;s my only real hang-up here, that if a new user comes here after watching the show or picking up a toy, they shouldn&#039;t get tangled up by the fact that we&#039;re insisting on putting (WFC) on the end of something because it debuted in the game. Parentheticals are for ease of use, not dogmatic technicality.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:59, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.  We still have one article per character per continuity family, so it seems the most logical to me to call that the disambiguation and only go deeper when we have two different characters from the same continuity family with the same name.  After all, when you go to the current disambiguation pages, that&#039;s how we describe the character in text.&lt;br /&gt;
It would avoid this entire mess.  Basically, the principal I think we should employ is to use the highest possible level when disambiguating characters.  If a character is unique, no disambiguation necessary.  If only one guy named &#039;Optimus Prime&#039; shows up in Aligned, then call him Optimus Prime (Aligned).  I realized that that means that the Unicron Trilogy and movie franchises, with their rampant name reuse, will tend to go one level deeper... but since that&#039;s what we&#039;re doing today, it shouldn&#039;t be too big of an issue. &lt;br /&gt;
As we&#039;ve seen, the lines between franchises are only getting blurrier, and we have every reason to believe this trend will continue.  In maybe 95% of cases, we really will have only one character per name per continuity family, and then we (and our readers) won&#039;t have to try to figure out where Aligned Prime first popped his head up. --[[User:Jimsorenson|Jimsorenson]] 18:33, 12 November 2012 (EST)&lt;br /&gt;
:I find myself agreeing with this. As someone who was not to long ago just a reader, I can say that disambiguating by continuity family would probably help &#039;&#039;a lot&#039;&#039; of people. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 20:00, 12 November 2012 (EST)&lt;br /&gt;
::If you do that, may I suggest you take the opportunity to come up with a less confusing name for the G1 continuity family that isn&#039;t the same as the franchise. That way there won&#039;t be a bunch of Beast Wars characters with (G1). How about the &amp;quot;inaugural continuity family&amp;quot;? Optimus Prime (Inaugural)&lt;br /&gt;
::Cons&lt;br /&gt;
::*Continuity family names are unofficial for the most part.&lt;br /&gt;
::*Fiction-only dimension hoppers are a bit of a problem. Do they go in their &amp;quot;home&amp;quot; continuity family or the continuity family of the piece of fiction they originated in?&lt;br /&gt;
::*Pros&lt;br /&gt;
::*I would personally feel better about the IDW original characters if they were disambiguated by the G1 continuity family (or the inaugural continuity family) instead of the G1 franchise. - [[User:Starfield|Starfield]] 20:17, 12 November 2012 (EST)&lt;br /&gt;
:If it&#039;s a choice between having (WFC) disambigs on Prime characters or radically changing how we organize the wiki and having to move thousands of articles (who&#039;s going to have time to even do that?), I prefer the former as a solution. --[[User:Abates|abates]] 20:36, 12 November 2012 (EST)&lt;br /&gt;
::In full agreement there. But I do think redirects with other franchise disambigs would be helpful to newcomers. Like someone who may have watched Cybertron but not be aware of the Armada toy who might try to search for &amp;quot;Thundercracker (Cybertron)&amp;quot;, for example. --[[User:Detour|Detour]] 20:49, 12 November 2012 (EST)&lt;br /&gt;
:&#039;&#039;For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.&#039;&#039;&lt;br /&gt;
:Agree.  The only reason we don&#039;t for the Unicron Trilogy is because of the absolutely rampant name reuse, but Prime hasn&#039;t seen that problem.  I think that (in principle) everyone should be disambig&#039;d (Aligned).&lt;br /&gt;
:That or you have to more Breakdown (Prime) to Breakdown (WFC).&lt;br /&gt;
:...also Rescue Bots.  Aligned they are.  -[[User:Derik|Derik]] 00:45, 13 November 2012 (EST)&lt;br /&gt;
::I strongly feel we should stick to using official terms and abbreviations thereof in our disambiguation, and &amp;quot;aligned&amp;quot; is not really official (it was from a Hasbro guy describing their aim as a &amp;quot;new aligned continuity&amp;quot; ISTR). Unless we renamed it to the &amp;quot;Prime continuity family&amp;quot;, but that way possibly lies madness. --[[User:Abates|abates]] 22:33, 13 November 2012 (EST)&lt;br /&gt;
:::I bet you anything that if we looked around we could find someone official referring to it as Aligned.  (If only because we do.)  -[[User:Derik|Derik]] 22:36, 13 November 2012 (EST)&lt;br /&gt;
::::Not that I want to do everything by continuity family, because I absolutely do not, but even &amp;quot;Generation 1&amp;quot; started out as a fan term, and &amp;quot;Unicron Trilogy&amp;quot; was based on something Aaron Archer said once but became widespread because the Wiki used it.  &amp;quot;Aligned,&amp;quot; another thing said once by Hasbro, is no different.  But again, argh, no, disambiging by continuity family raises more headaches than it solves.  UT isn&#039;t the only continuity family where name reuse is rampant.  --[[User:ItsWalky|ItsWalky]] 01:08, 14 November 2012 (EST)&lt;br /&gt;
:::::Yeah, &#039;&#039;colossal&#039;&#039; headaches if we tried to smoosh the various comic and toy characters from each movie&#039;s ancillary franchise together.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:22, 14 November 2012 (EST)&lt;br /&gt;
::::::Would it be?  If they&#039;re different characters, they&#039;re different characters.  So, Sentinel Prime would go from Sentienl Prime (ROTF) to Sentinel Prime (Movie).  He&#039;s a good example of a confusing disambiuation.  He&#039;s the villain in movie 3, but is at movie 2 because of an unnamed montage sequence.  Someone like movie Devastator, who is two separate characters, would remain exactly as they are.--[[User:Joefan|Joefan]] 12:06, 14 November 2012 (EST)&lt;br /&gt;
:::::::Except if it&#039;s by continuity family, he&#039;d be at &amp;quot;Sentinel Prime (LAMS)&amp;quot;. I think changing our entire way of naming articles and moving thousands of articles just to fix the &amp;quot;(Prime)&amp;quot; issue is like using a nuclear bomb to hammer in a nail. --[[User:Abates|abates]] 14:12, 14 November 2012 (EST)&lt;br /&gt;
::::::::My view on this topic has changed, and I now agree with this. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:44, 14 November 2012 (EST)&lt;br /&gt;
:::::::::My understanding was that we HAD been disambig-ing by Continuity family, and chose NOT to for the Unicron Trilogy and LAMS because the rampant name reuse would make this horribly confusing.  But for Aligned... so far we&#039;ve already gotten &amp;lt;u&amp;gt;three&amp;lt;/u&amp;gt; franchises and virtually no overlap.&lt;br /&gt;
:::::::::I&#039;m going to cite [[Help:Ignore all standards]], which states that &#039;&#039;Standards are good; TFWiki.net likes standards. We&#039;re just not under the illusion that standards are perfect.&#039;&#039; and more importantly &#039;&#039;&#039;&amp;quot;In situations where the standards intended to prevent confusion would instead contribute to it, common sense should rule.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
:::::::::Actually... wasn&#039;t disambiging the UT series by franchise a case of H:IAS?  We decided to do that because the way rampant name reuse rendered other approaches impractical.  -[[User:Derik|Derik]] 14:05, 16 November 2012 (EST)&lt;br /&gt;
::::::::::We don&#039;t disambig by franchise because of the UT.  We disambig by franchise because of EVERYTHING.  UT was never ever ever the straw that broke the camel&#039;s back.  The back came pre-broken.  --[[User:ItsWalky|ItsWalky]] 14:22, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::Whatever.  Can I move Breakdown (Prime) to Breakdown (WFC) or not?  -[[User:Derik|Derik]] 15:35, 16 November 2012 (EST)&lt;br /&gt;
::::::::::::That&#039;s what I&#039;d like to do eventually, but I don&#039;t think we&#039;ve reached a firm enough consensus to do something that big and sprawling.  --[[User:ItsWalky|ItsWalky]] 16:16, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::...he&#039;s got the wrong disambig.  We disambig by the franchise he first appeared in.  His WFC appearance was 6 months prior to his Prime appearance.  Why does that require some sort of confab?&lt;br /&gt;
:::::::::::::: You are preaching to the choir on this point, but previously a consensus was made that Prime stuff operates differently from everything else on the wiki.  I want to overturn that, but until I do, the previous consensus stands.  --[[User:ItsWalky|ItsWalky]] 16:58, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::Of course the answer is &amp;quot;because we&#039;re already in an &amp;lt;tt&amp;gt;Ignore all standards&amp;lt;/tt&amp;gt; situation; we want to disambig them with (Prime) even though that&#039;s against our standard treatment, but we haven&#039;t properly dealt-with/processed/mourned that.&amp;quot;&lt;br /&gt;
:::::::::::::If we give in to a rigid standard and move him (and everyone else) to (WFC), &#039;&#039;I&#039;&#039; think it&#039;s almost inevitable that there will be a pushback against the anti-intuitive mess that makes the disambigs, which will itself lead to either returning them to (Prime) or switching everything to (Aligned)  I just do not see (WFC) for the main characters &#039;standing.&#039;&lt;br /&gt;
:::::::::::::Which would mean that we aren&#039;t facing a choice between standard-vs-nonstandard, but between nonstandard-vs-nonstandard.  And given that choice I think (Aligned) is the better nonstandard.&lt;br /&gt;
:::::::::::::(You may feel free to disagree with my assessment of the outcome of a (WFC) move.  I recognize that my beliefs about &amp;quot;what would probably happen after&amp;quot; are just a hypothesis and should not be treated as fact.)  -[[User:Derik|Derik]] 16:56, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
If we do go to strict franchise of origin on Aligned continuity family characters, we are going to have to be &#039;&#039;super&#039;&#039; diligent on redirects for anyone that appears in the Prime show or toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 17:55, 16 November 2012 (EST)&lt;br /&gt;
: I half-agree, if only because we won&#039;t have to be TOO diligent on the pages that exist already, because that would involve merely not deleting the redirects from the old locations once we move the pages.  It&#039;d be a kind of reverse-diligence, since it would really mean one less step than usual.  Otherwise, yes, if a character is in Prime, there should be a redirect from there. --[[User:ItsWalky|ItsWalky]] 19:13, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
So have people have a chance to mull this over some? I&#039;m leaning towards going back to the &amp;quot;by franchise&amp;quot; rule and having &amp;quot;Breakdown (WFC)&amp;quot; because it&#039;s both simpler than any of the alternatives, and it&#039;s consistent with what we do everywhere else. So long as &amp;quot;Breakdown (Prime)&amp;quot; redirects there, and I don&#039;t see any reason for it not to, people will still be able to find it. --[[User:Abates|abates]] 18:56, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fun fact ==&lt;br /&gt;
&lt;br /&gt;
According to my calculations we had around about 6876 articles when we left Wikia, so we&#039;ve added over 10000 more in the four and a bit years since we left. --[[User:Abates|abates]] 03:27, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:While wikia has added... 929 articles.--[[User:Carrion|Carrion]] 12:09, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::929, really? No offense but I thought it was less. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 13:47, 19 November 2012 (EST) &amp;lt;13:57, 19 November 2012 (EST) edit&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::Hey, be fair, they&#039;ve also added a blog. GUH. --[[User:Khajidha|Khajidha]] 13:49, 19 November 2012 (EST)&lt;br /&gt;
::::And a video library! Because people go to wikis to watch movie trailers! --[[User:Abates|abates]] 14:43, 19 November 2012 (EST)&lt;br /&gt;
:::I was just there the other day... their article for Animated Bulkhead still has an &amp;quot;ongoing&amp;quot; tag... --[[User:Detour|Detour]] 19:06, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Split Pages ==&lt;br /&gt;
&lt;br /&gt;
We have several characters on the list of [[Special:Longpages|Long pages]]–such as [[Kup (G1)]], ‎[[Prowl (G1)]], [[Megatron (G1)]], [[Ratchet (G1)]], and [[Hot Rod (G1)]]. So I suggest to split their G1 cartoon, Marvel comics, and IDW comics section into new pages. – [[User:Thunderweb|Thunderweb]] 01:40, 20 November 2012 (EST)&lt;br /&gt;
:That&#039;s cool and all, but please don&#039;t split off pages if you&#039;re not going to write proper intros/summaries for them and include appropriate categories on the sub pages. --[[User:Abates|abates]] 17:12, 24 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned section breakup is warping canon ==&lt;br /&gt;
&lt;br /&gt;
Currently{{now|21:19, 26 November 2012 (EST)}} our [[Breakdown (Prime)]] page lists all his Prime appearances then ghettotizes out his Fall of Cybertron appearances into a subsequent section as a separate continuity, and thus less important than the cartoon despite coming first.  &lt;br /&gt;
&lt;br /&gt;
[[Bulkhead (Prime)]] and [[Knock Out (Prime)]] are a little better, but the Prime wii game (by the series writers, intended to fit in season 2 albeit without a specific &amp;quot;after this episode and before this episode&amp;quot; date) is broken out as a &#039;&#039;&#039;seperate continuity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traditionally this has been our way of dealing with games because they are a secondary media; being sorta warped reflections of some core media with (for the most part) minimal contribution to continuity.  But, you know, Aligned is different.  The War for Cybertron / Fall of Cybertron games are part of the same continuity, occurring before the cartoon.  We sort of rolled our eyes when Hasbro first insisted on this (mostly because the [[Transformers: Exodus]] novel doesn&#039;t fit well with the game &#039;&#039;or&#039;&#039; the cartoon.)  But the reality increasingly is that they &#039;&#039;&#039;are&#039;&#039;&#039; one continuity.  Hell, this is a quote from an interview w/ John Barber, writer of [[Rage of the Dinobots]].&lt;br /&gt;
&lt;br /&gt;
{{quote|JB: The Transformers story has been going on continuously for a very long time, and I think it’s fair to say the Prime universe is working to take the best elements of every expression and build a world. What’s really exciting is that what we’re doing in the comic is going to impact this world across various mediums. So, it isn’t a case where we’re doing a book that’s subservient to the TV show—we’re doing an all-new story set in that same universe, and the stories we tell are going to be reflected in the shows and the novels and everything else. It’s “canon.” Which is cool, and sort of rare and unique.&lt;br /&gt;
&lt;br /&gt;
RS: The book is a truly cross-media venture tying in with the upcoming game Fall of Cybertron as well as the Transformers Prime series, how much of a &#039;juggling act&#039; is it to coordinate the story between the different outlets?&lt;br /&gt;
&lt;br /&gt;
JB: Fortunately I get to work with some of the best people in the business. Michael Kelly, who’s Hasbro’s Director of Global Publishing, is a great friend and somebody I get to work with very closely. He coordinates with the Transformers brand team at Hasbro—which contains some really good friends of mine, too. Plus I’ll talk to the folks at Random House, and we’re constantly emailing with everybody at High Moon, who produce FALL OF CYBERTRON, so while there are a lot of moving parts, we’re all talking. And we’re all building toward the same goals of good storytelling and a cohesive worldview.&lt;br /&gt;
&lt;br /&gt;
Also—the new Prime comic is being written by Mike Johnson and Mairghread Scott, both of whom—in addition to being comics writers, both write for thePrime TV show. So they know what’s what.|John Barber|[http://www.aintitcool.com/node/58236 AICN COMICS Q&amp;amp;@: Russ Sheath talks to IDW&#039;s John Barber about TRANSFORMERS PRIME: RAGE OF THE DINOBOTS!]}}&lt;br /&gt;
&lt;br /&gt;
Messy as it was for the rollout, the people producing the stuff &#039;&#039;&#039;intend for it to be one universe and are writing it at such&#039;&#039;&#039;.  And the various franchises &#039;&#039;&#039;are&#039;&#039;&#039; slowly converging as a result.&lt;br /&gt;
&lt;br /&gt;
We &amp;lt;u&amp;gt;need&amp;lt;/u&amp;gt; to consolidate these sections under a single &amp;quot;Aligned continuity&amp;quot; header.  Because the way we&#039;re doing it right now is fucking things up.  &lt;br /&gt;
&lt;br /&gt;
(And no we can&#039;t have WFC/Prime subsection headers for the same reason we can&#039;t separate the Movieverse prequel minis, they interleve.  The games don&#039;t deal with Prime and Megatron&#039;s pre-war history bot the novels and TV shows do mention it.)  -[[User:Derik|Derik]] 21:19, 26 November 2012 (EST)&lt;br /&gt;
: Yeah, I think the way we do it now is better-organized.  Video game stuff, no matter how high-profile it is, tends to be overwritten by the &amp;quot;real&amp;quot; stories that later adapt it.  I&#039;d rather keep stuff separated by medium.  --[[User:ItsWalky|ItsWalky]] 22:28, 26 November 2012 (EST)&lt;br /&gt;
::Agreed. There&#039;s no way to kludge it all together under one heading without either ignoring some details or presenting them in a vague, unhelpful manner, given the contradictions that exist. You cite the Prime game, but at no point in season 2 do the Decepticons EVER consist of Megatron, Starscream, Airachnid and Dreadwing at the same time. It can&#039;t fit. And your other example - it&#039;s all well and good to quote that Barber quote, Derik, but the preview for &amp;quot;Rage of the Dinobots&amp;quot; alone has shown Grimlock present on Cybertron, Sludge being alive and Blast Off dying at a point when in the games, Grimlock has vanished, Sludge has died and Blast Off needs to be alive. (Not to say that the comic might not address these points, it&#039;s just the example foremost in my brain as it&#039;s been discussed recently.) - [[User:Chris McFeely|Chris McFeely]] 05:16, 27 November 2012 (EST)&lt;br /&gt;
:::Chris, the only contradiction we&#039;ve seen in the Rage of the Dinobots comic preview thus far is Sludge being alive. It&#039;s set after the Ark left, during which Grimlock &#039;&#039;was&#039;&#039; still on Cybertron. And Blast Off being there ties in with Jazz and Jetfire having knocked Bruticus off the Ark before it went through the space bridge. He was last seen plummeting, seemingly, back to Cybertron; and judging by this comic, it looks like he made it.&lt;br /&gt;
:::Now, as for my thoughts on the reorganization of the Aligned fiction sections, I offer a counterproposal. Keep each section separate as they are, but I&#039;d feel more confortable with the WFC and FOC sections place above the Prime sections to coincide with their chronological placement in the timeline. Perhaps put the Exodus section first, then the WFC sections, then the FOC comic section, the FOC the game, then Exiles or Rage of the Dinobots (depending on how that comic with play out will determent if it&#039;s better set before or after Exiles), then the Prime comic, then the Prime cartoon, then the Prime game, and then the Rescue Bots cartoon. Each keeps its own section, but arranged in as close to chronological order as possible. --[[User:Sabrblade|Sabrblade]] 12:20, 27 November 2012 (EST)&lt;br /&gt;
::::I don&#039;t understand how putting some of the video game stuff outside of the video game section is intuitive, because presumably we&#039;d be keeping the Prime game stuff down below.  --[[User:ItsWalky|ItsWalky]] 12:23, 27 November 2012 (EST)&lt;br /&gt;
:::::I&#039;m saying to treat the games as fiction themselves instead of a second tier category, since, unlike previous continuities, they&#039;re of a greater importance to their master continuity than any past games have ever been. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::The [[Breakdown (Prime)]] article separates along &#039;&#039;&#039;Fiction&#039;&#039;&#039; and &#039;&#039;&#039;Games&#039;&#039;&#039;, placing the WFC/FOC games in the latter when they are part of the same body of fiction.  Even if you don&#039;t want to place them in the same continuity, they should both be in the &#039;&#039;&#039;Fiction&#039;&#039;&#039; header.&lt;br /&gt;
::::::The separate header for games system has its origins in the traditional relationship of games to other fiction, where they present a wildly divergent or exclusive or alternate version of another existing franchise or story.  These are primary story material which have no &#039;primary story&#039; they present an alternate version of because they &#039;&#039;are&#039;&#039; the primary story.  You can&#039;t ghettoize them as &amp;quot;something other than fiction.&amp;quot;  -[[User:Derik|Derik]] 17:28, 27 November 2012 (EST)&lt;br /&gt;
:::::::That&#039;s what I&#039;m saying. Putting the individual video game subsections into the main fiction section instead of putting them in a separate video game section since the games aren&#039;t a second tier of the main story this time. --[[User:Sabrblade|Sabrblade]] 17:37, 27 November 2012 (EST)&lt;br /&gt;
::::I realize this isn&#039;t the time or place for this, but regarding those points, I&#039;ll say that the clear implication at the end of FoC is that Grimlock has vanished through the spacebridge (he doesn&#039;t get out before the explosion and the Dinobots watch as something shoots up the beam into the portal), and as the Ark is the &#039;&#039;last&#039;&#039; of the vessels to leave in the game, it can&#039;t fit with what we&#039;re seeing here with Blast Off&#039;s timeline. - [[User:Chris McFeely|Chris McFeely]] 12:26, 27 November 2012 (EST)&lt;br /&gt;
:::::I never got the impression that Grimlock got sent through the space bridge. His fate was rather amibiguous to the nth degree, leaving plenty open room for him to still be on Cybertron after the game. He&#039;s running away, there&#039;s a blinding light, and then the scene cuts away. for all we know, he could have fallen off the platform he was on and plummeted far to the ground below, away from the space bridge&#039;s reach (though he&#039;d be in for some serious repairs after a fall form that height). As for the other ships, we know that the planet was completely abandoned by the present day, so the Dinobots and Wreckers would have had to have gotten off the planet somehow and at some point. Just because the Ark was the last vessel to leave during the Great Exodus doesn&#039;t mean there weren&#039;t more ships set aside in reserve for or built later by those who stayed behind so they could eventually leave when the time would come for them to do so &#039;&#039;after&#039;&#039; the Great Exodus. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::And thus, we see the the hand-wringing necessary to align everything. - [[User:Chris McFeely|Chris McFeely]] 12:50, 27 November 2012 (EST)&lt;br /&gt;
:::::::Pun not intended.  --[[User:ItsWalky|ItsWalky]] 13:39, 27 November 2012 (EST)&lt;br /&gt;
:::::::Yeah, and until we get canonical answers to things like where the Prime game or Optimus/Bumblebee&#039;s appearances in Rescue Bots fit, sticking everything under one header is just not possible. --[[User:Abates|abates]] 14:59, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
I think my main qualm here is that every time someone tries to make the case that Aligned is somehow &#039;&#039;different&#039;&#039; and thus deserves us altering the way we treat it relative to other continuity families, we end up with &#039;&#039;even more&#039;&#039; examples of how Aligned is pretty much a branching, loosely-connected thing &#039;&#039;just like every other continuity family&#039;&#039;. I mean sure, it&#039;ll never get quite to the point of how spread out the G1 continuity family is. Regardless, this is no different from how obvious it was that Bay&#039;s writers didn&#039;t give a damn about the movie comics, and so forth.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:49, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s very easy to say &amp;quot;this doesn&#039;t seem to fit&amp;quot; but Barber says he&#039;s coordinating his story with High Moon Studios so there aren&#039;t any conflicts.&lt;br /&gt;
:The people writing these things are &#039;&#039;trying&#039;&#039; to make them one continuity, damnit!  Do we have to fight them this hard?  -[[User:Derik|Derik]] 13:22, 27 November 2012 (EST)&lt;br /&gt;
::And IDW &#039;&#039;tried&#039;&#039; to make the comics jive with the live-action movies, and Barber himself is the one that had to get the mop whenever that didn&#039;t work out. Heck, Barber had early drafts of the movie scripts in many cases, and ended up drawing off of concepts that ultimately weren&#039;t even used in the movies.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 20:07, 27 November 2012 (EST)&lt;br /&gt;
:::I cant&#039; tell if you&#039;re saying IDW succeeded or not, there&#039;s a lot of handwaving in the IDW timeline but it mostly works, largely thanks to Barber bending over backwards to explain how the DotM conspiracy could possibly be present during the 2007 movie and somehow miss Megatron.  ;)  -[[User:Derik|Derik]] 00:05, 28 November 2012 (EST)&lt;br /&gt;
::::I&#039;m not faulting the man&#039;s efforts, and certainly he must have won a No-Prize back in the day from the Merry Marvel Marching Squad, but all I&#039;m really saying is &#039;&#039;this is nothing new&#039;&#039;.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:43, 28 November 2012 (EST)&lt;br /&gt;
:::::What are you saying? The Movieverse comics and the films are in the same continuity. Just read the [[Movie continuity]] page. I don&#039;t care so much how the fiction is listed in character pages, but I&#039;d like to see the [[Aligned continuity family]] page moved to &amp;quot;Aligned continuity&amp;quot; and the appropriate changes made to reflect the fact that the Aligned stuff is all &#039;&#039;officially&#039;&#039; the same continuity. Officially! Nobody in G1 tried to say &amp;quot;all this stuff is in the same continuity.&amp;quot; - [[User:Starfield|Starfield]] 11:10, 28 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== James Roberts notes ==&lt;br /&gt;
&lt;br /&gt;
As self-referencial as Roberts&#039; work gets, most of the notes sections on MTMTE pages are getting ridiculously long. Some of them have become big blocks of text that cover an entire screen. Is there any way we can break these down into smaller subsections? &#039;&#039;&amp;quot;Roberts referencing Roberts&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Roberts referencing other stories&amp;quot;&#039;&#039;? &#039;&#039;&amp;quot;Story notes&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Easter eggs&amp;quot;&#039;&#039;?--[[User:Xaaron|Xaaron]] 09:52, 13 December 2012 (EST)&lt;br /&gt;
: I don&#039;t think any of the notes sections for Roberts stories are &amp;quot;ridiculously long.&amp;quot;  --[[User:ItsWalky|ItsWalky]] 10:41, 13 December 2012 (EST)&lt;br /&gt;
:: Four of the last five regular issues have Notes sections that cover my entire monitor. One big screen of bullet points. It&#039;s aesthetically unpleasing, my eyes glaze over just looking at it, and I can&#039;t be the only one. We discourage big blocks of text in the History sections, and this isn&#039;t much different. &lt;br /&gt;
:: I&#039;m not saying the Notes themselves aren&#039;t &amp;quot;note-worthy&amp;quot;. It just...doesn&#039;t look good. I think an effort could be made to make it easier on the eyes. More images in that section, or some sub-sections to break up the bullet points is not unreasonable to suggest. --[[User:Xaaron|Xaaron]] 11:12, 13 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Things that don&#039;t exist&amp;quot; category ==&lt;br /&gt;
&lt;br /&gt;
FYI, readers that don&#039;t have accounts can&#039;t access this category through articles because they&#039;re blocked from the editing page, which the red link automatically takes them to. [[User:Mimi|Mimi]] 02:52, 18 December 2012 (EST)&lt;br /&gt;
:Hmm, we could possibly use javascript to amend links to it to point to http://tfwiki.net/wiki/Category:Things_that_don%27t_exist instead, which does work for logged out users. --[[User:Abates|abates]] 03:06, 18 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::reCaptcha is a piece of poop, security-wise.  I&#039;m also reluctant to add more extensions at the moment, due to performance issues, BUT.  Find something simple and lightweight to REPLACE reCaptcha, and we can talk. --[[User:McFly|McFly]] 05:38, 15 January 2013 (UTC)&lt;br /&gt;
:::$wgSpamRegex isn&#039;t an extension, it&#039;s a line of code you can add various banned words to (i.e., if &amp;quot;viagra&amp;quot; is in the list and someone tries to save a page that includes it, the page wouldn&#039;t save and they&#039;d get a error message telling them why it wouldn&#039;t save. - [[User:SanityOrMadness|SanityOrMadness]] 07:29, 15 January 2013 (UTC)&lt;br /&gt;
::::You know what WASN&#039;T on?  wgEmailConfirmToEdit.  That may make a LOT more sense, as I&#039;d wager that spambots aren&#039;t actually including legit emails.  Email authentication is NOT the same thing. --[[User:McFly|McFly]] 16:50, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;br /&gt;
::::Most of what&#039;s left is going to be us rejiggering some templates to more efficient code, and documenting the snot out of things so McFly doesn&#039;t name his first ulcer after us.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:02, 15 January 2013 (UTC)&lt;br /&gt;
::::: http://science.education.nih.gov/home2.nsf/Educational+ResourcesResource+FormatsOnline+Resources+High+School/928BAB9A176A71B585256CCD00634489 :p - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
:::::: Pedantry aside, I CAN name my migraines after you. Stress exacerbates THOSE. --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::::::: Which migraine&#039;s stronger then? Madness or little Sanity? :p - [[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC) &lt;br /&gt;
&lt;br /&gt;
===Stuffs what have gone wrong(er)===&lt;br /&gt;
User CSS files aren&#039;t being called post-move. Basically, the stuff [https://www.mediawiki.org/wiki/Manual:Configuration_settings#CSS.2FJs here] was previously all set true, now it&#039;s set false. [Is [[MediaWiki:Common.css]] even working?] - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
: Compared old LocalSettings.php to new, wgUseSiteJs/wgUseSiteCss were NOT set over there.  If you&#039;re not just making blanket assumptions, please point my not-MediaWiki-understanding ass to the right place.  Remember, I built the house, but others (Scout?  Derik?) actually laid out the rooms and installed the appliances.  My understanding of Mediawiki extends out to &amp;quot;Ooh, shiny mediawiki package in apt repositories...&amp;quot;  Anything else is a &#039;&#039;&#039;Wild. Ass. Guess.&#039;&#039;&#039; --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
::I&#039;m not an expert (&#039;&#039;&#039;And I can&#039;t see the Wiki&#039;s LocalSettings.php myself to be sure!&#039;&#039;&#039;), but I have played around with MediaWiki a fair bit, so I&#039;m beyond the &amp;quot;oh, shiny&amp;quot; stage and I know where to look at in http://www.mediawiki.org/wiki/Manual:Contents .&lt;br /&gt;
::For instance, I don&#039;t know what $wgAutoConfirmAge and $wgAutoConfirmCount are currrently set to. If the createpage and upload &#039;&#039;have&#039;&#039; been set, but those two variables are &#039;&#039;not&#039;&#039; set, a fairly minimal barrier would be two days &amp;amp; four edits before you can create pages and upload files - certainly, very few spambots will hang around for two whole days before editing!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAutoConfirmAge = 86400 * 2; # Two days times 86400 seconds/day&lt;br /&gt;
$wgAutoConfirmCount = 4;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::If they HAVEN&#039;T been set, you can add them with:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can create pages:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;createpage&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;createpage&#039;] = true;&lt;br /&gt;
&lt;br /&gt;
# Only users with accounts in autoconfirmed group&lt;br /&gt;
# (registered accounts at least as old as $wgAutoConfirmAge and having at least as many edits as $wgAutoConfirmCount)&lt;br /&gt;
# can upload files:&lt;br /&gt;
$wgGroupPermissions[&#039;*&#039;            ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;user&#039;         ][&#039;upload&#039;] = false;&lt;br /&gt;
$wgGroupPermissions[&#039;autoconfirmed&#039;][&#039;upload&#039;] = true;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
::-[[User:SanityOrMadness|SanityOrMadness]] 10:36, 16 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
===Broken templates===&lt;br /&gt;
{{tl|cal-date}} is broken, but I&#039;m not template savvy enough to fix it. Anyone want to have a go? --[[User:Abates|abates]] 07:17, 16 January 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=User:McFly&amp;diff=777935</id>
		<title>User:McFly</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=User:McFly&amp;diff=777935"/>
		<updated>2013-01-16T15:41:02Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Overall geek, burnout, and person who builds datacenters.  Probably won&#039;t post much in the way of content, but will be quite pleased to help architect the best New New Hosting Solution and keep it from drooling over itself.&lt;br /&gt;
&lt;br /&gt;
: This is a test of the Watchlist system. --[[User:McFly|McFly]] 03:01, 6 June 2009 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: Test from cache02&lt;br /&gt;
:: Test from cache01&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=User:McFly&amp;diff=777934</id>
		<title>User:McFly</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=User:McFly&amp;diff=777934"/>
		<updated>2013-01-16T15:40:04Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Overall geek, burnout, and person who builds datacenters.  Probably won&#039;t post much in the way of content, but will be quite pleased to help architect the best New New Hosting Solution and keep it from drooling over itself.&lt;br /&gt;
&lt;br /&gt;
: This is a test of the Watchlist system. --[[User:McFly|McFly]] 03:01, 6 June 2009 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: Test from cache02&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777817</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777817"/>
		<updated>2013-01-15T20:05:16Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* We are moving very very soon. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== G.I. Joe wiki - a little help? ==&lt;br /&gt;
&lt;br /&gt;
Hello, all. I just wanted to add a request for some help for what should really by this wiki&#039;s sister site, Joepedia, the G.I. Joe Wiki. Now, I posted a similar request on some other sci-fi themed wiki, but the only answer I got was being told that the rules forbid a request from another wiki to be made. Well, I think that was kind of stupid, considering the communal attitude the whole wiki concept represents. BUT, ANYWAY, the Joepedia has been growing over the years, but it&#039;s mostly frequented by a small dedicated group of contributors. Since Transformers and G.I. Joe are so closely linked, I hoped some folks on here would like to help.&lt;br /&gt;
&lt;br /&gt;
I will add that I have no authority over on that site, and I don&#039;t really contribute much, mostly because of the time spent my own website. I&#039;m just a concerned geeky citizen drumming up some support. --[[User:JMM|JMM]] 10:26, 7 September 2012 (EDT)&lt;br /&gt;
:Well, I would, but I really don&#039;t know jack shit about G.I. Joe. And when I think about it, I&#039;m not sure this post belongs here. -- [[User:Spydersix|spyder]] 17:36, 7 September 2012 (EDT)&lt;br /&gt;
::Just looking around for a little help. This seemed like the closest thing to a G.I. Joe wiki out there, and I figured it was worth a try. --[[User:JMM|JMM]] 13:23, 13 September 2012 (EDT)&lt;br /&gt;
::I don&#039;t see a problem with a polite request for assistance or notification that a Joe wiki exists, since there IS some crossover interest. I just don&#039;t know how much &#039;&#039;useful&#039;&#039; crossover interest for the Joe wiki there is from this end outside of what we&#039;ve already done. I mean, we&#039;ve got extensive coverage of the parts of Joe directly involving TFs... I&#039;d say that&#039;s probably going to be the most useful thing we have for you. But, if others wanna try it out...&amp;lt;br&amp;gt;&lt;br /&gt;
::...unless you&#039;re on Wikia.... --[[User:M Sipher|M Sipher]] 13:27, 13 September 2012 (EDT)&lt;br /&gt;
:::Yeah, it was just a quick heads up so people who may be interested are aware. I know a number of people who are equally obsessed with TF and Joe. :) Oh, and yes, it is on Wikia! --[[User:JMM|JMM]] 14:22, 13 September 2012 (EDT)&lt;br /&gt;
::::We did at one point approach a partnership with Joepedia, and even had a template that cross-linked articles we shared. It was just a little premature at the time (which was years ago) as Joepedia was just starting out and often our articles were more complete than theirs, or theirs were just stubs. It looks like they&#039;ve gotten off the ground a bit more now.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:30, 13 September 2012 (EDT)&lt;br /&gt;
:::::Yes, their wiki got started later than this one. They have a small group of dedicated contributers, but the site&#039;s yet to attract the kind of interest this one does. --[[User:JMM|JMM]] 16:34, 13 September 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New stub templates ==&lt;br /&gt;
=== Video game stub template ===&lt;br /&gt;
Does anybody have any objections to a video game stub template? It would look something like this:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This article is still in beta stage.&lt;br /&gt;
 |message_text=&#039;&#039;This video game article is a [[:Category:Video game stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=ProwlTFU.JPG&lt;br /&gt;
 |image_width=40px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Video game stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
If anybody knows of a better picture that would go well with this, please upload it so it can be put in. Thanks! -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:52, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:How about a pic from the story where Prime dies in a video game? Heh if only Beta had ever been in a game, that&#039;d be perfect. --[[Special:Contributions/76.28.76.206|76.28.76.206]] 16:03, 2 October 2012 (EDT)&lt;br /&gt;
::What story was that? And yeah, that woulda been great. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 19:53, 2 October 2012 (EDT)&lt;br /&gt;
:::That would be [[Afterdeath!]]. --[[User:Detour|Detour]] 21:56, 2 October 2012 (EDT)&lt;br /&gt;
::::Well if people really want a picture from that, someone else will have to upload it, as I don&#039;t have access to it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 21:59, 2 October 2012 (EDT)&lt;br /&gt;
:::::[[:Image:Afterdeath-gameoverman.jpg|Right here, dude.]]--[[User:Detour|Detour]] 22:34, 2 October 2012 (EDT)&lt;br /&gt;
::::::Thanks, man. It&#039;s on the &#039;&#039;[[Transformers: Prime - The Game|Prime: The Game]]&#039;&#039; page if you want to see it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:50, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
In addition to the video game stub, I&#039;d like to suggest adding several templates, such as &amp;quot;section stub&amp;quot; and &amp;quot;fiction stub&amp;quot;. Right now, we only have &amp;quot;characer stub fiction&amp;quot; for pages only missing fiction section, but no templates for non-character page missing fiction appearance. While &amp;quot;section stub&amp;quot; can use for articles only missing one or two sections. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:05, 2 October 2012 (EDT)&lt;br /&gt;
:Ok, so I&#039;m gonna go ahead and make the video game one, and TX, if I get around to it later, maybe the others. If not, well, someone else will. Oh, and if I miss an article that the video game one should go on, put it here. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:31, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== Novel stub template ===&lt;br /&gt;
Ok, who has an idea for a picture for a novel stub template? I&#039;m not good with coming up with pictures for these templates. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:11, 20 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
It would look like this like this: &lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This manuscript still needs work.&lt;br /&gt;
 |message_text=&#039;&#039;This novel article is a [[:Category:Novel stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=DOTM Code-Name Hero.jpg&lt;br /&gt;
 |image_width=70px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Novel stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
-- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 10:23, 21 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Megatron Barcode Battler Card ==&lt;br /&gt;
&lt;br /&gt;
Hi, I was wondering if anyone here had come across this Megatron card for the Barcode Battler, or knows where in the Wiki it should go:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Front.jpg|200px]]&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Back.jpg|200px]]&lt;br /&gt;
|}&lt;br /&gt;
It seems to have been released by Toys R Us in 1992 as a promo for the Barcode Battler (which they were trying to sell in store), and was (as far as is known) the only such Transformers card, probably given away with two [http://barcodebattler.co.uk/scans/UK/ToysRUsF.jpg blank] [http://barcodebattler.co.uk/scans/UK/ToysRUsB.jpg cards] (the bottom scan - the middle is from the Barcode Battler box) to add your own barcodes to, and a card wallet.&lt;br /&gt;
&lt;br /&gt;
The text (&amp;quot;Clad in steel, armed to the teeth, nobody toys with us good guys when this moody cool deadly-dudey is around.&amp;quot;) is probably enough to make you want to forget this was ever made (is it really calling Megatron a good guy?), but it&#039;s cropped up in enough eBay sales (occasionally found in Barcode Battler lots with the seller unaware that they&#039;ve got something rare) to make it likely to be genuine.&lt;br /&gt;
&lt;br /&gt;
So does anyone else have any information on it, and whereabouts should this go? [[User:Xensyria|xensyria]] 12:26, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:10, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:I definitely don&#039;t know anything about it, besides that it&#039;s awesome, but if it&#039;s from 1992, then the only Megatron it could be is Megatron (G1), and so it should probably be on his toys/merchandise page.&lt;br /&gt;
:It&#039;s also plausible that someone who knows something about Barcode Battlers should make a short article on them for the wiki, since we have a lot of those &amp;quot;this broader thing had a TF thing released under it&amp;quot; pages. -[[User:LV|LV]] 12:31, 16 October 2012 (EDT)&lt;br /&gt;
::Or...this isn&#039;t anything to do with a licensed Transformers thing? I sort of blindly assumed Hasbro was the entity selling the Barcode Battler in the UK, but the packaging doesn&#039;t seem to support that. It&#039;s hard to believe it&#039;s not intended to be TF Megatron, but I&#039;m also not sure it&#039;s an official product. Especially since this Megatron guy seems to be the boxfront &amp;quot;main character&amp;quot; for the UK Barcode Battler release. -[[User:LV|LV]] 12:37, 16 October 2012 (EDT)&lt;br /&gt;
:::Ah, that&#039;s a possibility, but Barcode Battler was being distributed in most of Europe by Tomy, so they probably gave Toys R Us rights to use Megatron. Perhaps they couldn&#039;t get the rights to use his picture though (as you say, it&#039;s Tomy&#039;s Barcode Battler cover on the card, so anyone who used the card probably wouldn&#039;t think it was supposed to be Megatron). I should also say that 1992 is more of an educated guess than fact, but it&#039;s bound to be somewhere around that.&lt;br /&gt;
:::If it&#039;s offical I don&#039;t mind making a Barcode Battler article (though I&#039;ll have to check out some of the other examples you mention first). [[User:Xensyria|xensyria]] 13:02, 16 October 2012 (EDT)&lt;br /&gt;
::::Wait, I just re-read Wikipedia, and Tomy was rivals with Takara who owned Transformers at the time. Still, I wonder if such big companies would risk a lawsuit over using Megatron, when they had all sorts of other franchises they could use instead; more likely Toys R Us arranged the deal with Hasbro, who they no doubt were one of the biggest retailers for at the time. [[User:Xensyria|xensyria]] 13:04, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:12, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:::::Unlikely to be a Hasbro/TF related thing. In 1992 TFs weren&#039;t even being made in the US and the UK line didn&#039;t have a Megatron, the Decepticons were led by Skyquake at that time. --[[User:Khajidha|Khajidha]] 13:14, 16 October 2012 (EDT)&lt;br /&gt;
:::::Well, this is sort of like with Yu-Gi-Oh&#039;s Space Megatron, Hasbro&#039;s trademark just didn&#039;t apply to things like gaming cards, so Tomy, just like Konami later, was in a safe zone. --[[User:Detour|Detour]] 14:20, 16 October 2012 (EDT)&lt;br /&gt;
::::::Ah, that would explain the &amp;quot;good guys&amp;quot; text as well. It seems to be a U.K. only thing, and though there may not have been Megatron toys there (is there a reference to them not being released in the U.K. on this on the wiki?) the name would have been familiar from the the film. Is there anywhere for similarly unofficial merchandice here, or should it be cast back into the purgatory of its makers&#039; device? [[User:Xensyria|xensyria]] 15:11, 16 October 2012 (EDT)&lt;br /&gt;
:::::::While I never played it, I distinctively remember Barcode Battlers as well, so it&#039;s not a UK-only thing. --[[User:Detour|Detour]] 15:15, 16 October 2012 (EDT)&lt;br /&gt;
::::::::My bad, I mean the Megatron card, which uses the Tomy box art (the U.S. version was by Irwin, and Japan by the developer, Epoch). [[User:Xensyria|xensyria]] 15:22, 16 October 2012 (EDT)&lt;br /&gt;
:::::::::See [[The Transformers (toyline)]] and [[Generation 1 (European toyline)]] for lists of what was released in the US and Europe each year of the original toyline. --[[User:Khajidha|Khajidha]] 15:37, 16 October 2012 (EDT)&lt;br /&gt;
::::::::::Also, in answer to your question about unofficial merchandise, we only cover official products from Hasbro, Takara and their license holders. About the only place that this could really go on this site is the [[trademark]] page, in a similar use as the &amp;quot;Space Megatron&amp;quot; card from Yu-Gi-Oh! --[[User:Khajidha|Khajidha]] 07:53, 18 October 2012 (EDT)&lt;br /&gt;
:::::::::::Thanks to all of you for the info. I&#039;ve added it to the [[Talk:Trademark#Old example: .22Megatron.22 Barcode Battler promo card|trademark talk page]], but will leave it up to you whether it&#039;s a notable enough example to be added to the article or not. [[User:Xensyria|xensyria]] 15:55, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Recent spamming==&lt;br /&gt;
Granted, I haven&#039;t been here all that often, but the recent spamming has me wondering if the perpetrator(s) are using some form of IP hopping. It&#039;s feeling rather hydra-ish at the moment. --[[User:Lonegamer78|Lonegamer78]] 07:22, 18 October 2012 (EDT)&lt;br /&gt;
:I still suggest you add a recaptcha for edits that add external links, at least for new accounts.[[Special:Contributions/192.249.47.177|192.249.47.177]] 14:09, 18 October 2012 (EDT)&lt;br /&gt;
::If that&#039;s possible, I like that idea. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:34, 18 October 2012 (EDT)&lt;br /&gt;
:::What IP guy said. Also, if we disabled all &amp;quot;Talk:/Talk&amp;quot; pages, that&#039;d help a bit. Either way, the latest spambot assault is obliterating the recent changes page. -- [[User:Repowers|Repowers]] 08:21, 24 October 2012 (EDT)&lt;br /&gt;
::::The &amp;quot;Talk:/Talk&amp;quot; thing has been mentioned numerous times in the past, I was actually surprised to see these still popping up. I&#039;m guessing some other wikis have already implemented this, as there seems no other reason for the several &amp;quot;Talk:T/alk&amp;quot; (note order of characters) pages that have popped up recently. --[[User:Khajidha|Khajidha]] 10:03, 24 October 2012 (EDT)&lt;br /&gt;
:::::I don&#039;t care what we do, but we need to do something, and we need to do it now. - [[User:Chris McFeely|Chris McFeely]] 10:09, 24 October 2012 (EDT)&lt;br /&gt;
::::::What McFeely said. This crap needs to stop. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 08:47, 25 October 2012 (EDT)&lt;br /&gt;
:::::::Looking at the recent changes, this is getting worse. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:20, 25 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
According to McFly, anon editing has been eliminated. This kills a lot of it, plus a chunk of human-born vandalism. The next step is that new accounts will get an automated confirmation email with a link that will unlock the new account, which should hopefully take out the other major spambot problems. --[[User:M Sipher|M Sipher]] 18:30, 25 October 2012 (EDT)&lt;br /&gt;
:Leaving those that make accounts just to spam. Well, one step at a time. --[[User:Lonegamer78|Lonegamer78]] 00:29, 26 October 2012 (EDT)&lt;br /&gt;
::Well, there&#039;s not much we can do with dedicated human antagonists. --[[User:M Sipher|M Sipher]] 00:43, 26 October 2012 (EDT)&lt;br /&gt;
:::And, the worst problem was the spambots anyway. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 06:45, 26 October 2012 (EDT)&lt;br /&gt;
::::Rather than blocking all IP editing, did you guys ever try out recaptcha for new accounts or articles?[[User:KrytenKoro|KrytenKoro]] 20:27, 9 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Universe/UT Micromaster combiners ==&lt;br /&gt;
&lt;br /&gt;
There isn&#039;t any general page for these, so I&#039;m putting this here.&lt;br /&gt;
&lt;br /&gt;
Given our treatment of the ROTF/Universe (2008) Bruticus Maximus and Superion sets, I wonder if the Universe (2003) Micromaster combiners whose European releases were branded as Energon ([[Defensor (Universe)|Defensor]], [[Constructicon Devastator (Micromaster)|Constructicon Devastator]]) or Cybertron ([[Superion (Universe)|Superion]], [[Rail Racer (Universe)|Rail Racer]]) should be considered Unicron Trilogy characters.  It&#039;s the same basic situation, except that the nature of Universe (2003) means that just because the European versions are Energon/Cybertron doesn&#039;t mean they&#039;re different guys.  --[[User:Andrusi|Andrusi]] 11:00, 18 October 2012 (EDT)&lt;br /&gt;
:Aren&#039;t they already listed that way? Defensor and Constructicon Devastator have &amp;quot;Energon Autobot&amp;quot; and &amp;quot;Energon Decepticon&amp;quot; categories and Superion and Rail Racer are in the category &amp;quot;Cybertron Autobots&amp;quot;. I haven&#039;t checked the individual team members yet. --[[User:Khajidha|Khajidha]] 12:59, 18 October 2012 (EDT)&lt;br /&gt;
:Just checked the team members and found only one that was not categorized as Energon or Cybertron characters (Long Haul), I added the appropriate category. --[[User:Khajidha|Khajidha]] 13:04, 18 October 2012 (EDT)&lt;br /&gt;
::I guess he&#039;s talking about the continuity identifier at the top? [[Special:Contributions/24.211.29.87|24.211.29.87]] 13:24, 18 October 2012 (EDT)&lt;br /&gt;
:::Ah, that makes sense. I could see something like the one used for [[King Atlas]]. --[[User:Khajidha|Khajidha]] 13:49, 18 October 2012 (EDT)&lt;br /&gt;
::::Yeah, I meant the continuity identifiers (and in the case of some components, like [[Red Alert (Universe)|Red Alert]], the &amp;quot;relation unknown&amp;quot; bio notes).  The categories honestly never occurred to me.  --[[User:Andrusi|Andrusi]] 12:36, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Election Day ==&lt;br /&gt;
&lt;br /&gt;
Perhaps the [[President of the United States]] should be the featured article... just for today.--[[User:Jimsorenson|Jimsorenson]] 10:41, 6 November 2012 (EST)&lt;br /&gt;
:Much as I like the idea, it doesn&#039;t have much of an intro paragraph, which makes it hard to front-page it.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:20, 6 November 2012 (EST)&lt;br /&gt;
::Transtech Optimus and Megatron might also be good choices.[[User:KrytenKoro|KrytenKoro]] 13:02, 6 November 2012 (EST)&lt;br /&gt;
:::[[Democracy]]? --[[User:Emvee|Emvee]] 13:06, 6 November 2012 (EST)&lt;br /&gt;
::::Yeah, that&#039;s got a proper intro paragraph and is actually a fairly nice article. [[User:Jalaguy|Jalaguy]] 13:08, 6 November 2012 (EST)&lt;br /&gt;
:::::We&#039;ve used it on Election Day before, s&#039;why.  --[[User:ItsWalky|ItsWalky]] 13:23, 6 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned ==&lt;br /&gt;
&lt;br /&gt;
Can we... can we just disambiguate WFC/FOC/Prime stuff like we do everything else on this wiki, please?  --[[User:ItsWalky|ItsWalky]] 14:51, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I am still not clear as to why WFC and FOC are treated as franchises of their own rather than specific iterations of the Prime franchise. I would support changing all the disambigs of WFC/FOC/Prime to Prime. --[[User:Khajidha|Khajidha]] 15:03, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::WFC and FOC have their own franchise branding.   For example, the Fall of Cybertron comic is branded as Fall of Cybertron, not as Prime.  When you have a series of related properties with &amp;quot;Transformers: ________&amp;quot; as a shared title with its own logo, that&#039;s a more often than not a franchise.  --[[User:ItsWalky|ItsWalky]] 01:26, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::And for that matter, WFC and FOC encompass even our most strict definition of franchise, as each of them is at minimum a game, a comic, and a toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 03:54, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:So what are you asking for, here, Walky? For [[Optimus Prime (Prime)]] to be at &amp;quot;Optimus Prime (WFC)&amp;quot;? - [[User:Chris McFeely|Chris McFeely]] 05:05, 12 November 2012 (EST)&lt;br /&gt;
::::Yes.  --[[User:ItsWalky|ItsWalky]] 15:15, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::Frankly, I&#039;d love to see Optimus Prime (WFC), Optimus Prime (Prime) and Optimus Prime (RB). --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 12:31, 12 November 2012 (EST)&lt;br /&gt;
:::Why would we part out a character&#039;s page by separate franchises within the same continuity family? --[[User:Detour|Detour]] 13:00, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I agree that some of the disambig&#039;ing is getting pretty mad. Like Aligned Bruticus being at (Prime) due to a piece of concept art for a foreign-market MMO that isn&#039;t even used on the page, for instance. Given that the original reason for overriding (WFC) disambigs was to avoid confusion, it seems pretty ridiculous. I understand the original intention was to help people looking for the show characters, but the same could be said of, say, [[Sideways (RID)|Sideways]], who is disambig&#039;d based on a less well known first appearance rather than a starring cartoon role, and we haven&#039;t changed him. My opinion&#039;s that we should either, as Walky says, abandon the &#039;Prime takes precedence for disambigs&#039; thing, or come up with a more concrete set of guidelines than &#039;the moment they appear in anything the tiniest bit &#039;&#039;Prime&#039;&#039;-y, change the disambig&#039;. [[User:Jalaguy|Jalaguy]] 13:36, 12 November 2012 (EST)&lt;br /&gt;
::As someone who initially advocated for our current methodology, I&#039;d really only intended it for show characters or characters in the Prime toyline. That&#039;s my only real hang-up here, that if a new user comes here after watching the show or picking up a toy, they shouldn&#039;t get tangled up by the fact that we&#039;re insisting on putting (WFC) on the end of something because it debuted in the game. Parentheticals are for ease of use, not dogmatic technicality.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:59, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.  We still have one article per character per continuity family, so it seems the most logical to me to call that the disambiguation and only go deeper when we have two different characters from the same continuity family with the same name.  After all, when you go to the current disambiguation pages, that&#039;s how we describe the character in text.&lt;br /&gt;
It would avoid this entire mess.  Basically, the principal I think we should employ is to use the highest possible level when disambiguating characters.  If a character is unique, no disambiguation necessary.  If only one guy named &#039;Optimus Prime&#039; shows up in Aligned, then call him Optimus Prime (Aligned).  I realized that that means that the Unicron Trilogy and movie franchises, with their rampant name reuse, will tend to go one level deeper... but since that&#039;s what we&#039;re doing today, it shouldn&#039;t be too big of an issue. &lt;br /&gt;
As we&#039;ve seen, the lines between franchises are only getting blurrier, and we have every reason to believe this trend will continue.  In maybe 95% of cases, we really will have only one character per name per continuity family, and then we (and our readers) won&#039;t have to try to figure out where Aligned Prime first popped his head up. --[[User:Jimsorenson|Jimsorenson]] 18:33, 12 November 2012 (EST)&lt;br /&gt;
:I find myself agreeing with this. As someone who was not to long ago just a reader, I can say that disambiguating by continuity family would probably help &#039;&#039;a lot&#039;&#039; of people. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 20:00, 12 November 2012 (EST)&lt;br /&gt;
::If you do that, may I suggest you take the opportunity to come up with a less confusing name for the G1 continuity family that isn&#039;t the same as the franchise. That way there won&#039;t be a bunch of Beast Wars characters with (G1). How about the &amp;quot;inaugural continuity family&amp;quot;? Optimus Prime (Inaugural)&lt;br /&gt;
::Cons&lt;br /&gt;
::*Continuity family names are unofficial for the most part.&lt;br /&gt;
::*Fiction-only dimension hoppers are a bit of a problem. Do they go in their &amp;quot;home&amp;quot; continuity family or the continuity family of the piece of fiction they originated in?&lt;br /&gt;
::*Pros&lt;br /&gt;
::*I would personally feel better about the IDW original characters if they were disambiguated by the G1 continuity family (or the inaugural continuity family) instead of the G1 franchise. - [[User:Starfield|Starfield]] 20:17, 12 November 2012 (EST)&lt;br /&gt;
:If it&#039;s a choice between having (WFC) disambigs on Prime characters or radically changing how we organize the wiki and having to move thousands of articles (who&#039;s going to have time to even do that?), I prefer the former as a solution. --[[User:Abates|abates]] 20:36, 12 November 2012 (EST)&lt;br /&gt;
::In full agreement there. But I do think redirects with other franchise disambigs would be helpful to newcomers. Like someone who may have watched Cybertron but not be aware of the Armada toy who might try to search for &amp;quot;Thundercracker (Cybertron)&amp;quot;, for example. --[[User:Detour|Detour]] 20:49, 12 November 2012 (EST)&lt;br /&gt;
:&#039;&#039;For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.&#039;&#039;&lt;br /&gt;
:Agree.  The only reason we don&#039;t for the Unicron Trilogy is because of the absolutely rampant name reuse, but Prime hasn&#039;t seen that problem.  I think that (in principle) everyone should be disambig&#039;d (Aligned).&lt;br /&gt;
:That or you have to more Breakdown (Prime) to Breakdown (WFC).&lt;br /&gt;
:...also Rescue Bots.  Aligned they are.  -[[User:Derik|Derik]] 00:45, 13 November 2012 (EST)&lt;br /&gt;
::I strongly feel we should stick to using official terms and abbreviations thereof in our disambiguation, and &amp;quot;aligned&amp;quot; is not really official (it was from a Hasbro guy describing their aim as a &amp;quot;new aligned continuity&amp;quot; ISTR). Unless we renamed it to the &amp;quot;Prime continuity family&amp;quot;, but that way possibly lies madness. --[[User:Abates|abates]] 22:33, 13 November 2012 (EST)&lt;br /&gt;
:::I bet you anything that if we looked around we could find someone official referring to it as Aligned.  (If only because we do.)  -[[User:Derik|Derik]] 22:36, 13 November 2012 (EST)&lt;br /&gt;
::::Not that I want to do everything by continuity family, because I absolutely do not, but even &amp;quot;Generation 1&amp;quot; started out as a fan term, and &amp;quot;Unicron Trilogy&amp;quot; was based on something Aaron Archer said once but became widespread because the Wiki used it.  &amp;quot;Aligned,&amp;quot; another thing said once by Hasbro, is no different.  But again, argh, no, disambiging by continuity family raises more headaches than it solves.  UT isn&#039;t the only continuity family where name reuse is rampant.  --[[User:ItsWalky|ItsWalky]] 01:08, 14 November 2012 (EST)&lt;br /&gt;
:::::Yeah, &#039;&#039;colossal&#039;&#039; headaches if we tried to smoosh the various comic and toy characters from each movie&#039;s ancillary franchise together.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:22, 14 November 2012 (EST)&lt;br /&gt;
::::::Would it be?  If they&#039;re different characters, they&#039;re different characters.  So, Sentinel Prime would go from Sentienl Prime (ROTF) to Sentinel Prime (Movie).  He&#039;s a good example of a confusing disambiuation.  He&#039;s the villain in movie 3, but is at movie 2 because of an unnamed montage sequence.  Someone like movie Devastator, who is two separate characters, would remain exactly as they are.--[[User:Joefan|Joefan]] 12:06, 14 November 2012 (EST)&lt;br /&gt;
:::::::Except if it&#039;s by continuity family, he&#039;d be at &amp;quot;Sentinel Prime (LAMS)&amp;quot;. I think changing our entire way of naming articles and moving thousands of articles just to fix the &amp;quot;(Prime)&amp;quot; issue is like using a nuclear bomb to hammer in a nail. --[[User:Abates|abates]] 14:12, 14 November 2012 (EST)&lt;br /&gt;
::::::::My view on this topic has changed, and I now agree with this. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:44, 14 November 2012 (EST)&lt;br /&gt;
:::::::::My understanding was that we HAD been disambig-ing by Continuity family, and chose NOT to for the Unicron Trilogy and LAMS because the rampant name reuse would make this horribly confusing.  But for Aligned... so far we&#039;ve already gotten &amp;lt;u&amp;gt;three&amp;lt;/u&amp;gt; franchises and virtually no overlap.&lt;br /&gt;
:::::::::I&#039;m going to cite [[Help:Ignore all standards]], which states that &#039;&#039;Standards are good; TFWiki.net likes standards. We&#039;re just not under the illusion that standards are perfect.&#039;&#039; and more importantly &#039;&#039;&#039;&amp;quot;In situations where the standards intended to prevent confusion would instead contribute to it, common sense should rule.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
:::::::::Actually... wasn&#039;t disambiging the UT series by franchise a case of H:IAS?  We decided to do that because the way rampant name reuse rendered other approaches impractical.  -[[User:Derik|Derik]] 14:05, 16 November 2012 (EST)&lt;br /&gt;
::::::::::We don&#039;t disambig by franchise because of the UT.  We disambig by franchise because of EVERYTHING.  UT was never ever ever the straw that broke the camel&#039;s back.  The back came pre-broken.  --[[User:ItsWalky|ItsWalky]] 14:22, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::Whatever.  Can I move Breakdown (Prime) to Breakdown (WFC) or not?  -[[User:Derik|Derik]] 15:35, 16 November 2012 (EST)&lt;br /&gt;
::::::::::::That&#039;s what I&#039;d like to do eventually, but I don&#039;t think we&#039;ve reached a firm enough consensus to do something that big and sprawling.  --[[User:ItsWalky|ItsWalky]] 16:16, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::...he&#039;s got the wrong disambig.  We disambig by the franchise he first appeared in.  His WFC appearance was 6 months prior to his Prime appearance.  Why does that require some sort of confab?&lt;br /&gt;
:::::::::::::: You are preaching to the choir on this point, but previously a consensus was made that Prime stuff operates differently from everything else on the wiki.  I want to overturn that, but until I do, the previous consensus stands.  --[[User:ItsWalky|ItsWalky]] 16:58, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::Of course the answer is &amp;quot;because we&#039;re already in an &amp;lt;tt&amp;gt;Ignore all standards&amp;lt;/tt&amp;gt; situation; we want to disambig them with (Prime) even though that&#039;s against our standard treatment, but we haven&#039;t properly dealt-with/processed/mourned that.&amp;quot;&lt;br /&gt;
:::::::::::::If we give in to a rigid standard and move him (and everyone else) to (WFC), &#039;&#039;I&#039;&#039; think it&#039;s almost inevitable that there will be a pushback against the anti-intuitive mess that makes the disambigs, which will itself lead to either returning them to (Prime) or switching everything to (Aligned)  I just do not see (WFC) for the main characters &#039;standing.&#039;&lt;br /&gt;
:::::::::::::Which would mean that we aren&#039;t facing a choice between standard-vs-nonstandard, but between nonstandard-vs-nonstandard.  And given that choice I think (Aligned) is the better nonstandard.&lt;br /&gt;
:::::::::::::(You may feel free to disagree with my assessment of the outcome of a (WFC) move.  I recognize that my beliefs about &amp;quot;what would probably happen after&amp;quot; are just a hypothesis and should not be treated as fact.)  -[[User:Derik|Derik]] 16:56, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
If we do go to strict franchise of origin on Aligned continuity family characters, we are going to have to be &#039;&#039;super&#039;&#039; diligent on redirects for anyone that appears in the Prime show or toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 17:55, 16 November 2012 (EST)&lt;br /&gt;
: I half-agree, if only because we won&#039;t have to be TOO diligent on the pages that exist already, because that would involve merely not deleting the redirects from the old locations once we move the pages.  It&#039;d be a kind of reverse-diligence, since it would really mean one less step than usual.  Otherwise, yes, if a character is in Prime, there should be a redirect from there. --[[User:ItsWalky|ItsWalky]] 19:13, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
So have people have a chance to mull this over some? I&#039;m leaning towards going back to the &amp;quot;by franchise&amp;quot; rule and having &amp;quot;Breakdown (WFC)&amp;quot; because it&#039;s both simpler than any of the alternatives, and it&#039;s consistent with what we do everywhere else. So long as &amp;quot;Breakdown (Prime)&amp;quot; redirects there, and I don&#039;t see any reason for it not to, people will still be able to find it. --[[User:Abates|abates]] 18:56, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fun fact ==&lt;br /&gt;
&lt;br /&gt;
According to my calculations we had around about 6876 articles when we left Wikia, so we&#039;ve added over 10000 more in the four and a bit years since we left. --[[User:Abates|abates]] 03:27, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:While wikia has added... 929 articles.--[[User:Carrion|Carrion]] 12:09, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::929, really? No offense but I thought it was less. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 13:47, 19 November 2012 (EST) &amp;lt;13:57, 19 November 2012 (EST) edit&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::Hey, be fair, they&#039;ve also added a blog. GUH. --[[User:Khajidha|Khajidha]] 13:49, 19 November 2012 (EST)&lt;br /&gt;
::::And a video library! Because people go to wikis to watch movie trailers! --[[User:Abates|abates]] 14:43, 19 November 2012 (EST)&lt;br /&gt;
:::I was just there the other day... their article for Animated Bulkhead still has an &amp;quot;ongoing&amp;quot; tag... --[[User:Detour|Detour]] 19:06, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Split Pages ==&lt;br /&gt;
&lt;br /&gt;
We have several characters on the list of [[Special:Longpages|Long pages]]–such as [[Kup (G1)]], ‎[[Prowl (G1)]], [[Megatron (G1)]], [[Ratchet (G1)]], and [[Hot Rod (G1)]]. So I suggest to split their G1 cartoon, Marvel comics, and IDW comics section into new pages. – [[User:Thunderweb|Thunderweb]] 01:40, 20 November 2012 (EST)&lt;br /&gt;
:That&#039;s cool and all, but please don&#039;t split off pages if you&#039;re not going to write proper intros/summaries for them and include appropriate categories on the sub pages. --[[User:Abates|abates]] 17:12, 24 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned section breakup is warping canon ==&lt;br /&gt;
&lt;br /&gt;
Currently{{now|21:19, 26 November 2012 (EST)}} our [[Breakdown (Prime)]] page lists all his Prime appearances then ghettotizes out his Fall of Cybertron appearances into a subsequent section as a separate continuity, and thus less important than the cartoon despite coming first.  &lt;br /&gt;
&lt;br /&gt;
[[Bulkhead (Prime)]] and [[Knock Out (Prime)]] are a little better, but the Prime wii game (by the series writers, intended to fit in season 2 albeit without a specific &amp;quot;after this episode and before this episode&amp;quot; date) is broken out as a &#039;&#039;&#039;seperate continuity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traditionally this has been our way of dealing with games because they are a secondary media; being sorta warped reflections of some core media with (for the most part) minimal contribution to continuity.  But, you know, Aligned is different.  The War for Cybertron / Fall of Cybertron games are part of the same continuity, occurring before the cartoon.  We sort of rolled our eyes when Hasbro first insisted on this (mostly because the [[Transformers: Exodus]] novel doesn&#039;t fit well with the game &#039;&#039;or&#039;&#039; the cartoon.)  But the reality increasingly is that they &#039;&#039;&#039;are&#039;&#039;&#039; one continuity.  Hell, this is a quote from an interview w/ John Barber, writer of [[Rage of the Dinobots]].&lt;br /&gt;
&lt;br /&gt;
{{quote|JB: The Transformers story has been going on continuously for a very long time, and I think it’s fair to say the Prime universe is working to take the best elements of every expression and build a world. What’s really exciting is that what we’re doing in the comic is going to impact this world across various mediums. So, it isn’t a case where we’re doing a book that’s subservient to the TV show—we’re doing an all-new story set in that same universe, and the stories we tell are going to be reflected in the shows and the novels and everything else. It’s “canon.” Which is cool, and sort of rare and unique.&lt;br /&gt;
&lt;br /&gt;
RS: The book is a truly cross-media venture tying in with the upcoming game Fall of Cybertron as well as the Transformers Prime series, how much of a &#039;juggling act&#039; is it to coordinate the story between the different outlets?&lt;br /&gt;
&lt;br /&gt;
JB: Fortunately I get to work with some of the best people in the business. Michael Kelly, who’s Hasbro’s Director of Global Publishing, is a great friend and somebody I get to work with very closely. He coordinates with the Transformers brand team at Hasbro—which contains some really good friends of mine, too. Plus I’ll talk to the folks at Random House, and we’re constantly emailing with everybody at High Moon, who produce FALL OF CYBERTRON, so while there are a lot of moving parts, we’re all talking. And we’re all building toward the same goals of good storytelling and a cohesive worldview.&lt;br /&gt;
&lt;br /&gt;
Also—the new Prime comic is being written by Mike Johnson and Mairghread Scott, both of whom—in addition to being comics writers, both write for thePrime TV show. So they know what’s what.|John Barber|[http://www.aintitcool.com/node/58236 AICN COMICS Q&amp;amp;@: Russ Sheath talks to IDW&#039;s John Barber about TRANSFORMERS PRIME: RAGE OF THE DINOBOTS!]}}&lt;br /&gt;
&lt;br /&gt;
Messy as it was for the rollout, the people producing the stuff &#039;&#039;&#039;intend for it to be one universe and are writing it at such&#039;&#039;&#039;.  And the various franchises &#039;&#039;&#039;are&#039;&#039;&#039; slowly converging as a result.&lt;br /&gt;
&lt;br /&gt;
We &amp;lt;u&amp;gt;need&amp;lt;/u&amp;gt; to consolidate these sections under a single &amp;quot;Aligned continuity&amp;quot; header.  Because the way we&#039;re doing it right now is fucking things up.  &lt;br /&gt;
&lt;br /&gt;
(And no we can&#039;t have WFC/Prime subsection headers for the same reason we can&#039;t separate the Movieverse prequel minis, they interleve.  The games don&#039;t deal with Prime and Megatron&#039;s pre-war history bot the novels and TV shows do mention it.)  -[[User:Derik|Derik]] 21:19, 26 November 2012 (EST)&lt;br /&gt;
: Yeah, I think the way we do it now is better-organized.  Video game stuff, no matter how high-profile it is, tends to be overwritten by the &amp;quot;real&amp;quot; stories that later adapt it.  I&#039;d rather keep stuff separated by medium.  --[[User:ItsWalky|ItsWalky]] 22:28, 26 November 2012 (EST)&lt;br /&gt;
::Agreed. There&#039;s no way to kludge it all together under one heading without either ignoring some details or presenting them in a vague, unhelpful manner, given the contradictions that exist. You cite the Prime game, but at no point in season 2 do the Decepticons EVER consist of Megatron, Starscream, Airachnid and Dreadwing at the same time. It can&#039;t fit. And your other example - it&#039;s all well and good to quote that Barber quote, Derik, but the preview for &amp;quot;Rage of the Dinobots&amp;quot; alone has shown Grimlock present on Cybertron, Sludge being alive and Blast Off dying at a point when in the games, Grimlock has vanished, Sludge has died and Blast Off needs to be alive. (Not to say that the comic might not address these points, it&#039;s just the example foremost in my brain as it&#039;s been discussed recently.) - [[User:Chris McFeely|Chris McFeely]] 05:16, 27 November 2012 (EST)&lt;br /&gt;
:::Chris, the only contradiction we&#039;ve seen in the Rage of the Dinobots comic preview thus far is Sludge being alive. It&#039;s set after the Ark left, during which Grimlock &#039;&#039;was&#039;&#039; still on Cybertron. And Blast Off being there ties in with Jazz and Jetfire having knocked Bruticus off the Ark before it went through the space bridge. He was last seen plummeting, seemingly, back to Cybertron; and judging by this comic, it looks like he made it.&lt;br /&gt;
:::Now, as for my thoughts on the reorganization of the Aligned fiction sections, I offer a counterproposal. Keep each section separate as they are, but I&#039;d feel more confortable with the WFC and FOC sections place above the Prime sections to coincide with their chronological placement in the timeline. Perhaps put the Exodus section first, then the WFC sections, then the FOC comic section, the FOC the game, then Exiles or Rage of the Dinobots (depending on how that comic with play out will determent if it&#039;s better set before or after Exiles), then the Prime comic, then the Prime cartoon, then the Prime game, and then the Rescue Bots cartoon. Each keeps its own section, but arranged in as close to chronological order as possible. --[[User:Sabrblade|Sabrblade]] 12:20, 27 November 2012 (EST)&lt;br /&gt;
::::I don&#039;t understand how putting some of the video game stuff outside of the video game section is intuitive, because presumably we&#039;d be keeping the Prime game stuff down below.  --[[User:ItsWalky|ItsWalky]] 12:23, 27 November 2012 (EST)&lt;br /&gt;
:::::I&#039;m saying to treat the games as fiction themselves instead of a second tier category, since, unlike previous continuities, they&#039;re of a greater importance to their master continuity than any past games have ever been. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::The [[Breakdown (Prime)]] article separates along &#039;&#039;&#039;Fiction&#039;&#039;&#039; and &#039;&#039;&#039;Games&#039;&#039;&#039;, placing the WFC/FOC games in the latter when they are part of the same body of fiction.  Even if you don&#039;t want to place them in the same continuity, they should both be in the &#039;&#039;&#039;Fiction&#039;&#039;&#039; header.&lt;br /&gt;
::::::The separate header for games system has its origins in the traditional relationship of games to other fiction, where they present a wildly divergent or exclusive or alternate version of another existing franchise or story.  These are primary story material which have no &#039;primary story&#039; they present an alternate version of because they &#039;&#039;are&#039;&#039; the primary story.  You can&#039;t ghettoize them as &amp;quot;something other than fiction.&amp;quot;  -[[User:Derik|Derik]] 17:28, 27 November 2012 (EST)&lt;br /&gt;
:::::::That&#039;s what I&#039;m saying. Putting the individual video game subsections into the main fiction section instead of putting them in a separate video game section since the games aren&#039;t a second tier of the main story this time. --[[User:Sabrblade|Sabrblade]] 17:37, 27 November 2012 (EST)&lt;br /&gt;
::::I realize this isn&#039;t the time or place for this, but regarding those points, I&#039;ll say that the clear implication at the end of FoC is that Grimlock has vanished through the spacebridge (he doesn&#039;t get out before the explosion and the Dinobots watch as something shoots up the beam into the portal), and as the Ark is the &#039;&#039;last&#039;&#039; of the vessels to leave in the game, it can&#039;t fit with what we&#039;re seeing here with Blast Off&#039;s timeline. - [[User:Chris McFeely|Chris McFeely]] 12:26, 27 November 2012 (EST)&lt;br /&gt;
:::::I never got the impression that Grimlock got sent through the space bridge. His fate was rather amibiguous to the nth degree, leaving plenty open room for him to still be on Cybertron after the game. He&#039;s running away, there&#039;s a blinding light, and then the scene cuts away. for all we know, he could have fallen off the platform he was on and plummeted far to the ground below, away from the space bridge&#039;s reach (though he&#039;d be in for some serious repairs after a fall form that height). As for the other ships, we know that the planet was completely abandoned by the present day, so the Dinobots and Wreckers would have had to have gotten off the planet somehow and at some point. Just because the Ark was the last vessel to leave during the Great Exodus doesn&#039;t mean there weren&#039;t more ships set aside in reserve for or built later by those who stayed behind so they could eventually leave when the time would come for them to do so &#039;&#039;after&#039;&#039; the Great Exodus. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::And thus, we see the the hand-wringing necessary to align everything. - [[User:Chris McFeely|Chris McFeely]] 12:50, 27 November 2012 (EST)&lt;br /&gt;
:::::::Pun not intended.  --[[User:ItsWalky|ItsWalky]] 13:39, 27 November 2012 (EST)&lt;br /&gt;
:::::::Yeah, and until we get canonical answers to things like where the Prime game or Optimus/Bumblebee&#039;s appearances in Rescue Bots fit, sticking everything under one header is just not possible. --[[User:Abates|abates]] 14:59, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
I think my main qualm here is that every time someone tries to make the case that Aligned is somehow &#039;&#039;different&#039;&#039; and thus deserves us altering the way we treat it relative to other continuity families, we end up with &#039;&#039;even more&#039;&#039; examples of how Aligned is pretty much a branching, loosely-connected thing &#039;&#039;just like every other continuity family&#039;&#039;. I mean sure, it&#039;ll never get quite to the point of how spread out the G1 continuity family is. Regardless, this is no different from how obvious it was that Bay&#039;s writers didn&#039;t give a damn about the movie comics, and so forth.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:49, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s very easy to say &amp;quot;this doesn&#039;t seem to fit&amp;quot; but Barber says he&#039;s coordinating his story with High Moon Studios so there aren&#039;t any conflicts.&lt;br /&gt;
:The people writing these things are &#039;&#039;trying&#039;&#039; to make them one continuity, damnit!  Do we have to fight them this hard?  -[[User:Derik|Derik]] 13:22, 27 November 2012 (EST)&lt;br /&gt;
::And IDW &#039;&#039;tried&#039;&#039; to make the comics jive with the live-action movies, and Barber himself is the one that had to get the mop whenever that didn&#039;t work out. Heck, Barber had early drafts of the movie scripts in many cases, and ended up drawing off of concepts that ultimately weren&#039;t even used in the movies.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 20:07, 27 November 2012 (EST)&lt;br /&gt;
:::I cant&#039; tell if you&#039;re saying IDW succeeded or not, there&#039;s a lot of handwaving in the IDW timeline but it mostly works, largely thanks to Barber bending over backwards to explain how the DotM conspiracy could possibly be present during the 2007 movie and somehow miss Megatron.  ;)  -[[User:Derik|Derik]] 00:05, 28 November 2012 (EST)&lt;br /&gt;
::::I&#039;m not faulting the man&#039;s efforts, and certainly he must have won a No-Prize back in the day from the Merry Marvel Marching Squad, but all I&#039;m really saying is &#039;&#039;this is nothing new&#039;&#039;.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:43, 28 November 2012 (EST)&lt;br /&gt;
:::::What are you saying? The Movieverse comics and the films are in the same continuity. Just read the [[Movie continuity]] page. I don&#039;t care so much how the fiction is listed in character pages, but I&#039;d like to see the [[Aligned continuity family]] page moved to &amp;quot;Aligned continuity&amp;quot; and the appropriate changes made to reflect the fact that the Aligned stuff is all &#039;&#039;officially&#039;&#039; the same continuity. Officially! Nobody in G1 tried to say &amp;quot;all this stuff is in the same continuity.&amp;quot; - [[User:Starfield|Starfield]] 11:10, 28 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== James Roberts notes ==&lt;br /&gt;
&lt;br /&gt;
As self-referencial as Roberts&#039; work gets, most of the notes sections on MTMTE pages are getting ridiculously long. Some of them have become big blocks of text that cover an entire screen. Is there any way we can break these down into smaller subsections? &#039;&#039;&amp;quot;Roberts referencing Roberts&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Roberts referencing other stories&amp;quot;&#039;&#039;? &#039;&#039;&amp;quot;Story notes&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Easter eggs&amp;quot;&#039;&#039;?--[[User:Xaaron|Xaaron]] 09:52, 13 December 2012 (EST)&lt;br /&gt;
: I don&#039;t think any of the notes sections for Roberts stories are &amp;quot;ridiculously long.&amp;quot;  --[[User:ItsWalky|ItsWalky]] 10:41, 13 December 2012 (EST)&lt;br /&gt;
:: Four of the last five regular issues have Notes sections that cover my entire monitor. One big screen of bullet points. It&#039;s aesthetically unpleasing, my eyes glaze over just looking at it, and I can&#039;t be the only one. We discourage big blocks of text in the History sections, and this isn&#039;t much different. &lt;br /&gt;
:: I&#039;m not saying the Notes themselves aren&#039;t &amp;quot;note-worthy&amp;quot;. It just...doesn&#039;t look good. I think an effort could be made to make it easier on the eyes. More images in that section, or some sub-sections to break up the bullet points is not unreasonable to suggest. --[[User:Xaaron|Xaaron]] 11:12, 13 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Things that don&#039;t exist&amp;quot; category ==&lt;br /&gt;
&lt;br /&gt;
FYI, readers that don&#039;t have accounts can&#039;t access this category through articles because they&#039;re blocked from the editing page, which the red link automatically takes them to. [[User:Mimi|Mimi]] 02:52, 18 December 2012 (EST)&lt;br /&gt;
:Hmm, we could possibly use javascript to amend links to it to point to http://tfwiki.net/wiki/Category:Things_that_don%27t_exist instead, which does work for logged out users. --[[User:Abates|abates]] 03:06, 18 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::reCaptcha is a piece of poop, security-wise.  I&#039;m also reluctant to add more extensions at the moment, due to performance issues, BUT.  Find something simple and lightweight to REPLACE reCaptcha, and we can talk. --[[User:McFly|McFly]] 05:38, 15 January 2013 (UTC)&lt;br /&gt;
:::$wgSpamRegex isn&#039;t an extension, it&#039;s a line of code you can add various banned words to (i.e., if &amp;quot;viagra&amp;quot; is in the list and someone tries to save a page that includes it, the page wouldn&#039;t save and they&#039;d get a error message telling them why it wouldn&#039;t save. - [[User:SanityOrMadness|SanityOrMadness]] 07:29, 15 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;br /&gt;
::::Most of what&#039;s left is going to be us rejiggering some templates to more efficient code, and documenting the snot out of things so McFly doesn&#039;t name his first ulcer after us.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:02, 15 January 2013 (UTC)&lt;br /&gt;
::::: http://science.education.nih.gov/home2.nsf/Educational+ResourcesResource+FormatsOnline+Resources+High+School/928BAB9A176A71B585256CCD00634489 :p - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
:::::: Pedantry aside, I CAN name my migraines after you. Stress exacerbates THOSE. --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
===Stuffs what have gone wrong(er)===&lt;br /&gt;
User CSS files aren&#039;t being called post-move. Basically, the stuff [https://www.mediawiki.org/wiki/Manual:Configuration_settings#CSS.2FJs here] was previously all set true, now it&#039;s set false. [Is [[MediaWiki:Common.css]] even working?] - [[User:SanityOrMadness|SanityOrMadness]] 07:25, 15 January 2013 (UTC)&lt;br /&gt;
: Compared old LocalSettings.php to new, wgUseSiteJs/wgUseSiteCss were NOT set over there.  If you&#039;re not just making blanket assumptions, please point my not-MediaWiki-understanding ass to the right place.  Remember, I built the house, but others (Scout?  Derik?) actually laid out the rooms and installed the appliances.  My understanding of Mediawiki extends out to &amp;quot;Ooh, shiny mediawiki package in apt repositories...&amp;quot;  Anything else is a &#039;&#039;&#039;Wild. Ass. Guess.&#039;&#039;&#039; --[[User:McFly|McFly]] 20:05, 15 January 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777764</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777764"/>
		<updated>2013-01-15T05:38:32Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Continuing spam */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== G.I. Joe wiki - a little help? ==&lt;br /&gt;
&lt;br /&gt;
Hello, all. I just wanted to add a request for some help for what should really by this wiki&#039;s sister site, Joepedia, the G.I. Joe Wiki. Now, I posted a similar request on some other sci-fi themed wiki, but the only answer I got was being told that the rules forbid a request from another wiki to be made. Well, I think that was kind of stupid, considering the communal attitude the whole wiki concept represents. BUT, ANYWAY, the Joepedia has been growing over the years, but it&#039;s mostly frequented by a small dedicated group of contributors. Since Transformers and G.I. Joe are so closely linked, I hoped some folks on here would like to help.&lt;br /&gt;
&lt;br /&gt;
I will add that I have no authority over on that site, and I don&#039;t really contribute much, mostly because of the time spent my own website. I&#039;m just a concerned geeky citizen drumming up some support. --[[User:JMM|JMM]] 10:26, 7 September 2012 (EDT)&lt;br /&gt;
:Well, I would, but I really don&#039;t know jack shit about G.I. Joe. And when I think about it, I&#039;m not sure this post belongs here. -- [[User:Spydersix|spyder]] 17:36, 7 September 2012 (EDT)&lt;br /&gt;
::Just looking around for a little help. This seemed like the closest thing to a G.I. Joe wiki out there, and I figured it was worth a try. --[[User:JMM|JMM]] 13:23, 13 September 2012 (EDT)&lt;br /&gt;
::I don&#039;t see a problem with a polite request for assistance or notification that a Joe wiki exists, since there IS some crossover interest. I just don&#039;t know how much &#039;&#039;useful&#039;&#039; crossover interest for the Joe wiki there is from this end outside of what we&#039;ve already done. I mean, we&#039;ve got extensive coverage of the parts of Joe directly involving TFs... I&#039;d say that&#039;s probably going to be the most useful thing we have for you. But, if others wanna try it out...&amp;lt;br&amp;gt;&lt;br /&gt;
::...unless you&#039;re on Wikia.... --[[User:M Sipher|M Sipher]] 13:27, 13 September 2012 (EDT)&lt;br /&gt;
:::Yeah, it was just a quick heads up so people who may be interested are aware. I know a number of people who are equally obsessed with TF and Joe. :) Oh, and yes, it is on Wikia! --[[User:JMM|JMM]] 14:22, 13 September 2012 (EDT)&lt;br /&gt;
::::We did at one point approach a partnership with Joepedia, and even had a template that cross-linked articles we shared. It was just a little premature at the time (which was years ago) as Joepedia was just starting out and often our articles were more complete than theirs, or theirs were just stubs. It looks like they&#039;ve gotten off the ground a bit more now.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:30, 13 September 2012 (EDT)&lt;br /&gt;
:::::Yes, their wiki got started later than this one. They have a small group of dedicated contributers, but the site&#039;s yet to attract the kind of interest this one does. --[[User:JMM|JMM]] 16:34, 13 September 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New stub templates ==&lt;br /&gt;
=== Video game stub template ===&lt;br /&gt;
Does anybody have any objections to a video game stub template? It would look something like this:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This article is still in beta stage.&lt;br /&gt;
 |message_text=&#039;&#039;This video game article is a [[:Category:Video game stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=ProwlTFU.JPG&lt;br /&gt;
 |image_width=40px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Video game stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
If anybody knows of a better picture that would go well with this, please upload it so it can be put in. Thanks! -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:52, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:How about a pic from the story where Prime dies in a video game? Heh if only Beta had ever been in a game, that&#039;d be perfect. --[[Special:Contributions/76.28.76.206|76.28.76.206]] 16:03, 2 October 2012 (EDT)&lt;br /&gt;
::What story was that? And yeah, that woulda been great. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 19:53, 2 October 2012 (EDT)&lt;br /&gt;
:::That would be [[Afterdeath!]]. --[[User:Detour|Detour]] 21:56, 2 October 2012 (EDT)&lt;br /&gt;
::::Well if people really want a picture from that, someone else will have to upload it, as I don&#039;t have access to it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 21:59, 2 October 2012 (EDT)&lt;br /&gt;
:::::[[:Image:Afterdeath-gameoverman.jpg|Right here, dude.]]--[[User:Detour|Detour]] 22:34, 2 October 2012 (EDT)&lt;br /&gt;
::::::Thanks, man. It&#039;s on the &#039;&#039;[[Transformers: Prime - The Game|Prime: The Game]]&#039;&#039; page if you want to see it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:50, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
In addition to the video game stub, I&#039;d like to suggest adding several templates, such as &amp;quot;section stub&amp;quot; and &amp;quot;fiction stub&amp;quot;. Right now, we only have &amp;quot;characer stub fiction&amp;quot; for pages only missing fiction section, but no templates for non-character page missing fiction appearance. While &amp;quot;section stub&amp;quot; can use for articles only missing one or two sections. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:05, 2 October 2012 (EDT)&lt;br /&gt;
:Ok, so I&#039;m gonna go ahead and make the video game one, and TX, if I get around to it later, maybe the others. If not, well, someone else will. Oh, and if I miss an article that the video game one should go on, put it here. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:31, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== Novel stub template ===&lt;br /&gt;
Ok, who has an idea for a picture for a novel stub template? I&#039;m not good with coming up with pictures for these templates. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:11, 20 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
It would look like this like this: &lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This manuscript still needs work.&lt;br /&gt;
 |message_text=&#039;&#039;This novel article is a [[:Category:Novel stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=DOTM Code-Name Hero.jpg&lt;br /&gt;
 |image_width=70px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Novel stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
-- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 10:23, 21 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Megatron Barcode Battler Card ==&lt;br /&gt;
&lt;br /&gt;
Hi, I was wondering if anyone here had come across this Megatron card for the Barcode Battler, or knows where in the Wiki it should go:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Front.jpg|200px]]&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Back.jpg|200px]]&lt;br /&gt;
|}&lt;br /&gt;
It seems to have been released by Toys R Us in 1992 as a promo for the Barcode Battler (which they were trying to sell in store), and was (as far as is known) the only such Transformers card, probably given away with two [http://barcodebattler.co.uk/scans/UK/ToysRUsF.jpg blank] [http://barcodebattler.co.uk/scans/UK/ToysRUsB.jpg cards] (the bottom scan - the middle is from the Barcode Battler box) to add your own barcodes to, and a card wallet.&lt;br /&gt;
&lt;br /&gt;
The text (&amp;quot;Clad in steel, armed to the teeth, nobody toys with us good guys when this moody cool deadly-dudey is around.&amp;quot;) is probably enough to make you want to forget this was ever made (is it really calling Megatron a good guy?), but it&#039;s cropped up in enough eBay sales (occasionally found in Barcode Battler lots with the seller unaware that they&#039;ve got something rare) to make it likely to be genuine.&lt;br /&gt;
&lt;br /&gt;
So does anyone else have any information on it, and whereabouts should this go? [[User:Xensyria|xensyria]] 12:26, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:10, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:I definitely don&#039;t know anything about it, besides that it&#039;s awesome, but if it&#039;s from 1992, then the only Megatron it could be is Megatron (G1), and so it should probably be on his toys/merchandise page.&lt;br /&gt;
:It&#039;s also plausible that someone who knows something about Barcode Battlers should make a short article on them for the wiki, since we have a lot of those &amp;quot;this broader thing had a TF thing released under it&amp;quot; pages. -[[User:LV|LV]] 12:31, 16 October 2012 (EDT)&lt;br /&gt;
::Or...this isn&#039;t anything to do with a licensed Transformers thing? I sort of blindly assumed Hasbro was the entity selling the Barcode Battler in the UK, but the packaging doesn&#039;t seem to support that. It&#039;s hard to believe it&#039;s not intended to be TF Megatron, but I&#039;m also not sure it&#039;s an official product. Especially since this Megatron guy seems to be the boxfront &amp;quot;main character&amp;quot; for the UK Barcode Battler release. -[[User:LV|LV]] 12:37, 16 October 2012 (EDT)&lt;br /&gt;
:::Ah, that&#039;s a possibility, but Barcode Battler was being distributed in most of Europe by Tomy, so they probably gave Toys R Us rights to use Megatron. Perhaps they couldn&#039;t get the rights to use his picture though (as you say, it&#039;s Tomy&#039;s Barcode Battler cover on the card, so anyone who used the card probably wouldn&#039;t think it was supposed to be Megatron). I should also say that 1992 is more of an educated guess than fact, but it&#039;s bound to be somewhere around that.&lt;br /&gt;
:::If it&#039;s offical I don&#039;t mind making a Barcode Battler article (though I&#039;ll have to check out some of the other examples you mention first). [[User:Xensyria|xensyria]] 13:02, 16 October 2012 (EDT)&lt;br /&gt;
::::Wait, I just re-read Wikipedia, and Tomy was rivals with Takara who owned Transformers at the time. Still, I wonder if such big companies would risk a lawsuit over using Megatron, when they had all sorts of other franchises they could use instead; more likely Toys R Us arranged the deal with Hasbro, who they no doubt were one of the biggest retailers for at the time. [[User:Xensyria|xensyria]] 13:04, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:12, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:::::Unlikely to be a Hasbro/TF related thing. In 1992 TFs weren&#039;t even being made in the US and the UK line didn&#039;t have a Megatron, the Decepticons were led by Skyquake at that time. --[[User:Khajidha|Khajidha]] 13:14, 16 October 2012 (EDT)&lt;br /&gt;
:::::Well, this is sort of like with Yu-Gi-Oh&#039;s Space Megatron, Hasbro&#039;s trademark just didn&#039;t apply to things like gaming cards, so Tomy, just like Konami later, was in a safe zone. --[[User:Detour|Detour]] 14:20, 16 October 2012 (EDT)&lt;br /&gt;
::::::Ah, that would explain the &amp;quot;good guys&amp;quot; text as well. It seems to be a U.K. only thing, and though there may not have been Megatron toys there (is there a reference to them not being released in the U.K. on this on the wiki?) the name would have been familiar from the the film. Is there anywhere for similarly unofficial merchandice here, or should it be cast back into the purgatory of its makers&#039; device? [[User:Xensyria|xensyria]] 15:11, 16 October 2012 (EDT)&lt;br /&gt;
:::::::While I never played it, I distinctively remember Barcode Battlers as well, so it&#039;s not a UK-only thing. --[[User:Detour|Detour]] 15:15, 16 October 2012 (EDT)&lt;br /&gt;
::::::::My bad, I mean the Megatron card, which uses the Tomy box art (the U.S. version was by Irwin, and Japan by the developer, Epoch). [[User:Xensyria|xensyria]] 15:22, 16 October 2012 (EDT)&lt;br /&gt;
:::::::::See [[The Transformers (toyline)]] and [[Generation 1 (European toyline)]] for lists of what was released in the US and Europe each year of the original toyline. --[[User:Khajidha|Khajidha]] 15:37, 16 October 2012 (EDT)&lt;br /&gt;
::::::::::Also, in answer to your question about unofficial merchandise, we only cover official products from Hasbro, Takara and their license holders. About the only place that this could really go on this site is the [[trademark]] page, in a similar use as the &amp;quot;Space Megatron&amp;quot; card from Yu-Gi-Oh! --[[User:Khajidha|Khajidha]] 07:53, 18 October 2012 (EDT)&lt;br /&gt;
:::::::::::Thanks to all of you for the info. I&#039;ve added it to the [[Talk:Trademark#Old example: .22Megatron.22 Barcode Battler promo card|trademark talk page]], but will leave it up to you whether it&#039;s a notable enough example to be added to the article or not. [[User:Xensyria|xensyria]] 15:55, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Recent spamming==&lt;br /&gt;
Granted, I haven&#039;t been here all that often, but the recent spamming has me wondering if the perpetrator(s) are using some form of IP hopping. It&#039;s feeling rather hydra-ish at the moment. --[[User:Lonegamer78|Lonegamer78]] 07:22, 18 October 2012 (EDT)&lt;br /&gt;
:I still suggest you add a recaptcha for edits that add external links, at least for new accounts.[[Special:Contributions/192.249.47.177|192.249.47.177]] 14:09, 18 October 2012 (EDT)&lt;br /&gt;
::If that&#039;s possible, I like that idea. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:34, 18 October 2012 (EDT)&lt;br /&gt;
:::What IP guy said. Also, if we disabled all &amp;quot;Talk:/Talk&amp;quot; pages, that&#039;d help a bit. Either way, the latest spambot assault is obliterating the recent changes page. -- [[User:Repowers|Repowers]] 08:21, 24 October 2012 (EDT)&lt;br /&gt;
::::The &amp;quot;Talk:/Talk&amp;quot; thing has been mentioned numerous times in the past, I was actually surprised to see these still popping up. I&#039;m guessing some other wikis have already implemented this, as there seems no other reason for the several &amp;quot;Talk:T/alk&amp;quot; (note order of characters) pages that have popped up recently. --[[User:Khajidha|Khajidha]] 10:03, 24 October 2012 (EDT)&lt;br /&gt;
:::::I don&#039;t care what we do, but we need to do something, and we need to do it now. - [[User:Chris McFeely|Chris McFeely]] 10:09, 24 October 2012 (EDT)&lt;br /&gt;
::::::What McFeely said. This crap needs to stop. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 08:47, 25 October 2012 (EDT)&lt;br /&gt;
:::::::Looking at the recent changes, this is getting worse. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:20, 25 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
According to McFly, anon editing has been eliminated. This kills a lot of it, plus a chunk of human-born vandalism. The next step is that new accounts will get an automated confirmation email with a link that will unlock the new account, which should hopefully take out the other major spambot problems. --[[User:M Sipher|M Sipher]] 18:30, 25 October 2012 (EDT)&lt;br /&gt;
:Leaving those that make accounts just to spam. Well, one step at a time. --[[User:Lonegamer78|Lonegamer78]] 00:29, 26 October 2012 (EDT)&lt;br /&gt;
::Well, there&#039;s not much we can do with dedicated human antagonists. --[[User:M Sipher|M Sipher]] 00:43, 26 October 2012 (EDT)&lt;br /&gt;
:::And, the worst problem was the spambots anyway. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 06:45, 26 October 2012 (EDT)&lt;br /&gt;
::::Rather than blocking all IP editing, did you guys ever try out recaptcha for new accounts or articles?[[User:KrytenKoro|KrytenKoro]] 20:27, 9 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Universe/UT Micromaster combiners ==&lt;br /&gt;
&lt;br /&gt;
There isn&#039;t any general page for these, so I&#039;m putting this here.&lt;br /&gt;
&lt;br /&gt;
Given our treatment of the ROTF/Universe (2008) Bruticus Maximus and Superion sets, I wonder if the Universe (2003) Micromaster combiners whose European releases were branded as Energon ([[Defensor (Universe)|Defensor]], [[Constructicon Devastator (Micromaster)|Constructicon Devastator]]) or Cybertron ([[Superion (Universe)|Superion]], [[Rail Racer (Universe)|Rail Racer]]) should be considered Unicron Trilogy characters.  It&#039;s the same basic situation, except that the nature of Universe (2003) means that just because the European versions are Energon/Cybertron doesn&#039;t mean they&#039;re different guys.  --[[User:Andrusi|Andrusi]] 11:00, 18 October 2012 (EDT)&lt;br /&gt;
:Aren&#039;t they already listed that way? Defensor and Constructicon Devastator have &amp;quot;Energon Autobot&amp;quot; and &amp;quot;Energon Decepticon&amp;quot; categories and Superion and Rail Racer are in the category &amp;quot;Cybertron Autobots&amp;quot;. I haven&#039;t checked the individual team members yet. --[[User:Khajidha|Khajidha]] 12:59, 18 October 2012 (EDT)&lt;br /&gt;
:Just checked the team members and found only one that was not categorized as Energon or Cybertron characters (Long Haul), I added the appropriate category. --[[User:Khajidha|Khajidha]] 13:04, 18 October 2012 (EDT)&lt;br /&gt;
::I guess he&#039;s talking about the continuity identifier at the top? [[Special:Contributions/24.211.29.87|24.211.29.87]] 13:24, 18 October 2012 (EDT)&lt;br /&gt;
:::Ah, that makes sense. I could see something like the one used for [[King Atlas]]. --[[User:Khajidha|Khajidha]] 13:49, 18 October 2012 (EDT)&lt;br /&gt;
::::Yeah, I meant the continuity identifiers (and in the case of some components, like [[Red Alert (Universe)|Red Alert]], the &amp;quot;relation unknown&amp;quot; bio notes).  The categories honestly never occurred to me.  --[[User:Andrusi|Andrusi]] 12:36, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Election Day ==&lt;br /&gt;
&lt;br /&gt;
Perhaps the [[President of the United States]] should be the featured article... just for today.--[[User:Jimsorenson|Jimsorenson]] 10:41, 6 November 2012 (EST)&lt;br /&gt;
:Much as I like the idea, it doesn&#039;t have much of an intro paragraph, which makes it hard to front-page it.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:20, 6 November 2012 (EST)&lt;br /&gt;
::Transtech Optimus and Megatron might also be good choices.[[User:KrytenKoro|KrytenKoro]] 13:02, 6 November 2012 (EST)&lt;br /&gt;
:::[[Democracy]]? --[[User:Emvee|Emvee]] 13:06, 6 November 2012 (EST)&lt;br /&gt;
::::Yeah, that&#039;s got a proper intro paragraph and is actually a fairly nice article. [[User:Jalaguy|Jalaguy]] 13:08, 6 November 2012 (EST)&lt;br /&gt;
:::::We&#039;ve used it on Election Day before, s&#039;why.  --[[User:ItsWalky|ItsWalky]] 13:23, 6 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned ==&lt;br /&gt;
&lt;br /&gt;
Can we... can we just disambiguate WFC/FOC/Prime stuff like we do everything else on this wiki, please?  --[[User:ItsWalky|ItsWalky]] 14:51, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I am still not clear as to why WFC and FOC are treated as franchises of their own rather than specific iterations of the Prime franchise. I would support changing all the disambigs of WFC/FOC/Prime to Prime. --[[User:Khajidha|Khajidha]] 15:03, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::WFC and FOC have their own franchise branding.   For example, the Fall of Cybertron comic is branded as Fall of Cybertron, not as Prime.  When you have a series of related properties with &amp;quot;Transformers: ________&amp;quot; as a shared title with its own logo, that&#039;s a more often than not a franchise.  --[[User:ItsWalky|ItsWalky]] 01:26, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::And for that matter, WFC and FOC encompass even our most strict definition of franchise, as each of them is at minimum a game, a comic, and a toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 03:54, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:So what are you asking for, here, Walky? For [[Optimus Prime (Prime)]] to be at &amp;quot;Optimus Prime (WFC)&amp;quot;? - [[User:Chris McFeely|Chris McFeely]] 05:05, 12 November 2012 (EST)&lt;br /&gt;
::::Yes.  --[[User:ItsWalky|ItsWalky]] 15:15, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::Frankly, I&#039;d love to see Optimus Prime (WFC), Optimus Prime (Prime) and Optimus Prime (RB). --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 12:31, 12 November 2012 (EST)&lt;br /&gt;
:::Why would we part out a character&#039;s page by separate franchises within the same continuity family? --[[User:Detour|Detour]] 13:00, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I agree that some of the disambig&#039;ing is getting pretty mad. Like Aligned Bruticus being at (Prime) due to a piece of concept art for a foreign-market MMO that isn&#039;t even used on the page, for instance. Given that the original reason for overriding (WFC) disambigs was to avoid confusion, it seems pretty ridiculous. I understand the original intention was to help people looking for the show characters, but the same could be said of, say, [[Sideways (RID)|Sideways]], who is disambig&#039;d based on a less well known first appearance rather than a starring cartoon role, and we haven&#039;t changed him. My opinion&#039;s that we should either, as Walky says, abandon the &#039;Prime takes precedence for disambigs&#039; thing, or come up with a more concrete set of guidelines than &#039;the moment they appear in anything the tiniest bit &#039;&#039;Prime&#039;&#039;-y, change the disambig&#039;. [[User:Jalaguy|Jalaguy]] 13:36, 12 November 2012 (EST)&lt;br /&gt;
::As someone who initially advocated for our current methodology, I&#039;d really only intended it for show characters or characters in the Prime toyline. That&#039;s my only real hang-up here, that if a new user comes here after watching the show or picking up a toy, they shouldn&#039;t get tangled up by the fact that we&#039;re insisting on putting (WFC) on the end of something because it debuted in the game. Parentheticals are for ease of use, not dogmatic technicality.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:59, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.  We still have one article per character per continuity family, so it seems the most logical to me to call that the disambiguation and only go deeper when we have two different characters from the same continuity family with the same name.  After all, when you go to the current disambiguation pages, that&#039;s how we describe the character in text.&lt;br /&gt;
It would avoid this entire mess.  Basically, the principal I think we should employ is to use the highest possible level when disambiguating characters.  If a character is unique, no disambiguation necessary.  If only one guy named &#039;Optimus Prime&#039; shows up in Aligned, then call him Optimus Prime (Aligned).  I realized that that means that the Unicron Trilogy and movie franchises, with their rampant name reuse, will tend to go one level deeper... but since that&#039;s what we&#039;re doing today, it shouldn&#039;t be too big of an issue. &lt;br /&gt;
As we&#039;ve seen, the lines between franchises are only getting blurrier, and we have every reason to believe this trend will continue.  In maybe 95% of cases, we really will have only one character per name per continuity family, and then we (and our readers) won&#039;t have to try to figure out where Aligned Prime first popped his head up. --[[User:Jimsorenson|Jimsorenson]] 18:33, 12 November 2012 (EST)&lt;br /&gt;
:I find myself agreeing with this. As someone who was not to long ago just a reader, I can say that disambiguating by continuity family would probably help &#039;&#039;a lot&#039;&#039; of people. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 20:00, 12 November 2012 (EST)&lt;br /&gt;
::If you do that, may I suggest you take the opportunity to come up with a less confusing name for the G1 continuity family that isn&#039;t the same as the franchise. That way there won&#039;t be a bunch of Beast Wars characters with (G1). How about the &amp;quot;inaugural continuity family&amp;quot;? Optimus Prime (Inaugural)&lt;br /&gt;
::Cons&lt;br /&gt;
::*Continuity family names are unofficial for the most part.&lt;br /&gt;
::*Fiction-only dimension hoppers are a bit of a problem. Do they go in their &amp;quot;home&amp;quot; continuity family or the continuity family of the piece of fiction they originated in?&lt;br /&gt;
::*Pros&lt;br /&gt;
::*I would personally feel better about the IDW original characters if they were disambiguated by the G1 continuity family (or the inaugural continuity family) instead of the G1 franchise. - [[User:Starfield|Starfield]] 20:17, 12 November 2012 (EST)&lt;br /&gt;
:If it&#039;s a choice between having (WFC) disambigs on Prime characters or radically changing how we organize the wiki and having to move thousands of articles (who&#039;s going to have time to even do that?), I prefer the former as a solution. --[[User:Abates|abates]] 20:36, 12 November 2012 (EST)&lt;br /&gt;
::In full agreement there. But I do think redirects with other franchise disambigs would be helpful to newcomers. Like someone who may have watched Cybertron but not be aware of the Armada toy who might try to search for &amp;quot;Thundercracker (Cybertron)&amp;quot;, for example. --[[User:Detour|Detour]] 20:49, 12 November 2012 (EST)&lt;br /&gt;
:&#039;&#039;For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.&#039;&#039;&lt;br /&gt;
:Agree.  The only reason we don&#039;t for the Unicron Trilogy is because of the absolutely rampant name reuse, but Prime hasn&#039;t seen that problem.  I think that (in principle) everyone should be disambig&#039;d (Aligned).&lt;br /&gt;
:That or you have to more Breakdown (Prime) to Breakdown (WFC).&lt;br /&gt;
:...also Rescue Bots.  Aligned they are.  -[[User:Derik|Derik]] 00:45, 13 November 2012 (EST)&lt;br /&gt;
::I strongly feel we should stick to using official terms and abbreviations thereof in our disambiguation, and &amp;quot;aligned&amp;quot; is not really official (it was from a Hasbro guy describing their aim as a &amp;quot;new aligned continuity&amp;quot; ISTR). Unless we renamed it to the &amp;quot;Prime continuity family&amp;quot;, but that way possibly lies madness. --[[User:Abates|abates]] 22:33, 13 November 2012 (EST)&lt;br /&gt;
:::I bet you anything that if we looked around we could find someone official referring to it as Aligned.  (If only because we do.)  -[[User:Derik|Derik]] 22:36, 13 November 2012 (EST)&lt;br /&gt;
::::Not that I want to do everything by continuity family, because I absolutely do not, but even &amp;quot;Generation 1&amp;quot; started out as a fan term, and &amp;quot;Unicron Trilogy&amp;quot; was based on something Aaron Archer said once but became widespread because the Wiki used it.  &amp;quot;Aligned,&amp;quot; another thing said once by Hasbro, is no different.  But again, argh, no, disambiging by continuity family raises more headaches than it solves.  UT isn&#039;t the only continuity family where name reuse is rampant.  --[[User:ItsWalky|ItsWalky]] 01:08, 14 November 2012 (EST)&lt;br /&gt;
:::::Yeah, &#039;&#039;colossal&#039;&#039; headaches if we tried to smoosh the various comic and toy characters from each movie&#039;s ancillary franchise together.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:22, 14 November 2012 (EST)&lt;br /&gt;
::::::Would it be?  If they&#039;re different characters, they&#039;re different characters.  So, Sentinel Prime would go from Sentienl Prime (ROTF) to Sentinel Prime (Movie).  He&#039;s a good example of a confusing disambiuation.  He&#039;s the villain in movie 3, but is at movie 2 because of an unnamed montage sequence.  Someone like movie Devastator, who is two separate characters, would remain exactly as they are.--[[User:Joefan|Joefan]] 12:06, 14 November 2012 (EST)&lt;br /&gt;
:::::::Except if it&#039;s by continuity family, he&#039;d be at &amp;quot;Sentinel Prime (LAMS)&amp;quot;. I think changing our entire way of naming articles and moving thousands of articles just to fix the &amp;quot;(Prime)&amp;quot; issue is like using a nuclear bomb to hammer in a nail. --[[User:Abates|abates]] 14:12, 14 November 2012 (EST)&lt;br /&gt;
::::::::My view on this topic has changed, and I now agree with this. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:44, 14 November 2012 (EST)&lt;br /&gt;
:::::::::My understanding was that we HAD been disambig-ing by Continuity family, and chose NOT to for the Unicron Trilogy and LAMS because the rampant name reuse would make this horribly confusing.  But for Aligned... so far we&#039;ve already gotten &amp;lt;u&amp;gt;three&amp;lt;/u&amp;gt; franchises and virtually no overlap.&lt;br /&gt;
:::::::::I&#039;m going to cite [[Help:Ignore all standards]], which states that &#039;&#039;Standards are good; TFWiki.net likes standards. We&#039;re just not under the illusion that standards are perfect.&#039;&#039; and more importantly &#039;&#039;&#039;&amp;quot;In situations where the standards intended to prevent confusion would instead contribute to it, common sense should rule.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
:::::::::Actually... wasn&#039;t disambiging the UT series by franchise a case of H:IAS?  We decided to do that because the way rampant name reuse rendered other approaches impractical.  -[[User:Derik|Derik]] 14:05, 16 November 2012 (EST)&lt;br /&gt;
::::::::::We don&#039;t disambig by franchise because of the UT.  We disambig by franchise because of EVERYTHING.  UT was never ever ever the straw that broke the camel&#039;s back.  The back came pre-broken.  --[[User:ItsWalky|ItsWalky]] 14:22, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::Whatever.  Can I move Breakdown (Prime) to Breakdown (WFC) or not?  -[[User:Derik|Derik]] 15:35, 16 November 2012 (EST)&lt;br /&gt;
::::::::::::That&#039;s what I&#039;d like to do eventually, but I don&#039;t think we&#039;ve reached a firm enough consensus to do something that big and sprawling.  --[[User:ItsWalky|ItsWalky]] 16:16, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::...he&#039;s got the wrong disambig.  We disambig by the franchise he first appeared in.  His WFC appearance was 6 months prior to his Prime appearance.  Why does that require some sort of confab?&lt;br /&gt;
:::::::::::::: You are preaching to the choir on this point, but previously a consensus was made that Prime stuff operates differently from everything else on the wiki.  I want to overturn that, but until I do, the previous consensus stands.  --[[User:ItsWalky|ItsWalky]] 16:58, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::Of course the answer is &amp;quot;because we&#039;re already in an &amp;lt;tt&amp;gt;Ignore all standards&amp;lt;/tt&amp;gt; situation; we want to disambig them with (Prime) even though that&#039;s against our standard treatment, but we haven&#039;t properly dealt-with/processed/mourned that.&amp;quot;&lt;br /&gt;
:::::::::::::If we give in to a rigid standard and move him (and everyone else) to (WFC), &#039;&#039;I&#039;&#039; think it&#039;s almost inevitable that there will be a pushback against the anti-intuitive mess that makes the disambigs, which will itself lead to either returning them to (Prime) or switching everything to (Aligned)  I just do not see (WFC) for the main characters &#039;standing.&#039;&lt;br /&gt;
:::::::::::::Which would mean that we aren&#039;t facing a choice between standard-vs-nonstandard, but between nonstandard-vs-nonstandard.  And given that choice I think (Aligned) is the better nonstandard.&lt;br /&gt;
:::::::::::::(You may feel free to disagree with my assessment of the outcome of a (WFC) move.  I recognize that my beliefs about &amp;quot;what would probably happen after&amp;quot; are just a hypothesis and should not be treated as fact.)  -[[User:Derik|Derik]] 16:56, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
If we do go to strict franchise of origin on Aligned continuity family characters, we are going to have to be &#039;&#039;super&#039;&#039; diligent on redirects for anyone that appears in the Prime show or toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 17:55, 16 November 2012 (EST)&lt;br /&gt;
: I half-agree, if only because we won&#039;t have to be TOO diligent on the pages that exist already, because that would involve merely not deleting the redirects from the old locations once we move the pages.  It&#039;d be a kind of reverse-diligence, since it would really mean one less step than usual.  Otherwise, yes, if a character is in Prime, there should be a redirect from there. --[[User:ItsWalky|ItsWalky]] 19:13, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
So have people have a chance to mull this over some? I&#039;m leaning towards going back to the &amp;quot;by franchise&amp;quot; rule and having &amp;quot;Breakdown (WFC)&amp;quot; because it&#039;s both simpler than any of the alternatives, and it&#039;s consistent with what we do everywhere else. So long as &amp;quot;Breakdown (Prime)&amp;quot; redirects there, and I don&#039;t see any reason for it not to, people will still be able to find it. --[[User:Abates|abates]] 18:56, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fun fact ==&lt;br /&gt;
&lt;br /&gt;
According to my calculations we had around about 6876 articles when we left Wikia, so we&#039;ve added over 10000 more in the four and a bit years since we left. --[[User:Abates|abates]] 03:27, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:While wikia has added... 929 articles.--[[User:Carrion|Carrion]] 12:09, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::929, really? No offense but I thought it was less. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 13:47, 19 November 2012 (EST) &amp;lt;13:57, 19 November 2012 (EST) edit&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::Hey, be fair, they&#039;ve also added a blog. GUH. --[[User:Khajidha|Khajidha]] 13:49, 19 November 2012 (EST)&lt;br /&gt;
::::And a video library! Because people go to wikis to watch movie trailers! --[[User:Abates|abates]] 14:43, 19 November 2012 (EST)&lt;br /&gt;
:::I was just there the other day... their article for Animated Bulkhead still has an &amp;quot;ongoing&amp;quot; tag... --[[User:Detour|Detour]] 19:06, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Split Pages ==&lt;br /&gt;
&lt;br /&gt;
We have several characters on the list of [[Special:Longpages|Long pages]]–such as [[Kup (G1)]], ‎[[Prowl (G1)]], [[Megatron (G1)]], [[Ratchet (G1)]], and [[Hot Rod (G1)]]. So I suggest to split their G1 cartoon, Marvel comics, and IDW comics section into new pages. – [[User:Thunderweb|Thunderweb]] 01:40, 20 November 2012 (EST)&lt;br /&gt;
:That&#039;s cool and all, but please don&#039;t split off pages if you&#039;re not going to write proper intros/summaries for them and include appropriate categories on the sub pages. --[[User:Abates|abates]] 17:12, 24 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned section breakup is warping canon ==&lt;br /&gt;
&lt;br /&gt;
Currently{{now|21:19, 26 November 2012 (EST)}} our [[Breakdown (Prime)]] page lists all his Prime appearances then ghettotizes out his Fall of Cybertron appearances into a subsequent section as a separate continuity, and thus less important than the cartoon despite coming first.  &lt;br /&gt;
&lt;br /&gt;
[[Bulkhead (Prime)]] and [[Knock Out (Prime)]] are a little better, but the Prime wii game (by the series writers, intended to fit in season 2 albeit without a specific &amp;quot;after this episode and before this episode&amp;quot; date) is broken out as a &#039;&#039;&#039;seperate continuity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traditionally this has been our way of dealing with games because they are a secondary media; being sorta warped reflections of some core media with (for the most part) minimal contribution to continuity.  But, you know, Aligned is different.  The War for Cybertron / Fall of Cybertron games are part of the same continuity, occurring before the cartoon.  We sort of rolled our eyes when Hasbro first insisted on this (mostly because the [[Transformers: Exodus]] novel doesn&#039;t fit well with the game &#039;&#039;or&#039;&#039; the cartoon.)  But the reality increasingly is that they &#039;&#039;&#039;are&#039;&#039;&#039; one continuity.  Hell, this is a quote from an interview w/ John Barber, writer of [[Rage of the Dinobots]].&lt;br /&gt;
&lt;br /&gt;
{{quote|JB: The Transformers story has been going on continuously for a very long time, and I think it’s fair to say the Prime universe is working to take the best elements of every expression and build a world. What’s really exciting is that what we’re doing in the comic is going to impact this world across various mediums. So, it isn’t a case where we’re doing a book that’s subservient to the TV show—we’re doing an all-new story set in that same universe, and the stories we tell are going to be reflected in the shows and the novels and everything else. It’s “canon.” Which is cool, and sort of rare and unique.&lt;br /&gt;
&lt;br /&gt;
RS: The book is a truly cross-media venture tying in with the upcoming game Fall of Cybertron as well as the Transformers Prime series, how much of a &#039;juggling act&#039; is it to coordinate the story between the different outlets?&lt;br /&gt;
&lt;br /&gt;
JB: Fortunately I get to work with some of the best people in the business. Michael Kelly, who’s Hasbro’s Director of Global Publishing, is a great friend and somebody I get to work with very closely. He coordinates with the Transformers brand team at Hasbro—which contains some really good friends of mine, too. Plus I’ll talk to the folks at Random House, and we’re constantly emailing with everybody at High Moon, who produce FALL OF CYBERTRON, so while there are a lot of moving parts, we’re all talking. And we’re all building toward the same goals of good storytelling and a cohesive worldview.&lt;br /&gt;
&lt;br /&gt;
Also—the new Prime comic is being written by Mike Johnson and Mairghread Scott, both of whom—in addition to being comics writers, both write for thePrime TV show. So they know what’s what.|John Barber|[http://www.aintitcool.com/node/58236 AICN COMICS Q&amp;amp;@: Russ Sheath talks to IDW&#039;s John Barber about TRANSFORMERS PRIME: RAGE OF THE DINOBOTS!]}}&lt;br /&gt;
&lt;br /&gt;
Messy as it was for the rollout, the people producing the stuff &#039;&#039;&#039;intend for it to be one universe and are writing it at such&#039;&#039;&#039;.  And the various franchises &#039;&#039;&#039;are&#039;&#039;&#039; slowly converging as a result.&lt;br /&gt;
&lt;br /&gt;
We &amp;lt;u&amp;gt;need&amp;lt;/u&amp;gt; to consolidate these sections under a single &amp;quot;Aligned continuity&amp;quot; header.  Because the way we&#039;re doing it right now is fucking things up.  &lt;br /&gt;
&lt;br /&gt;
(And no we can&#039;t have WFC/Prime subsection headers for the same reason we can&#039;t separate the Movieverse prequel minis, they interleve.  The games don&#039;t deal with Prime and Megatron&#039;s pre-war history bot the novels and TV shows do mention it.)  -[[User:Derik|Derik]] 21:19, 26 November 2012 (EST)&lt;br /&gt;
: Yeah, I think the way we do it now is better-organized.  Video game stuff, no matter how high-profile it is, tends to be overwritten by the &amp;quot;real&amp;quot; stories that later adapt it.  I&#039;d rather keep stuff separated by medium.  --[[User:ItsWalky|ItsWalky]] 22:28, 26 November 2012 (EST)&lt;br /&gt;
::Agreed. There&#039;s no way to kludge it all together under one heading without either ignoring some details or presenting them in a vague, unhelpful manner, given the contradictions that exist. You cite the Prime game, but at no point in season 2 do the Decepticons EVER consist of Megatron, Starscream, Airachnid and Dreadwing at the same time. It can&#039;t fit. And your other example - it&#039;s all well and good to quote that Barber quote, Derik, but the preview for &amp;quot;Rage of the Dinobots&amp;quot; alone has shown Grimlock present on Cybertron, Sludge being alive and Blast Off dying at a point when in the games, Grimlock has vanished, Sludge has died and Blast Off needs to be alive. (Not to say that the comic might not address these points, it&#039;s just the example foremost in my brain as it&#039;s been discussed recently.) - [[User:Chris McFeely|Chris McFeely]] 05:16, 27 November 2012 (EST)&lt;br /&gt;
:::Chris, the only contradiction we&#039;ve seen in the Rage of the Dinobots comic preview thus far is Sludge being alive. It&#039;s set after the Ark left, during which Grimlock &#039;&#039;was&#039;&#039; still on Cybertron. And Blast Off being there ties in with Jazz and Jetfire having knocked Bruticus off the Ark before it went through the space bridge. He was last seen plummeting, seemingly, back to Cybertron; and judging by this comic, it looks like he made it.&lt;br /&gt;
:::Now, as for my thoughts on the reorganization of the Aligned fiction sections, I offer a counterproposal. Keep each section separate as they are, but I&#039;d feel more confortable with the WFC and FOC sections place above the Prime sections to coincide with their chronological placement in the timeline. Perhaps put the Exodus section first, then the WFC sections, then the FOC comic section, the FOC the game, then Exiles or Rage of the Dinobots (depending on how that comic with play out will determent if it&#039;s better set before or after Exiles), then the Prime comic, then the Prime cartoon, then the Prime game, and then the Rescue Bots cartoon. Each keeps its own section, but arranged in as close to chronological order as possible. --[[User:Sabrblade|Sabrblade]] 12:20, 27 November 2012 (EST)&lt;br /&gt;
::::I don&#039;t understand how putting some of the video game stuff outside of the video game section is intuitive, because presumably we&#039;d be keeping the Prime game stuff down below.  --[[User:ItsWalky|ItsWalky]] 12:23, 27 November 2012 (EST)&lt;br /&gt;
:::::I&#039;m saying to treat the games as fiction themselves instead of a second tier category, since, unlike previous continuities, they&#039;re of a greater importance to their master continuity than any past games have ever been. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::The [[Breakdown (Prime)]] article separates along &#039;&#039;&#039;Fiction&#039;&#039;&#039; and &#039;&#039;&#039;Games&#039;&#039;&#039;, placing the WFC/FOC games in the latter when they are part of the same body of fiction.  Even if you don&#039;t want to place them in the same continuity, they should both be in the &#039;&#039;&#039;Fiction&#039;&#039;&#039; header.&lt;br /&gt;
::::::The separate header for games system has its origins in the traditional relationship of games to other fiction, where they present a wildly divergent or exclusive or alternate version of another existing franchise or story.  These are primary story material which have no &#039;primary story&#039; they present an alternate version of because they &#039;&#039;are&#039;&#039; the primary story.  You can&#039;t ghettoize them as &amp;quot;something other than fiction.&amp;quot;  -[[User:Derik|Derik]] 17:28, 27 November 2012 (EST)&lt;br /&gt;
:::::::That&#039;s what I&#039;m saying. Putting the individual video game subsections into the main fiction section instead of putting them in a separate video game section since the games aren&#039;t a second tier of the main story this time. --[[User:Sabrblade|Sabrblade]] 17:37, 27 November 2012 (EST)&lt;br /&gt;
::::I realize this isn&#039;t the time or place for this, but regarding those points, I&#039;ll say that the clear implication at the end of FoC is that Grimlock has vanished through the spacebridge (he doesn&#039;t get out before the explosion and the Dinobots watch as something shoots up the beam into the portal), and as the Ark is the &#039;&#039;last&#039;&#039; of the vessels to leave in the game, it can&#039;t fit with what we&#039;re seeing here with Blast Off&#039;s timeline. - [[User:Chris McFeely|Chris McFeely]] 12:26, 27 November 2012 (EST)&lt;br /&gt;
:::::I never got the impression that Grimlock got sent through the space bridge. His fate was rather amibiguous to the nth degree, leaving plenty open room for him to still be on Cybertron after the game. He&#039;s running away, there&#039;s a blinding light, and then the scene cuts away. for all we know, he could have fallen off the platform he was on and plummeted far to the ground below, away from the space bridge&#039;s reach (though he&#039;d be in for some serious repairs after a fall form that height). As for the other ships, we know that the planet was completely abandoned by the present day, so the Dinobots and Wreckers would have had to have gotten off the planet somehow and at some point. Just because the Ark was the last vessel to leave during the Great Exodus doesn&#039;t mean there weren&#039;t more ships set aside in reserve for or built later by those who stayed behind so they could eventually leave when the time would come for them to do so &#039;&#039;after&#039;&#039; the Great Exodus. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::And thus, we see the the hand-wringing necessary to align everything. - [[User:Chris McFeely|Chris McFeely]] 12:50, 27 November 2012 (EST)&lt;br /&gt;
:::::::Pun not intended.  --[[User:ItsWalky|ItsWalky]] 13:39, 27 November 2012 (EST)&lt;br /&gt;
:::::::Yeah, and until we get canonical answers to things like where the Prime game or Optimus/Bumblebee&#039;s appearances in Rescue Bots fit, sticking everything under one header is just not possible. --[[User:Abates|abates]] 14:59, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
I think my main qualm here is that every time someone tries to make the case that Aligned is somehow &#039;&#039;different&#039;&#039; and thus deserves us altering the way we treat it relative to other continuity families, we end up with &#039;&#039;even more&#039;&#039; examples of how Aligned is pretty much a branching, loosely-connected thing &#039;&#039;just like every other continuity family&#039;&#039;. I mean sure, it&#039;ll never get quite to the point of how spread out the G1 continuity family is. Regardless, this is no different from how obvious it was that Bay&#039;s writers didn&#039;t give a damn about the movie comics, and so forth.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:49, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s very easy to say &amp;quot;this doesn&#039;t seem to fit&amp;quot; but Barber says he&#039;s coordinating his story with High Moon Studios so there aren&#039;t any conflicts.&lt;br /&gt;
:The people writing these things are &#039;&#039;trying&#039;&#039; to make them one continuity, damnit!  Do we have to fight them this hard?  -[[User:Derik|Derik]] 13:22, 27 November 2012 (EST)&lt;br /&gt;
::And IDW &#039;&#039;tried&#039;&#039; to make the comics jive with the live-action movies, and Barber himself is the one that had to get the mop whenever that didn&#039;t work out. Heck, Barber had early drafts of the movie scripts in many cases, and ended up drawing off of concepts that ultimately weren&#039;t even used in the movies.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 20:07, 27 November 2012 (EST)&lt;br /&gt;
:::I cant&#039; tell if you&#039;re saying IDW succeeded or not, there&#039;s a lot of handwaving in the IDW timeline but it mostly works, largely thanks to Barber bending over backwards to explain how the DotM conspiracy could possibly be present during the 2007 movie and somehow miss Megatron.  ;)  -[[User:Derik|Derik]] 00:05, 28 November 2012 (EST)&lt;br /&gt;
::::I&#039;m not faulting the man&#039;s efforts, and certainly he must have won a No-Prize back in the day from the Merry Marvel Marching Squad, but all I&#039;m really saying is &#039;&#039;this is nothing new&#039;&#039;.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:43, 28 November 2012 (EST)&lt;br /&gt;
:::::What are you saying? The Movieverse comics and the films are in the same continuity. Just read the [[Movie continuity]] page. I don&#039;t care so much how the fiction is listed in character pages, but I&#039;d like to see the [[Aligned continuity family]] page moved to &amp;quot;Aligned continuity&amp;quot; and the appropriate changes made to reflect the fact that the Aligned stuff is all &#039;&#039;officially&#039;&#039; the same continuity. Officially! Nobody in G1 tried to say &amp;quot;all this stuff is in the same continuity.&amp;quot; - [[User:Starfield|Starfield]] 11:10, 28 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== James Roberts notes ==&lt;br /&gt;
&lt;br /&gt;
As self-referencial as Roberts&#039; work gets, most of the notes sections on MTMTE pages are getting ridiculously long. Some of them have become big blocks of text that cover an entire screen. Is there any way we can break these down into smaller subsections? &#039;&#039;&amp;quot;Roberts referencing Roberts&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Roberts referencing other stories&amp;quot;&#039;&#039;? &#039;&#039;&amp;quot;Story notes&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Easter eggs&amp;quot;&#039;&#039;?--[[User:Xaaron|Xaaron]] 09:52, 13 December 2012 (EST)&lt;br /&gt;
: I don&#039;t think any of the notes sections for Roberts stories are &amp;quot;ridiculously long.&amp;quot;  --[[User:ItsWalky|ItsWalky]] 10:41, 13 December 2012 (EST)&lt;br /&gt;
:: Four of the last five regular issues have Notes sections that cover my entire monitor. One big screen of bullet points. It&#039;s aesthetically unpleasing, my eyes glaze over just looking at it, and I can&#039;t be the only one. We discourage big blocks of text in the History sections, and this isn&#039;t much different. &lt;br /&gt;
:: I&#039;m not saying the Notes themselves aren&#039;t &amp;quot;note-worthy&amp;quot;. It just...doesn&#039;t look good. I think an effort could be made to make it easier on the eyes. More images in that section, or some sub-sections to break up the bullet points is not unreasonable to suggest. --[[User:Xaaron|Xaaron]] 11:12, 13 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Things that don&#039;t exist&amp;quot; category ==&lt;br /&gt;
&lt;br /&gt;
FYI, readers that don&#039;t have accounts can&#039;t access this category through articles because they&#039;re blocked from the editing page, which the red link automatically takes them to. [[User:Mimi|Mimi]] 02:52, 18 December 2012 (EST)&lt;br /&gt;
:Hmm, we could possibly use javascript to amend links to it to point to http://tfwiki.net/wiki/Category:Things_that_don%27t_exist instead, which does work for logged out users. --[[User:Abates|abates]] 03:06, 18 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
::reCaptcha is a piece of poop, security-wise.  I&#039;m also reluctant to add more extensions at the moment, due to performance issues, BUT.  Find something simple and lightweight to REPLACE reCaptcha, and we can talk. --[[User:McFly|McFly]] 05:38, 15 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;br /&gt;
::::Most of what&#039;s left is going to be us rejiggering some templates to more efficient code, and documenting the snot out of things so McFly doesn&#039;t name his first ulcer after us.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:02, 15 January 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=777763</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=777763"/>
		<updated>2013-01-15T05:23:56Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Hosting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** As of January 2013, service has been relocated to [http://linode.com/ Linode]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
*** Now Debian 6!&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
*** Functions are now split to three layers:  1 MySQL DB server, 1 Application server, running Apache, ProFTPd, and Postfix, and 2 Squid/Memcached servers.  Load Balancers are run by a Linode-managed NodeBalancer.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
** Still being done this way.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated per Squid cache&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
Noatime is still enabled on all servers, as per Linode defaults.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 6.0, Kernel 3.6.5&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.16&lt;br /&gt;
* Memcached: 1.4.5&lt;br /&gt;
* MySQL: 5.1.66&lt;br /&gt;
* MediaWiki:  1.15.0&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Common.css&amp;diff=777760</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Common.css&amp;diff=777760"/>
		<updated>2013-01-15T03:45:29Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/***** CSS placed here will be applied to all skins on the entire site. *****/&lt;br /&gt;
/* &amp;lt;s&amp;gt;See also: [[MediaWiki:Monobook.css]]&amp;lt;/s&amp;gt; */&lt;br /&gt;
/* Or actually don&#039;t see it, because it&#039;s not useful. Only Common.css and your */&lt;br /&gt;
/* your own custom css files get loaded. */&lt;br /&gt;
/* &amp;lt;pre&amp;gt; */&lt;br /&gt;
&lt;br /&gt;
@import &amp;quot;/mediawiki/index.php?title=User:Derik/Common_tmp.css&amp;amp;action=raw&amp;amp;ctype=text/css&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
/* Mark redirects in Special:Allpages and Special:Watchlist */&lt;br /&gt;
.allpagesredirect { font-style: italic; }&lt;br /&gt;
.watchlistredir { font-style: italic; }&lt;br /&gt;
&lt;br /&gt;
/* Giving headers and TOC a little extra space */&lt;br /&gt;
h2 {margin-top: 20px;}&lt;br /&gt;
&lt;br /&gt;
.toc {margin-top: 20px;}&lt;br /&gt;
&lt;br /&gt;
/* Infobox template style */&lt;br /&gt;
.infobox {&lt;br /&gt;
   border: 1px solid #aaaaaa;&lt;br /&gt;
   background-color: #f9f9f9;&lt;br /&gt;
   color: black;&lt;br /&gt;
   margin-bottom: 0.5em;&lt;br /&gt;
   margin-left: 1em;&lt;br /&gt;
   padding: 0.2em;&lt;br /&gt;
   float: right;&lt;br /&gt;
   clear: right;&lt;br /&gt;
}&lt;br /&gt;
.infobox td,&lt;br /&gt;
.infobox th {&lt;br /&gt;
   vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
.infobox caption {&lt;br /&gt;
   font-size: larger;&lt;br /&gt;
   margin-left: inherit;&lt;br /&gt;
}&lt;br /&gt;
.infobox.bordered {&lt;br /&gt;
   border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
.infobox.bordered td,&lt;br /&gt;
.infobox.bordered th {&lt;br /&gt;
   border: 1px solid #aaaaaa;&lt;br /&gt;
}&lt;br /&gt;
.infobox.bordered .borderless td,&lt;br /&gt;
.infobox.bordered .borderless th {&lt;br /&gt;
   border: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Forum formatting (by -Algorithm &amp;amp; -Splaka) */&lt;br /&gt;
.forumheader {&lt;br /&gt;
     border: 1px solid #aaa;&lt;br /&gt;
     background-color: #f9f9f9; margin-top: 1em; padding: 12px;&lt;br /&gt;
}&lt;br /&gt;
.forumlist td.forum_edited a {&lt;br /&gt;
     color: black; text-decoration: none&lt;br /&gt;
}&lt;br /&gt;
.forumlist td.forum_title a {&lt;br /&gt;
     padding-left: 20px;&lt;br /&gt;
}&lt;br /&gt;
.forumlist td.forum_title a.forum_new {&lt;br /&gt;
     font-weight: bold; background: url(/images/4/4e/Forum_new.gif)&lt;br /&gt;
     center left no-repeat; padding-left: 20px;&lt;br /&gt;
}&lt;br /&gt;
.forumlist td.forum_title a.forum_new:visited {&lt;br /&gt;
     font-weight: normal; background: none; padding-left: 20px;&lt;br /&gt;
}&lt;br /&gt;
.forumlist th.forum_title {&lt;br /&gt;
     padding-left: 20px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Recent changes byte indicators */&lt;br /&gt;
.mw-plusminus-pos { color: #006500; }&lt;br /&gt;
.mw-plusminus-neg { color: #8B0000; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* wikitable/prettytable class for skinning normal tables */&lt;br /&gt;
/* everything below is imported from Monobook.css, blame Derik if it blows up */&lt;br /&gt;
&lt;br /&gt;
table.wikitable,&lt;br /&gt;
table.prettytable {&lt;br /&gt;
  margin: 1em 1em 1em 0;&lt;br /&gt;
  background: #f9f9f9;&lt;br /&gt;
  border: 1px #aaa solid;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.wikitable th, table.wikitable td,&lt;br /&gt;
table.prettytable th, table.prettytable td {&lt;br /&gt;
  border: 1px #aaa solid;&lt;br /&gt;
  padding: 0.2em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.wikitable th,&lt;br /&gt;
table.prettytable th {&lt;br /&gt;
  background: #f2f2f2;&lt;br /&gt;
  text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.wikitable caption,&lt;br /&gt;
table.prettytable caption {&lt;br /&gt;
  margin-left: inherit;&lt;br /&gt;
  margin-right: inherit;&lt;br /&gt;
  font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TELETRAN-1 SPECIFIC BITS */&lt;br /&gt;
&lt;br /&gt;
.tt1_nowrap {&lt;br /&gt;
white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.tt1_storylink {&lt;br /&gt;
  font-size: 10px;&lt;br /&gt;
  background-color: #ececec;&lt;br /&gt;
  border-width: 0 1px 0 1px;&lt;br /&gt;
  border-style: solid;&lt;br /&gt;
  padding: 0 5px 0 5px;&lt;br /&gt;
  border-color: #cccccc;&lt;br /&gt;
  white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#n-mainpage, #n-Prime---The-Game { border-bottom: 1px solid rgb(192, 192, 192) !important; }&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777750</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=777750"/>
		<updated>2013-01-15T01:43:55Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* We are moving very very soon. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== G.I. Joe wiki - a little help? ==&lt;br /&gt;
&lt;br /&gt;
Hello, all. I just wanted to add a request for some help for what should really by this wiki&#039;s sister site, Joepedia, the G.I. Joe Wiki. Now, I posted a similar request on some other sci-fi themed wiki, but the only answer I got was being told that the rules forbid a request from another wiki to be made. Well, I think that was kind of stupid, considering the communal attitude the whole wiki concept represents. BUT, ANYWAY, the Joepedia has been growing over the years, but it&#039;s mostly frequented by a small dedicated group of contributors. Since Transformers and G.I. Joe are so closely linked, I hoped some folks on here would like to help.&lt;br /&gt;
&lt;br /&gt;
I will add that I have no authority over on that site, and I don&#039;t really contribute much, mostly because of the time spent my own website. I&#039;m just a concerned geeky citizen drumming up some support. --[[User:JMM|JMM]] 10:26, 7 September 2012 (EDT)&lt;br /&gt;
:Well, I would, but I really don&#039;t know jack shit about G.I. Joe. And when I think about it, I&#039;m not sure this post belongs here. -- [[User:Spydersix|spyder]] 17:36, 7 September 2012 (EDT)&lt;br /&gt;
::Just looking around for a little help. This seemed like the closest thing to a G.I. Joe wiki out there, and I figured it was worth a try. --[[User:JMM|JMM]] 13:23, 13 September 2012 (EDT)&lt;br /&gt;
::I don&#039;t see a problem with a polite request for assistance or notification that a Joe wiki exists, since there IS some crossover interest. I just don&#039;t know how much &#039;&#039;useful&#039;&#039; crossover interest for the Joe wiki there is from this end outside of what we&#039;ve already done. I mean, we&#039;ve got extensive coverage of the parts of Joe directly involving TFs... I&#039;d say that&#039;s probably going to be the most useful thing we have for you. But, if others wanna try it out...&amp;lt;br&amp;gt;&lt;br /&gt;
::...unless you&#039;re on Wikia.... --[[User:M Sipher|M Sipher]] 13:27, 13 September 2012 (EDT)&lt;br /&gt;
:::Yeah, it was just a quick heads up so people who may be interested are aware. I know a number of people who are equally obsessed with TF and Joe. :) Oh, and yes, it is on Wikia! --[[User:JMM|JMM]] 14:22, 13 September 2012 (EDT)&lt;br /&gt;
::::We did at one point approach a partnership with Joepedia, and even had a template that cross-linked articles we shared. It was just a little premature at the time (which was years ago) as Joepedia was just starting out and often our articles were more complete than theirs, or theirs were just stubs. It looks like they&#039;ve gotten off the ground a bit more now.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:30, 13 September 2012 (EDT)&lt;br /&gt;
:::::Yes, their wiki got started later than this one. They have a small group of dedicated contributers, but the site&#039;s yet to attract the kind of interest this one does. --[[User:JMM|JMM]] 16:34, 13 September 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== New stub templates ==&lt;br /&gt;
=== Video game stub template ===&lt;br /&gt;
Does anybody have any objections to a video game stub template? It would look something like this:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This article is still in beta stage.&lt;br /&gt;
 |message_text=&#039;&#039;This video game article is a [[:Category:Video game stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=ProwlTFU.JPG&lt;br /&gt;
 |image_width=40px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Video game stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
If anybody knows of a better picture that would go well with this, please upload it so it can be put in. Thanks! -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:52, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:How about a pic from the story where Prime dies in a video game? Heh if only Beta had ever been in a game, that&#039;d be perfect. --[[Special:Contributions/76.28.76.206|76.28.76.206]] 16:03, 2 October 2012 (EDT)&lt;br /&gt;
::What story was that? And yeah, that woulda been great. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 19:53, 2 October 2012 (EDT)&lt;br /&gt;
:::That would be [[Afterdeath!]]. --[[User:Detour|Detour]] 21:56, 2 October 2012 (EDT)&lt;br /&gt;
::::Well if people really want a picture from that, someone else will have to upload it, as I don&#039;t have access to it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 21:59, 2 October 2012 (EDT)&lt;br /&gt;
:::::[[:Image:Afterdeath-gameoverman.jpg|Right here, dude.]]--[[User:Detour|Detour]] 22:34, 2 October 2012 (EDT)&lt;br /&gt;
::::::Thanks, man. It&#039;s on the &#039;&#039;[[Transformers: Prime - The Game|Prime: The Game]]&#039;&#039; page if you want to see it. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:50, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
In addition to the video game stub, I&#039;d like to suggest adding several templates, such as &amp;quot;section stub&amp;quot; and &amp;quot;fiction stub&amp;quot;. Right now, we only have &amp;quot;characer stub fiction&amp;quot; for pages only missing fiction section, but no templates for non-character page missing fiction appearance. While &amp;quot;section stub&amp;quot; can use for articles only missing one or two sections. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:05, 2 October 2012 (EDT)&lt;br /&gt;
:Ok, so I&#039;m gonna go ahead and make the video game one, and TX, if I get around to it later, maybe the others. If not, well, someone else will. Oh, and if I miss an article that the video game one should go on, put it here. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:31, 2 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== Novel stub template ===&lt;br /&gt;
Ok, who has an idea for a picture for a novel stub template? I&#039;m not good with coming up with pictures for these templates. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 22:11, 20 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
It would look like this like this: &lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;{{messagebox&lt;br /&gt;
 |header=This manuscript still needs work.&lt;br /&gt;
 |message_text=&#039;&#039;This novel article is a [[:Category:Novel stubs|stub]] and is missing information. You can help &#039;&#039;&#039;{{SITENAME}}&#039;&#039;&#039; by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].&#039;&#039;&lt;br /&gt;
 |image_name=DOTM Code-Name Hero.jpg&lt;br /&gt;
 |image_width=70px&lt;br /&gt;
 |width = 90%&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;[[Category:Novel stubs]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
-- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 10:23, 21 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Megatron Barcode Battler Card ==&lt;br /&gt;
&lt;br /&gt;
Hi, I was wondering if anyone here had come across this Megatron card for the Barcode Battler, or knows where in the Wiki it should go:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Front.jpg|200px]]&lt;br /&gt;
|[[Image:Barcode Battler Megatron Card Back.jpg|200px]]&lt;br /&gt;
|}&lt;br /&gt;
It seems to have been released by Toys R Us in 1992 as a promo for the Barcode Battler (which they were trying to sell in store), and was (as far as is known) the only such Transformers card, probably given away with two [http://barcodebattler.co.uk/scans/UK/ToysRUsF.jpg blank] [http://barcodebattler.co.uk/scans/UK/ToysRUsB.jpg cards] (the bottom scan - the middle is from the Barcode Battler box) to add your own barcodes to, and a card wallet.&lt;br /&gt;
&lt;br /&gt;
The text (&amp;quot;Clad in steel, armed to the teeth, nobody toys with us good guys when this moody cool deadly-dudey is around.&amp;quot;) is probably enough to make you want to forget this was ever made (is it really calling Megatron a good guy?), but it&#039;s cropped up in enough eBay sales (occasionally found in Barcode Battler lots with the seller unaware that they&#039;ve got something rare) to make it likely to be genuine.&lt;br /&gt;
&lt;br /&gt;
So does anyone else have any information on it, and whereabouts should this go? [[User:Xensyria|xensyria]] 12:26, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:10, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:I definitely don&#039;t know anything about it, besides that it&#039;s awesome, but if it&#039;s from 1992, then the only Megatron it could be is Megatron (G1), and so it should probably be on his toys/merchandise page.&lt;br /&gt;
:It&#039;s also plausible that someone who knows something about Barcode Battlers should make a short article on them for the wiki, since we have a lot of those &amp;quot;this broader thing had a TF thing released under it&amp;quot; pages. -[[User:LV|LV]] 12:31, 16 October 2012 (EDT)&lt;br /&gt;
::Or...this isn&#039;t anything to do with a licensed Transformers thing? I sort of blindly assumed Hasbro was the entity selling the Barcode Battler in the UK, but the packaging doesn&#039;t seem to support that. It&#039;s hard to believe it&#039;s not intended to be TF Megatron, but I&#039;m also not sure it&#039;s an official product. Especially since this Megatron guy seems to be the boxfront &amp;quot;main character&amp;quot; for the UK Barcode Battler release. -[[User:LV|LV]] 12:37, 16 October 2012 (EDT)&lt;br /&gt;
:::Ah, that&#039;s a possibility, but Barcode Battler was being distributed in most of Europe by Tomy, so they probably gave Toys R Us rights to use Megatron. Perhaps they couldn&#039;t get the rights to use his picture though (as you say, it&#039;s Tomy&#039;s Barcode Battler cover on the card, so anyone who used the card probably wouldn&#039;t think it was supposed to be Megatron). I should also say that 1992 is more of an educated guess than fact, but it&#039;s bound to be somewhere around that.&lt;br /&gt;
:::If it&#039;s offical I don&#039;t mind making a Barcode Battler article (though I&#039;ll have to check out some of the other examples you mention first). [[User:Xensyria|xensyria]] 13:02, 16 October 2012 (EDT)&lt;br /&gt;
::::Wait, I just re-read Wikipedia, and Tomy was rivals with Takara who owned Transformers at the time. Still, I wonder if such big companies would risk a lawsuit over using Megatron, when they had all sorts of other franchises they could use instead; more likely Toys R Us arranged the deal with Hasbro, who they no doubt were one of the biggest retailers for at the time. [[User:Xensyria|xensyria]] 13:04, 16 October 2012 (EDT) &amp;lt;small&amp;gt;EDIT: 13:12, 16 October 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
:::::Unlikely to be a Hasbro/TF related thing. In 1992 TFs weren&#039;t even being made in the US and the UK line didn&#039;t have a Megatron, the Decepticons were led by Skyquake at that time. --[[User:Khajidha|Khajidha]] 13:14, 16 October 2012 (EDT)&lt;br /&gt;
:::::Well, this is sort of like with Yu-Gi-Oh&#039;s Space Megatron, Hasbro&#039;s trademark just didn&#039;t apply to things like gaming cards, so Tomy, just like Konami later, was in a safe zone. --[[User:Detour|Detour]] 14:20, 16 October 2012 (EDT)&lt;br /&gt;
::::::Ah, that would explain the &amp;quot;good guys&amp;quot; text as well. It seems to be a U.K. only thing, and though there may not have been Megatron toys there (is there a reference to them not being released in the U.K. on this on the wiki?) the name would have been familiar from the the film. Is there anywhere for similarly unofficial merchandice here, or should it be cast back into the purgatory of its makers&#039; device? [[User:Xensyria|xensyria]] 15:11, 16 October 2012 (EDT)&lt;br /&gt;
:::::::While I never played it, I distinctively remember Barcode Battlers as well, so it&#039;s not a UK-only thing. --[[User:Detour|Detour]] 15:15, 16 October 2012 (EDT)&lt;br /&gt;
::::::::My bad, I mean the Megatron card, which uses the Tomy box art (the U.S. version was by Irwin, and Japan by the developer, Epoch). [[User:Xensyria|xensyria]] 15:22, 16 October 2012 (EDT)&lt;br /&gt;
:::::::::See [[The Transformers (toyline)]] and [[Generation 1 (European toyline)]] for lists of what was released in the US and Europe each year of the original toyline. --[[User:Khajidha|Khajidha]] 15:37, 16 October 2012 (EDT)&lt;br /&gt;
::::::::::Also, in answer to your question about unofficial merchandise, we only cover official products from Hasbro, Takara and their license holders. About the only place that this could really go on this site is the [[trademark]] page, in a similar use as the &amp;quot;Space Megatron&amp;quot; card from Yu-Gi-Oh! --[[User:Khajidha|Khajidha]] 07:53, 18 October 2012 (EDT)&lt;br /&gt;
:::::::::::Thanks to all of you for the info. I&#039;ve added it to the [[Talk:Trademark#Old example: .22Megatron.22 Barcode Battler promo card|trademark talk page]], but will leave it up to you whether it&#039;s a notable enough example to be added to the article or not. [[User:Xensyria|xensyria]] 15:55, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Recent spamming==&lt;br /&gt;
Granted, I haven&#039;t been here all that often, but the recent spamming has me wondering if the perpetrator(s) are using some form of IP hopping. It&#039;s feeling rather hydra-ish at the moment. --[[User:Lonegamer78|Lonegamer78]] 07:22, 18 October 2012 (EDT)&lt;br /&gt;
:I still suggest you add a recaptcha for edits that add external links, at least for new accounts.[[Special:Contributions/192.249.47.177|192.249.47.177]] 14:09, 18 October 2012 (EDT)&lt;br /&gt;
::If that&#039;s possible, I like that idea. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:34, 18 October 2012 (EDT)&lt;br /&gt;
:::What IP guy said. Also, if we disabled all &amp;quot;Talk:/Talk&amp;quot; pages, that&#039;d help a bit. Either way, the latest spambot assault is obliterating the recent changes page. -- [[User:Repowers|Repowers]] 08:21, 24 October 2012 (EDT)&lt;br /&gt;
::::The &amp;quot;Talk:/Talk&amp;quot; thing has been mentioned numerous times in the past, I was actually surprised to see these still popping up. I&#039;m guessing some other wikis have already implemented this, as there seems no other reason for the several &amp;quot;Talk:T/alk&amp;quot; (note order of characters) pages that have popped up recently. --[[User:Khajidha|Khajidha]] 10:03, 24 October 2012 (EDT)&lt;br /&gt;
:::::I don&#039;t care what we do, but we need to do something, and we need to do it now. - [[User:Chris McFeely|Chris McFeely]] 10:09, 24 October 2012 (EDT)&lt;br /&gt;
::::::What McFeely said. This crap needs to stop. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 08:47, 25 October 2012 (EDT)&lt;br /&gt;
:::::::Looking at the recent changes, this is getting worse. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 18:20, 25 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
According to McFly, anon editing has been eliminated. This kills a lot of it, plus a chunk of human-born vandalism. The next step is that new accounts will get an automated confirmation email with a link that will unlock the new account, which should hopefully take out the other major spambot problems. --[[User:M Sipher|M Sipher]] 18:30, 25 October 2012 (EDT)&lt;br /&gt;
:Leaving those that make accounts just to spam. Well, one step at a time. --[[User:Lonegamer78|Lonegamer78]] 00:29, 26 October 2012 (EDT)&lt;br /&gt;
::Well, there&#039;s not much we can do with dedicated human antagonists. --[[User:M Sipher|M Sipher]] 00:43, 26 October 2012 (EDT)&lt;br /&gt;
:::And, the worst problem was the spambots anyway. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 06:45, 26 October 2012 (EDT)&lt;br /&gt;
::::Rather than blocking all IP editing, did you guys ever try out recaptcha for new accounts or articles?[[User:KrytenKoro|KrytenKoro]] 20:27, 9 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Universe/UT Micromaster combiners ==&lt;br /&gt;
&lt;br /&gt;
There isn&#039;t any general page for these, so I&#039;m putting this here.&lt;br /&gt;
&lt;br /&gt;
Given our treatment of the ROTF/Universe (2008) Bruticus Maximus and Superion sets, I wonder if the Universe (2003) Micromaster combiners whose European releases were branded as Energon ([[Defensor (Universe)|Defensor]], [[Constructicon Devastator (Micromaster)|Constructicon Devastator]]) or Cybertron ([[Superion (Universe)|Superion]], [[Rail Racer (Universe)|Rail Racer]]) should be considered Unicron Trilogy characters.  It&#039;s the same basic situation, except that the nature of Universe (2003) means that just because the European versions are Energon/Cybertron doesn&#039;t mean they&#039;re different guys.  --[[User:Andrusi|Andrusi]] 11:00, 18 October 2012 (EDT)&lt;br /&gt;
:Aren&#039;t they already listed that way? Defensor and Constructicon Devastator have &amp;quot;Energon Autobot&amp;quot; and &amp;quot;Energon Decepticon&amp;quot; categories and Superion and Rail Racer are in the category &amp;quot;Cybertron Autobots&amp;quot;. I haven&#039;t checked the individual team members yet. --[[User:Khajidha|Khajidha]] 12:59, 18 October 2012 (EDT)&lt;br /&gt;
:Just checked the team members and found only one that was not categorized as Energon or Cybertron characters (Long Haul), I added the appropriate category. --[[User:Khajidha|Khajidha]] 13:04, 18 October 2012 (EDT)&lt;br /&gt;
::I guess he&#039;s talking about the continuity identifier at the top? [[Special:Contributions/24.211.29.87|24.211.29.87]] 13:24, 18 October 2012 (EDT)&lt;br /&gt;
:::Ah, that makes sense. I could see something like the one used for [[King Atlas]]. --[[User:Khajidha|Khajidha]] 13:49, 18 October 2012 (EDT)&lt;br /&gt;
::::Yeah, I meant the continuity identifiers (and in the case of some components, like [[Red Alert (Universe)|Red Alert]], the &amp;quot;relation unknown&amp;quot; bio notes).  The categories honestly never occurred to me.  --[[User:Andrusi|Andrusi]] 12:36, 19 October 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Election Day ==&lt;br /&gt;
&lt;br /&gt;
Perhaps the [[President of the United States]] should be the featured article... just for today.--[[User:Jimsorenson|Jimsorenson]] 10:41, 6 November 2012 (EST)&lt;br /&gt;
:Much as I like the idea, it doesn&#039;t have much of an intro paragraph, which makes it hard to front-page it.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:20, 6 November 2012 (EST)&lt;br /&gt;
::Transtech Optimus and Megatron might also be good choices.[[User:KrytenKoro|KrytenKoro]] 13:02, 6 November 2012 (EST)&lt;br /&gt;
:::[[Democracy]]? --[[User:Emvee|Emvee]] 13:06, 6 November 2012 (EST)&lt;br /&gt;
::::Yeah, that&#039;s got a proper intro paragraph and is actually a fairly nice article. [[User:Jalaguy|Jalaguy]] 13:08, 6 November 2012 (EST)&lt;br /&gt;
:::::We&#039;ve used it on Election Day before, s&#039;why.  --[[User:ItsWalky|ItsWalky]] 13:23, 6 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned ==&lt;br /&gt;
&lt;br /&gt;
Can we... can we just disambiguate WFC/FOC/Prime stuff like we do everything else on this wiki, please?  --[[User:ItsWalky|ItsWalky]] 14:51, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I am still not clear as to why WFC and FOC are treated as franchises of their own rather than specific iterations of the Prime franchise. I would support changing all the disambigs of WFC/FOC/Prime to Prime. --[[User:Khajidha|Khajidha]] 15:03, 11 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::WFC and FOC have their own franchise branding.   For example, the Fall of Cybertron comic is branded as Fall of Cybertron, not as Prime.  When you have a series of related properties with &amp;quot;Transformers: ________&amp;quot; as a shared title with its own logo, that&#039;s a more often than not a franchise.  --[[User:ItsWalky|ItsWalky]] 01:26, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::And for that matter, WFC and FOC encompass even our most strict definition of franchise, as each of them is at minimum a game, a comic, and a toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 03:54, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:So what are you asking for, here, Walky? For [[Optimus Prime (Prime)]] to be at &amp;quot;Optimus Prime (WFC)&amp;quot;? - [[User:Chris McFeely|Chris McFeely]] 05:05, 12 November 2012 (EST)&lt;br /&gt;
::::Yes.  --[[User:ItsWalky|ItsWalky]] 15:15, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::Frankly, I&#039;d love to see Optimus Prime (WFC), Optimus Prime (Prime) and Optimus Prime (RB). --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 12:31, 12 November 2012 (EST)&lt;br /&gt;
:::Why would we part out a character&#039;s page by separate franchises within the same continuity family? --[[User:Detour|Detour]] 13:00, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:I agree that some of the disambig&#039;ing is getting pretty mad. Like Aligned Bruticus being at (Prime) due to a piece of concept art for a foreign-market MMO that isn&#039;t even used on the page, for instance. Given that the original reason for overriding (WFC) disambigs was to avoid confusion, it seems pretty ridiculous. I understand the original intention was to help people looking for the show characters, but the same could be said of, say, [[Sideways (RID)|Sideways]], who is disambig&#039;d based on a less well known first appearance rather than a starring cartoon role, and we haven&#039;t changed him. My opinion&#039;s that we should either, as Walky says, abandon the &#039;Prime takes precedence for disambigs&#039; thing, or come up with a more concrete set of guidelines than &#039;the moment they appear in anything the tiniest bit &#039;&#039;Prime&#039;&#039;-y, change the disambig&#039;. [[User:Jalaguy|Jalaguy]] 13:36, 12 November 2012 (EST)&lt;br /&gt;
::As someone who initially advocated for our current methodology, I&#039;d really only intended it for show characters or characters in the Prime toyline. That&#039;s my only real hang-up here, that if a new user comes here after watching the show or picking up a toy, they shouldn&#039;t get tangled up by the fact that we&#039;re insisting on putting (WFC) on the end of something because it debuted in the game. Parentheticals are for ease of use, not dogmatic technicality.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 14:59, 12 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.  We still have one article per character per continuity family, so it seems the most logical to me to call that the disambiguation and only go deeper when we have two different characters from the same continuity family with the same name.  After all, when you go to the current disambiguation pages, that&#039;s how we describe the character in text.&lt;br /&gt;
It would avoid this entire mess.  Basically, the principal I think we should employ is to use the highest possible level when disambiguating characters.  If a character is unique, no disambiguation necessary.  If only one guy named &#039;Optimus Prime&#039; shows up in Aligned, then call him Optimus Prime (Aligned).  I realized that that means that the Unicron Trilogy and movie franchises, with their rampant name reuse, will tend to go one level deeper... but since that&#039;s what we&#039;re doing today, it shouldn&#039;t be too big of an issue. &lt;br /&gt;
As we&#039;ve seen, the lines between franchises are only getting blurrier, and we have every reason to believe this trend will continue.  In maybe 95% of cases, we really will have only one character per name per continuity family, and then we (and our readers) won&#039;t have to try to figure out where Aligned Prime first popped his head up. --[[User:Jimsorenson|Jimsorenson]] 18:33, 12 November 2012 (EST)&lt;br /&gt;
:I find myself agreeing with this. As someone who was not to long ago just a reader, I can say that disambiguating by continuity family would probably help &#039;&#039;a lot&#039;&#039; of people. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 20:00, 12 November 2012 (EST)&lt;br /&gt;
::If you do that, may I suggest you take the opportunity to come up with a less confusing name for the G1 continuity family that isn&#039;t the same as the franchise. That way there won&#039;t be a bunch of Beast Wars characters with (G1). How about the &amp;quot;inaugural continuity family&amp;quot;? Optimus Prime (Inaugural)&lt;br /&gt;
::Cons&lt;br /&gt;
::*Continuity family names are unofficial for the most part.&lt;br /&gt;
::*Fiction-only dimension hoppers are a bit of a problem. Do they go in their &amp;quot;home&amp;quot; continuity family or the continuity family of the piece of fiction they originated in?&lt;br /&gt;
::*Pros&lt;br /&gt;
::*I would personally feel better about the IDW original characters if they were disambiguated by the G1 continuity family (or the inaugural continuity family) instead of the G1 franchise. - [[User:Starfield|Starfield]] 20:17, 12 November 2012 (EST)&lt;br /&gt;
:If it&#039;s a choice between having (WFC) disambigs on Prime characters or radically changing how we organize the wiki and having to move thousands of articles (who&#039;s going to have time to even do that?), I prefer the former as a solution. --[[User:Abates|abates]] 20:36, 12 November 2012 (EST)&lt;br /&gt;
::In full agreement there. But I do think redirects with other franchise disambigs would be helpful to newcomers. Like someone who may have watched Cybertron but not be aware of the Armada toy who might try to search for &amp;quot;Thundercracker (Cybertron)&amp;quot;, for example. --[[User:Detour|Detour]] 20:49, 12 November 2012 (EST)&lt;br /&gt;
:&#039;&#039;For what it&#039;s worth, I still think that we should do our disambiguations by continuity families.&#039;&#039;&lt;br /&gt;
:Agree.  The only reason we don&#039;t for the Unicron Trilogy is because of the absolutely rampant name reuse, but Prime hasn&#039;t seen that problem.  I think that (in principle) everyone should be disambig&#039;d (Aligned).&lt;br /&gt;
:That or you have to more Breakdown (Prime) to Breakdown (WFC).&lt;br /&gt;
:...also Rescue Bots.  Aligned they are.  -[[User:Derik|Derik]] 00:45, 13 November 2012 (EST)&lt;br /&gt;
::I strongly feel we should stick to using official terms and abbreviations thereof in our disambiguation, and &amp;quot;aligned&amp;quot; is not really official (it was from a Hasbro guy describing their aim as a &amp;quot;new aligned continuity&amp;quot; ISTR). Unless we renamed it to the &amp;quot;Prime continuity family&amp;quot;, but that way possibly lies madness. --[[User:Abates|abates]] 22:33, 13 November 2012 (EST)&lt;br /&gt;
:::I bet you anything that if we looked around we could find someone official referring to it as Aligned.  (If only because we do.)  -[[User:Derik|Derik]] 22:36, 13 November 2012 (EST)&lt;br /&gt;
::::Not that I want to do everything by continuity family, because I absolutely do not, but even &amp;quot;Generation 1&amp;quot; started out as a fan term, and &amp;quot;Unicron Trilogy&amp;quot; was based on something Aaron Archer said once but became widespread because the Wiki used it.  &amp;quot;Aligned,&amp;quot; another thing said once by Hasbro, is no different.  But again, argh, no, disambiging by continuity family raises more headaches than it solves.  UT isn&#039;t the only continuity family where name reuse is rampant.  --[[User:ItsWalky|ItsWalky]] 01:08, 14 November 2012 (EST)&lt;br /&gt;
:::::Yeah, &#039;&#039;colossal&#039;&#039; headaches if we tried to smoosh the various comic and toy characters from each movie&#039;s ancillary franchise together.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:22, 14 November 2012 (EST)&lt;br /&gt;
::::::Would it be?  If they&#039;re different characters, they&#039;re different characters.  So, Sentinel Prime would go from Sentienl Prime (ROTF) to Sentinel Prime (Movie).  He&#039;s a good example of a confusing disambiuation.  He&#039;s the villain in movie 3, but is at movie 2 because of an unnamed montage sequence.  Someone like movie Devastator, who is two separate characters, would remain exactly as they are.--[[User:Joefan|Joefan]] 12:06, 14 November 2012 (EST)&lt;br /&gt;
:::::::Except if it&#039;s by continuity family, he&#039;d be at &amp;quot;Sentinel Prime (LAMS)&amp;quot;. I think changing our entire way of naming articles and moving thousands of articles just to fix the &amp;quot;(Prime)&amp;quot; issue is like using a nuclear bomb to hammer in a nail. --[[User:Abates|abates]] 14:12, 14 November 2012 (EST)&lt;br /&gt;
::::::::My view on this topic has changed, and I now agree with this. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 15:44, 14 November 2012 (EST)&lt;br /&gt;
:::::::::My understanding was that we HAD been disambig-ing by Continuity family, and chose NOT to for the Unicron Trilogy and LAMS because the rampant name reuse would make this horribly confusing.  But for Aligned... so far we&#039;ve already gotten &amp;lt;u&amp;gt;three&amp;lt;/u&amp;gt; franchises and virtually no overlap.&lt;br /&gt;
:::::::::I&#039;m going to cite [[Help:Ignore all standards]], which states that &#039;&#039;Standards are good; TFWiki.net likes standards. We&#039;re just not under the illusion that standards are perfect.&#039;&#039; and more importantly &#039;&#039;&#039;&amp;quot;In situations where the standards intended to prevent confusion would instead contribute to it, common sense should rule.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
:::::::::Actually... wasn&#039;t disambiging the UT series by franchise a case of H:IAS?  We decided to do that because the way rampant name reuse rendered other approaches impractical.  -[[User:Derik|Derik]] 14:05, 16 November 2012 (EST)&lt;br /&gt;
::::::::::We don&#039;t disambig by franchise because of the UT.  We disambig by franchise because of EVERYTHING.  UT was never ever ever the straw that broke the camel&#039;s back.  The back came pre-broken.  --[[User:ItsWalky|ItsWalky]] 14:22, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::Whatever.  Can I move Breakdown (Prime) to Breakdown (WFC) or not?  -[[User:Derik|Derik]] 15:35, 16 November 2012 (EST)&lt;br /&gt;
::::::::::::That&#039;s what I&#039;d like to do eventually, but I don&#039;t think we&#039;ve reached a firm enough consensus to do something that big and sprawling.  --[[User:ItsWalky|ItsWalky]] 16:16, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::...he&#039;s got the wrong disambig.  We disambig by the franchise he first appeared in.  His WFC appearance was 6 months prior to his Prime appearance.  Why does that require some sort of confab?&lt;br /&gt;
:::::::::::::: You are preaching to the choir on this point, but previously a consensus was made that Prime stuff operates differently from everything else on the wiki.  I want to overturn that, but until I do, the previous consensus stands.  --[[User:ItsWalky|ItsWalky]] 16:58, 16 November 2012 (EST)&lt;br /&gt;
:::::::::::::Of course the answer is &amp;quot;because we&#039;re already in an &amp;lt;tt&amp;gt;Ignore all standards&amp;lt;/tt&amp;gt; situation; we want to disambig them with (Prime) even though that&#039;s against our standard treatment, but we haven&#039;t properly dealt-with/processed/mourned that.&amp;quot;&lt;br /&gt;
:::::::::::::If we give in to a rigid standard and move him (and everyone else) to (WFC), &#039;&#039;I&#039;&#039; think it&#039;s almost inevitable that there will be a pushback against the anti-intuitive mess that makes the disambigs, which will itself lead to either returning them to (Prime) or switching everything to (Aligned)  I just do not see (WFC) for the main characters &#039;standing.&#039;&lt;br /&gt;
:::::::::::::Which would mean that we aren&#039;t facing a choice between standard-vs-nonstandard, but between nonstandard-vs-nonstandard.  And given that choice I think (Aligned) is the better nonstandard.&lt;br /&gt;
:::::::::::::(You may feel free to disagree with my assessment of the outcome of a (WFC) move.  I recognize that my beliefs about &amp;quot;what would probably happen after&amp;quot; are just a hypothesis and should not be treated as fact.)  -[[User:Derik|Derik]] 16:56, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
If we do go to strict franchise of origin on Aligned continuity family characters, we are going to have to be &#039;&#039;super&#039;&#039; diligent on redirects for anyone that appears in the Prime show or toyline.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 17:55, 16 November 2012 (EST)&lt;br /&gt;
: I half-agree, if only because we won&#039;t have to be TOO diligent on the pages that exist already, because that would involve merely not deleting the redirects from the old locations once we move the pages.  It&#039;d be a kind of reverse-diligence, since it would really mean one less step than usual.  Otherwise, yes, if a character is in Prime, there should be a redirect from there. --[[User:ItsWalky|ItsWalky]] 19:13, 16 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
So have people have a chance to mull this over some? I&#039;m leaning towards going back to the &amp;quot;by franchise&amp;quot; rule and having &amp;quot;Breakdown (WFC)&amp;quot; because it&#039;s both simpler than any of the alternatives, and it&#039;s consistent with what we do everywhere else. So long as &amp;quot;Breakdown (Prime)&amp;quot; redirects there, and I don&#039;t see any reason for it not to, people will still be able to find it. --[[User:Abates|abates]] 18:56, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fun fact ==&lt;br /&gt;
&lt;br /&gt;
According to my calculations we had around about 6876 articles when we left Wikia, so we&#039;ve added over 10000 more in the four and a bit years since we left. --[[User:Abates|abates]] 03:27, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:While wikia has added... 929 articles.--[[User:Carrion|Carrion]] 12:09, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
::929, really? No offense but I thought it was less. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 13:47, 19 November 2012 (EST) &amp;lt;13:57, 19 November 2012 (EST) edit&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::Hey, be fair, they&#039;ve also added a blog. GUH. --[[User:Khajidha|Khajidha]] 13:49, 19 November 2012 (EST)&lt;br /&gt;
::::And a video library! Because people go to wikis to watch movie trailers! --[[User:Abates|abates]] 14:43, 19 November 2012 (EST)&lt;br /&gt;
:::I was just there the other day... their article for Animated Bulkhead still has an &amp;quot;ongoing&amp;quot; tag... --[[User:Detour|Detour]] 19:06, 19 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Split Pages ==&lt;br /&gt;
&lt;br /&gt;
We have several characters on the list of [[Special:Longpages|Long pages]]–such as [[Kup (G1)]], ‎[[Prowl (G1)]], [[Megatron (G1)]], [[Ratchet (G1)]], and [[Hot Rod (G1)]]. So I suggest to split their G1 cartoon, Marvel comics, and IDW comics section into new pages. – [[User:Thunderweb|Thunderweb]] 01:40, 20 November 2012 (EST)&lt;br /&gt;
:That&#039;s cool and all, but please don&#039;t split off pages if you&#039;re not going to write proper intros/summaries for them and include appropriate categories on the sub pages. --[[User:Abates|abates]] 17:12, 24 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned section breakup is warping canon ==&lt;br /&gt;
&lt;br /&gt;
Currently{{now|21:19, 26 November 2012 (EST)}} our [[Breakdown (Prime)]] page lists all his Prime appearances then ghettotizes out his Fall of Cybertron appearances into a subsequent section as a separate continuity, and thus less important than the cartoon despite coming first.  &lt;br /&gt;
&lt;br /&gt;
[[Bulkhead (Prime)]] and [[Knock Out (Prime)]] are a little better, but the Prime wii game (by the series writers, intended to fit in season 2 albeit without a specific &amp;quot;after this episode and before this episode&amp;quot; date) is broken out as a &#039;&#039;&#039;seperate continuity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Traditionally this has been our way of dealing with games because they are a secondary media; being sorta warped reflections of some core media with (for the most part) minimal contribution to continuity.  But, you know, Aligned is different.  The War for Cybertron / Fall of Cybertron games are part of the same continuity, occurring before the cartoon.  We sort of rolled our eyes when Hasbro first insisted on this (mostly because the [[Transformers: Exodus]] novel doesn&#039;t fit well with the game &#039;&#039;or&#039;&#039; the cartoon.)  But the reality increasingly is that they &#039;&#039;&#039;are&#039;&#039;&#039; one continuity.  Hell, this is a quote from an interview w/ John Barber, writer of [[Rage of the Dinobots]].&lt;br /&gt;
&lt;br /&gt;
{{quote|JB: The Transformers story has been going on continuously for a very long time, and I think it’s fair to say the Prime universe is working to take the best elements of every expression and build a world. What’s really exciting is that what we’re doing in the comic is going to impact this world across various mediums. So, it isn’t a case where we’re doing a book that’s subservient to the TV show—we’re doing an all-new story set in that same universe, and the stories we tell are going to be reflected in the shows and the novels and everything else. It’s “canon.” Which is cool, and sort of rare and unique.&lt;br /&gt;
&lt;br /&gt;
RS: The book is a truly cross-media venture tying in with the upcoming game Fall of Cybertron as well as the Transformers Prime series, how much of a &#039;juggling act&#039; is it to coordinate the story between the different outlets?&lt;br /&gt;
&lt;br /&gt;
JB: Fortunately I get to work with some of the best people in the business. Michael Kelly, who’s Hasbro’s Director of Global Publishing, is a great friend and somebody I get to work with very closely. He coordinates with the Transformers brand team at Hasbro—which contains some really good friends of mine, too. Plus I’ll talk to the folks at Random House, and we’re constantly emailing with everybody at High Moon, who produce FALL OF CYBERTRON, so while there are a lot of moving parts, we’re all talking. And we’re all building toward the same goals of good storytelling and a cohesive worldview.&lt;br /&gt;
&lt;br /&gt;
Also—the new Prime comic is being written by Mike Johnson and Mairghread Scott, both of whom—in addition to being comics writers, both write for thePrime TV show. So they know what’s what.|John Barber|[http://www.aintitcool.com/node/58236 AICN COMICS Q&amp;amp;@: Russ Sheath talks to IDW&#039;s John Barber about TRANSFORMERS PRIME: RAGE OF THE DINOBOTS!]}}&lt;br /&gt;
&lt;br /&gt;
Messy as it was for the rollout, the people producing the stuff &#039;&#039;&#039;intend for it to be one universe and are writing it at such&#039;&#039;&#039;.  And the various franchises &#039;&#039;&#039;are&#039;&#039;&#039; slowly converging as a result.&lt;br /&gt;
&lt;br /&gt;
We &amp;lt;u&amp;gt;need&amp;lt;/u&amp;gt; to consolidate these sections under a single &amp;quot;Aligned continuity&amp;quot; header.  Because the way we&#039;re doing it right now is fucking things up.  &lt;br /&gt;
&lt;br /&gt;
(And no we can&#039;t have WFC/Prime subsection headers for the same reason we can&#039;t separate the Movieverse prequel minis, they interleve.  The games don&#039;t deal with Prime and Megatron&#039;s pre-war history bot the novels and TV shows do mention it.)  -[[User:Derik|Derik]] 21:19, 26 November 2012 (EST)&lt;br /&gt;
: Yeah, I think the way we do it now is better-organized.  Video game stuff, no matter how high-profile it is, tends to be overwritten by the &amp;quot;real&amp;quot; stories that later adapt it.  I&#039;d rather keep stuff separated by medium.  --[[User:ItsWalky|ItsWalky]] 22:28, 26 November 2012 (EST)&lt;br /&gt;
::Agreed. There&#039;s no way to kludge it all together under one heading without either ignoring some details or presenting them in a vague, unhelpful manner, given the contradictions that exist. You cite the Prime game, but at no point in season 2 do the Decepticons EVER consist of Megatron, Starscream, Airachnid and Dreadwing at the same time. It can&#039;t fit. And your other example - it&#039;s all well and good to quote that Barber quote, Derik, but the preview for &amp;quot;Rage of the Dinobots&amp;quot; alone has shown Grimlock present on Cybertron, Sludge being alive and Blast Off dying at a point when in the games, Grimlock has vanished, Sludge has died and Blast Off needs to be alive. (Not to say that the comic might not address these points, it&#039;s just the example foremost in my brain as it&#039;s been discussed recently.) - [[User:Chris McFeely|Chris McFeely]] 05:16, 27 November 2012 (EST)&lt;br /&gt;
:::Chris, the only contradiction we&#039;ve seen in the Rage of the Dinobots comic preview thus far is Sludge being alive. It&#039;s set after the Ark left, during which Grimlock &#039;&#039;was&#039;&#039; still on Cybertron. And Blast Off being there ties in with Jazz and Jetfire having knocked Bruticus off the Ark before it went through the space bridge. He was last seen plummeting, seemingly, back to Cybertron; and judging by this comic, it looks like he made it.&lt;br /&gt;
:::Now, as for my thoughts on the reorganization of the Aligned fiction sections, I offer a counterproposal. Keep each section separate as they are, but I&#039;d feel more confortable with the WFC and FOC sections place above the Prime sections to coincide with their chronological placement in the timeline. Perhaps put the Exodus section first, then the WFC sections, then the FOC comic section, the FOC the game, then Exiles or Rage of the Dinobots (depending on how that comic with play out will determent if it&#039;s better set before or after Exiles), then the Prime comic, then the Prime cartoon, then the Prime game, and then the Rescue Bots cartoon. Each keeps its own section, but arranged in as close to chronological order as possible. --[[User:Sabrblade|Sabrblade]] 12:20, 27 November 2012 (EST)&lt;br /&gt;
::::I don&#039;t understand how putting some of the video game stuff outside of the video game section is intuitive, because presumably we&#039;d be keeping the Prime game stuff down below.  --[[User:ItsWalky|ItsWalky]] 12:23, 27 November 2012 (EST)&lt;br /&gt;
:::::I&#039;m saying to treat the games as fiction themselves instead of a second tier category, since, unlike previous continuities, they&#039;re of a greater importance to their master continuity than any past games have ever been. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::The [[Breakdown (Prime)]] article separates along &#039;&#039;&#039;Fiction&#039;&#039;&#039; and &#039;&#039;&#039;Games&#039;&#039;&#039;, placing the WFC/FOC games in the latter when they are part of the same body of fiction.  Even if you don&#039;t want to place them in the same continuity, they should both be in the &#039;&#039;&#039;Fiction&#039;&#039;&#039; header.&lt;br /&gt;
::::::The separate header for games system has its origins in the traditional relationship of games to other fiction, where they present a wildly divergent or exclusive or alternate version of another existing franchise or story.  These are primary story material which have no &#039;primary story&#039; they present an alternate version of because they &#039;&#039;are&#039;&#039; the primary story.  You can&#039;t ghettoize them as &amp;quot;something other than fiction.&amp;quot;  -[[User:Derik|Derik]] 17:28, 27 November 2012 (EST)&lt;br /&gt;
:::::::That&#039;s what I&#039;m saying. Putting the individual video game subsections into the main fiction section instead of putting them in a separate video game section since the games aren&#039;t a second tier of the main story this time. --[[User:Sabrblade|Sabrblade]] 17:37, 27 November 2012 (EST)&lt;br /&gt;
::::I realize this isn&#039;t the time or place for this, but regarding those points, I&#039;ll say that the clear implication at the end of FoC is that Grimlock has vanished through the spacebridge (he doesn&#039;t get out before the explosion and the Dinobots watch as something shoots up the beam into the portal), and as the Ark is the &#039;&#039;last&#039;&#039; of the vessels to leave in the game, it can&#039;t fit with what we&#039;re seeing here with Blast Off&#039;s timeline. - [[User:Chris McFeely|Chris McFeely]] 12:26, 27 November 2012 (EST)&lt;br /&gt;
:::::I never got the impression that Grimlock got sent through the space bridge. His fate was rather amibiguous to the nth degree, leaving plenty open room for him to still be on Cybertron after the game. He&#039;s running away, there&#039;s a blinding light, and then the scene cuts away. for all we know, he could have fallen off the platform he was on and plummeted far to the ground below, away from the space bridge&#039;s reach (though he&#039;d be in for some serious repairs after a fall form that height). As for the other ships, we know that the planet was completely abandoned by the present day, so the Dinobots and Wreckers would have had to have gotten off the planet somehow and at some point. Just because the Ark was the last vessel to leave during the Great Exodus doesn&#039;t mean there weren&#039;t more ships set aside in reserve for or built later by those who stayed behind so they could eventually leave when the time would come for them to do so &#039;&#039;after&#039;&#039; the Great Exodus. --[[User:Sabrblade|Sabrblade]] 12:39, 27 November 2012 (EST)&lt;br /&gt;
::::::And thus, we see the the hand-wringing necessary to align everything. - [[User:Chris McFeely|Chris McFeely]] 12:50, 27 November 2012 (EST)&lt;br /&gt;
:::::::Pun not intended.  --[[User:ItsWalky|ItsWalky]] 13:39, 27 November 2012 (EST)&lt;br /&gt;
:::::::Yeah, and until we get canonical answers to things like where the Prime game or Optimus/Bumblebee&#039;s appearances in Rescue Bots fit, sticking everything under one header is just not possible. --[[User:Abates|abates]] 14:59, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
I think my main qualm here is that every time someone tries to make the case that Aligned is somehow &#039;&#039;different&#039;&#039; and thus deserves us altering the way we treat it relative to other continuity families, we end up with &#039;&#039;even more&#039;&#039; examples of how Aligned is pretty much a branching, loosely-connected thing &#039;&#039;just like every other continuity family&#039;&#039;. I mean sure, it&#039;ll never get quite to the point of how spread out the G1 continuity family is. Regardless, this is no different from how obvious it was that Bay&#039;s writers didn&#039;t give a damn about the movie comics, and so forth.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 12:49, 27 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s very easy to say &amp;quot;this doesn&#039;t seem to fit&amp;quot; but Barber says he&#039;s coordinating his story with High Moon Studios so there aren&#039;t any conflicts.&lt;br /&gt;
:The people writing these things are &#039;&#039;trying&#039;&#039; to make them one continuity, damnit!  Do we have to fight them this hard?  -[[User:Derik|Derik]] 13:22, 27 November 2012 (EST)&lt;br /&gt;
::And IDW &#039;&#039;tried&#039;&#039; to make the comics jive with the live-action movies, and Barber himself is the one that had to get the mop whenever that didn&#039;t work out. Heck, Barber had early drafts of the movie scripts in many cases, and ended up drawing off of concepts that ultimately weren&#039;t even used in the movies.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 20:07, 27 November 2012 (EST)&lt;br /&gt;
:::I cant&#039; tell if you&#039;re saying IDW succeeded or not, there&#039;s a lot of handwaving in the IDW timeline but it mostly works, largely thanks to Barber bending over backwards to explain how the DotM conspiracy could possibly be present during the 2007 movie and somehow miss Megatron.  ;)  -[[User:Derik|Derik]] 00:05, 28 November 2012 (EST)&lt;br /&gt;
::::I&#039;m not faulting the man&#039;s efforts, and certainly he must have won a No-Prize back in the day from the Merry Marvel Marching Squad, but all I&#039;m really saying is &#039;&#039;this is nothing new&#039;&#039;.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 01:43, 28 November 2012 (EST)&lt;br /&gt;
:::::What are you saying? The Movieverse comics and the films are in the same continuity. Just read the [[Movie continuity]] page. I don&#039;t care so much how the fiction is listed in character pages, but I&#039;d like to see the [[Aligned continuity family]] page moved to &amp;quot;Aligned continuity&amp;quot; and the appropriate changes made to reflect the fact that the Aligned stuff is all &#039;&#039;officially&#039;&#039; the same continuity. Officially! Nobody in G1 tried to say &amp;quot;all this stuff is in the same continuity.&amp;quot; - [[User:Starfield|Starfield]] 11:10, 28 November 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== James Roberts notes ==&lt;br /&gt;
&lt;br /&gt;
As self-referencial as Roberts&#039; work gets, most of the notes sections on MTMTE pages are getting ridiculously long. Some of them have become big blocks of text that cover an entire screen. Is there any way we can break these down into smaller subsections? &#039;&#039;&amp;quot;Roberts referencing Roberts&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Roberts referencing other stories&amp;quot;&#039;&#039;? &#039;&#039;&amp;quot;Story notes&amp;quot;&#039;&#039; vs. &#039;&#039;&amp;quot;Easter eggs&amp;quot;&#039;&#039;?--[[User:Xaaron|Xaaron]] 09:52, 13 December 2012 (EST)&lt;br /&gt;
: I don&#039;t think any of the notes sections for Roberts stories are &amp;quot;ridiculously long.&amp;quot;  --[[User:ItsWalky|ItsWalky]] 10:41, 13 December 2012 (EST)&lt;br /&gt;
:: Four of the last five regular issues have Notes sections that cover my entire monitor. One big screen of bullet points. It&#039;s aesthetically unpleasing, my eyes glaze over just looking at it, and I can&#039;t be the only one. We discourage big blocks of text in the History sections, and this isn&#039;t much different. &lt;br /&gt;
:: I&#039;m not saying the Notes themselves aren&#039;t &amp;quot;note-worthy&amp;quot;. It just...doesn&#039;t look good. I think an effort could be made to make it easier on the eyes. More images in that section, or some sub-sections to break up the bullet points is not unreasonable to suggest. --[[User:Xaaron|Xaaron]] 11:12, 13 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Things that don&#039;t exist&amp;quot; category ==&lt;br /&gt;
&lt;br /&gt;
FYI, readers that don&#039;t have accounts can&#039;t access this category through articles because they&#039;re blocked from the editing page, which the red link automatically takes them to. [[User:Mimi|Mimi]] 02:52, 18 December 2012 (EST)&lt;br /&gt;
:Hmm, we could possibly use javascript to amend links to it to point to http://tfwiki.net/wiki/Category:Things_that_don%27t_exist instead, which does work for logged out users. --[[User:Abates|abates]] 03:06, 18 December 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Batchtaster?==&lt;br /&gt;
&lt;br /&gt;
Really? --[[User:Xaaron|Xaaron]] 18:19, 1 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captions ==&lt;br /&gt;
&lt;br /&gt;
I have often found myself simply reading this website for entertainment because it just appeals to my sense of humor that much. I have often found myself wanting to somehow upvote or like a caption because it was just that good. Is there a way to do this? If not, can there be? [[User:Tourny|Tourny]] 20:59, 5 January 2013 (EST)&lt;br /&gt;
:I don&#039;t think that&#039;d ever happen, because at the end of the day, this a Transformers wiki, not a &#039;post your Transformers jokes here&#039; website. The jokes aren&#039;t and never should be the main focus, they&#039;re just a fun side effect. If anything, such a system would kind of legitimise the people who show up and do just want to use this place as a place to post their &#039;hilarious&#039; Transformers jokes without contributing anything useful, and god knows we don&#039;t want that... [[User:Jalaguy|Jalaguy]] 04:52, 6 January 2013 (EST)&lt;br /&gt;
::A most welcome way of doing it would be to point out the captions you like by posting to your facebook or twitter or what have you, especially with a link to the TFWiki page in question. --[[User:Abates|abates]] 05:18, 6 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aligned character page main images ==&lt;br /&gt;
&lt;br /&gt;
Since we&#039;ve finally beun to treat the Aligned characters like we do characters of other continuities by disambiguating them by franchise, does anyone else feel that a bunch of characters with (WFC) disambigs having their Prime designs as their main image feels a little off? I mean, [[Thundercracker (Armada)]] uses his Armada design as his main image despite his Cybertron depiction being his most prominent one. Wouldn&#039;t it make more sense to have the WFC designs be the main images for those characters who bear the (WFC) disambig and such? Especially since our policy says, &amp;quot;the main image [of a character&#039;s page] should be their original &#039;real world&#039; form&amp;quot;. --[[User:Sabrblade|Sabrblade]] 00:34, 7 January 2013 (EST)&lt;br /&gt;
:Not sure why it&#039;s there for Thundercracker, but characters like [[Sideways (RID)]] and [[The Fallen]] use their later body designs for their mainpics. It&#039;s the most prominent way they&#039;ve appeared, same as Sideways and Fallen. --[[User:Detour|Detour]] 00:40, 7 January 2013 (EST)&lt;br /&gt;
::The only reason Sideways has his Armada body at the top of the page is that there is no art of the RID body.  His packaging image was a photo of his toy and he hasn&#039;t appeared in that body anywhere in fiction.  The Fallen has his movie body because, well, it was our most popular page for a year or two, because of the movies, and so he was a special case.  Regardless, a part of me is pretty okay with the Aligned guys having their Prime bodies at the top, ignoring all standards.  That feels a lot different to me than the disambiguation parenthetical, which is there for organization, not for looks or presentation like the main image is.  But my feelings are not super strong.  --[[User:ItsWalky|ItsWalky]] 01:31, 7 January 2013 (EST)&lt;br /&gt;
:::I think we should stick with the Prime images. I&#039;m basically okay with the disambig change at this point after not being on board at first, but I think keeping their Prime main images will help mitigate the potential confusion or blurring of the lines that Aligned seems to always foster. - [[User:Chris McFeely|Chris McFeely]] 05:09, 7 January 2013 (EST)&lt;br /&gt;
::::I think for the time being, Prime images make the most sense. &#039;&#039;Going into the future&#039;&#039;, I think additional different-looking cartoons in the Aligned continuity would be a decent argument for returning to WFC bodies, because at that point they&#039;re simply one of many looks, instead of the less prominent of two. -[[User:LV|LV]] 11:49, 7 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
==Continuing spam==&lt;br /&gt;
With the spam continuing, even with captchas and email activation turned on, are we to assume that it&#039;s some actual poor bastards sitting there copypasting nonsense about handbags into pages? Would a possible solution be trivia-style verification questions? Something most TF fans would know, or could otherwise find out easily, but that a bored spammer would lack the initiative to find out? Like &#039;who is the Combaticon leader?&#039; or &#039;what faction does Hound belong to?&#039; and so on. [[User:Jalaguy|Jalaguy]] 14:57, 8 January 2013 (EST)&lt;br /&gt;
:&#039;&#039;Are&#039;&#039; Captchas and email activation turned on? I&#039;m not sure how they could be. These are obviously bots, and last I heard we&#039;d only turned on the requirement to register before you can edit.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 15:05, 8 January 2013 (EST)&lt;br /&gt;
::Yeah, log out and check the account creation page, there&#039;s a reCAPTCHA thingmabob on there now. Sipher mentioned activation emails being turned on in the spam discusson further up the page, but looking at the sign-up page again, email isn&#039;t required, so I guess it can&#039;t be... [[User:Jalaguy|Jalaguy]] 15:14, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
::There are [http://www.mediawiki.org/wiki/Anti-spam_features several simple steps] that would improve matters immediately and immensely - [http://www.mediawiki.org/wiki/Extension:TitleBlacklist TitleBlacklist] to block the likes of &amp;lt;nowiki&amp;gt;[[Talk:Something/]] and [[Talk:/Something]]&amp;lt;/nowiki&amp;gt;, preventing users from creating User: pages with their first edit by requiring the Autoconfirmed permission to do so, adding a [http://www.mediawiki.org/wiki/Manual:$wgSpamRegex $wgSpamRegex] to LocalSettings.php to prevent pages from being saved if they contain obvious trigger words like &amp;quot;viagra&amp;quot;, &amp;quot;cialis&amp;quot;, &amp;quot;online casino&amp;quot;, &amp;quot;ugg boots&amp;quot; and so forth. They just aren&#039;t being used. - [[User:SanityOrMadness|SanityOrMadness]] 19:20, 8 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
== We are moving very very soon. ==&lt;br /&gt;
&lt;br /&gt;
That means at some point within the next few hours to few days the wiki will go to Read Only mode while McFly moves stuff around.  Then we won&#039;t be hemorrhaging cash and things will run smoothly and we&#039;ll all have boners, even the ladies.  --[[User:ItsWalky|ItsWalky]] 17:12, 9 January 2013 (EST)&lt;br /&gt;
:I&#039;ve got one right now! - [[User:Chris McFeely|Chris McFeely]] 17:23, 9 January 2013 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Okay, so, uh, what the hell happened? -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:43, 15 January 2013 (UTC)&lt;br /&gt;
:We have moved. Some things are still being tweaked. --[[User:Abates|abates]] 00:46, 15 January 2013 (UTC)&lt;br /&gt;
::Well, I knew we moved, just I thought nothing would look different. Oh, well. -- [[User:Spydersix|spyder]][[User Talk:Spydersix|&amp;lt;sup&amp;gt;Use this!&amp;lt;/sup&amp;gt;]] 00:52, 15 January 2013 (UTC)&lt;br /&gt;
:::New Mediawiki software version.  Some things got a little mixed up in the move, and newer versions decided to put the hammer down on bad practices.  Other things are just... being refactored from a distinct lack of notes. --[[User:McFly|McFly]] 01:43, 15 January 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=Template:Goicons&amp;diff=777720</id>
		<title>Template:Goicons</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=Template:Goicons&amp;diff=777720"/>
		<updated>2013-01-14T18:37:20Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt; &amp;lt;document&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--A--&amp;gt;&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/93/GB-DecepticonRaider.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;A Decepticon Raider in King Arthur%27s Court&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;A Decepticon Raider...&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/58/GB-Abominus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Abominus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Abominus&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/bc/GB-Aerobot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Aero-Bot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c2/GB-TheAgenda3.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Agenda (Part III)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Agenda&amp;quot; (Part III)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/00/GB-AirachidPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Airachnid (Prime)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Prime Airachnid&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/55/GB-Airazor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Airazor (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Airazor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/65/GB-AirRaidMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Air Raid (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Air Raid&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/53/GB-PatLeesig.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Alex Milne&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Pat Lee&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/df/GB-Alignment.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Alignment&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Alignment&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/79/GB-AllsparkAlmanacV1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers Animated: The AllSpark Almanac&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the AllSpark Almanac&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3c/GB-Along_Came_a_Spider.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Along Came a Spider&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Along Came a Spider&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1b/GB-Amaou.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hitoshizuku Amaou&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5e/GB-AndrewWildman.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Andrew Wildman&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/bd/GB-AnimationError.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Animation error&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;animation errors&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2e/GB-AngryArcher.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Angry Archer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Angry Archer&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3b/GB-Archforce.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Archforce&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/35/GB-Antagony.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Antagony (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Antagony&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8e/GB-SGAquarius.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Aquarius (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Aquarius&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5f/GB-apelinq.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Apelinq&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d4/GB-ArceeMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Arcee (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Arcee&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2b/GB-ArkG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ark (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Generation 1 Ark&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8b/GB-Army-building.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Army-building&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;army-building&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b3/GB-AutobootCamp.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Autoboot Camp&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Autoboot Camp&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/63/GB-AutobotSpike.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Autobot Spike&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Autobot Spike&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--B--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a7/GB-BOT.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;B.O.T. (episode)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;B.O.T.&amp;quot; (or don&#039;t. Please don&#039;t.)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c7/GB-BackstopCyb.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Backstop (Cybertron)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Cybertron Backstop&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1f/GB-BallJoint.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ball joint&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;ball joints&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/75/GB-BarricadeMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Barricade (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Barricade&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/23/GB-BeachcomberG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beachcomber (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Beachcomber&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/39/GB-Gorillabot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beast-Bot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/98/GB-Beastformer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beastformer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Beastformers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4e/GB-BeastWarsP2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beast Wars (Part 2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Beast Wars&amp;quot; (Part 2)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fa/GB-BeforetheStorm.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Before the Storm&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Before the Storm&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e2/GB-Black_Sunshine.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Black Sunshine&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Black Sunshine&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d3/GB-BlackZarak.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scorponok (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;BlackZarak&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d8/GB-BladesG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blades (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Blades&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/ad/GB_BladesRB.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blades (RB)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Rescue Bots Blades&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/23/GB-g1blaster.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blaster (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Blaster&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/10/GB-Blaze.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blaze&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/df/GB-BloodontheTracks.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blood on the Tracks&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Blood on the Tracks&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/cd/GB-BludgeonG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bludgeon (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Bludgeon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/de/GB-Boltax.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Boltax (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Boltax&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/89/GB-Botanica.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Botanica (BM)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Machines Botanica&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f1/GB-Flying_Island.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Brigadoon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Vok&#039;s flying island&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4b/GB-BruticusMaximus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bruticus Maximus (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Bruticus Maximus&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/7c/GB-Bulkhead.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bulkhead (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Bulkhead&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/46/GB-BulkheadEnergon.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bulkhead (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Bulkhead&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/34/GB-BumblebeeAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumblebee (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Bumblebee&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a5/GB-Bumblebeeblast.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumblebee Blast&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Bumblebee Blast Slurpee Flavor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fc/GB-BumblebeeRescue.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumblebee to the Rescue!&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2a/GB-Bumper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumper (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Bumper&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d9/GB-Bumper2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mini Vehicle&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f8/GB-TheBurdenHardestToBear.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Burden Hardest to Bear&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Burden Hardest to Bear&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e9/GB-BuzzsawG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Buzzsaw (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Buzzsaw&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--C--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fa/GB-MFCancer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cancer (Masterforce)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Super-God Masterforce Cancer&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/27/GB-CarnageInC-Minor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Carnage in C-Minor&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Carnage in C-Minor&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6d/GB-CatSCAN.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;CatSCAN&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/06/GB-Chameleon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Chameleon&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f8/GB-ChaosG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Chaos (alien)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Chaos&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/64/GB-CheetorBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cheetor (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Cheetor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/de/GB-CircuitBreaker.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Circuit Breaker&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4a/GB-CliffjumperG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cliffjumper (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Cliffjumper&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/11/GB-Cloudburst.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cloudburst&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/73/GB-ClubCon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Club Con&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/62/GB-Clutch.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Clutch (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Clutch&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/21/GB-CobraCommander.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cobra Commander&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c2/GB-ComingoftheFuzors2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Coming of the Fuzors (Part 2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Coming of the Fuzors&amp;quot; (Part 2)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/95/GB-CommandUnit.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Command Unit&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Command Units&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e4/GB-Commercial.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Commercial&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;commercials&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c8/GB-commercialbumper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Commercial bumper&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;commercial bumpers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/ac/GB-CosmosG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cosmos (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Cosmos&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c8/GB-CoP.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Covenant of Primus&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Covenant of Primus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a0/GB-CrosscutDecep.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Crosscut (Decepticon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Decepticon Crosscut&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/73/GB-Cryotek.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cryotek (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Cryotek&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b8/GB-CyKillGobots.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cy-Kill (GoBots)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;GoBots Cy-Kill&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e5/GB-CybDefenseTeam.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cybertron Defense Team&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Cybertron Defense Team&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/93/GB-Cybertronix.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cybertronix&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5a/GB-CyclonusG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cyclonus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Cyclonus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--D--&amp;gt;&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/25/GB-DGo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;D-Go&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2b/GB-dalek.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dalek&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Daleks&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f8/GB-Dancitron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dancitron&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/63/GB-DanReed.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dan Reed&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/58/GB-DarkAwakening.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dark Awakening&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Dark Awakening&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8d/GB-DavidWise.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;David Wise&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/ee/GB-Dead-Universe.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dead Universe&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Dead Universe&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5a/GB-DeathsHeadG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Death%27s Head (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Death&#039;s Head&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/da/GB_deathsaurus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Deathsaurus (Victory)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Victory Deathsaurus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5a/GB-Decepticharge.jpg&lt;br /&gt;
&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticharge&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5f/GB-DecepticonAir.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticon Air&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Decepticon Air&amp;quot;&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/0a/GB-DecepticonPatrol.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticon Patrol&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Decepticon Patrol&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e0/GB-DecepSixbuilder.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticon Sixbuilder&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/52/GB-Deceptor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Deceptor&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2e/GB-DerrickWyatt.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Derrick J. Wyatt&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Derrick Wyatt&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/be/GB-DinobotsStrikeBack.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dinobots Strike Back&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Dinobots Strike Back&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/dc/GB-DirgeG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dirge (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Dirge&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e0/GB-SGDirge.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dirge (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Dirge&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d0/GB-DivebombMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Divebomb (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Divebomb&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3c/GB-DiverBWII.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Diver (BWII)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars II Diver&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1b/GB-Finkleberg.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Donny Finkleberg&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/78/GB-DrArkeville.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Doctor Arkeville&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/68/GB-ArmadaIssue9.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dreamwave Armada issue 9&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Dreamwave&#039;s Armada #9&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3c/GB-Drift.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Drift (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Drift&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/30/GB-DryRun.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dry Run!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Dry Run!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/72/GB-DuelFightGBC.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Duel Fight Transformers Beast Wars: Beast Warriors%27 Strongest Decisive Battle&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Duel Fight Transformers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f6/GB-Dull_Surprise.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dull surprise&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;dull surprise&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b8/GB-DwayneJohnson.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dwayne Johnson&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;The Rock&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--E--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c8/GB-CliffjumperG1a.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Earl Norem&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/95/GB-G1ElitaOne.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Elita One&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Elita One&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8e/GB-Energon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Energon (fuel)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;energon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/af/GB-Energoncartoon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Energon (cartoon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Energon cartoon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/ff/GB-EntertheNightbird.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Enter the Nightbird&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Enter the Nightbird&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--F--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a8/GB-Facial_hair.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Facial hair&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Transformers facial hair&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f8/GB-Falcia.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Falcia&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a5/GB-ThefallenG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Fallen&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a8/GB-Fang.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fang&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5f/GB-fig.png&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jorge Figueroa&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d4/GB-FightForEnergon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fight for Energon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Fight for Energon&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a2/GB-FireintheSky.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fire in the Sky&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Fire in the Sky&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fa/GB-FireOnTheMountain.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fire on the Mountain&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Fire on the Mountain&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/ee/GB-Fishtest.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Fish Test&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Fish Test&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/48/GB-FixerBug.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fixer Bug&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Fixer Bugs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8d/GB-FlameUKcomic.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Flame (Marvel)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Flame&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/91/GB-Flashbox.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Flashbox&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/96/GB-FlattopUK.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Flattop (Autobot)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Autobot Flattop&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6b/GB-FortressMaximusG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fortress Maximus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Fortress Maximus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c0/GB-Fred.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fred (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada Fred&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6e/GB-Furmanism.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Furmanism&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Furmanisms&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--G--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e5/GB-Garboil.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Garboil (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Garboil&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b4/GB-GasSkunk.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gas Skunk&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/50/GB-Gas_station.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gas station&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Micromaster gas station&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/38/GB-GB.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;G.B. Blackrock&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/94/GB-Generation2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Generation 2 (franchise)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Transformers: Generation 2&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/65/GB-Generations.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers Generations&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Transformers Generations book&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/7e/GB-Generics.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Generic&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;generic&amp;quot; Transformer designs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/31/GB-Gingham.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gingham&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1f/GB-GirlWhoLovedPowerglide.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Girl Who Loved Powerglide&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Girl Who Loved Powerglide&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/23/GB-Gnaw.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gnaw&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/39/GB-G1GoBots.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;G1 GoBots&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the G1 GoBots&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fc/GB-Golden_disk.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Golden Disk (disambiguation)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Golden Disks&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/11/GB-GoldenLagoon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Golden Lagoon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Golden Lagoon&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/18/GB-goo.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Goo 8739B&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/32/GB-GrimlocksNewBrain.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grimlock%27s New Brain&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Grimlock&#039;s New Brain&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d9/GB-RIDGrimlock.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grimlock (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Grimlock&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/39/GB-GrappleG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grapple&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Grapple&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/42/GB-Grizzly1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grizzly-1&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--H--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/23/GB-Hacksaw.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hacksaw&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/ff/GB-Halloween.JPG&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Halloween&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/47/GB-HanSolo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Han Solo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/33/GB-HatePlague.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hate Plague&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Hate Plague&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f5/GB-Headmasters_(comic).jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Headmasters (comic)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Headmasters comic&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/49/GB-Heatwave.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Heatwave (Timelines)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Timelines Heatwave&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6e/GB-HHR.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;HHR&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4b/GB-HighWire.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;High Wire (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada High Wire&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b6/GB-Holomatter.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Holomatter&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;holomatter&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6e/GB_Ani_Hot_Shot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hot Shot (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Hot Shot&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/06/GB-SGHound.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hound (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Hound&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/37/GB-Hunter-O%27Nion.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hunter O%27Nion&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Hunter O&#039;Nion&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--I--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/37/GB-ImprosonedInferno.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Imprisoned Inferno&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Improsoned Inferno&amp;quot; (sic)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/9e/GB-Impactor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Impactor (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Impactor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/99/GB-Infiltration-Protocol.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Infiltration protocol&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the infiltration protocol&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/77/GB-Io.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Io&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4d/GB-Ironfist.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ironfist (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Ironfist&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8a/GB-IrwinSpoon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Irwin Spoon (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Irwin Spoon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--J--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/35/GB-Jaam.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;JaAm&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6b/GB-Japanese_themes.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Japanese themes&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Japanese theme songs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/ba/GB-JazzG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jazz (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Jazz&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f1/GB-JazzMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jazz (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Jazz&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/98/GB-Jetfire%28ROTF%29.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jetfire (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Jetfire&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/58/GB-Jhiaxus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jhiaxus (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Jhiaxus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1d/GB-JohnHenry.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;John Henry&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/9f/GB-Jungaroo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jungaroo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--K--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6c/GB-kakuryu.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kakuryū&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kakuryū&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c6/GB-KellyRID.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kelly (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kelly&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/9e/GB-Key_to_Vector_Sigma.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Key to Vector Sigma&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Key to Vector Sigma&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2c/GB-KickbackG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hearts of Steel&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Hearts of Steel&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6e/GB-KickerJones.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kicker Jones&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kicker&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c9/GB-King.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;King&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the King&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/ef/GB-Kremzeek.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kremzeek&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--L--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/63/GB-Lady_Jaye.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lady Jaye&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8b/GB-Ladybird.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ladybird Books&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6c/GB-TimelinesLandquake.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Landquake (Timelines)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Timelines Landquake&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c3/GB-G1Laserbeak.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Laserbeak (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Laserbeak&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/7a/GB-Leader1Armada.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Leader-1 (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada Leader-1&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b4/GB-LegacyofUnicron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Legacy of Unicron!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Legacy of Unicron!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a8/GB-Lennox.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;William Lennox&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a6/GB-ukletters.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Letters page (Marvel UK)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Marvel UK letters page&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/02/GB-Lipole.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lipole&amp;lt;/name&amp;gt; &amp;lt;name&amp;gt;lipoles&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/0d/GB-Lori.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lori&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/73/GB-LouHoover.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lou Hoover&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--M--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/12/GB-M9-2HarpoonGun.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;M9-2 Harpoon Gun&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the M9-2 Harpoon Gun&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b3/GB-Machination.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Machination&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Machination&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c8/GB-Magnawing.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Magnawing&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/35/GB-Magnificence.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Magnificence&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Magnificence&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/77/GB-Malignus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Malignus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Malignus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/0a/GB-MarissaFairborne.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Marissa Faireborn&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f5/GB-MartyIsenberg.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Marty Isenberg&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a6/GB-MatrixCannon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Matrix Cannon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Matrix Cannon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/eb/GB-Max.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Max&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a8/GB-Mecannibals.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mecannibal&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Mecannibals&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/15/GB-Megabolt.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megabolt&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a8/GB-armadamegs.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&#039;&#039;Armada&#039;&#039; Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5c/GB-MegatronAnimated.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e4/GB-MegatronBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d1/GB-GigatronCR.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fd/GB-MeltdownAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Meltdown (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Meltdown&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/79/GB-Metallikato.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Metallikato&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fd/GB_Mickey_Mouse.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mickey Mouse&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/59/GB-Mindset.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mindset (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 2 Mindset&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/84/GB-Minerva.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Minerva (Masterforce)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Masterforce Minerva&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/71/GB-Mirror.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mirror&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/ca/GB-MixmasterAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mixmaster (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Mixmaster&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/83/GB-Monstructor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Monstructor (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Monstructor&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5a/GB-Multilingual.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;multilingual packaging&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--N--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/74/GB-Nebulos.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nebulos&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/7e/GB-NekomimiAandB.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nekomimi A and Nekomimi B&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8a/GB-NemesisPrimeIDW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nova Prime&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Nova/Nemesis Prime&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/ff/GB-Neon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Neon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;neon! Ow&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c2/GB-NightbeatG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nightbeat (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Nightbeat&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/42/GB-NightbeatArmada.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nightbeat (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada Nightbeat&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/bd/GB-NightscreamClassics.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nightscream (Classics)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Classics Nightscream&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--O--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a4/GB-O.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;&amp;quot;O&amp;quot;&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/34/GB-Oparts.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;O-Part&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the O-Parts&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1d/GB-OctopunchG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Octopunch (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Octopunch&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/92/GB-OmegaSupreme.JPG&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Omega Supreme (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Omega Supreme&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d4/GB-ontheedgeofextinction.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;On the Edge of Extinction!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;On the Edge of Extinction!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2e/GB-KojiOnishi.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Koji Onishi&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Koji Onishi&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/19/GB-OptimusMinor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Optimus Minor&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/99/GB-G1prime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Optimus Prime (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Optimus Prime&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/86/GB-RiDPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Optimus Prime (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Optimus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/94/GB-Orbital-Jump.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Orbital jump&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;orbital jumps&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4d/GB-MegatronBW1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Other Victories&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Other Victories&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/36/GB-OtherVoices1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Other Voices, Part 1&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Other Voices&amp;quot; Part 1&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/af/GB-Outback.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Outback (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Outback&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/97/GB-Overlord.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Overlord (Masterforce)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Masterforce Overlord&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--P--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/38/GB-PepsiConvoy.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Pepsi Convoy&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/38/GB-photodegradation.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Photodegradation&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;photodegradation&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/01/GB-PickUpBatRobo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Pick-Up (Bat-Rob%F4)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Bat-Robo Pick-Up&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/cc/GB-Plastic.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Plastic&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;plastic&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/da/GB-playpattern.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Play pattern&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;play pattern&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/cf/GB-PoisonBite.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Poison Bite&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/cc/GB-Power_Plans.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Power Plans&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/9e/GB-Pretender.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Pretender&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Pretenders&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c2/GB-Primus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Primus&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/60/GB-ProfessorPrincess.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Professor Princess&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4f/GB_Protector.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Protector&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Protectors&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/15/GB-prototype.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Prototype&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;prototypes&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/28/GoBox_TFA_Prowl.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Prowl (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Prowl&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3a/GB-RIDProwl.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Prowl (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Prowl&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/90/GB-PsychoOrb.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Psycho-Orb&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/79/GB-rani.png&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Natasha Pyraniac&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Natasha Pyraniac&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Q--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/ec/GB-GagColosseum.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Q-Robo Transformer&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e8/GB_Questor.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Questor&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Questors&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/37/GB-Quintesson.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Quintesson&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Quintessons&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--R--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/64/GB-RackNRuin.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rack%27n%27Ruin&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Rack&#039;n&#039;Ruin&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a7/GB-Raindance.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Raindance&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e3/GB-RampageBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rampage (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Rampage&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/ab/GB-RamulusBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ramulus&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3f/GB-Rangefinder.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rangefinder&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/69/GB-RansackG2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ransack (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 2 Ransack&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/7d/GB-Raoul.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Raoul&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b5/GB-RatbatG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratbat (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Ratbat&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d5/GB-AniRatchet.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratchet (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Ratchet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/87/GB-RatchetG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratchet (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Ratchet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/16/Primeratchetgoicon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratchet (Prime)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Prime Ratchet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/0c/GB-Rattrap.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rattrap&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/96/GB-SGRavage.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ravage (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Ravage&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/02/GB-Razorbeast.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Razorbeast&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a4/GB-RazorclawTFU.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Razorclaw (Universe)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Universe Razorclaw&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3f/GB-RecipeforDisaster.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Recipe for Disaster!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Recipe for Disaster!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/30/GB-RedHot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Red Hot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/09/GB-ReggieSimmons.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Seymour Simmons&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/94/GB-RenoWilson.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Reno Wilson&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b8/GB-Reproduction.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Reproduction&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Transformers reproduction&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/0e/GB-Return_of_the_Headmaster.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Return of the Headmaster&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Return of the Headmaster&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/16/GB-RickAstley.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rick Astley&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/84/GB-Stepper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ricochet (Headmasters)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Targetmaster Ricochet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3b/GB-RoadblockGIJoe.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Roadblock (G.I. Joe)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;G.I. Joe&#039;s Roadblock&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b3/GB-RodimusShattered.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rodimus (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Rodimus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3a/GB-G1RodimusPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hot Rod (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Rodimus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/97/GB-Ron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ron&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Ron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3a/GB-SGRook.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rook (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Rook&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/85/GB-Rorza.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rorza, the Rocket-cycle Racer from Rigel III&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Rorza the Rocket-cycle Racer&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/df/GB-Rosanna.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rosanna (KP)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kiss Players Rosanna&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/3d/GB-RotateBlade.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cyber-slash tail weapon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the rotate blade&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/8d/GB-Roulette.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Roulette (Universe)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Universe Roulette&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/ff/GB-RubberduckyBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rubber Ducky&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Rubber Ducky&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b6/GB-Ruination.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ruination_(RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Ruination&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e8/GB-Rung.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rung&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--S--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/ec/GB-SaltManZ.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Salt-Man Z&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c3/GB-Sari.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sari Sumdac&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/65/GB-Scale.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scale&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;scale (or lack of)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2b/GB-ScavengerBM.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scavenger (BM)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Machines Scavenger&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c2/GB-ScowlG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scowl&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d5/GB-Scraplet.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scraplet&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;scraplets&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/7b/GB-Scrounge.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scrounge (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Scrounge&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/22/GB-Scylla.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scylla&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2c/GB-SearchlightG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Searchlight (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Searchlight&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/52/GB-SectorSeven.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sector Seven&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/25/GB-SeekerGroup.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Seeker (body-type)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Seekers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a5/GBAniSentinelPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sentinel Prime (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Sentinel Prime&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b3/GB-Servo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Servo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/52/GB-shatteredglass.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shattered Glass (franchise)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Shattered Glass universe&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/15/GB-Shatterpoint.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shatterpoint&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fa/GB-Shellformer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shellformer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;shellformers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/7d/GB-shelfwarmer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shelfwarmer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;shelfwarmers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2f/GB-ShockblastEnergon.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shockblast&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e5/GB-Shockwave.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shockwave (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Shockwave&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/35/GB-Sideways(RiD).jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sideways (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise/Armada/Cybertron Sideways&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e4/GB-SignalFlareEn.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Signal Flare (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Signal Flare&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/99/GB-SilverboltBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Silverbolt (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Silverbolt&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b5/GB-SimonBelmondo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Simon Belmondo&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Simon Belmont&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/af/GB-furman.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Simon Furman&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/cd/GB-SkidZRID.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skid-Z (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Skid-Z&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/90/GB-SkidsG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skids (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Skids&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e0/GB-SkidsROTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skids (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Skids&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b8/GB-SkybyteRID.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sky-Byte (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Sky-Byte&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/bf/GB-SkyLynxG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sky Lynx (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Sky Lynx&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/42/GB-CybertronSkyfall.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skyfall (Cybertron)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Cybertron Skyfall&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/60/GB-SkywarpBW2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skywarp (BWII)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars II Skywarp&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/ab/GB-SmokescreenG2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Smokescreen (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 2 Smokescreen&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1b/GB-SoundwavePrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Soundwave (Prime)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Prime Soundwave&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/0d/GB-Space_Bridge.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Space bridge&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;space bridges&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/90/GB-SpaceMini-ConTeam.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Space Mini-Con Team&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Space Mini-Con Team&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e8/GB-Spaceshot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Spaceshot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/52/GB-Coldsparks.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sparking gimmick&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;sparking gimmicks&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f1/GB-Springer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Springer (G1)&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/79/GB-AnimatedStarscream.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Starscream (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Starscream&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/ad/GB-StarscreamMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Starscream (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Starscream&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/01/GB-StarUpper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Star Upper (BWII)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Star Upper&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1b/GB-StellaHolley.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Stella Holley&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/1a/GB-StickerAdventures.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sticker Adventures&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/bd/GB-Stratotronic_Jet.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Stratotronic Jet&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4b/GB-Sunstreaker.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sunstreaker (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Sunstreaker&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/ab/GB-TAI.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;T-AI&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/15/GB-Tailgate.png&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tailgate (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Tailgate&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5e/GB-TankorROTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tankor (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Tankor&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/8/83/GB-TapoutG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tap-Out (G1)&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e3/GB-Tarantulas.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tarantulas (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Tarantulas&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f0/GB-TaraStrong.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tara Strong&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e7/GB-Target2006.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Target: 2006&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Target: 2006&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/22/GB-TechSpec.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tech Spec&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Tech Specs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/0/08/GB-Teletraan_15.gif&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Teletraan 15&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b0/GB-TRED.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Real Effing Deal&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/5d/GB-thingsthatdontexist.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Category:Things_that_don%27t_exist&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;things that don&#039;t exist&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/21/GB-ThrottlerPCC.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Throttler&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/9d/GB-ThunderblastDecep.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Thunderblast (Decepticon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Decepticon Thunderblast&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/18/GB-G1Thunderwing.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Thunderwing (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Thunderwing&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/ab/GB-TigatronBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tigatron&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/21/GB-TommyKennedy.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tommy Kennedy&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/df/GB-TorquerifleG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Torque rifle&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the torque rifle&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/21/GB-RIDTow-Line.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tow-Line (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Tow-Line&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/ed/GB-toy.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Toy&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;toys&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/71/GB-ToySwapping.JPG&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Toy swapping&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;toy swapping&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4f/GB-TransformersUniverseActionBlast1Part1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Action Blast 1&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Action Blast 1&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/32/GB-AGoBoxOfYourOwn.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers_Wiki:A_GoBox_of_your_own!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;a GoBox of your own&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e1/GB-Bulkhead_hat.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformer clothing&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a4/GB-PDTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers PD Type&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Transformers PD Type&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/33/GB-TranswarpCruiser.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transwarp cruiser&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Transwarp Cruiser&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/fd/GB-TurboBatRobo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Turbo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--U--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d7/GB-Ultra-Energon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ultra-Energon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Ore-13&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/3/38/GB-UltraMagnusEn.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ultra Magnus (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Ultra Magnus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/eb/GB-Unicron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Unicron#G.I._Joe_vs._the_Transformers&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Unicron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/de/GB-unicronsingularity.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Unicron Singularity&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Unicron Singularity&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a3/GB-UnreleasedToys.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Unreleased toy&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;unreleased toys&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--V--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/df/GB-VVH.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Variable voltage harness&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the variable voltage harness&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/b6/GB-Vehicon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Vehicon (BM)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Beast Machines Vehicons&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f6/GB-Velocitron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt; Velocitron&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/a/a6/GB-Verity-Carlo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Verity Carlo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/2/2c/GB-Void.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Void&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the void&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--W--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e6/GB-AniWasp.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wasp&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Wasp&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/b/bc/GB-Waspinator.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Waspinator (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Waspinator&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/43/GB-Web_World.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Webworld&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Webworld&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/48/GB-WeirdAl.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;&amp;quot;Weird Al&amp;quot; Yankovic&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/4/4b/GB-Wheelie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wheelie (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Wheelie&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/c/c3/GB-WhirlG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Whirl (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Whirl&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/e/e7/GB-Windcharger.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Windcharger (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Windcharger&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/7/74/GB-Wiretap.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wire Tap V20&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/d/d6/GB-WolfangPred.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wolfang (Predacon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Predacon Wolfang&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/1/16/GB-WreckGarAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wreck-Gar (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Wreck-Gar&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/68/GB-WreckGarG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wreck-Gar (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Wreck-Gar&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/f/f1/GB-Wreckers.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wrecker&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Wreckers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/5/55/GB-WrecklooseROTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wreckloose (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Wreckloose&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--X--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/6/6a/GB-XGunner.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;X-Gunner&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/document&amp;gt;&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=Template:Goicons&amp;diff=777717</id>
		<title>Template:Goicons</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=Template:Goicons&amp;diff=777717"/>
		<updated>2013-01-14T18:35:45Z</updated>

		<summary type="html">&lt;p&gt;McFly: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt; &amp;lt;document&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--A--&amp;gt;&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/images2/9/93/GB-DecepticonRaider.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;A Decepticon Raider in King Arthur%27s Court&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;A Decepticon Raider...&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/58/GB-Abominus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Abominus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Abominus&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/bc/GB-Aerobot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Aero-Bot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c2/GB-TheAgenda3.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Agenda (Part III)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Agenda&amp;quot; (Part III)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/00/GB-AirachidPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Airachnid (Prime)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Prime Airachnid&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/55/GB-Airazor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Airazor (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Airazor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/65/GB-AirRaidMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Air Raid (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Air Raid&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/53/GB-PatLeesig.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Alex Milne&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Pat Lee&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/df/GB-Alignment.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Alignment&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Alignment&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/79/GB-AllsparkAlmanacV1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers Animated: The AllSpark Almanac&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the AllSpark Almanac&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3c/GB-Along_Came_a_Spider.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Along Came a Spider&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Along Came a Spider&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1b/GB-Amaou.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hitoshizuku Amaou&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5e/GB-AndrewWildman.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Andrew Wildman&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/bd/GB-AnimationError.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Animation error&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;animation errors&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2e/GB-AngryArcher.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Angry Archer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Angry Archer&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3b/GB-Archforce.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Archforce&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/35/GB-Antagony.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Antagony (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Antagony&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8e/GB-SGAquarius.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Aquarius (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Aquarius&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5f/GB-apelinq.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Apelinq&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d4/GB-ArceeMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Arcee (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Arcee&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2b/GB-ArkG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ark (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Generation 1 Ark&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8b/GB-Army-building.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Army-building&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;army-building&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b3/GB-AutobootCamp.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Autoboot Camp&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Autoboot Camp&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/63/GB-AutobotSpike.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Autobot Spike&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Autobot Spike&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--B--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a7/GB-BOT.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;B.O.T. (episode)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;B.O.T.&amp;quot; (or don&#039;t. Please don&#039;t.)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c7/GB-BackstopCyb.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Backstop (Cybertron)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Cybertron Backstop&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1f/GB-BallJoint.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ball joint&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;ball joints&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/75/GB-BarricadeMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Barricade (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Barricade&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/23/GB-BeachcomberG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beachcomber (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Beachcomber&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/39/GB-Gorillabot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beast-Bot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/98/GB-Beastformer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beastformer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Beastformers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4e/GB-BeastWarsP2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Beast Wars (Part 2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Beast Wars&amp;quot; (Part 2)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fa/GB-BeforetheStorm.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Before the Storm&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Before the Storm&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e2/GB-Black_Sunshine.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Black Sunshine&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Black Sunshine&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d3/GB-BlackZarak.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scorponok (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;BlackZarak&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d8/GB-BladesG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blades (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Blades&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/ad/GB_BladesRB.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blades (RB)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Rescue Bots Blades&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/23/GB-g1blaster.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blaster (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Blaster&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/10/GB-Blaze.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blaze&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/df/GB-BloodontheTracks.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Blood on the Tracks&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Blood on the Tracks&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/cd/GB-BludgeonG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bludgeon (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Bludgeon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/de/GB-Boltax.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Boltax (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Boltax&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/89/GB-Botanica.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Botanica (BM)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Machines Botanica&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f1/GB-Flying_Island.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Brigadoon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Vok&#039;s flying island&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4b/GB-BruticusMaximus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bruticus Maximus (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Bruticus Maximus&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/7c/GB-Bulkhead.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bulkhead (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Bulkhead&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/46/GB-BulkheadEnergon.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bulkhead (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Bulkhead&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/34/GB-BumblebeeAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumblebee (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Bumblebee&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a5/GB-Bumblebeeblast.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumblebee Blast&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Bumblebee Blast Slurpee Flavor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fc/GB-BumblebeeRescue.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumblebee to the Rescue!&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2a/GB-Bumper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Bumper (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Bumper&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d9/GB-Bumper2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mini Vehicle&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f8/GB-TheBurdenHardestToBear.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Burden Hardest to Bear&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Burden Hardest to Bear&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e9/GB-BuzzsawG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Buzzsaw (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Buzzsaw&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--C--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fa/GB-MFCancer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cancer (Masterforce)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Super-God Masterforce Cancer&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/27/GB-CarnageInC-Minor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Carnage in C-Minor&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Carnage in C-Minor&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6d/GB-CatSCAN.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;CatSCAN&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/06/GB-Chameleon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Chameleon&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f8/GB-ChaosG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Chaos (alien)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Chaos&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/64/GB-CheetorBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cheetor (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Cheetor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/de/GB-CircuitBreaker.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Circuit Breaker&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4a/GB-CliffjumperG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cliffjumper (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Cliffjumper&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/11/GB-Cloudburst.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cloudburst&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/73/GB-ClubCon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Club Con&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/62/GB-Clutch.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Clutch (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Clutch&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/21/GB-CobraCommander.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cobra Commander&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c2/GB-ComingoftheFuzors2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Coming of the Fuzors (Part 2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Coming of the Fuzors&amp;quot; (Part 2)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/95/GB-CommandUnit.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Command Unit&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Command Units&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e4/GB-Commercial.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Commercial&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;commercials&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c8/GB-commercialbumper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Commercial bumper&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;commercial bumpers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/ac/GB-CosmosG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cosmos (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Cosmos&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c8/GB-CoP.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Covenant of Primus&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Covenant of Primus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a0/GB-CrosscutDecep.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Crosscut (Decepticon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Decepticon Crosscut&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/73/GB-Cryotek.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cryotek (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Cryotek&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b8/GB-CyKillGobots.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cy-Kill (GoBots)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;GoBots Cy-Kill&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e5/GB-CybDefenseTeam.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cybertron Defense Team&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Cybertron Defense Team&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/93/GB-Cybertronix.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cybertronix&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5a/GB-CyclonusG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cyclonus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Cyclonus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--D--&amp;gt;&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/25/GB-DGo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;D-Go&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2b/GB-dalek.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dalek&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Daleks&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f8/GB-Dancitron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dancitron&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/63/GB-DanReed.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dan Reed&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/58/GB-DarkAwakening.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dark Awakening&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Dark Awakening&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8d/GB-DavidWise.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;David Wise&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/ee/GB-Dead-Universe.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dead Universe&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Dead Universe&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5a/GB-DeathsHeadG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Death%27s Head (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Death&#039;s Head&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/da/GB_deathsaurus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Deathsaurus (Victory)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Victory Deathsaurus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5a/GB-Decepticharge.jpg&lt;br /&gt;
&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticharge&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5f/GB-DecepticonAir.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticon Air&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Decepticon Air&amp;quot;&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/0a/GB-DecepticonPatrol.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticon Patrol&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Decepticon Patrol&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e0/GB-DecepSixbuilder.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Decepticon Sixbuilder&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/52/GB-Deceptor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Deceptor&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2e/GB-DerrickWyatt.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Derrick J. Wyatt&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Derrick Wyatt&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/be/GB-DinobotsStrikeBack.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dinobots Strike Back&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Dinobots Strike Back&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/dc/GB-DirgeG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dirge (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Dirge&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e0/GB-SGDirge.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dirge (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Dirge&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d0/GB-DivebombMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Divebomb (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Divebomb&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3c/GB-DiverBWII.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Diver (BWII)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars II Diver&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1b/GB-Finkleberg.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Donny Finkleberg&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/78/GB-DrArkeville.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Doctor Arkeville&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/68/GB-ArmadaIssue9.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dreamwave Armada issue 9&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Dreamwave&#039;s Armada #9&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3c/GB-Drift.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Drift (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Drift&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/30/GB-DryRun.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dry Run!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Dry Run!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/72/GB-DuelFightGBC.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Duel Fight Transformers Beast Wars: Beast Warriors%27 Strongest Decisive Battle&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Duel Fight Transformers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f6/GB-Dull_Surprise.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dull surprise&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;dull surprise&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b8/GB-DwayneJohnson.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Dwayne Johnson&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;The Rock&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--E--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c8/GB-CliffjumperG1a.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Earl Norem&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/95/GB-G1ElitaOne.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Elita One&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Elita One&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8e/GB-Energon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Energon (fuel)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;energon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/af/GB-Energoncartoon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Energon (cartoon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Energon cartoon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/ff/GB-EntertheNightbird.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Enter the Nightbird&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Enter the Nightbird&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--F--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a8/GB-Facial_hair.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Facial hair&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Transformers facial hair&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f8/GB-Falcia.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Falcia&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a5/GB-ThefallenG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Fallen&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a8/GB-Fang.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fang&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5f/GB-fig.png&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jorge Figueroa&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d4/GB-FightForEnergon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fight for Energon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Fight for Energon&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a2/GB-FireintheSky.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fire in the Sky&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Fire in the Sky&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fa/GB-FireOnTheMountain.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fire on the Mountain&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Fire on the Mountain&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/ee/GB-Fishtest.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Fish Test&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Fish Test&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/48/GB-FixerBug.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fixer Bug&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Fixer Bugs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8d/GB-FlameUKcomic.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Flame (Marvel)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Flame&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/91/GB-Flashbox.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Flashbox&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/96/GB-FlattopUK.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Flattop (Autobot)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Autobot Flattop&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6b/GB-FortressMaximusG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fortress Maximus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Fortress Maximus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c0/GB-Fred.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Fred (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada Fred&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6e/GB-Furmanism.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Furmanism&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Furmanisms&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--G--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e5/GB-Garboil.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Garboil (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Garboil&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b4/GB-GasSkunk.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gas Skunk&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/50/GB-Gas_station.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gas station&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Micromaster gas station&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/38/GB-GB.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;G.B. Blackrock&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/94/GB-Generation2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Generation 2 (franchise)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Transformers: Generation 2&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/65/GB-Generations.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers Generations&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Transformers Generations book&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/7e/GB-Generics.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Generic&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;generic&amp;quot; Transformer designs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/31/GB-Gingham.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gingham&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1f/GB-GirlWhoLovedPowerglide.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Girl Who Loved Powerglide&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Girl Who Loved Powerglide&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/23/GB-Gnaw.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Gnaw&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/39/GB-G1GoBots.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;G1 GoBots&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the G1 GoBots&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fc/GB-Golden_disk.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Golden Disk (disambiguation)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Golden Disks&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/11/GB-GoldenLagoon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Golden Lagoon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Golden Lagoon&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/18/GB-goo.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Goo 8739B&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/32/GB-GrimlocksNewBrain.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grimlock%27s New Brain&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Grimlock&#039;s New Brain&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d9/GB-RIDGrimlock.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grimlock (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Grimlock&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/39/GB-GrappleG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grapple&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Grapple&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/42/GB-Grizzly1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Grizzly-1&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--H--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/23/GB-Hacksaw.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hacksaw&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/ff/GB-Halloween.JPG&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Halloween&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/47/GB-HanSolo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Han Solo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/33/GB-HatePlague.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hate Plague&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Hate Plague&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f5/GB-Headmasters_(comic).jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Headmasters (comic)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Headmasters comic&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/49/GB-Heatwave.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Heatwave (Timelines)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Timelines Heatwave&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6e/GB-HHR.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;HHR&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4b/GB-HighWire.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;High Wire (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada High Wire&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b6/GB-Holomatter.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Holomatter&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;holomatter&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6e/GB_Ani_Hot_Shot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hot Shot (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Hot Shot&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/06/GB-SGHound.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hound (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Hound&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/37/GB-Hunter-O%27Nion.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hunter O%27Nion&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Hunter O&#039;Nion&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--I--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/37/GB-ImprosonedInferno.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Imprisoned Inferno&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Improsoned Inferno&amp;quot; (sic)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/9e/GB-Impactor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Impactor (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Impactor&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/99/GB-Infiltration-Protocol.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Infiltration protocol&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the infiltration protocol&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/77/GB-Io.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Io&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4d/GB-Ironfist.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ironfist (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Ironfist&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8a/GB-IrwinSpoon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Irwin Spoon (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Irwin Spoon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--J--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/35/GB-Jaam.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;JaAm&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6b/GB-Japanese_themes.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Japanese themes&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Japanese theme songs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/ba/GB-JazzG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jazz (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Jazz&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f1/GB-JazzMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jazz (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Jazz&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/98/GB-Jetfire%28ROTF%29.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jetfire (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Jetfire&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/58/GB-Jhiaxus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jhiaxus (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Jhiaxus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1d/GB-JohnHenry.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;John Henry&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/9f/GB-Jungaroo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Jungaroo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--K--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6c/GB-kakuryu.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kakuryū&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kakuryū&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c6/GB-KellyRID.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kelly (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kelly&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/9e/GB-Key_to_Vector_Sigma.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Key to Vector Sigma&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Key to Vector Sigma&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2c/GB-KickbackG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hearts of Steel&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Hearts of Steel&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6e/GB-KickerJones.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kicker Jones&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kicker&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c9/GB-King.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;King&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the King&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/ef/GB-Kremzeek.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Kremzeek&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--L--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/63/GB-Lady_Jaye.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lady Jaye&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8b/GB-Ladybird.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ladybird Books&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6c/GB-TimelinesLandquake.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Landquake (Timelines)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Timelines Landquake&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c3/GB-G1Laserbeak.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Laserbeak (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Laserbeak&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/7a/GB-Leader1Armada.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Leader-1 (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada Leader-1&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b4/GB-LegacyofUnicron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Legacy of Unicron!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Legacy of Unicron!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a8/GB-Lennox.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;William Lennox&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a6/GB-ukletters.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Letters page (Marvel UK)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Marvel UK letters page&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/02/GB-Lipole.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lipole&amp;lt;/name&amp;gt; &amp;lt;name&amp;gt;lipoles&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/0d/GB-Lori.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lori&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/73/GB-LouHoover.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Lou Hoover&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--M--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/12/GB-M9-2HarpoonGun.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;M9-2 Harpoon Gun&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the M9-2 Harpoon Gun&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b3/GB-Machination.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Machination&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Machination&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c8/GB-Magnawing.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Magnawing&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/35/GB-Magnificence.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Magnificence&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Magnificence&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/77/GB-Malignus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Malignus (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Malignus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/0a/GB-MarissaFairborne.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Marissa Faireborn&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f5/GB-MartyIsenberg.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Marty Isenberg&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a6/GB-MatrixCannon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Matrix Cannon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Matrix Cannon&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/eb/GB-Max.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Max&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a8/GB-Mecannibals.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mecannibal&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Mecannibals&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/15/GB-Megabolt.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megabolt&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a8/GB-armadamegs.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&#039;&#039;Armada&#039;&#039; Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5c/GB-MegatronAnimated.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e4/GB-MegatronBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d1/GB-GigatronCR.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Megatron (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Megatron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fd/GB-MeltdownAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Meltdown (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Meltdown&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/79/GB-Metallikato.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Metallikato&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fd/GB_Mickey_Mouse.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mickey Mouse&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/59/GB-Mindset.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mindset (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 2 Mindset&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/84/GB-Minerva.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Minerva (Masterforce)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Masterforce Minerva&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/71/GB-Mirror.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mirror&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/ca/GB-MixmasterAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Mixmaster (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Mixmaster&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/83/GB-Monstructor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Monstructor (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Monstructor&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5a/GB-Multilingual.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;multilingual packaging&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--N--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/74/GB-Nebulos.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nebulos&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/7e/GB-NekomimiAandB.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nekomimi A and Nekomimi B&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8a/GB-NemesisPrimeIDW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nova Prime&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Nova/Nemesis Prime&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/ff/GB-Neon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Neon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;neon! Ow&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c2/GB-NightbeatG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nightbeat (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Nightbeat&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/42/GB-NightbeatArmada.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nightbeat (Armada)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Armada Nightbeat&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/bd/GB-NightscreamClassics.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Nightscream (Classics)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Classics Nightscream&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--O--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a4/GB-O.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;&amp;quot;O&amp;quot;&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/34/GB-Oparts.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;O-Part&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the O-Parts&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1d/GB-OctopunchG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Octopunch (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Octopunch&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/92/GB-OmegaSupreme.JPG&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Omega Supreme (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Omega Supreme&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d4/GB-ontheedgeofextinction.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;On the Edge of Extinction!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;On the Edge of Extinction!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2e/GB-KojiOnishi.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Koji Onishi&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Koji Onishi&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/19/GB-OptimusMinor.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Optimus Minor&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/99/GB-G1prime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Optimus Prime (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Optimus Prime&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/86/GB-RiDPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Optimus Prime (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Optimus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/94/GB-Orbital-Jump.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Orbital jump&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;orbital jumps&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4d/GB-MegatronBW1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Other Victories&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Other Victories&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/36/GB-OtherVoices1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Other Voices, Part 1&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Other Voices&amp;quot; Part 1&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/af/GB-Outback.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Outback (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Outback&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/97/GB-Overlord.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Overlord (Masterforce)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Masterforce Overlord&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--P--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/38/GB-PepsiConvoy.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Pepsi Convoy&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/38/GB-photodegradation.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Photodegradation&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;photodegradation&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/01/GB-PickUpBatRobo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Pick-Up (Bat-Rob%F4)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Bat-Robo Pick-Up&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/cc/GB-Plastic.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Plastic&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;plastic&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/da/GB-playpattern.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Play pattern&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;play pattern&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/cf/GB-PoisonBite.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Poison Bite&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/cc/GB-Power_Plans.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Power Plans&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/9e/GB-Pretender.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Pretender&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Pretenders&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c2/GB-Primus.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Primus&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/60/GB-ProfessorPrincess.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Professor Princess&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4f/GB_Protector.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Protector&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Protectors&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/15/GB-prototype.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Prototype&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;prototypes&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/28/GoBox_TFA_Prowl.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Prowl (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Prowl&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3a/GB-RIDProwl.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Prowl (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Prowl&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/90/GB-PsychoOrb.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Psycho-Orb&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/79/GB-rani.png&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Natasha Pyraniac&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Natasha Pyraniac&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Q--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/ec/GB-GagColosseum.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Q-Robo Transformer&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e8/GB_Questor.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Questor&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Questors&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/37/GB-Quintesson.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Quintesson&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Quintessons&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--R--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/64/GB-RackNRuin.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rack%27n%27Ruin&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Rack&#039;n&#039;Ruin&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a7/GB-Raindance.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Raindance&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e3/GB-RampageBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rampage (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Rampage&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/ab/GB-RamulusBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ramulus&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3f/GB-Rangefinder.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rangefinder&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/69/GB-RansackG2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ransack (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 2 Ransack&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/7d/GB-Raoul.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Raoul&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b5/GB-RatbatG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratbat (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Ratbat&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d5/GB-AniRatchet.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratchet (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Ratchet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/87/GB-RatchetG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratchet (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Ratchet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/16/Primeratchetgoicon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ratchet (Prime)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Prime Ratchet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/0c/GB-Rattrap.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rattrap&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/96/GB-SGRavage.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ravage (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Ravage&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/02/GB-Razorbeast.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Razorbeast&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a4/GB-RazorclawTFU.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Razorclaw (Universe)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Universe Razorclaw&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3f/GB-RecipeforDisaster.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Recipe for Disaster!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Recipe for Disaster!&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/30/GB-RedHot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Red Hot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/09/GB-ReggieSimmons.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Seymour Simmons&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/94/GB-RenoWilson.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Reno Wilson&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b8/GB-Reproduction.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Reproduction&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Transformers reproduction&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/0e/GB-Return_of_the_Headmaster.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Return of the Headmaster&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;The Return of the Headmaster&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/16/GB-RickAstley.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rick Astley&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/84/GB-Stepper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ricochet (Headmasters)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Targetmaster Ricochet&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3b/GB-RoadblockGIJoe.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Roadblock (G.I. Joe)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;G.I. Joe&#039;s Roadblock&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b3/GB-RodimusShattered.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rodimus (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Rodimus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3a/GB-G1RodimusPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Hot Rod (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Rodimus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/97/GB-Ron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ron&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Ron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3a/GB-SGRook.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rook (SG)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Shattered Glass Rook&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/85/GB-Rorza.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rorza, the Rocket-cycle Racer from Rigel III&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Rorza the Rocket-cycle Racer&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/df/GB-Rosanna.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rosanna (KP)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Kiss Players Rosanna&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/3d/GB-RotateBlade.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Cyber-slash tail weapon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the rotate blade&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/8d/GB-Roulette.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Roulette (Universe)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Universe Roulette&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/ff/GB-RubberduckyBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rubber Ducky&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Rubber Ducky&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b6/GB-Ruination.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ruination_(RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Ruination&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e8/GB-Rung.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Rung&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--S--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/ec/GB-SaltManZ.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Salt-Man Z&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c3/GB-Sari.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sari Sumdac&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/65/GB-Scale.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scale&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;scale (or lack of)&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2b/GB-ScavengerBM.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scavenger (BM)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Machines Scavenger&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c2/GB-ScowlG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scowl&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d5/GB-Scraplet.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scraplet&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;scraplets&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/7b/GB-Scrounge.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scrounge (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Scrounge&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/22/GB-Scylla.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Scylla&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2c/GB-SearchlightG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Searchlight (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Searchlight&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/52/GB-SectorSeven.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sector Seven&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/25/GB-SeekerGroup.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Seeker (body-type)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Seekers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a5/GBAniSentinelPrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sentinel Prime (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Sentinel Prime&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b3/GB-Servo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Servo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/52/GB-shatteredglass.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shattered Glass (franchise)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Shattered Glass universe&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/15/GB-Shatterpoint.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shatterpoint&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fa/GB-Shellformer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shellformer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;shellformers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/7d/GB-shelfwarmer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shelfwarmer&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;shelfwarmers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2f/GB-ShockblastEnergon.jpg &amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shockblast&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e5/GB-Shockwave.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Shockwave (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Shockwave&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/35/GB-Sideways(RiD).jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sideways (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise/Armada/Cybertron Sideways&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e4/GB-SignalFlareEn.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Signal Flare (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Signal Flare&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/99/GB-SilverboltBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Silverbolt (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Silverbolt&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b5/GB-SimonBelmondo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Simon Belmondo&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Simon Belmont&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/af/GB-furman.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Simon Furman&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/cd/GB-SkidZRID.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skid-Z (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Skid-Z&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/90/GB-SkidsG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skids (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Skids&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e0/GB-SkidsROTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skids (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Skids&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b8/GB-SkybyteRID.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sky-Byte (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Sky-Byte&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/bf/GB-SkyLynxG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sky Lynx (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Sky Lynx&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/42/GB-CybertronSkyfall.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skyfall (Cybertron)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Cybertron Skyfall&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/60/GB-SkywarpBW2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Skywarp (BWII)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars II Skywarp&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/ab/GB-SmokescreenG2.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Smokescreen (G2)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 2 Smokescreen&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1b/GB-SoundwavePrime.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Soundwave (Prime)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Prime Soundwave&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/0d/GB-Space_Bridge.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Space bridge&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;space bridges&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/90/GB-SpaceMini-ConTeam.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Space Mini-Con Team&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Space Mini-Con Team&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e8/GB-Spaceshot.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Spaceshot&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/52/GB-Coldsparks.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sparking gimmick&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;sparking gimmicks&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f1/GB-Springer.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Springer (G1)&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/79/GB-AnimatedStarscream.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Starscream (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Starscream&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/ad/GB-StarscreamMovie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Starscream (Movie)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;movie Starscream&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/01/GB-StarUpper.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Star Upper (BWII)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Star Upper&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1b/GB-StellaHolley.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Stella Holley&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/1a/GB-StickerAdventures.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sticker Adventures&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/bd/GB-Stratotronic_Jet.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Stratotronic Jet&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4b/GB-Sunstreaker.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Sunstreaker (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Sunstreaker&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/ab/GB-TAI.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;T-AI&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/15/GB-Tailgate.png&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tailgate (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Tailgate&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5e/GB-TankorROTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tankor (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Tankor&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/8/83/GB-TapoutG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tap-Out (G1)&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e3/GB-Tarantulas.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tarantulas (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Tarantulas&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f0/GB-TaraStrong.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tara Strong&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e7/GB-Target2006.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Target: 2006&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Target: 2006&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/22/GB-TechSpec.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tech Spec&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Tech Specs&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/0/08/GB-Teletraan_15.gif&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Teletraan 15&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b0/GB-TRED.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;The Real Effing Deal&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/5d/GB-thingsthatdontexist.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Category:Things_that_don%27t_exist&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;things that don&#039;t exist&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/21/GB-ThrottlerPCC.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Throttler&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/9/9d/GB-ThunderblastDecep.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Thunderblast (Decepticon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Decepticon Thunderblast&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/18/GB-G1Thunderwing.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Thunderwing (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Thunderwing&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/ab/GB-TigatronBW.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tigatron&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/21/GB-TommyKennedy.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tommy Kennedy&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/df/GB-TorquerifleG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Torque rifle&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the torque rifle&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/21/GB-RIDTow-Line.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Tow-Line (RID)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Robots in Disguise Tow-Line&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/ed/GB-toy.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Toy&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;toys&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/71/GB-ToySwapping.JPG&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Toy swapping&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;toy swapping&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4f/GB-TransformersUniverseActionBlast1Part1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Action Blast 1&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Action Blast 1&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/32/GB-AGoBoxOfYourOwn.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers_Wiki:A_GoBox_of_your_own!&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;a GoBox of your own&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e1/GB-Bulkhead_hat.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformer clothing&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a4/GB-PDTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transformers PD Type&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Transformers PD Type&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/33/GB-TranswarpCruiser.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Transwarp cruiser&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Transwarp Cruiser&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/fd/GB-TurboBatRobo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Turbo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--U--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d7/GB-Ultra-Energon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ultra-Energon&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Ore-13&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/3/38/GB-UltraMagnusEn.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Ultra Magnus (Energon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Energon Ultra Magnus&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/eb/GB-Unicron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Unicron#G.I._Joe_vs._the_Transformers&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Unicron&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/de/GB-unicronsingularity.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Unicron Singularity&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Unicron Singularity&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a3/GB-UnreleasedToys.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Unreleased toy&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;unreleased toys&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--V--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/df/GB-VVH.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Variable voltage harness&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the variable voltage harness&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/b6/GB-Vehicon.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Vehicon (BM)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Beast Machines Vehicons&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f6/GB-Velocitron.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt; Velocitron&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/a/a6/GB-Verity-Carlo.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Verity Carlo&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/2/2c/GB-Void.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Void&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the void&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--W--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e6/GB-AniWasp.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wasp&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Wasp&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/b/bc/GB-Waspinator.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Waspinator (BW)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Beast Wars Waspinator&amp;lt;/alt&amp;gt;&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/43/GB-Web_World.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Webworld&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;&amp;quot;Webworld&amp;quot;&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/48/GB-WeirdAl.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;&amp;quot;Weird Al&amp;quot; Yankovic&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/4/4b/GB-Wheelie.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wheelie (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Wheelie&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/c/c3/GB-WhirlG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Whirl (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Whirl&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/e/e7/GB-Windcharger.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Windcharger (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Windcharger&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/7/74/GB-Wiretap.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wire Tap V20&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/d/d6/GB-WolfangPred.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wolfang (Predacon)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Predacon Wolfang&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/1/16/GB-WreckGarAni.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wreck-Gar (Animated)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Animated Wreck-Gar&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/68/GB-WreckGarG1.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wreck-Gar (G1)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Generation 1 Wreck-Gar&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/f/f1/GB-Wreckers.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wrecker&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;the Wreckers&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/5/55/GB-WrecklooseROTF.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;Wreckloose (ROTF)&amp;lt;/name&amp;gt; &amp;lt;alt&amp;gt;Revenge of the Fallen Wreckloose&amp;lt;/alt&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--X--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt; &amp;lt;url&amp;gt;http://tfwiki.net/w2/images2/6/6a/GB-XGunner.jpg&amp;lt;/url&amp;gt; &amp;lt;name&amp;gt;X-Gunner&amp;lt;/name&amp;gt; &amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/document&amp;gt;&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=737324</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=737324"/>
		<updated>2012-08-01T16:11:57Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Technical Contact (and passwords) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TF:Prime jump-fight factoid ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve just started to watch Prime, and so far every episode I&#039;ve seen has had someone do a dramatic jump slowed down jump before landing on someone they are fighting, (and sometimes the camera). It&#039;s quirky enough that it&#039;s stood out, and I was wondering if it&#039;s worth adding to the episode guides? I just wanted to know now because I&#039;m going to be watching the whole of season one over the next few days, and it&#039;s easier if I know now than if it&#039;s added later. Failing that, is there anything else that people desperatly want added to the Prime episode guides that I should be looking out for? [[User:LiamK|LiamK]] 17:31, 23 January 2012 (EST)&lt;br /&gt;
:There is a certain level of ridiculous info you can get away with adding if you&#039;re a regular contributor doing serious and consistent work on the pages, and you handle it with sufficient comedic value. Ref: [[Enter the Nightbird|Brawn vs. Soundwave]], [[Countdown to Extinction (episode)|What Makes Starscream the Leader?]], etc. This could conceivably qualify as well, but approach with caution. -- [[User:Repowers|Repowers]] 21:22, 23 January 2012 (EST)&lt;br /&gt;
::Fair enough. It wasn&#039;t just going to be an adding silly jokes because oh ha ha I think I&#039;m hilarious. I was going to add anything missing to the relevent pages as well. It&#039;s just that 5 episodes in, we&#039;ve had at least 4 dramatic jumps into the camera, one dramatic jump away from the camera, and several semi-dramatic jumps off to the side. It&#039;s hilarious when characters like Bulkhead are apparently able to jump 500 feet into the air. If Springer ever shows up in this continuity family, he&#039;s gonna reach orbit.[[User:LiamK|LiamK]] 19:59, 25 January 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Expandible voice actor lists ==&lt;br /&gt;
&lt;br /&gt;
There&#039;s been some noise about some of the voice actor lists getting too long and the need for a way to have them hidden unless the user expands them. I&#039;ve done some test code which is [http://www.aldenbates.com/vatest.html currently hosted externally] but is easily converted into something that will work on the wiki. Currently tested on Firefox 9 and 10, Internet Explorer 6 and 8, Chrome 16, and Opera 11. Feedback, anyone? --[[User:Abates|abates]] 23:41, 31 January 2012 (EST)&lt;br /&gt;
:Although I was expecting a show/hide like how Wikipedia does its navigation templates, I don&#039;t mind this. Still needs a &amp;quot;hide&amp;quot; option, if that&#039;s possible. [[User:Interrobang|—Interrobang]] 23:46, 31 January 2012 (EST)&lt;br /&gt;
::I&#039;ve added in a hide option. --[[User:Abates|abates]] 00:21, 1 February 2012 (EST)&lt;br /&gt;
:::If you set up a &amp;lt;nowiki&amp;gt;{{voiceactors}}&amp;lt;/nowiki&amp;gt; template it&#039;d be easy to hide the &#039;extended&#039; cast names and have them show up automatically if you mouse over.  &#039;&#039;&#039;&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;{{voiceactors|DEFAULT-TO-VISIBLE|DEFAULT-TO-INVISIBLE}}&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
:::It wouldn&#039;t even require Javascript, it could be pure CSS.  Simpler is better, IMO.  -[[User:Derik|Derik]] 00:26, 1 February 2012 (EST)&lt;br /&gt;
::::I kinda dislike the idea of it opening on mouse-over, because it can have unexpected effects on the layout of the rest of the page if you&#039;re not paying attention to where you&#039;re moving your mouse pointer. --[[User:Abates|abates]] 18:32, 7 February 2012 (EST)&lt;br /&gt;
:::::I dislike mouse-over anything. Hide/show is a better interface. [[User:Interrobang|—Interrobang]] 18:48, 7 February 2012 (EST)&lt;br /&gt;
::::::Add a third dislike vote for mouse-over. If we do this which (if any) voice actors should be visible without clicking? Only the primary English performer? All English performers? All English and Japanese? None? I vote for none. --[[User:Khajidha|Khajidha]] 19:40, 7 February 2012 (EST)&lt;br /&gt;
:::::::I vote for whatever hides the German voice actors. I&#039;d put the English and Japanese actors on a higher tier of importance, but I&#039;m not opposed to hiding them. [[User:Interrobang|—Interrobang]] 19:48, 7 February 2012 (EST)&lt;br /&gt;
:::::::I think English and Japanese should always be shown, as they are the two biggest uh... markets? Whatever. Hide everything else, and DEFINITELY make the reveal a deliberate CLICK, not a mouseover. --[[User:M Sipher|M Sipher]] 19:56, 7 February 2012 (EST)&lt;br /&gt;
Can we have this template now? I think everybody agrees that the extraneous VAs should be hidden. If people want to hide English and Japanese VAs, then that can be further discussed. [[User:Interrobang|—Interrobang]] 10:48, 14 February 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:[[Template:va]]  (Should it be vas?)&lt;br /&gt;
:CSS entties which need to be added to the master file are as follows:&lt;br /&gt;
 .tt1-voiceactorlist .tt1-extraneousFuckers{&lt;br /&gt;
 	display:none;&lt;br /&gt;
 }&lt;br /&gt;
 .tt1-voiceactorlist:hover .tt1-extraneousFuckers{&lt;br /&gt;
 	display:inline;&lt;br /&gt;
 	font-size:smaller;&lt;br /&gt;
 }&lt;br /&gt;
 .tt1-voiceactorlist.tt1-more:after{&lt;br /&gt;
 	content: &amp;quot;more&amp;quot;;&lt;br /&gt;
 	padding-left:.5em;&lt;br /&gt;
 	font-size:smaller;&lt;br /&gt;
 	color:#999999;&lt;br /&gt;
 }&lt;br /&gt;
 .tt1-voiceactorlist:hover.tt1-more:after{&lt;br /&gt;
 	content: none;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
:Styles are visible now if you&#039;ve got [[User:Derik/kired tools|Kired Tools]] installed.  Alternately you can paste the above into [[Special:Mypage/monacobook.css|your css file]] to get a look at it in action.&lt;br /&gt;
&lt;br /&gt;
:If you want to make it Javascript that&#039;s beyond my remit, talk to one of the tech-guys.  (Also I think it&#039;s a bad idea, but I&#039;m against modifying the DOP for presentational purposes when there&#039;s already a markup language intended to control presentation: CSS.  The wiki is currently Javascript &#039;light&#039;, I prefer to keep it that way.) -[[User:Derik|Derik]] 13:21, 14 February 2012 (EST)&lt;br /&gt;
::Why does it say &amp;quot;hiding the non English/Japanese voiceactors unless the user chooses to mouse over the list&amp;quot;, I thought we had decided to make it use a click? --[[User:Khajidha|Khajidha]] 14:19, 14 February 2012 (EST)&lt;br /&gt;
::# I don&#039;t have the authority or access to implement that.&lt;br /&gt;
::# I think it&#039;s a terrible idea.&lt;br /&gt;
:::By all means, feel free to install the CSS styles (some CSS styles will be required regardless) and see what you think of this implementation.&lt;br /&gt;
:::The underlying HTML will be the same for a Javascript implementation anyway.  -[[User:Derik|Derik]] 15:13, 14 February 2012 (EST)&lt;br /&gt;
So, er, did we come to a decision on either of these methods? I have to admit I kinda forgot about it until now. --[[User:Abates|abates]] 02:13, 5 March 2012 (EST)&lt;br /&gt;
:I think consensus is to use clicks, not mouse-over, despite Derik&#039;s protests. [[User:Interrobang|—Interrobang]] 04:13, 13 March 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Facebook chat ==&lt;br /&gt;
&lt;br /&gt;
Did the wiki have anyone at the TF Prime Facebook chat? -[[User:Derik|Derik]] 22:38, 6 February 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Moving (Prime)/(WFC)/(RB)/(FOC) to (Aligned)==&lt;br /&gt;
Considering that characters are part of the Aligned continuity family, like how [[Megatron (Animated)]] belong to the Animated continuity family and [[Megatron (G1)]] belongs to the Generation 1 continuity family.&lt;br /&gt;
:No, that&#039;s not how we do things. Disambiguations are made by franchise of origin, hence why it&#039;s [[Megatron (G1)]], but [[Terrorsaur (BW)]] rather than Terrorsaur (G1), or why it&#039;s [[Ironhide (Energon)]] rather than Ironhide (UT). This has been discussed ad infinitum but the consensus remains the same. The only exception has been that characters who debuted in WFC but also appear in Prime get (Prime) because of the slight iffyness of the Aligned family. --[[User:Detour|Detour]] 10:26, 8 April 2012 (EDT)&lt;br /&gt;
::(Edit conflict&#039;d by Detour) I don&#039;t think we have an especially good, logical reason for why we do that with Aligned characters, other than that it simply feels very &amp;quot;wrong&amp;quot; to label a character with a prominent, regular fictional appearance in the &#039;&#039;Prime&#039;&#039; cartoon with a disambig based on their cameo appearance in a video game tie-in novel. Honestly, given that odd nature of the whole &amp;quot;Aligned&amp;quot; idea and the fact we&#039;re already breaking our standard with this continuity family&#039;s characters &#039;&#039;anyway&#039;&#039;, I&#039;m not entirely opposed to just using (Aligned) as a much handier, self-explanatory disambig, but I don&#039;t know if anyone would agree. It &#039;&#039;would&#039;&#039; feel odd, for instance, to label the Rescue Bots with that tag. And Bot Shots are a tremendous pain in the arse - it&#039;s so annoying when we have to create articles for Aligned Roadbuster and Topspin and whoever when the Bot Shots are just clearly the movieverse characters. The whole Aligned thing can sometimes be a real wiki-headache. - [[User:Chris McFeely|Chris McFeely]] 10:32, 8 April 2012 (EDT)&lt;br /&gt;
:::Why DON&#039;T they just get inserted into the Movie characters sections, then? [This thing applies to a lot of Hasbro&#039;s &amp;quot;fuzzier&amp;quot; lines of late, really - stuff&#039;s matched up with what other characters in the line are part of rather than just including them in an existing article for the version they&#039;re designed after]. - [[User:Mammalian Verisimilitude|Mammalian Verisimilitude]] 10:41, 8 April 2012 (EDT)&lt;br /&gt;
::::I think treating Bot Shots as part of Aligned is somewhat dubious. Is there a reason it can&#039;t be viewed as using characters from multiple continuity families? --[[User:KilMichaelMcC|KilMichaelMcC]] 11:00, 8 April 2012 (EDT)&lt;br /&gt;
:::::We already discussed this [[Talk:Bot Shots|here]]. --[[User:Abates|abates]] 18:59, 8 April 2012 (EDT)&lt;br /&gt;
::::::We do that so we don&#039;t have to pick nits over where the characters belong. Bot Shots Optimus Prime could fit many of his various incarnations. I disagree with renaming them to (Aligned), somewhat because all of the (WFC) guys will eventually be moved to (Prime), anyway. [[User:Interrobang|—Interrobang]] 05:48, 10 April 2012 (EDT)&lt;br /&gt;
But should (Prime)/(WFC)/(RB)/(FOC) be renamed (Aligned) or not?--[[User:Finister2|Finister2]] 05:43, 10 April 2012 (EDT)&lt;br /&gt;
:No. --[[User:Detour|Detour]] 11:29, 10 April 2012 (EDT)&lt;br /&gt;
::Why?--[[User:Finister2|Finister2]] 13:55, 10 April 2012 (EDT)&lt;br /&gt;
:::It&#039;s already been explained why. --[[User:Detour|Detour]] 14:40, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Universal, properly-translated names of the Japanese Beast Wars/Beast Machines episodes ==&lt;br /&gt;
&lt;br /&gt;
Okay, this has been bothering me for a while. On each page of the [[Beast Wars: Transformers (cartoon)#Episodes|Beast Wars]] and [[Beast Machines: Transformers (cartoon)#Episodes|Beast Machines]] episode, the Japanese title of each episode is given an English translation in each page&#039;s Foreign Localization section. And on the [[Geneon Universal Entertainment|Geneon]] page, under the sections of its Beast Wars, Beast Wars Metals, and Beast wars Returns releases, the Japanese episode titles are also translated into English. What&#039;s bothering me is that certain episodes are given slightly differently-translated English names when comparing those given on the actual episode pages to those given on the Geneon page. Here&#039;s a list of each differing episode title. The episode page names are on the left, and the Geneon page names are on the right:&lt;br /&gt;
:&amp;quot;The Solitary Warrior Tigatron&amp;quot; vs. &amp;quot;Lonely Warrior Tigatron&amp;quot;&lt;br /&gt;
:&amp;quot;Goodbye, Rattle!?&amp;quot; vs. &amp;quot;Goodbye Rattle!?&amp;quot;&lt;br /&gt;
:&amp;quot;The Falcon Warrior Airrazor&amp;quot; vs. &amp;quot;Falcon Warrior Airazor&amp;quot;&lt;br /&gt;
:&amp;quot;Floating Island Death Match Part 1&amp;quot; vs. &amp;quot;Floating Island Deathmatch Part 1&amp;quot;&lt;br /&gt;
:&amp;quot;Floating Island Death Match Part 2&amp;quot; vs. &amp;quot;Floating Island Deathmatch Part 2&amp;quot;&lt;br /&gt;
:&amp;quot;The Destrons&#039; Dramatic Finish&amp;quot; vs. &amp;quot;The Destrons Make Drama&amp;quot;&lt;br /&gt;
:&amp;quot;Two Dinobots?&amp;quot; vs. &amp;quot;There are 2 Dinobots?&amp;quot;&lt;br /&gt;
:&amp;quot;The Ant Warrior from Hell, Inferno&amp;quot; vs. &amp;quot;Inferno, the Ant Warrior from Hell&amp;quot;&lt;br /&gt;
:&amp;quot;Revive, Beast Power!&amp;quot; vs. &amp;quot;Resurrected Beast Power&amp;quot;&lt;br /&gt;
:&amp;quot;The Immortal Starscream&amp;quot; vs. &amp;quot;Starscream&#039;s Invulnerability&amp;quot;&lt;br /&gt;
:&amp;quot;Fare Thee Well, Tigatron&amp;quot; vs. &amp;quot;Farewell Tigatron&amp;quot;&lt;br /&gt;
:&amp;quot;The Great King of Terror Arrives!&amp;quot; vs. &amp;quot;The King of Terror Arrives!&amp;quot;&lt;br /&gt;
:&amp;quot;You&#039;re Under Arrest, Meow&amp;quot; vs. &amp;quot;Meyow&#039;re Under Arrest&amp;quot;&lt;br /&gt;
:&amp;quot;Gro~w Bigger&amp;quot; vs. &amp;quot;Groooww Bigger&amp;quot;&lt;br /&gt;
:&amp;quot;I Am Resurrected, Dā&amp;quot; vs. &amp;quot;I am Resurrected!&amp;quot; &lt;br /&gt;
:&amp;quot;Blaze, Dragon&amp;quot; vs. &amp;quot;Blazing Dragon&amp;quot;&lt;br /&gt;
:&amp;quot;I Hath Returned&amp;quot; vs. &amp;quot;We Have Returned&amp;quot;&lt;br /&gt;
:&amp;quot;Resurrection of the Legend&amp;quot; vs. &amp;quot;Rebirth of the Legend&amp;quot;&lt;br /&gt;
:&amp;quot;The Dearly Wished Transformation&amp;quot; vs. &amp;quot;The Transformation of a Dear Wish&amp;quot;&lt;br /&gt;
:&amp;quot;The Memory of a Friend&amp;quot; vs. &amp;quot;Memory of a Friend&amp;quot;&lt;br /&gt;
:&amp;quot;Mission of the Stars&amp;quot; vs. &amp;quot;Message of the Stars&amp;quot;&lt;br /&gt;
:&amp;quot;The Moment of Truth&amp;quot; vs. &amp;quot;The End&amp;quot;&lt;br /&gt;
:&amp;quot;Captured Souls&amp;quot; vs. &amp;quot;Capture of the Spirits&amp;quot;&lt;br /&gt;
:&amp;quot;The Hellish All-out Attack&amp;quot; vs. &amp;quot;The General Offensive of Hell&amp;quot;&lt;br /&gt;
:&amp;quot;The Course of the Future&amp;quot; vs. &amp;quot;The Fate of the Future&amp;quot;&lt;br /&gt;
Could someone who&#039;s more adept at Japanese please clarify which titles should be universally used on this Wiki, and help in an attempt to create a greater sense of unity between the individual episode pages and the Geneon page (and with any other such pages on this Wiki as well)? --[[User:Sabrblade|Sabrblade]] 01:29, 10 April 2012 (EDT)&lt;br /&gt;
:The titles on the episode pages are more refined. Not to mention it would be easier to change the titles on a single page. [[User:Interrobang|—Interrobang]] 05:58, 10 April 2012 (EDT)&lt;br /&gt;
::&amp;quot;I Hath Returned&amp;quot;? That&#039;s incorrect English. &amp;quot;Hath&amp;quot; was third person singular, not first person (&amp;quot;he hath&amp;quot; not &amp;quot;I hath&amp;quot;). --[[User:Khajidha|Khajidha]] 08:10, 10 April 2012 (EDT)&lt;br /&gt;
:::[[User:Apcog|Apcog]] translated that. I recall the intention was to capture the old-timey connotation of the original Japanese. [[User:Interrobang|—Interrobang]] 08:21, 10 April 2012 (EDT)&lt;br /&gt;
:Something else that has me pondering are the specific choices made in spelling and grammar of a few of these titles. Like, the inclusion of a &amp;quot;The&amp;quot; where it may not need be (like in &amp;quot;The Solitary Warrior Tigatron&amp;quot; instead of just &amp;quot;Solitary Warrior Tigatron&amp;quot;, or &amp;quot;The Falcon Warrior Airrazor&amp;quot; vs. &amp;quot;Falcon Warrior Airazor&amp;quot;) or the use a comma (like in &amp;quot;Goodbye, Rattle!?&amp;quot; as opposed to &amp;quot;Goodbye Rattle!?&amp;quot;) or a space between two words instead of making them a compound word (&amp;quot;Death Match&amp;quot; vs. &amp;quot;Deathmatch&amp;quot;), and the synonymous use of &amp;quot;Resurrect(ion)&amp;quot;, &amp;quot;Rebirth&amp;quot;, and &amp;quot;Revive&amp;quot;. In these cases, are the titles on the episode pages truly the more precise titles, or could they also use some amending? --[[User:Sabrblade|Sabrblade]] 11:20, 10 April 2012 (EDT)&lt;br /&gt;
::Most of those details are up to the translator&#039;s discretion. But, like I said, it&#039;s easier to just edit the Genon page rather than across multiple articles. [[User:Interrobang|—Interrobang]] 11:33, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Category:Deceased ==&lt;br /&gt;
Sub-categories&lt;br /&gt;
*Category:Deceased (Generation 1 cartoon)&lt;br /&gt;
**Category:Deceased (Marvel comics)&lt;br /&gt;
**Category:Deceased (BW)&lt;br /&gt;
*Category:Deceased (Armada)&lt;br /&gt;
*Category:Deceased (Energon)&lt;br /&gt;
*Category:Deceased (Movie)&lt;br /&gt;
**Category:Deceased (ROTF)&lt;br /&gt;
**Category:Deceased (DOTM)&lt;br /&gt;
*Category:Deceased (SG)&lt;br /&gt;
*Category:Deceased (Animated)&lt;br /&gt;
*Category:Deceased (Aligned)&lt;br /&gt;
&lt;br /&gt;
Why not?--[[User:Finister2|Finister2]] 05:52, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Deceased&amp;quot; is a stupid idea on a wiki that focuses on fiction with multiple continuities, time periods, vague &amp;quot;deaths&amp;quot;, and resurrections. All characters will inevitably die at one point. This is not a warranted category. [[User:Interrobang|—Interrobang]] 05:55, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Vote for &amp;quot;No&amp;quot;.&lt;br /&gt;
::A character may get killed in a sub-continuity but alive in another. Not to mention if the character will be resurrected or not. (So, we don&#039;t need Category:Resurrected characters, either.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:11, 10 April 2012 (EDT)&lt;br /&gt;
:::It is an appealing idea, to have categories for characters that are deceased &amp;quot;now.&amp;quot; If they are patched up, they get removed from the category. I would have changed the categories to &amp;quot;Deceased (Movieverse)&amp;quot; and &amp;quot;Deceased (UT cartoon)&amp;quot; since they are supposed to be all one continuity. The only problem I see is vague deaths and continuity inconsistencies. People would probably disagree with me that [[Brawn (G1)]] obviously survived that shot to the shoulder. So, unfortunately, I can&#039;t fully endorse the idea. - [[User:Starfield|Starﬁeld]] 11:08, 10 April 2012 (EDT)&lt;br /&gt;
::::If we go by continuity, we are going to have a &#039;&#039;lot&#039;&#039; of &amp;quot;Deceased&amp;quot; categories. And you could only do it by continuity, which goes against our current methods to have categories by franchise. --[[User:Abates|abates]] 16:46, 10 April 2012 (EDT)&lt;br /&gt;
::I agree with you guys in regards to characters. but, what about a category for &#039;&#039;real&#039;&#039; people who have been involved with the Transformers franchise (like voice actors, designers, writers, etc.) who are deceased? --[[User:Sabrblade|Sabrblade]] 11:11, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Scheduled downtime. ==&lt;br /&gt;
&lt;br /&gt;
Our hoster is moving servers around tomorrow.  One of ours is gonna be moved starting between &amp;quot;Thu Apr 12 23:00:00 UTC 2012 and Fri Apr 13 05:00:00 UTC 2012.&amp;quot;  So that&#039;ll happen.  --[[User:ItsWalky|ItsWalky]] 21:52, 11 April 2012 (EDT)&lt;br /&gt;
:I presume all the necessary backups have been made?  --[[User:Thylacine 2000|Thylacine 2000]] 22:37, 11 April 2012 (EDT)&lt;br /&gt;
::Regularly, like clockwork. --[[User:ItsWalky|ItsWalky]] 00:51, 12 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Category: Cats==&lt;br /&gt;
Presumably we have some kind of unwritten &amp;quot;We don&#039;t categorise by altmode&amp;quot; rule in play here, so I apologise if my adding a bunch of characters to this category seemed heavy-handed but in my defence the distinction between &#039;&#039;Shattered Glass&#039;&#039; Steeljaw and G1 Ravage is, eh, pretty much non-existent, Cheetor himself says &amp;quot;I&#039;m a cat&amp;quot;, it&#039;s a subset of Characters by species and we have K-9 under Dogs, so it&#039;s hardly black and white. But my main reason for doing it was that in SEO terms, having the word &amp;quot;Cats&amp;quot; repeatedly linked a bunch of times throughout the wiki is really quite useful, as in the wider internet cats are kind of a big deal. Real effing kitten calendars and all that. Isn&#039;t that something to consider? --[[User:Emvee|Emvee]] 03:47, 26 April 2012 (EDT)&lt;br /&gt;
:Categorizing by alternate mode has been brought up several times, but nobody has bothered to hammer out the details and do it. I don&#039;t particularly care for it one way or another, but putting Transformers in plain categories like &amp;quot;Cats&amp;quot; and &amp;quot;Watercraft&amp;quot; based on alternate mode makes them useless to those who only want to know about actual cats or watercraft in &#039;&#039;Transformers&#039;&#039;. That said, I completely fail to see the relevance of Internet memes to our categorization system. [[User:Interrobang|—Interrobang]] 03:59, 26 April 2012 (EDT)&lt;br /&gt;
::Well, just that keywords are good for search engines, keywords that link to relevant pages even better and lots of people search for cats on the internet. I know that my girlfriend does and at a time like this (when my birthday is coming up) it&#039;s not impossible that she might search for &amp;quot;Transformers cats&amp;quot;. If that led her to, say, SG Ravage&#039;s page (which is quite accessible to an internet-savvy non-fan with its twitter references and Walky&#039;s cartoons) then she may well stick around to find out more, and maybe look for more Transformers cats through the category links at the bottom of the page. At the moment our first link in a Google search is Snow Cat, who&#039;s kinda cool but you&#039;d probably have to be a GI Joe fan to really get it. I dunno, I&#039;m just spitballing here, but part of my job is SEO so I hope I at least know something like what I&#039;m talking about. Anyway, that was my line of thinking. If it&#039;s problematic then that&#039;s fine, but I&#039;m not really convinced by the &amp;quot;people looking for actual cats or watercraft in &#039;&#039;Transformers&#039;&#039;&amp;quot; argument either - on a TF wiki I think they&#039;d assume Transformers that turn into either of those things would be included by default. They are robots in disguise, after all. --[[User:Emvee|Emvee]] 14:36, 26 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Google + ==&lt;br /&gt;
I&#039;ve made a Google + for the wiki. I just need someone to link it to the main page because I don&#039;t know how. This is the link: https://plus.google.com/106006102124340784739 -- [[User:Spydersix|Spydersix]] 19:00, 30 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Alt-mode listings ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve seen several things here discussing listing alt-modes by &#039;&#039;category&#039;&#039;, but I&#039;m looking for something a bit less complicated. I would really appreciate having each character&#039;s page at least openly list their alt-mode in the beginning; as it stands, some pages do not make it clear what that character turns into, generally only mentioning it in passing or in screenshots. I think some kind of fill-in-the-blanks template would work well, the kind they use on Wikipedia for comic book superheroes that have sections for code names, secret identities, a brief list of abilities, etc. It doesn&#039;t even have to be that thorough, just a small piece under the page&#039;s main picture that has &amp;quot;name, alt-mode, faction&amp;quot; would be a nice change of pace. [[User:Deusoma|Deusoma]] 15:15, 2 May 2012 (EDT)&lt;br /&gt;
:Your idea is impractical because many characters have had numerous altmodes. Listing all of them would be ridiculously long while trying to generalize them down to a single listing would be useless. For example, [[Optimus Prime (G1)|Optimus Prime]]. The casual fan might assume that you could just list his altmode as &amp;quot;semi truck&amp;quot; and be done with it. But he has also been a bat, a Lambourghini Diablo and a shoe. And that doesn&#039;t even get into what kind of &amp;quot;semi truck&amp;quot; he is: cab over engine like the original or long nose like the Generation 2 version. And does it have a sleeper. With or without trailer. And you still haven&#039;t covered his non-Earth modes. None of the Cybertronian forms we have seen looks anything like any of the others. --[[User:Khajidha|Khajidha]] 15:29, 2 May 2012 (EDT)&lt;br /&gt;
::I don&#039;t care one way or the other, but we could hide the minor alternate modes, the same as we do with voice actors. [[User:Interrobang|—Interrobang]] 15:40, 2 May 2012 (EDT)&lt;br /&gt;
:While I agree that we should do our best to list alt-modes, at the beginning of the article doesn&#039;t seem like the most efficient place to do it.  Rather, we should continue listing the alt-mode in the description of the various toys and work on filling in those that are lacking. - [[User:Shellspark|Shellspark]] 16:26, 2 May 2012 (EDT)&lt;br /&gt;
: Well, there are a lot of fiction-only altmodes going on. I could see this working as a Notes subsection, possibly as a gallery. --[[User:M Sipher|M Sipher]] 17:27, 2 May 2012 (EDT)&lt;br /&gt;
:: Yeah, that&#039;s why I always attempt to get an image of each altmode in the fiction section as they appear.  --[[User:ItsWalky|ItsWalky]] 17:56, 2 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Redundant foreign names==&lt;br /&gt;
According to Interrobang:&lt;br /&gt;
:&amp;quot;&#039;&#039;So? It&#039;s been the standard for a long time and exactly how do you expect readers to know that Japan uses the same name without noting it?&#039;&#039;&amp;quot;&lt;br /&gt;
1) No, it has NOT been &amp;quot;the standard for a long time&amp;quot;. In fact, we didn&#039;t do this for YEARS. You&#039;re the one who seems to have decided, fairly recently, to pull this crap. Like with &amp;quot;mammoth&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
2) Well. Why don&#039;t we just list every country in the world that also uses that name? After all, how exactly are we to know if the Canadians don&#039;t not call her Airachnid, or the Germans, or the Zimbabweans (holy shit &amp;quot;Zimbabweans&amp;quot; is &#039;&#039;correct&#039;&#039;?), or the other 190-odd nations across the globe? Oh wait, because we can use some incredibly base deductive reasoning and assume that unless a &#039;&#039;different&#039;&#039; name is listed for a country, &#039;&#039;it&#039;s the same name and we don&#039;t need to fucking list it there just so you can get a katakana-boner&#039;&#039;. --[[User:M Sipher|M Sipher]] 06:45, 3 May 2012 (EDT)&lt;br /&gt;
:There is the argument to be made that not including a foreign name leaves the reader unable to know if the character either has the same name in that country, or if that information is just &#039;&#039;missing&#039;&#039; from the article. Not that I disagree that it &#039;&#039;really&#039;&#039; seems to have got out of control, to the point that the Japanese words for &amp;quot;doctor&amp;quot; or &amp;quot;scientist&amp;quot; or &amp;quot;coach&amp;quot; or &amp;quot;mammoth&amp;quot; are being added to nameless characters&#039; articles. I enjoyed our older attitude that basically amounted to &amp;quot;fuck katanana unless necessary to explain something&amp;quot;. - [[User:Chris McFeely|Chris McFeely]] 07:05, 3 May 2012 (EDT)&lt;br /&gt;
::The counter-argument was already made above. &#039;&#039;Transformers&#039;&#039; is a global brand now, and it&#039;s basically a waste of space to list every country where Optimus Prime is called &amp;quot;Optimus Prime&amp;quot; (or as close as they can get phonetically), and better to assume that it is &amp;quot;Optimus Prime&amp;quot; unless otherwise noted. The &#039;&#039;probability&#039;&#039; that the name is the same is pretty damn good nowadays, especially in Japan. --[[User:M Sipher|M Sipher]] 07:34, 3 May 2012 (EDT)&lt;br /&gt;
:::I&#039;m sympathetic. If somebody actually does go through the trouble to track down what Airachnid is called in Zimbabwean and it ends up being &amp;quot;Airachnid&amp;quot; then if they put the information down, then nobody else will have to go through the trouble of looking it up. What if redundant foreign names are left &amp;lt;nowiki&amp;gt;&amp;lt;!-- commented out? --&amp;gt;&amp;lt;/nowiki&amp;gt; - [[User:Starfield|Starfield]] 10:04, 3 May 2012 (EDT)&lt;br /&gt;
::::I hate seeing redundant names, but I agree that a certain degree of &amp;quot;is this already known?&amp;quot; may exist in a vacuum. I&#039;m not opposed to leaving them in the code but commented out to keep them out of the page itself. -[[User:LV|LV]] 00:00, 4 May 2012 (EDT)&lt;br /&gt;
:::::Would it be acceptable to have a template that displays the foreign names, but hides or combines entries if the names are not unique? The template might also be able to auto-categorize by &amp;quot;characters missing &#039;&#039;language&#039;&#039; names&amp;quot;, too.[[Special:Contributions/192.249.47.177|192.249.47.177]] 18:49, 29 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Toy Fair/Pre-Toy Fair Catalogues==&lt;br /&gt;
Collectively we went all out on getting hold of the 86 PTF catalogue when it popped up on eBay and have a nice page with full scans of it (I say &amp;quot;we&amp;quot; I completely missed that fund-raising drive). Going forward, is it a feasible aim for other Toy Fair and Pre-Toy Fair cats to be collected for the Wiki or is 86 known to be the only one of significant interest? I ask because I just stumbled upon an eBay seller with the 88 TF cat (which I&#039;d hoped to procure for use on my Visionaries wiki) and some early 90s ones, all of which are beyond my means, but at relatively reasonable prices. Can&#039;t link to them on my phone, but I thought I&#039;d mention it in case they are of significant interest like the 86 one was. [[User:Danja|Danja]] 03:45, 6 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Google Chrome ==&lt;br /&gt;
Does anybody else experience a &#039;&#039;really&#039;&#039; slow connection to only this site while using Google Chrome? -- [[User:Spydersix|spyder]] 21:42, 17 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
FYI: &amp;lt;nowiki&amp;gt;{{bigquote}}&amp;lt;/nowiki&amp;gt; overlaps images in Google Chrome, like on [[Morocco]]. I don&#039;t know when that started. - [[User:Starfield|Starfield]] 16:03, 22 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
Now, the &amp;lt;nowiki&amp;gt;{{picsneeded}}&amp;lt;/nowiki&amp;gt; tag overlaps the top of the episode template. It might just be my computer, but I don&#039;t know. -- [[User:Spydersix|spyder]] 18:28, 29 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:These layout problems are apparently an issue with the latest version of Chrome. I guess they&#039;ll get fixed in the next release or something. --[[User:Abates|abates]] 18:10, 31 May 2012 (EDT)&lt;br /&gt;
::There&#039;s been two new versions of Chrome since you said that, [[User:Abates|abates]], and it hasn&#039;t been fixed, so I&#039;m reporting it to Google. Like that&#039;s gonna work. -- [[User:Spydersix|spyder]] 10:09, 19 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Transformers 4 ==&lt;br /&gt;
Does anyone mind if I take a stab at creating a page for it? I&#039;m not some idiot who&#039;s gonna create a crappy page with no effort. Or is it &#039;&#039;way&#039;&#039; to early to do that? -- [[User:Spydersix|spyder]] 19:03, 6 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Prime game ==&lt;br /&gt;
What do people think about putting [[Transformers Prime: The Game]] in the nav bar? -- [[User:Spydersix|spyder]] 09:47, 10 June 2012 (EDT)&lt;br /&gt;
:Or we can replace the link to the Prime cartoon page with a link to the Prime franchise page, that way it avoids overcluttering the navbar. --[[User:Detour|Detour]] 14:15, 10 June 2012 (EDT)&lt;br /&gt;
::Yeah, that also might work. -- [[User:Spydersix|spyder]] 09:23, 11 June 2012 (EDT)&lt;br /&gt;
:::At least 95% of the people who click on that are likely to be looking for info on the cartoon, and I feel like if we have Rescue Bots and Dark of the Moon pointing to the cartoon/film rather than the franchises, we should aim to be consistent with our navigation. We&#039;ll presumably have to add [[Transformers Universe]] there eventually anyway. --[[User:Abates|abates]] 16:46, 11 June 2012 (EDT)&lt;br /&gt;
::::Yeah, I forgot about that. We probably can take Dark of the Moon to declutter it. -- [[User:Spydersix|spyder]] 16:50, 11 June 2012 (EDT)&lt;br /&gt;
:::::We could divide things up with subheaders or just by putting darker lines in to split up the links. Man, I wish there was a way to easily add in more links without cluttering up the menu too much. It feels like we should have links to current toylines as well, and maybe the current IDW comics. --[[User:Abates|abates]] 17:21, 11 June 2012 (EDT)&lt;br /&gt;
::::::Yeah probably, but what can you do, right? And I like that subheader idea. And on a different note, &amp;quot;Transformers Prime: The Game&amp;quot; is a mouthful. How can we abbreviate that?  -- [[User:Spydersix|spyder]] 17:36, 11 June 2012 (EDT)&lt;br /&gt;
::::::: TF Prime: The Game??? [[User:Bumblebee2000|Bumblebee2000]] 08:19, 12 June 2012 (EDT)&lt;br /&gt;
::::::::Probably the best we can do. -- [[User:Spydersix|spyder]] 13:37, 12 June 2012 (EDT)&lt;br /&gt;
:::::::::So what are we going to do about this nav bar? -- [[User:Spydersix|spyder]] 18:17, 12 June 2012 (EDT)&lt;br /&gt;
::::::::::Are we using the &amp;lt;nowiki&amp;gt;{{Primecap}}&amp;lt;/nowiki&amp;gt; template for images from it? -- [[User:Spydersix|spyder]] 10:07, 13 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::Be patient. This stuff never happens overnight. --[[User:Detour|Detour]] 18:50, 12 June 2012 (EDT)&lt;br /&gt;
:On abbreviating the name, as everything on the wiki is Transformers, you can say &amp;quot;Prime: The Game&amp;quot; instead of &amp;quot;TF Prime: The Game&amp;quot;. The &amp;quot;TF&amp;quot; is assumed. [[User:JohnnyMrNinja|JohnnyMrNinja]] 15:30, 13 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Rare/Unkown vintage G1 Walkie Talkie toys? ==&lt;br /&gt;
&lt;br /&gt;
Hi guys. I was just browsing ebay and came across 3 old G1 Walkie Talkies that don&#039;t appear to be mentioned on the wiki anywhere.&lt;br /&gt;
#1- [http://www.ebay.com/itm/Transformers-Walkie-Talkie-ROBOT-1987-Hasbro-Inc/270982316728/ This] one appears to be an Argentinian Transformer with the mold licensed from Commando Toys.&lt;br /&gt;
#2 [http://www.ebay.co.uk/itm/Transformers-G1-Walkie-Talkies-Boxed-/300654034838?pt=US_Action_Figures&amp;amp;hash=item4600607f96/ These] guys appear to be unnamed generics.&lt;br /&gt;
#3 [http://www.ebay.co.uk/itm/REAL-VTG-80s-TRANSFORMERS-INTERCOM-TELEPHONE-SYSTEM-WIRED-WALKIE-TALKIE-NIB-MIB-/360458042129?pt=US_Action_Figures&amp;amp;hash=item53ecf93b11 This] one features two Optimus Primes as an &amp;quot;Electronic Intercom Telephone System&amp;quot; (which seems to basically be two walkie talkies connected via a wire). Box says made by Nasta in lager photos and check out that goofy looking transformation sequence.&lt;br /&gt;
&lt;br /&gt;
I&#039;m not entirely sure if any of these are legit as I&#039;ve never seen them mentioned anywhere else before. Anyone else know more info about these? Should they be added to wiki? [[User:RavenG|RavenG]] 02:27, 16 June 2012 (EDT)&lt;br /&gt;
:I used to have a set of #2, but I&#039;ve no idea where they are now. They were pretty common in the UK I think. --[[User:Emvee|Emvee]] 03:17, 19 July 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Technical Contact (and passwords) ==&lt;br /&gt;
&lt;br /&gt;
Hi, guys. It&#039;s Botch the Crab... though I can&#039;t sign in as my account. I lost my password. I don&#039;t know what email address is associated with the account, but whichever one it is, when I did the &amp;quot;forgot password&amp;quot; thing and was told a new password was emailed to me, I never received any emails. &lt;br /&gt;
&lt;br /&gt;
So my first question is: who can help me re-claim my account?&lt;br /&gt;
&lt;br /&gt;
My second question is: who are the technical administrators of the wiki, and is that information posted somewhere that I couldn&#039;t find? I tried contacting Chris McFeely and David Willis, but neither of them were able to help, nor did they know who &lt;br /&gt;
would. So! Suggestions?&lt;br /&gt;
&lt;br /&gt;
:I tried emailing your username, but it didn&#039;t work... It said that I need to be logged in with a valid email set, but I had done both of those things. Can any other user successfully send an email to [[User:Botch the Crab]]? Because it might be the email module that isn&#039;t working and that&#039;s why you can&#039;t reset your password. I don&#039;t think the MediaWiki framework has been updated since 2008 (we&#039;re running [http://www.mediawiki.org/wiki/Release_notes/1.12#MediaWiki_1.12.0 MediWiki 1.12.0]), and if David Willis doesn&#039;t know who&#039;s running the tech (seeing as how [http://www.networksolutions.com/whois-search/tfwiki.net he registered this site), it makes me think that there are not any people doing that. I could be mistaken, but I think there are only admins that are affecting change within the MW software.&lt;br /&gt;
:As far as I know, once a password to a MW site is lost there is no recovery outside of email, at least that is the case for WP. [[User:JohnnyMrNinja|JohnnyMrNinja]] 17:49, 16 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I just tried sending an email to Botch and it worked, though the copy I sent myself ended up in my gmail spam folder. --[[User:Abates|abates]] 18:48, 16 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::You&#039;re right, I had to confirm my email address and now I can email, although emails from this site were marked as spam for me as well. Botch, I can only hope that you haven&#039;t checked your spam folder. [[User:JohnnyMrNinja|JohnnyMrNinja]] 00:54, 17 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Thanks for all the help, guys. Unfortunately, I haven&#039;t received any of the &amp;quot;new password&amp;quot; emails. (Yes, I keep checking the spam folder.) The frustrating part is that without being able to sign in, I cannot confirm &#039;&#039;which&#039;&#039; email address these are being sent to. All my emails are forwarded to my gmail account, so I have no idea why I wouldn&#039;t receive them. It&#039;s a mystery. It&#039;s weird to think it&#039;s possible that none of the administrators have the access or ability to solve this.--[[User:Botch|Botch]] 23:18, 18 June 2012 (EDT)&lt;br /&gt;
::I thought Scout and/or McFly were doing our technical stuff. --[[User:Abates|abates]] 23:27, 18 June 2012 (EDT)&lt;br /&gt;
:::I&#039;m pretty sure that Scout and I have been over this fairly often:  We&#039;re pretty damned busy, so we&#039;re not monitoring the Community Portal pages.  If someone&#039;s forgotten their password AND the associated email address, there&#039;s no real secure way to get them back in.  Email addresses aren&#039;t exposed to us until we get down to the to SQL DB layer, barring some additional extensions that would expose everyone&#039;s information to a trusted few.  I strongly suggest making a new account in the interim, while we discuss the repercussions of adding some more User Management extensions, and figuring out who we can trust.  I&#039;ll tell you this much, though:  If your password isn&#039;t basically a random scramble of characters and symbols, I wouldn&#039;t trust you with maintenance access.  It&#039;s like giving a handgun to a chimp.  (Not picking on anyone in particular, but let&#039;s keep this in mind as we start adding cooks to the kitchen.) --[[User:McFly|McFly]] 11:54, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Sad update:  I managed to scrounge up the database password from some old notes, and I&#039;ve got your email address:  Same one listed on your website.  If you can disable whatever&#039;s filtering out your spam, that might help, since your site mentions some sort of sender-response mechanism.  Poor old Mediawiki is too stupid/honest to pretend that she&#039;s a human.--[[User:McFly|McFly]] 12:11, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Captions need to go ==&lt;br /&gt;
&lt;br /&gt;
It seems I am not the only one who finds the caption &amp;quot;humor&amp;quot; annoying and irrelevant to the photo it is placed with. I see in huge bold letters &#039;THE FUNNY STAYS. -The Management&#039; So it seems this is not the first time someone has brought this up. &lt;br /&gt;
&lt;br /&gt;
It seems &amp;quot; The Management &amp;quot; are the few people who get their kicks from such while the rest of the users are stuck just rolling their eyes. I for one will no longer be visiting this wiki because of such. &lt;br /&gt;
&lt;br /&gt;
The nail in the coffin for me was a caption that I looked up as I wondered why I didn&#039;t get the &amp;quot;joke&amp;quot; as I seen tons of Xformer related shows. Heaven forbid the joke had nothing to do with transformers, only the person who wrote the joke and a small selection of people probably will understand it.  &lt;br /&gt;
&lt;br /&gt;
Just a little FYI 90% of the captions are unfunny, I would dare say 30% or more have nothing to do with xformers. &lt;br /&gt;
&lt;br /&gt;
(sorry if this is in the wrong place, sort of new to wiki&#039;s and I wish the first thing I could have posted here would have been positive. I believe this is really positive and will help the wiki more than any article I could have wrote.)&lt;br /&gt;
: Thank you for leaving. --[[User:ItsWalky|ItsWalky]] 02:11, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Eh, the majority of the time when I stumble on a discussion on wikis on other sites, people will cite TFWiki and Wookiepedia as the best, and are generally complimentary about the humour, so while we occasionally get complaints about it, it seems like the majority of people like it. --[[User:Abates|abates]] 03:29, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: I also believe that anything else you would have contributed to the wiki would have been less useful than this. --[[User:M Sipher|M Sipher]] 06:58, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:....xformers? Is spelling out Transformers properly now &amp;quot;2 kool for skool&amp;quot;? --[[User:Detour|Detour]] 07:32, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:The Funny &#039;&#039;&#039;STAYS&#039;&#039;&#039;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 09:26, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d note that if you want a serious TF wiki, there&#039;s an abandoned Wikia wiki that nobody seems to have gotten the bright idea of turning into one yet instead of always trying to convert this one.  --[[Special:Contributions/108.176.195.222|108.176.195.222]] 01:43, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Some people here have actually mentioned this idea to the wikia &amp;quot;community&amp;quot;, but they seem hellbent on remaining a poor copy of this site. The fact that they have barely added any pages since this site began while we have doubled in size doesn&#039;t seem to register to some of the people over there. --[[User:Khajidha|Khajidha]] 02:37, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: If you feel that bad about it then write some of your own on the Pics with out Captions. (hell knows that ultra magnus &amp;quot;I can deal with that&amp;quot; has been done to death)[[User:Phantom|Phantom]] 09:38, 22 June 2012 (EDT)&lt;br /&gt;
::To be fair, serious captions, unless vital to the understanding of the picture, tend to get rewritten here. --[[User:Abates|abates]] 18:42, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Spoiler titles ==&lt;br /&gt;
&lt;br /&gt;
Something which came up last month, but I didn&#039;t want to bring it up at the time because it would only have compounded the problem.&lt;br /&gt;
&lt;br /&gt;
The title for [[How Ratchet Got His Hands Back|IDW MtMtE #5]] was placed at the &#039;&#039;&#039;end&#039;&#039;&#039; of the issue, [http://www.comics.org/issue/26304/cover/4/ &amp;quot;The Night Gwen Stacy Died&amp;quot;]-style (rather than the typical beginning/first splash page), because it was &#039;&#039;itself&#039;&#039; a spoiler.&lt;br /&gt;
&lt;br /&gt;
So, of course, every page which had a {{tl|spoiler}}-tag for the issue plastered it in the spoiler tag itself.&lt;br /&gt;
&lt;br /&gt;
There&#039;s got to be a better way of doing this if a comic gets a spoiler-title again. -- [[User:Mammalian Verisimilitude|Mammalian Verisimilitude]] 20:19, 7 July 2012 (EDT)&lt;br /&gt;
:The spoiler tags could have linked to the &amp;quot;More than Meets the Eye issue 5&amp;quot; redirect instead (the issue was originally created there to avoid just that problem, but then it got moved to the actual title anyway) --[[User:Abates|abates]] 20:30, 7 July 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
Speaking of SPOILERS, is there any way people could &#039;&#039;stop&#039;&#039; putting them up for comics before the issues actually come out? By sheer happenstance, I just came across some significant details on the Wiki about the DJD, their leader, and their membership that I honestly would have preferred to read for myself when it&#039;s published. It was posted by long time members, so I&#039;m assuming it&#039;s legit and came from SDCC or somewhere, but there are no sources so I can&#039;t be sure. If an anon posted that stuff, I probably would have removed it as typical Wikipedia fanfic trying to creep in.&lt;br /&gt;
&lt;br /&gt;
Regardless, it&#039;s getting tough to come onto the TFwiki because of this stuff. Whenever a new 5-page preview for RID or MTMTE comes out, people are immediately updating the crew on the &#039;&#039;Lost Light&#039;&#039; page, adding place-holder storylinks to pages for new characters showing up, and just generally revealing every detail they can extract from the previews ahead of time. I get that avoiding spoilers on the internet is a luxury nowadays, but these previews come out nearly a week in advance for each of IDW&#039;s two series. Its one thing to avoid SPOILERS-labeled topics in a message board...its another to avoid the entire TFwiki for a third of every month to dodge preview materials. --[[User:Xaaron|Xaaron]] 21:52, 20 July 2012 (EDT)&lt;br /&gt;
:This one I&#039;ll have to own, as &#039;twas me that did the deed. It was, as you speculated, another five page preview from IDW. I&#039;d &#039;&#039;hoped&#039;&#039; the details I put in weren&#039;t too spoilery, as in the leader&#039;s case it was mostly putting a name to details we&#039;d found out issues before. I can only apologize and try to be a bit more careful.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 22:11, 20 July 2012 (EDT)&lt;br /&gt;
::I&#039;ll also say that I was going to stick the group shot of them up on the wiki, but I can hold off if you think that would be best.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 22:40, 20 July 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Autobot Communications officer in Headmasters ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hm - autobot communications officer.jpg|thumb]]&lt;br /&gt;
Hey, this guy appeared in a single episode of Heamasters where he was the communications officer on-duty at Autobot City.  ...does anyone know which episode? -[[User:Derik|Derik]]&lt;br /&gt;
:[[The Final Showdown on Earth (Part 1)]]. --[[User:Abates|abates]] 01:27, 18 July 2012 (EDT)&lt;br /&gt;
::Sir, you are a gentleman and a [[Transformerology|Transformerologist]]. -[[User:Derik|Derik]] 01:47, 18 July 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=737321</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=737321"/>
		<updated>2012-08-01T15:54:46Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Technical Contact (and passwords) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== TF:Prime jump-fight factoid ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve just started to watch Prime, and so far every episode I&#039;ve seen has had someone do a dramatic jump slowed down jump before landing on someone they are fighting, (and sometimes the camera). It&#039;s quirky enough that it&#039;s stood out, and I was wondering if it&#039;s worth adding to the episode guides? I just wanted to know now because I&#039;m going to be watching the whole of season one over the next few days, and it&#039;s easier if I know now than if it&#039;s added later. Failing that, is there anything else that people desperatly want added to the Prime episode guides that I should be looking out for? [[User:LiamK|LiamK]] 17:31, 23 January 2012 (EST)&lt;br /&gt;
:There is a certain level of ridiculous info you can get away with adding if you&#039;re a regular contributor doing serious and consistent work on the pages, and you handle it with sufficient comedic value. Ref: [[Enter the Nightbird|Brawn vs. Soundwave]], [[Countdown to Extinction (episode)|What Makes Starscream the Leader?]], etc. This could conceivably qualify as well, but approach with caution. -- [[User:Repowers|Repowers]] 21:22, 23 January 2012 (EST)&lt;br /&gt;
::Fair enough. It wasn&#039;t just going to be an adding silly jokes because oh ha ha I think I&#039;m hilarious. I was going to add anything missing to the relevent pages as well. It&#039;s just that 5 episodes in, we&#039;ve had at least 4 dramatic jumps into the camera, one dramatic jump away from the camera, and several semi-dramatic jumps off to the side. It&#039;s hilarious when characters like Bulkhead are apparently able to jump 500 feet into the air. If Springer ever shows up in this continuity family, he&#039;s gonna reach orbit.[[User:LiamK|LiamK]] 19:59, 25 January 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Expandible voice actor lists ==&lt;br /&gt;
&lt;br /&gt;
There&#039;s been some noise about some of the voice actor lists getting too long and the need for a way to have them hidden unless the user expands them. I&#039;ve done some test code which is [http://www.aldenbates.com/vatest.html currently hosted externally] but is easily converted into something that will work on the wiki. Currently tested on Firefox 9 and 10, Internet Explorer 6 and 8, Chrome 16, and Opera 11. Feedback, anyone? --[[User:Abates|abates]] 23:41, 31 January 2012 (EST)&lt;br /&gt;
:Although I was expecting a show/hide like how Wikipedia does its navigation templates, I don&#039;t mind this. Still needs a &amp;quot;hide&amp;quot; option, if that&#039;s possible. [[User:Interrobang|—Interrobang]] 23:46, 31 January 2012 (EST)&lt;br /&gt;
::I&#039;ve added in a hide option. --[[User:Abates|abates]] 00:21, 1 February 2012 (EST)&lt;br /&gt;
:::If you set up a &amp;lt;nowiki&amp;gt;{{voiceactors}}&amp;lt;/nowiki&amp;gt; template it&#039;d be easy to hide the &#039;extended&#039; cast names and have them show up automatically if you mouse over.  &#039;&#039;&#039;&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;{{voiceactors|DEFAULT-TO-VISIBLE|DEFAULT-TO-INVISIBLE}}&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
:::It wouldn&#039;t even require Javascript, it could be pure CSS.  Simpler is better, IMO.  -[[User:Derik|Derik]] 00:26, 1 February 2012 (EST)&lt;br /&gt;
::::I kinda dislike the idea of it opening on mouse-over, because it can have unexpected effects on the layout of the rest of the page if you&#039;re not paying attention to where you&#039;re moving your mouse pointer. --[[User:Abates|abates]] 18:32, 7 February 2012 (EST)&lt;br /&gt;
:::::I dislike mouse-over anything. Hide/show is a better interface. [[User:Interrobang|—Interrobang]] 18:48, 7 February 2012 (EST)&lt;br /&gt;
::::::Add a third dislike vote for mouse-over. If we do this which (if any) voice actors should be visible without clicking? Only the primary English performer? All English performers? All English and Japanese? None? I vote for none. --[[User:Khajidha|Khajidha]] 19:40, 7 February 2012 (EST)&lt;br /&gt;
:::::::I vote for whatever hides the German voice actors. I&#039;d put the English and Japanese actors on a higher tier of importance, but I&#039;m not opposed to hiding them. [[User:Interrobang|—Interrobang]] 19:48, 7 February 2012 (EST)&lt;br /&gt;
:::::::I think English and Japanese should always be shown, as they are the two biggest uh... markets? Whatever. Hide everything else, and DEFINITELY make the reveal a deliberate CLICK, not a mouseover. --[[User:M Sipher|M Sipher]] 19:56, 7 February 2012 (EST)&lt;br /&gt;
Can we have this template now? I think everybody agrees that the extraneous VAs should be hidden. If people want to hide English and Japanese VAs, then that can be further discussed. [[User:Interrobang|—Interrobang]] 10:48, 14 February 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:[[Template:va]]  (Should it be vas?)&lt;br /&gt;
:CSS entties which need to be added to the master file are as follows:&lt;br /&gt;
 .tt1-voiceactorlist .tt1-extraneousFuckers{&lt;br /&gt;
 	display:none;&lt;br /&gt;
 }&lt;br /&gt;
 .tt1-voiceactorlist:hover .tt1-extraneousFuckers{&lt;br /&gt;
 	display:inline;&lt;br /&gt;
 	font-size:smaller;&lt;br /&gt;
 }&lt;br /&gt;
 .tt1-voiceactorlist.tt1-more:after{&lt;br /&gt;
 	content: &amp;quot;more&amp;quot;;&lt;br /&gt;
 	padding-left:.5em;&lt;br /&gt;
 	font-size:smaller;&lt;br /&gt;
 	color:#999999;&lt;br /&gt;
 }&lt;br /&gt;
 .tt1-voiceactorlist:hover.tt1-more:after{&lt;br /&gt;
 	content: none;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
:Styles are visible now if you&#039;ve got [[User:Derik/kired tools|Kired Tools]] installed.  Alternately you can paste the above into [[Special:Mypage/monacobook.css|your css file]] to get a look at it in action.&lt;br /&gt;
&lt;br /&gt;
:If you want to make it Javascript that&#039;s beyond my remit, talk to one of the tech-guys.  (Also I think it&#039;s a bad idea, but I&#039;m against modifying the DOP for presentational purposes when there&#039;s already a markup language intended to control presentation: CSS.  The wiki is currently Javascript &#039;light&#039;, I prefer to keep it that way.) -[[User:Derik|Derik]] 13:21, 14 February 2012 (EST)&lt;br /&gt;
::Why does it say &amp;quot;hiding the non English/Japanese voiceactors unless the user chooses to mouse over the list&amp;quot;, I thought we had decided to make it use a click? --[[User:Khajidha|Khajidha]] 14:19, 14 February 2012 (EST)&lt;br /&gt;
::# I don&#039;t have the authority or access to implement that.&lt;br /&gt;
::# I think it&#039;s a terrible idea.&lt;br /&gt;
:::By all means, feel free to install the CSS styles (some CSS styles will be required regardless) and see what you think of this implementation.&lt;br /&gt;
:::The underlying HTML will be the same for a Javascript implementation anyway.  -[[User:Derik|Derik]] 15:13, 14 February 2012 (EST)&lt;br /&gt;
So, er, did we come to a decision on either of these methods? I have to admit I kinda forgot about it until now. --[[User:Abates|abates]] 02:13, 5 March 2012 (EST)&lt;br /&gt;
:I think consensus is to use clicks, not mouse-over, despite Derik&#039;s protests. [[User:Interrobang|—Interrobang]] 04:13, 13 March 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Facebook chat ==&lt;br /&gt;
&lt;br /&gt;
Did the wiki have anyone at the TF Prime Facebook chat? -[[User:Derik|Derik]] 22:38, 6 February 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
==Moving (Prime)/(WFC)/(RB)/(FOC) to (Aligned)==&lt;br /&gt;
Considering that characters are part of the Aligned continuity family, like how [[Megatron (Animated)]] belong to the Animated continuity family and [[Megatron (G1)]] belongs to the Generation 1 continuity family.&lt;br /&gt;
:No, that&#039;s not how we do things. Disambiguations are made by franchise of origin, hence why it&#039;s [[Megatron (G1)]], but [[Terrorsaur (BW)]] rather than Terrorsaur (G1), or why it&#039;s [[Ironhide (Energon)]] rather than Ironhide (UT). This has been discussed ad infinitum but the consensus remains the same. The only exception has been that characters who debuted in WFC but also appear in Prime get (Prime) because of the slight iffyness of the Aligned family. --[[User:Detour|Detour]] 10:26, 8 April 2012 (EDT)&lt;br /&gt;
::(Edit conflict&#039;d by Detour) I don&#039;t think we have an especially good, logical reason for why we do that with Aligned characters, other than that it simply feels very &amp;quot;wrong&amp;quot; to label a character with a prominent, regular fictional appearance in the &#039;&#039;Prime&#039;&#039; cartoon with a disambig based on their cameo appearance in a video game tie-in novel. Honestly, given that odd nature of the whole &amp;quot;Aligned&amp;quot; idea and the fact we&#039;re already breaking our standard with this continuity family&#039;s characters &#039;&#039;anyway&#039;&#039;, I&#039;m not entirely opposed to just using (Aligned) as a much handier, self-explanatory disambig, but I don&#039;t know if anyone would agree. It &#039;&#039;would&#039;&#039; feel odd, for instance, to label the Rescue Bots with that tag. And Bot Shots are a tremendous pain in the arse - it&#039;s so annoying when we have to create articles for Aligned Roadbuster and Topspin and whoever when the Bot Shots are just clearly the movieverse characters. The whole Aligned thing can sometimes be a real wiki-headache. - [[User:Chris McFeely|Chris McFeely]] 10:32, 8 April 2012 (EDT)&lt;br /&gt;
:::Why DON&#039;T they just get inserted into the Movie characters sections, then? [This thing applies to a lot of Hasbro&#039;s &amp;quot;fuzzier&amp;quot; lines of late, really - stuff&#039;s matched up with what other characters in the line are part of rather than just including them in an existing article for the version they&#039;re designed after]. - [[User:Mammalian Verisimilitude|Mammalian Verisimilitude]] 10:41, 8 April 2012 (EDT)&lt;br /&gt;
::::I think treating Bot Shots as part of Aligned is somewhat dubious. Is there a reason it can&#039;t be viewed as using characters from multiple continuity families? --[[User:KilMichaelMcC|KilMichaelMcC]] 11:00, 8 April 2012 (EDT)&lt;br /&gt;
:::::We already discussed this [[Talk:Bot Shots|here]]. --[[User:Abates|abates]] 18:59, 8 April 2012 (EDT)&lt;br /&gt;
::::::We do that so we don&#039;t have to pick nits over where the characters belong. Bot Shots Optimus Prime could fit many of his various incarnations. I disagree with renaming them to (Aligned), somewhat because all of the (WFC) guys will eventually be moved to (Prime), anyway. [[User:Interrobang|—Interrobang]] 05:48, 10 April 2012 (EDT)&lt;br /&gt;
But should (Prime)/(WFC)/(RB)/(FOC) be renamed (Aligned) or not?--[[User:Finister2|Finister2]] 05:43, 10 April 2012 (EDT)&lt;br /&gt;
:No. --[[User:Detour|Detour]] 11:29, 10 April 2012 (EDT)&lt;br /&gt;
::Why?--[[User:Finister2|Finister2]] 13:55, 10 April 2012 (EDT)&lt;br /&gt;
:::It&#039;s already been explained why. --[[User:Detour|Detour]] 14:40, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Universal, properly-translated names of the Japanese Beast Wars/Beast Machines episodes ==&lt;br /&gt;
&lt;br /&gt;
Okay, this has been bothering me for a while. On each page of the [[Beast Wars: Transformers (cartoon)#Episodes|Beast Wars]] and [[Beast Machines: Transformers (cartoon)#Episodes|Beast Machines]] episode, the Japanese title of each episode is given an English translation in each page&#039;s Foreign Localization section. And on the [[Geneon Universal Entertainment|Geneon]] page, under the sections of its Beast Wars, Beast Wars Metals, and Beast wars Returns releases, the Japanese episode titles are also translated into English. What&#039;s bothering me is that certain episodes are given slightly differently-translated English names when comparing those given on the actual episode pages to those given on the Geneon page. Here&#039;s a list of each differing episode title. The episode page names are on the left, and the Geneon page names are on the right:&lt;br /&gt;
:&amp;quot;The Solitary Warrior Tigatron&amp;quot; vs. &amp;quot;Lonely Warrior Tigatron&amp;quot;&lt;br /&gt;
:&amp;quot;Goodbye, Rattle!?&amp;quot; vs. &amp;quot;Goodbye Rattle!?&amp;quot;&lt;br /&gt;
:&amp;quot;The Falcon Warrior Airrazor&amp;quot; vs. &amp;quot;Falcon Warrior Airazor&amp;quot;&lt;br /&gt;
:&amp;quot;Floating Island Death Match Part 1&amp;quot; vs. &amp;quot;Floating Island Deathmatch Part 1&amp;quot;&lt;br /&gt;
:&amp;quot;Floating Island Death Match Part 2&amp;quot; vs. &amp;quot;Floating Island Deathmatch Part 2&amp;quot;&lt;br /&gt;
:&amp;quot;The Destrons&#039; Dramatic Finish&amp;quot; vs. &amp;quot;The Destrons Make Drama&amp;quot;&lt;br /&gt;
:&amp;quot;Two Dinobots?&amp;quot; vs. &amp;quot;There are 2 Dinobots?&amp;quot;&lt;br /&gt;
:&amp;quot;The Ant Warrior from Hell, Inferno&amp;quot; vs. &amp;quot;Inferno, the Ant Warrior from Hell&amp;quot;&lt;br /&gt;
:&amp;quot;Revive, Beast Power!&amp;quot; vs. &amp;quot;Resurrected Beast Power&amp;quot;&lt;br /&gt;
:&amp;quot;The Immortal Starscream&amp;quot; vs. &amp;quot;Starscream&#039;s Invulnerability&amp;quot;&lt;br /&gt;
:&amp;quot;Fare Thee Well, Tigatron&amp;quot; vs. &amp;quot;Farewell Tigatron&amp;quot;&lt;br /&gt;
:&amp;quot;The Great King of Terror Arrives!&amp;quot; vs. &amp;quot;The King of Terror Arrives!&amp;quot;&lt;br /&gt;
:&amp;quot;You&#039;re Under Arrest, Meow&amp;quot; vs. &amp;quot;Meyow&#039;re Under Arrest&amp;quot;&lt;br /&gt;
:&amp;quot;Gro~w Bigger&amp;quot; vs. &amp;quot;Groooww Bigger&amp;quot;&lt;br /&gt;
:&amp;quot;I Am Resurrected, Dā&amp;quot; vs. &amp;quot;I am Resurrected!&amp;quot; &lt;br /&gt;
:&amp;quot;Blaze, Dragon&amp;quot; vs. &amp;quot;Blazing Dragon&amp;quot;&lt;br /&gt;
:&amp;quot;I Hath Returned&amp;quot; vs. &amp;quot;We Have Returned&amp;quot;&lt;br /&gt;
:&amp;quot;Resurrection of the Legend&amp;quot; vs. &amp;quot;Rebirth of the Legend&amp;quot;&lt;br /&gt;
:&amp;quot;The Dearly Wished Transformation&amp;quot; vs. &amp;quot;The Transformation of a Dear Wish&amp;quot;&lt;br /&gt;
:&amp;quot;The Memory of a Friend&amp;quot; vs. &amp;quot;Memory of a Friend&amp;quot;&lt;br /&gt;
:&amp;quot;Mission of the Stars&amp;quot; vs. &amp;quot;Message of the Stars&amp;quot;&lt;br /&gt;
:&amp;quot;The Moment of Truth&amp;quot; vs. &amp;quot;The End&amp;quot;&lt;br /&gt;
:&amp;quot;Captured Souls&amp;quot; vs. &amp;quot;Capture of the Spirits&amp;quot;&lt;br /&gt;
:&amp;quot;The Hellish All-out Attack&amp;quot; vs. &amp;quot;The General Offensive of Hell&amp;quot;&lt;br /&gt;
:&amp;quot;The Course of the Future&amp;quot; vs. &amp;quot;The Fate of the Future&amp;quot;&lt;br /&gt;
Could someone who&#039;s more adept at Japanese please clarify which titles should be universally used on this Wiki, and help in an attempt to create a greater sense of unity between the individual episode pages and the Geneon page (and with any other such pages on this Wiki as well)? --[[User:Sabrblade|Sabrblade]] 01:29, 10 April 2012 (EDT)&lt;br /&gt;
:The titles on the episode pages are more refined. Not to mention it would be easier to change the titles on a single page. [[User:Interrobang|—Interrobang]] 05:58, 10 April 2012 (EDT)&lt;br /&gt;
::&amp;quot;I Hath Returned&amp;quot;? That&#039;s incorrect English. &amp;quot;Hath&amp;quot; was third person singular, not first person (&amp;quot;he hath&amp;quot; not &amp;quot;I hath&amp;quot;). --[[User:Khajidha|Khajidha]] 08:10, 10 April 2012 (EDT)&lt;br /&gt;
:::[[User:Apcog|Apcog]] translated that. I recall the intention was to capture the old-timey connotation of the original Japanese. [[User:Interrobang|—Interrobang]] 08:21, 10 April 2012 (EDT)&lt;br /&gt;
:Something else that has me pondering are the specific choices made in spelling and grammar of a few of these titles. Like, the inclusion of a &amp;quot;The&amp;quot; where it may not need be (like in &amp;quot;The Solitary Warrior Tigatron&amp;quot; instead of just &amp;quot;Solitary Warrior Tigatron&amp;quot;, or &amp;quot;The Falcon Warrior Airrazor&amp;quot; vs. &amp;quot;Falcon Warrior Airazor&amp;quot;) or the use a comma (like in &amp;quot;Goodbye, Rattle!?&amp;quot; as opposed to &amp;quot;Goodbye Rattle!?&amp;quot;) or a space between two words instead of making them a compound word (&amp;quot;Death Match&amp;quot; vs. &amp;quot;Deathmatch&amp;quot;), and the synonymous use of &amp;quot;Resurrect(ion)&amp;quot;, &amp;quot;Rebirth&amp;quot;, and &amp;quot;Revive&amp;quot;. In these cases, are the titles on the episode pages truly the more precise titles, or could they also use some amending? --[[User:Sabrblade|Sabrblade]] 11:20, 10 April 2012 (EDT)&lt;br /&gt;
::Most of those details are up to the translator&#039;s discretion. But, like I said, it&#039;s easier to just edit the Genon page rather than across multiple articles. [[User:Interrobang|—Interrobang]] 11:33, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Category:Deceased ==&lt;br /&gt;
Sub-categories&lt;br /&gt;
*Category:Deceased (Generation 1 cartoon)&lt;br /&gt;
**Category:Deceased (Marvel comics)&lt;br /&gt;
**Category:Deceased (BW)&lt;br /&gt;
*Category:Deceased (Armada)&lt;br /&gt;
*Category:Deceased (Energon)&lt;br /&gt;
*Category:Deceased (Movie)&lt;br /&gt;
**Category:Deceased (ROTF)&lt;br /&gt;
**Category:Deceased (DOTM)&lt;br /&gt;
*Category:Deceased (SG)&lt;br /&gt;
*Category:Deceased (Animated)&lt;br /&gt;
*Category:Deceased (Aligned)&lt;br /&gt;
&lt;br /&gt;
Why not?--[[User:Finister2|Finister2]] 05:52, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Deceased&amp;quot; is a stupid idea on a wiki that focuses on fiction with multiple continuities, time periods, vague &amp;quot;deaths&amp;quot;, and resurrections. All characters will inevitably die at one point. This is not a warranted category. [[User:Interrobang|—Interrobang]] 05:55, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Vote for &amp;quot;No&amp;quot;.&lt;br /&gt;
::A character may get killed in a sub-continuity but alive in another. Not to mention if the character will be resurrected or not. (So, we don&#039;t need Category:Resurrected characters, either.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:11, 10 April 2012 (EDT)&lt;br /&gt;
:::It is an appealing idea, to have categories for characters that are deceased &amp;quot;now.&amp;quot; If they are patched up, they get removed from the category. I would have changed the categories to &amp;quot;Deceased (Movieverse)&amp;quot; and &amp;quot;Deceased (UT cartoon)&amp;quot; since they are supposed to be all one continuity. The only problem I see is vague deaths and continuity inconsistencies. People would probably disagree with me that [[Brawn (G1)]] obviously survived that shot to the shoulder. So, unfortunately, I can&#039;t fully endorse the idea. - [[User:Starfield|Starﬁeld]] 11:08, 10 April 2012 (EDT)&lt;br /&gt;
::::If we go by continuity, we are going to have a &#039;&#039;lot&#039;&#039; of &amp;quot;Deceased&amp;quot; categories. And you could only do it by continuity, which goes against our current methods to have categories by franchise. --[[User:Abates|abates]] 16:46, 10 April 2012 (EDT)&lt;br /&gt;
::I agree with you guys in regards to characters. but, what about a category for &#039;&#039;real&#039;&#039; people who have been involved with the Transformers franchise (like voice actors, designers, writers, etc.) who are deceased? --[[User:Sabrblade|Sabrblade]] 11:11, 10 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Scheduled downtime. ==&lt;br /&gt;
&lt;br /&gt;
Our hoster is moving servers around tomorrow.  One of ours is gonna be moved starting between &amp;quot;Thu Apr 12 23:00:00 UTC 2012 and Fri Apr 13 05:00:00 UTC 2012.&amp;quot;  So that&#039;ll happen.  --[[User:ItsWalky|ItsWalky]] 21:52, 11 April 2012 (EDT)&lt;br /&gt;
:I presume all the necessary backups have been made?  --[[User:Thylacine 2000|Thylacine 2000]] 22:37, 11 April 2012 (EDT)&lt;br /&gt;
::Regularly, like clockwork. --[[User:ItsWalky|ItsWalky]] 00:51, 12 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Category: Cats==&lt;br /&gt;
Presumably we have some kind of unwritten &amp;quot;We don&#039;t categorise by altmode&amp;quot; rule in play here, so I apologise if my adding a bunch of characters to this category seemed heavy-handed but in my defence the distinction between &#039;&#039;Shattered Glass&#039;&#039; Steeljaw and G1 Ravage is, eh, pretty much non-existent, Cheetor himself says &amp;quot;I&#039;m a cat&amp;quot;, it&#039;s a subset of Characters by species and we have K-9 under Dogs, so it&#039;s hardly black and white. But my main reason for doing it was that in SEO terms, having the word &amp;quot;Cats&amp;quot; repeatedly linked a bunch of times throughout the wiki is really quite useful, as in the wider internet cats are kind of a big deal. Real effing kitten calendars and all that. Isn&#039;t that something to consider? --[[User:Emvee|Emvee]] 03:47, 26 April 2012 (EDT)&lt;br /&gt;
:Categorizing by alternate mode has been brought up several times, but nobody has bothered to hammer out the details and do it. I don&#039;t particularly care for it one way or another, but putting Transformers in plain categories like &amp;quot;Cats&amp;quot; and &amp;quot;Watercraft&amp;quot; based on alternate mode makes them useless to those who only want to know about actual cats or watercraft in &#039;&#039;Transformers&#039;&#039;. That said, I completely fail to see the relevance of Internet memes to our categorization system. [[User:Interrobang|—Interrobang]] 03:59, 26 April 2012 (EDT)&lt;br /&gt;
::Well, just that keywords are good for search engines, keywords that link to relevant pages even better and lots of people search for cats on the internet. I know that my girlfriend does and at a time like this (when my birthday is coming up) it&#039;s not impossible that she might search for &amp;quot;Transformers cats&amp;quot;. If that led her to, say, SG Ravage&#039;s page (which is quite accessible to an internet-savvy non-fan with its twitter references and Walky&#039;s cartoons) then she may well stick around to find out more, and maybe look for more Transformers cats through the category links at the bottom of the page. At the moment our first link in a Google search is Snow Cat, who&#039;s kinda cool but you&#039;d probably have to be a GI Joe fan to really get it. I dunno, I&#039;m just spitballing here, but part of my job is SEO so I hope I at least know something like what I&#039;m talking about. Anyway, that was my line of thinking. If it&#039;s problematic then that&#039;s fine, but I&#039;m not really convinced by the &amp;quot;people looking for actual cats or watercraft in &#039;&#039;Transformers&#039;&#039;&amp;quot; argument either - on a TF wiki I think they&#039;d assume Transformers that turn into either of those things would be included by default. They are robots in disguise, after all. --[[User:Emvee|Emvee]] 14:36, 26 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Google + ==&lt;br /&gt;
I&#039;ve made a Google + for the wiki. I just need someone to link it to the main page because I don&#039;t know how. This is the link: https://plus.google.com/106006102124340784739 -- [[User:Spydersix|Spydersix]] 19:00, 30 April 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Alt-mode listings ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve seen several things here discussing listing alt-modes by &#039;&#039;category&#039;&#039;, but I&#039;m looking for something a bit less complicated. I would really appreciate having each character&#039;s page at least openly list their alt-mode in the beginning; as it stands, some pages do not make it clear what that character turns into, generally only mentioning it in passing or in screenshots. I think some kind of fill-in-the-blanks template would work well, the kind they use on Wikipedia for comic book superheroes that have sections for code names, secret identities, a brief list of abilities, etc. It doesn&#039;t even have to be that thorough, just a small piece under the page&#039;s main picture that has &amp;quot;name, alt-mode, faction&amp;quot; would be a nice change of pace. [[User:Deusoma|Deusoma]] 15:15, 2 May 2012 (EDT)&lt;br /&gt;
:Your idea is impractical because many characters have had numerous altmodes. Listing all of them would be ridiculously long while trying to generalize them down to a single listing would be useless. For example, [[Optimus Prime (G1)|Optimus Prime]]. The casual fan might assume that you could just list his altmode as &amp;quot;semi truck&amp;quot; and be done with it. But he has also been a bat, a Lambourghini Diablo and a shoe. And that doesn&#039;t even get into what kind of &amp;quot;semi truck&amp;quot; he is: cab over engine like the original or long nose like the Generation 2 version. And does it have a sleeper. With or without trailer. And you still haven&#039;t covered his non-Earth modes. None of the Cybertronian forms we have seen looks anything like any of the others. --[[User:Khajidha|Khajidha]] 15:29, 2 May 2012 (EDT)&lt;br /&gt;
::I don&#039;t care one way or the other, but we could hide the minor alternate modes, the same as we do with voice actors. [[User:Interrobang|—Interrobang]] 15:40, 2 May 2012 (EDT)&lt;br /&gt;
:While I agree that we should do our best to list alt-modes, at the beginning of the article doesn&#039;t seem like the most efficient place to do it.  Rather, we should continue listing the alt-mode in the description of the various toys and work on filling in those that are lacking. - [[User:Shellspark|Shellspark]] 16:26, 2 May 2012 (EDT)&lt;br /&gt;
: Well, there are a lot of fiction-only altmodes going on. I could see this working as a Notes subsection, possibly as a gallery. --[[User:M Sipher|M Sipher]] 17:27, 2 May 2012 (EDT)&lt;br /&gt;
:: Yeah, that&#039;s why I always attempt to get an image of each altmode in the fiction section as they appear.  --[[User:ItsWalky|ItsWalky]] 17:56, 2 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Redundant foreign names==&lt;br /&gt;
According to Interrobang:&lt;br /&gt;
:&amp;quot;&#039;&#039;So? It&#039;s been the standard for a long time and exactly how do you expect readers to know that Japan uses the same name without noting it?&#039;&#039;&amp;quot;&lt;br /&gt;
1) No, it has NOT been &amp;quot;the standard for a long time&amp;quot;. In fact, we didn&#039;t do this for YEARS. You&#039;re the one who seems to have decided, fairly recently, to pull this crap. Like with &amp;quot;mammoth&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
2) Well. Why don&#039;t we just list every country in the world that also uses that name? After all, how exactly are we to know if the Canadians don&#039;t not call her Airachnid, or the Germans, or the Zimbabweans (holy shit &amp;quot;Zimbabweans&amp;quot; is &#039;&#039;correct&#039;&#039;?), or the other 190-odd nations across the globe? Oh wait, because we can use some incredibly base deductive reasoning and assume that unless a &#039;&#039;different&#039;&#039; name is listed for a country, &#039;&#039;it&#039;s the same name and we don&#039;t need to fucking list it there just so you can get a katakana-boner&#039;&#039;. --[[User:M Sipher|M Sipher]] 06:45, 3 May 2012 (EDT)&lt;br /&gt;
:There is the argument to be made that not including a foreign name leaves the reader unable to know if the character either has the same name in that country, or if that information is just &#039;&#039;missing&#039;&#039; from the article. Not that I disagree that it &#039;&#039;really&#039;&#039; seems to have got out of control, to the point that the Japanese words for &amp;quot;doctor&amp;quot; or &amp;quot;scientist&amp;quot; or &amp;quot;coach&amp;quot; or &amp;quot;mammoth&amp;quot; are being added to nameless characters&#039; articles. I enjoyed our older attitude that basically amounted to &amp;quot;fuck katanana unless necessary to explain something&amp;quot;. - [[User:Chris McFeely|Chris McFeely]] 07:05, 3 May 2012 (EDT)&lt;br /&gt;
::The counter-argument was already made above. &#039;&#039;Transformers&#039;&#039; is a global brand now, and it&#039;s basically a waste of space to list every country where Optimus Prime is called &amp;quot;Optimus Prime&amp;quot; (or as close as they can get phonetically), and better to assume that it is &amp;quot;Optimus Prime&amp;quot; unless otherwise noted. The &#039;&#039;probability&#039;&#039; that the name is the same is pretty damn good nowadays, especially in Japan. --[[User:M Sipher|M Sipher]] 07:34, 3 May 2012 (EDT)&lt;br /&gt;
:::I&#039;m sympathetic. If somebody actually does go through the trouble to track down what Airachnid is called in Zimbabwean and it ends up being &amp;quot;Airachnid&amp;quot; then if they put the information down, then nobody else will have to go through the trouble of looking it up. What if redundant foreign names are left &amp;lt;nowiki&amp;gt;&amp;lt;!-- commented out? --&amp;gt;&amp;lt;/nowiki&amp;gt; - [[User:Starfield|Starfield]] 10:04, 3 May 2012 (EDT)&lt;br /&gt;
::::I hate seeing redundant names, but I agree that a certain degree of &amp;quot;is this already known?&amp;quot; may exist in a vacuum. I&#039;m not opposed to leaving them in the code but commented out to keep them out of the page itself. -[[User:LV|LV]] 00:00, 4 May 2012 (EDT)&lt;br /&gt;
:::::Would it be acceptable to have a template that displays the foreign names, but hides or combines entries if the names are not unique? The template might also be able to auto-categorize by &amp;quot;characters missing &#039;&#039;language&#039;&#039; names&amp;quot;, too.[[Special:Contributions/192.249.47.177|192.249.47.177]] 18:49, 29 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Toy Fair/Pre-Toy Fair Catalogues==&lt;br /&gt;
Collectively we went all out on getting hold of the 86 PTF catalogue when it popped up on eBay and have a nice page with full scans of it (I say &amp;quot;we&amp;quot; I completely missed that fund-raising drive). Going forward, is it a feasible aim for other Toy Fair and Pre-Toy Fair cats to be collected for the Wiki or is 86 known to be the only one of significant interest? I ask because I just stumbled upon an eBay seller with the 88 TF cat (which I&#039;d hoped to procure for use on my Visionaries wiki) and some early 90s ones, all of which are beyond my means, but at relatively reasonable prices. Can&#039;t link to them on my phone, but I thought I&#039;d mention it in case they are of significant interest like the 86 one was. [[User:Danja|Danja]] 03:45, 6 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Google Chrome ==&lt;br /&gt;
Does anybody else experience a &#039;&#039;really&#039;&#039; slow connection to only this site while using Google Chrome? -- [[User:Spydersix|spyder]] 21:42, 17 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
FYI: &amp;lt;nowiki&amp;gt;{{bigquote}}&amp;lt;/nowiki&amp;gt; overlaps images in Google Chrome, like on [[Morocco]]. I don&#039;t know when that started. - [[User:Starfield|Starfield]] 16:03, 22 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
Now, the &amp;lt;nowiki&amp;gt;{{picsneeded}}&amp;lt;/nowiki&amp;gt; tag overlaps the top of the episode template. It might just be my computer, but I don&#039;t know. -- [[User:Spydersix|spyder]] 18:28, 29 May 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:These layout problems are apparently an issue with the latest version of Chrome. I guess they&#039;ll get fixed in the next release or something. --[[User:Abates|abates]] 18:10, 31 May 2012 (EDT)&lt;br /&gt;
::There&#039;s been two new versions of Chrome since you said that, [[User:Abates|abates]], and it hasn&#039;t been fixed, so I&#039;m reporting it to Google. Like that&#039;s gonna work. -- [[User:Spydersix|spyder]] 10:09, 19 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Transformers 4 ==&lt;br /&gt;
Does anyone mind if I take a stab at creating a page for it? I&#039;m not some idiot who&#039;s gonna create a crappy page with no effort. Or is it &#039;&#039;way&#039;&#039; to early to do that? -- [[User:Spydersix|spyder]] 19:03, 6 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Prime game ==&lt;br /&gt;
What do people think about putting [[Transformers Prime: The Game]] in the nav bar? -- [[User:Spydersix|spyder]] 09:47, 10 June 2012 (EDT)&lt;br /&gt;
:Or we can replace the link to the Prime cartoon page with a link to the Prime franchise page, that way it avoids overcluttering the navbar. --[[User:Detour|Detour]] 14:15, 10 June 2012 (EDT)&lt;br /&gt;
::Yeah, that also might work. -- [[User:Spydersix|spyder]] 09:23, 11 June 2012 (EDT)&lt;br /&gt;
:::At least 95% of the people who click on that are likely to be looking for info on the cartoon, and I feel like if we have Rescue Bots and Dark of the Moon pointing to the cartoon/film rather than the franchises, we should aim to be consistent with our navigation. We&#039;ll presumably have to add [[Transformers Universe]] there eventually anyway. --[[User:Abates|abates]] 16:46, 11 June 2012 (EDT)&lt;br /&gt;
::::Yeah, I forgot about that. We probably can take Dark of the Moon to declutter it. -- [[User:Spydersix|spyder]] 16:50, 11 June 2012 (EDT)&lt;br /&gt;
:::::We could divide things up with subheaders or just by putting darker lines in to split up the links. Man, I wish there was a way to easily add in more links without cluttering up the menu too much. It feels like we should have links to current toylines as well, and maybe the current IDW comics. --[[User:Abates|abates]] 17:21, 11 June 2012 (EDT)&lt;br /&gt;
::::::Yeah probably, but what can you do, right? And I like that subheader idea. And on a different note, &amp;quot;Transformers Prime: The Game&amp;quot; is a mouthful. How can we abbreviate that?  -- [[User:Spydersix|spyder]] 17:36, 11 June 2012 (EDT)&lt;br /&gt;
::::::: TF Prime: The Game??? [[User:Bumblebee2000|Bumblebee2000]] 08:19, 12 June 2012 (EDT)&lt;br /&gt;
::::::::Probably the best we can do. -- [[User:Spydersix|spyder]] 13:37, 12 June 2012 (EDT)&lt;br /&gt;
:::::::::So what are we going to do about this nav bar? -- [[User:Spydersix|spyder]] 18:17, 12 June 2012 (EDT)&lt;br /&gt;
::::::::::Are we using the &amp;lt;nowiki&amp;gt;{{Primecap}}&amp;lt;/nowiki&amp;gt; template for images from it? -- [[User:Spydersix|spyder]] 10:07, 13 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::Be patient. This stuff never happens overnight. --[[User:Detour|Detour]] 18:50, 12 June 2012 (EDT)&lt;br /&gt;
:On abbreviating the name, as everything on the wiki is Transformers, you can say &amp;quot;Prime: The Game&amp;quot; instead of &amp;quot;TF Prime: The Game&amp;quot;. The &amp;quot;TF&amp;quot; is assumed. [[User:JohnnyMrNinja|JohnnyMrNinja]] 15:30, 13 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Rare/Unkown vintage G1 Walkie Talkie toys? ==&lt;br /&gt;
&lt;br /&gt;
Hi guys. I was just browsing ebay and came across 3 old G1 Walkie Talkies that don&#039;t appear to be mentioned on the wiki anywhere.&lt;br /&gt;
#1- [http://www.ebay.com/itm/Transformers-Walkie-Talkie-ROBOT-1987-Hasbro-Inc/270982316728/ This] one appears to be an Argentinian Transformer with the mold licensed from Commando Toys.&lt;br /&gt;
#2 [http://www.ebay.co.uk/itm/Transformers-G1-Walkie-Talkies-Boxed-/300654034838?pt=US_Action_Figures&amp;amp;hash=item4600607f96/ These] guys appear to be unnamed generics.&lt;br /&gt;
#3 [http://www.ebay.co.uk/itm/REAL-VTG-80s-TRANSFORMERS-INTERCOM-TELEPHONE-SYSTEM-WIRED-WALKIE-TALKIE-NIB-MIB-/360458042129?pt=US_Action_Figures&amp;amp;hash=item53ecf93b11 This] one features two Optimus Primes as an &amp;quot;Electronic Intercom Telephone System&amp;quot; (which seems to basically be two walkie talkies connected via a wire). Box says made by Nasta in lager photos and check out that goofy looking transformation sequence.&lt;br /&gt;
&lt;br /&gt;
I&#039;m not entirely sure if any of these are legit as I&#039;ve never seen them mentioned anywhere else before. Anyone else know more info about these? Should they be added to wiki? [[User:RavenG|RavenG]] 02:27, 16 June 2012 (EDT)&lt;br /&gt;
:I used to have a set of #2, but I&#039;ve no idea where they are now. They were pretty common in the UK I think. --[[User:Emvee|Emvee]] 03:17, 19 July 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Technical Contact (and passwords) ==&lt;br /&gt;
&lt;br /&gt;
Hi, guys. It&#039;s Botch the Crab... though I can&#039;t sign in as my account. I lost my password. I don&#039;t know what email address is associated with the account, but whichever one it is, when I did the &amp;quot;forgot password&amp;quot; thing and was told a new password was emailed to me, I never received any emails. &lt;br /&gt;
&lt;br /&gt;
So my first question is: who can help me re-claim my account?&lt;br /&gt;
&lt;br /&gt;
My second question is: who are the technical administrators of the wiki, and is that information posted somewhere that I couldn&#039;t find? I tried contacting Chris McFeely and David Willis, but neither of them were able to help, nor did they know who &lt;br /&gt;
would. So! Suggestions?&lt;br /&gt;
&lt;br /&gt;
:I tried emailing your username, but it didn&#039;t work... It said that I need to be logged in with a valid email set, but I had done both of those things. Can any other user successfully send an email to [[User:Botch the Crab]]? Because it might be the email module that isn&#039;t working and that&#039;s why you can&#039;t reset your password. I don&#039;t think the MediaWiki framework has been updated since 2008 (we&#039;re running [http://www.mediawiki.org/wiki/Release_notes/1.12#MediaWiki_1.12.0 MediWiki 1.12.0]), and if David Willis doesn&#039;t know who&#039;s running the tech (seeing as how [http://www.networksolutions.com/whois-search/tfwiki.net he registered this site), it makes me think that there are not any people doing that. I could be mistaken, but I think there are only admins that are affecting change within the MW software.&lt;br /&gt;
:As far as I know, once a password to a MW site is lost there is no recovery outside of email, at least that is the case for WP. [[User:JohnnyMrNinja|JohnnyMrNinja]] 17:49, 16 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I just tried sending an email to Botch and it worked, though the copy I sent myself ended up in my gmail spam folder. --[[User:Abates|abates]] 18:48, 16 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::You&#039;re right, I had to confirm my email address and now I can email, although emails from this site were marked as spam for me as well. Botch, I can only hope that you haven&#039;t checked your spam folder. [[User:JohnnyMrNinja|JohnnyMrNinja]] 00:54, 17 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Thanks for all the help, guys. Unfortunately, I haven&#039;t received any of the &amp;quot;new password&amp;quot; emails. (Yes, I keep checking the spam folder.) The frustrating part is that without being able to sign in, I cannot confirm &#039;&#039;which&#039;&#039; email address these are being sent to. All my emails are forwarded to my gmail account, so I have no idea why I wouldn&#039;t receive them. It&#039;s a mystery. It&#039;s weird to think it&#039;s possible that none of the administrators have the access or ability to solve this.--[[User:Botch|Botch]] 23:18, 18 June 2012 (EDT)&lt;br /&gt;
::I thought Scout and/or McFly were doing our technical stuff. --[[User:Abates|abates]] 23:27, 18 June 2012 (EDT)&lt;br /&gt;
:::I&#039;m pretty sure that Scout and I have been over this fairly often:  We&#039;re pretty damned busy, so we&#039;re not monitoring the Community Portal pages.  If someone&#039;s forgotten their password AND the associated email address, there&#039;s no real secure way to get them back in.  Email addresses aren&#039;t exposed to us until we get down to the to SQL DB layer, barring some additional extensions that would expose everyone&#039;s information to a trusted few.  I strongly suggest making a new account in the interim, while we discuss the repercussions of adding some more User Management extensions, and figuring out who we can trust.  I&#039;ll tell you this much, though:  If your password isn&#039;t basically a random scramble of characters and symbols, I wouldn&#039;t trust you with maintenance access.  It&#039;s like giving a handgun to a chimp.  (Not picking on anyone in particular, but let&#039;s keep this in mind as we start adding cooks to the kitchen.) --[[User:McFly|McFly]] 11:54, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Captions need to go ==&lt;br /&gt;
&lt;br /&gt;
It seems I am not the only one who finds the caption &amp;quot;humor&amp;quot; annoying and irrelevant to the photo it is placed with. I see in huge bold letters &#039;THE FUNNY STAYS. -The Management&#039; So it seems this is not the first time someone has brought this up. &lt;br /&gt;
&lt;br /&gt;
It seems &amp;quot; The Management &amp;quot; are the few people who get their kicks from such while the rest of the users are stuck just rolling their eyes. I for one will no longer be visiting this wiki because of such. &lt;br /&gt;
&lt;br /&gt;
The nail in the coffin for me was a caption that I looked up as I wondered why I didn&#039;t get the &amp;quot;joke&amp;quot; as I seen tons of Xformer related shows. Heaven forbid the joke had nothing to do with transformers, only the person who wrote the joke and a small selection of people probably will understand it.  &lt;br /&gt;
&lt;br /&gt;
Just a little FYI 90% of the captions are unfunny, I would dare say 30% or more have nothing to do with xformers. &lt;br /&gt;
&lt;br /&gt;
(sorry if this is in the wrong place, sort of new to wiki&#039;s and I wish the first thing I could have posted here would have been positive. I believe this is really positive and will help the wiki more than any article I could have wrote.)&lt;br /&gt;
: Thank you for leaving. --[[User:ItsWalky|ItsWalky]] 02:11, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Eh, the majority of the time when I stumble on a discussion on wikis on other sites, people will cite TFWiki and Wookiepedia as the best, and are generally complimentary about the humour, so while we occasionally get complaints about it, it seems like the majority of people like it. --[[User:Abates|abates]] 03:29, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: I also believe that anything else you would have contributed to the wiki would have been less useful than this. --[[User:M Sipher|M Sipher]] 06:58, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:....xformers? Is spelling out Transformers properly now &amp;quot;2 kool for skool&amp;quot;? --[[User:Detour|Detour]] 07:32, 21 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:The Funny &#039;&#039;&#039;STAYS&#039;&#039;&#039;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 09:26, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d note that if you want a serious TF wiki, there&#039;s an abandoned Wikia wiki that nobody seems to have gotten the bright idea of turning into one yet instead of always trying to convert this one.  --[[Special:Contributions/108.176.195.222|108.176.195.222]] 01:43, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Some people here have actually mentioned this idea to the wikia &amp;quot;community&amp;quot;, but they seem hellbent on remaining a poor copy of this site. The fact that they have barely added any pages since this site began while we have doubled in size doesn&#039;t seem to register to some of the people over there. --[[User:Khajidha|Khajidha]] 02:37, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: If you feel that bad about it then write some of your own on the Pics with out Captions. (hell knows that ultra magnus &amp;quot;I can deal with that&amp;quot; has been done to death)[[User:Phantom|Phantom]] 09:38, 22 June 2012 (EDT)&lt;br /&gt;
::To be fair, serious captions, unless vital to the understanding of the picture, tend to get rewritten here. --[[User:Abates|abates]] 18:42, 22 June 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Spoiler titles ==&lt;br /&gt;
&lt;br /&gt;
Something which came up last month, but I didn&#039;t want to bring it up at the time because it would only have compounded the problem.&lt;br /&gt;
&lt;br /&gt;
The title for [[How Ratchet Got His Hands Back|IDW MtMtE #5]] was placed at the &#039;&#039;&#039;end&#039;&#039;&#039; of the issue, [http://www.comics.org/issue/26304/cover/4/ &amp;quot;The Night Gwen Stacy Died&amp;quot;]-style (rather than the typical beginning/first splash page), because it was &#039;&#039;itself&#039;&#039; a spoiler.&lt;br /&gt;
&lt;br /&gt;
So, of course, every page which had a {{tl|spoiler}}-tag for the issue plastered it in the spoiler tag itself.&lt;br /&gt;
&lt;br /&gt;
There&#039;s got to be a better way of doing this if a comic gets a spoiler-title again. -- [[User:Mammalian Verisimilitude|Mammalian Verisimilitude]] 20:19, 7 July 2012 (EDT)&lt;br /&gt;
:The spoiler tags could have linked to the &amp;quot;More than Meets the Eye issue 5&amp;quot; redirect instead (the issue was originally created there to avoid just that problem, but then it got moved to the actual title anyway) --[[User:Abates|abates]] 20:30, 7 July 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
Speaking of SPOILERS, is there any way people could &#039;&#039;stop&#039;&#039; putting them up for comics before the issues actually come out? By sheer happenstance, I just came across some significant details on the Wiki about the DJD, their leader, and their membership that I honestly would have preferred to read for myself when it&#039;s published. It was posted by long time members, so I&#039;m assuming it&#039;s legit and came from SDCC or somewhere, but there are no sources so I can&#039;t be sure. If an anon posted that stuff, I probably would have removed it as typical Wikipedia fanfic trying to creep in.&lt;br /&gt;
&lt;br /&gt;
Regardless, it&#039;s getting tough to come onto the TFwiki because of this stuff. Whenever a new 5-page preview for RID or MTMTE comes out, people are immediately updating the crew on the &#039;&#039;Lost Light&#039;&#039; page, adding place-holder storylinks to pages for new characters showing up, and just generally revealing every detail they can extract from the previews ahead of time. I get that avoiding spoilers on the internet is a luxury nowadays, but these previews come out nearly a week in advance for each of IDW&#039;s two series. Its one thing to avoid SPOILERS-labeled topics in a message board...its another to avoid the entire TFwiki for a third of every month to dodge preview materials. --[[User:Xaaron|Xaaron]] 21:52, 20 July 2012 (EDT)&lt;br /&gt;
:This one I&#039;ll have to own, as &#039;twas me that did the deed. It was, as you speculated, another five page preview from IDW. I&#039;d &#039;&#039;hoped&#039;&#039; the details I put in weren&#039;t too spoilery, as in the leader&#039;s case it was mostly putting a name to details we&#039;d found out issues before. I can only apologize and try to be a bit more careful.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 22:11, 20 July 2012 (EDT)&lt;br /&gt;
::I&#039;ll also say that I was going to stick the group shot of them up on the wiki, but I can hold off if you think that would be best.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 22:40, 20 July 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Autobot Communications officer in Headmasters ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hm - autobot communications officer.jpg|thumb]]&lt;br /&gt;
Hey, this guy appeared in a single episode of Heamasters where he was the communications officer on-duty at Autobot City.  ...does anyone know which episode? -[[User:Derik|Derik]]&lt;br /&gt;
:[[The Final Showdown on Earth (Part 1)]]. --[[User:Abates|abates]] 01:27, 18 July 2012 (EDT)&lt;br /&gt;
::Sir, you are a gentleman and a [[Transformerology|Transformerologist]]. -[[User:Derik|Derik]] 01:47, 18 July 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=660236</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=660236"/>
		<updated>2011-11-08T21:13:02Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Help Wanted */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Aligned Timeline ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m going to try and take a stab at creating an Aligned timeline that unites everything we know about the franchise(s) so far. Any help would be greatly appreciated. [[User:Tom Servo the Great|Tom Servo the Great]] 09:48, 17 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Help Wanted ==&lt;br /&gt;
&lt;br /&gt;
Hello one and all.  I&#039;m here representing a newly created Role-Playing forum that is based in the Transformers Universe.  We&#039;re in the early stages yet, and are looking for people to help get the ball rolling.  Since this site seems to lack a dedicated forum (where requests like these would usually be made) and I haven&#039;t seen any other way to effectively say my piece in front of a large audience, I thought that posting here was the best way to &amp;quot;advertise&amp;quot; us, as it were.  I sincerely apologize if this was the wrong move on our part, or if I&#039;ve breached protocol at all, but I can assure everyone that our intentions aren&#039;t malign.  Those interested, please contact me using any of the ways that I have listed on my username page here on this site.  I won&#039;t tempt fate by linking our website here directly =P  &lt;br /&gt;
&lt;br /&gt;
Once again, you all have my sincere greetings, and I hope to hear from you soon.  Also, as a side note: the difference in quality between this page and the transformers wikia is amazing.  [[User:Rathian Warrior|Rathian Warrior]] 23:50, 3 October 2011 (EDT)&lt;br /&gt;
:I&#039;m not sure if you&#039;ve crossed any lines, and frankly, you were polite enough about it that it&#039;s not a big deal, but you could always buy some ad space if you want to raise awareness of your forum.  It&#039;s cheap!  There&#039;s usually a link on every page around the banners, but if you didn&#039;t catch it, you can follow this link: [https://www.projectwonderful.com/advertisehere.php?id=25311&amp;amp;type=4 Project Wonderful TFWiki Page]--[[User:McFly|McFly]] 16:13, 8 November 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Fictional&amp;quot; and &amp;quot;real&amp;quot; categories ==&lt;br /&gt;
I think we need to come up with a consistent way to distinguish categories of things that are real and categories of things that have appeared in fiction. So far, we&#039;ve skimmed the issue by using synonyms, such as [[:Category:Companies|companies]] and [[:Category:Businesses|businesses]], but that doesn&#039;t really work for things like [[:Category:Magazines|magazines]], which is already used for real magazines. Currently, we have [[:Category:Fictional books]], [[:Category:Fictional video games]] that consider the fictional entities &amp;quot;different&amp;quot;. On the other hand, we have [[:Category:Real-world events by day]] and [[:Category:Real world films]]. We focus more on the fictional aspect of Transformers, so it makes sense to not point out the fictionality in categories, but &amp;quot;real world&amp;quot; sounds awkward to some. Which one should we use? [[User:Interrobang|—Interrobang]] 00:26, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I thought I&#039;d cheat and see how some of the other fictional Wikis deal with the problem. Three different approaches I saw:&lt;br /&gt;
:*[http://tardis.wikia.com/ Doctor Who wiki] has a [http://tardis.wikia.com/wiki/Category:Real_world &amp;quot;Real World&amp;quot; category] for real world stuff and in most cases the categories for real world things are at &amp;quot;Real world X&amp;quot;.&lt;br /&gt;
:*[http://wookiepedia.org/ Wookiepedia] goes the parenthetical route, with &amp;quot;Books&amp;quot; and &amp;quot;Books (real-world)&amp;quot;. Though they also have one or two like &amp;quot;Real world companies&amp;quot;.&lt;br /&gt;
:*[http://stargate.wikia.com/ Stargate wiki] has &amp;quot;Books&amp;quot; versus &amp;quot;Stargate books&amp;quot; for real world books.&lt;br /&gt;
:I kinda like the parenthetical approach that Wookiepedia have taken. --[[User:Abates|abates]] 03:11, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I&#039;d favor pointing out the status of both categories, just to make absolutely clear what they are for. The words can be &amp;quot;Fictional&amp;quot; and &amp;quot;Real-world&amp;quot; (I notice both real-world categories use a different spelling. Whichever it&#039;s gonna be (if), only one spelling should be used). &amp;quot;Nonfictional&amp;quot; kinda works as an alternative, would &amp;quot;Real-world&amp;quot; be disliked. [[User:Geewunling|Geewunling]] 04:35, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If we go that route, I think &amp;quot;real-world&amp;quot; should be used, since &amp;quot;real world&amp;quot; is a lot more easier to fix than the other parsing. I like the Wookiepedia approach, but I&#039;m not sure that&#039;s enough to change how we already do categories. The idea to label both categories sounds nice, but &amp;quot;Fictional X&amp;quot; seems incongruous with unlabeled categories, such as &amp;quot;weapons&amp;quot;, &amp;quot;technology&amp;quot;, etc.; considering that our main focus is the fiction, I&#039;m leaning towards only labeling the real stuff. [[User:Interrobang|—Interrobang]] 13:02, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it would be advantageous to put a {{tl|disambig2}} at the top, so people could easily go from the fictional to the real world category too. --[[User:Abates|abates]] 16:30, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Yeah, I think I put that on [[:Category:Films]] a while ago. [[User:Interrobang|—Interrobang]] 16:57, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Speaking of this, I found we handle [[:Category:Films]] like [[:Category:Real people]], wouldn&#039;t this be some, um, confusing? It&#039;s just, somehow, reverse? (Except for the fictional films like &#039;&#039;Honoji&#039;&#039;) According to the logic of how we handle [[:Category:Real people]], shouldn&#039;t we place films like &#039;&#039;40-Year-Old Virgin&#039;&#039; or &#039;&#039;Godzilla&#039;&#039; in the [[:Category:Real world films]]? --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 23:04, 6 September 2011 (EDT)&lt;br /&gt;
::::::::Godzilla doesn&#039;t go in &amp;quot;Real world films&amp;quot; because it&#039;s not a real world &#039;&#039;Transformers&#039;&#039; film. The Transformers is implied in that category name. Presumably we could have a &amp;quot;Real films&amp;quot; category for Godzilla, etc, but I&#039;m not sure it&#039;s worth doing. --[[User:Abates|abates]] 23:53, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::We shouldn&#039;t use &amp;quot;fictional X&amp;quot; for two reasons. One, there things like [[As the Kitchen Sinks]] that are fictional even within the fictional Transformers universe. Second, the wiki is written in-universe by default and putting [[Big Steve&#039;s Used Cars]] in a &amp;quot;fictional businesses&amp;quot; category would kind of break that. Within Transformers fiction, &amp;quot;Big Steve&#039;s Used Cars&amp;quot; is not a fictional company, but &amp;quot;As the Kitchen Sinks&amp;quot; is a fictional TV show. - [[User:Starfield|Starfield]] 18:47, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::In-universe, As the Kitchen Sinks is not a fictional show. It depicts fictional events and fictional people, yes, but the show itself, as a piece of entertainment, is not fictional. I do get your point, as we actually have things like [[Frankenstein]] that are two layers of fiction removed from us. [[User:Interrobang|—Interrobang]] 19:18, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::Yes, of course. I meant, in-universe, &#039;&#039;As the Kitchen Sinks&#039;&#039; is a work of fiction, whereas &amp;quot;Big Steve&#039;s Used Cars&amp;quot; is a real business that sells real used cars to real people. Have I been saying it wrong all this time? Wasn&#039;t &#039;&#039;Buck Rogers&#039;&#039; a fictional TV show? Anyway, it sounds like you got my point. - [[User:Starfield|Starfield]] 21:14, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::Or, judging by the fact categories like &amp;quot;Magazines&amp;quot; in used for magazines in our real life and &amp;quot;Companies&amp;quot; for companies in real life, why not just use &amp;quot;Film&amp;quot; for films (such as DOTM) in real life, while we move current contents in &amp;quot;Films&amp;quot; to &amp;quot;Films in &#039;&#039;Transformers&#039;&#039; fictions&amp;quot;? --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 23:04, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::That seems like it would go counter to some of our existing naming schemes. e.g. if we split that out into films by franchise, you&#039;d get &amp;quot;Films in Generation 1&amp;quot; rather than &amp;quot;Generation 1 films&amp;quot;. Though admittedly the former title might have the advantage that it&#039;s clearer in meaning. --[[User:Abates|abates]] 23:50, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::::I think both are equally ambiguous in their meaning. If we still need to clarify the purpose of the categories, we can always spell it out in the category&#039;s introduction. [[User:Interrobang|—Interrobang]] 00:03, 7 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Transformers: &amp;quot; ==&lt;br /&gt;
We talked a bit about adding back &amp;quot;Transformers: &amp;quot; to the titles of articles [[Transformers_Wiki_talk:Community_Portal/Archive51#When_to_omit_.22Transformers.22_from_an_article_title|previously]], and the general sentiment was that people were for it or didn&#039;t have an issue with it. Does anybody else have any input in this matter? [[User:Interrobang|—Interrobang]] 00:34, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m okay with this change, but I do have three questions on execution. &amp;lt;br&amp;gt;1.) Whether or not &amp;quot;Transformers&amp;quot; is followed by a colon seems random in our current system. How will that be handled? &amp;lt;br&amp;gt;2.) If &amp;quot;Transformers(:)&amp;quot; is going to be added to every relevant page name, then what about all the extra words in the titles of Japanese stuff? &amp;lt;br&amp;gt;3.) What conseuqneces will this have for categories, lists, storylinks, etc? &amp;lt;br&amp;gt;[[User:Geewunling|Geewunling]] 04:41, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::#I think we&#039;ve had two consistent rules about that: If the title is some kind of phrase, like &amp;quot;Transformers United&amp;quot;, &amp;quot;The Transformers Collection&amp;quot;, or &amp;quot;Transformers Animated&amp;quot;, then we don&#039;t use the colon. If the title is some kind of obvious &amp;quot;title: subtitle&amp;quot; setup (&amp;quot;Transformers: Armada&amp;quot;, &amp;quot;Transformers: Prime&amp;quot;), then we use the colon. There&#039;s some borderline examples, but I think we can figure them out one by one. Official sources will help with determining colon-status. The other rule seems to apply to only games: If the title has another subtitle, then the first colon is dropped (ex. [[Transformers Prime: Terrorcon Defense]]). I dunno why, but we can add back the colon, I suppose.&lt;br /&gt;
::#I guess we add them? We could argue it for &#039;&#039;Victory&#039;&#039;, since it was released in English contexts as just &amp;quot;Transformers: Victory&amp;quot;.&lt;br /&gt;
::#I think we&#039;re just going to continue the same in relation to those. The articles will still be sorted by their subtitles in categories. Storylinks I could go either way on, but I think the trend is to drop the main title. I&#039;ve been doing that for the AAII storylinks to avoid excessively long links. [[User:Interrobang|—Interrobang]] 12:49, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t see how &amp;quot;Transformers United&amp;quot; and &amp;quot;Transformers Animated&amp;quot; are any different from &amp;quot;Transformers: Prime&amp;quot;. To me, all three could fall into either of your groups (phrase vs subtitle) and would prefer colons in all of those cases. Of your examples, only &amp;quot;The Transformers Collection&amp;quot; seems to really belong in the &amp;quot;phrase&amp;quot; group. --[[User:Khajidha|Khajidha]] 13:22, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::&amp;quot;United&amp;quot; and &amp;quot;Animated&amp;quot; are adjectives that modify &amp;quot;Transformers&amp;quot; and have official sources that omit the colon. &amp;quot;Transformers Prime&amp;quot; doesn&#039;t make sense in that way. [[User:Interrobang|—Interrobang]] 14:58, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I am not certain about those two &amp;quot;rules&amp;quot; for colons either. They&#039;re rather vague and bound to cause arguments and confusion. It needs to be made more obvious whether a colon should be used or not before &amp;quot;Transformers&amp;quot; can be added everywhere (a help page on the matter would also be handy in the future, me thinks).&lt;br /&gt;
&lt;br /&gt;
::::I think that if we would put the cartoon at &#039;&#039;Transformers: Victory&#039;&#039;, that would cause confusion with the manga, storypages, toyline and franchises, none of which were ever brought over and should thus not be named such. If moved, the &#039;&#039;Victory&#039;&#039; cartoon should best go to its Japanese name. [[User:Geewunling|Geewunling]] 15:28, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;shrug* The first rule is mostly there for Transformers Animated, which people will be resistant to moving to have a colon (plus, obvious cases like The Transformers Collection). The second rule I really don&#039;t care about and can be tossed (it mostly only concerns the movie series of video games and online games). [[User:Interrobang|—Interrobang]] 16:04, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Are you suggesting there that Victory articles should be moved to &amp;quot;Fight! Super Robot Lifeform Transformers: Victory&amp;quot;? I&#039;d disagree with that, if so! --[[User:Abates|abates]] 07:25, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Why? We can&#039;t go around writing out the full names of Western franchises and stuff but not do so for the Japanese stuff. We already have &amp;quot;Fight! Super Robot Lifeform Transformers&amp;quot; written out for the 1985 &amp;amp; 1986 Japanese franchises, so why not &#039;&#039;Victory&#039;&#039;? [[User:Geewunling|Geewunling]] 07:30, 10 September 2011 (EDT)&lt;br /&gt;
:::::::Victory (the cartoon) has been released in the West as &amp;quot;Transformers: Victory&amp;quot;, to me that means that the official English name of the franchise &#039;&#039;is&#039;&#039; Transformers: Victory. Yes, we should give the full Japanese title at the beginning of the franchise page but there is no reason to move anything to that name. --[[User:Khajidha|Khajidha]] 08:35, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::That was pretty much my reasoning too (also typing out the full name every time we wanted to link to it would be tedious). --[[User:Abates|abates]] 17:59, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::Tying out &amp;quot;(franchise)&amp;quot; every time for everything is more tedious, but we still have it (for... some reason). Ditto long titles like [[The Story of Super Robot Lifeforms: The Transformers]] and [[Transformers Vault]]&#039;s previous ridiculously long title. &lt;br /&gt;
:::::::::But I guess the general principle of &amp;quot;Transformers: &amp;quot; is acceptable to most. I&#039;ll start moving the noncontroversial pages (Western comics and cartoons with definite subtitles, etc.) if there&#039;s no opposition in the next few hours. [[User:Interrobang|—Interrobang]] 18:08, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::Is there a difference between [[Transformers, Beast Wars: The Gathering]] and [[Transformers, Beast Wars: The Ascending|Transformers: Beast Wars: The Ascending]]? I must admit, the comma/colon distinction seems kinda arbitrary. Also, these page names seem kind of overlong and stupid, what&#039;s wrong with [[Transformers, Beast Wars: The Ascending|The Ascending]] and [[Transformers, Beast Wars: The Gathering|The Gathering]]? It&#039;s a Transformers wiki and those are Beast Wars series; prefixing everything we possibly can with &amp;quot;Transformers&amp;quot; is only going to clog up the search box and make editing just that bit more arduous. What were the arguments in favour of this again? --[[User:Emvee|Emvee]] 16:21, 12 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::::That&#039;s the formatting used in the indicia. Your complaint about the search box is silly; did you really think typing &amp;quot;Transformers&amp;quot; into it yielded anything useful 99% of the time?&lt;br /&gt;
:::::::::::Like it or not, &amp;quot;Transformers: &amp;quot; is the part of the name of many things, and the hoops we have to go through to maintain this silly system of dropping it from article titles has gotten ridiculous and inconsistent. Adding &amp;quot;Transformers: &amp;quot; to article titles, on the other hand, adds &#039;&#039;clarity&#039;&#039; and avoids pointless disambiguation. &amp;quot;The Transformers: Bumblebee&amp;quot; is preferable to &amp;quot;Bumblebee (comic)&amp;quot;, &amp;quot;Transformers: Sector 7&amp;quot; to &amp;quot;Sector 7 (comic)&amp;quot;, etc. [[User:Interrobang|—Interrobang]] 16:44, 12 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::::I get that it&#039;s useful in some cases, but it just seems like applying the rule across the board means we&#039;re overcomplicating the issue. Occam&#039;s razor has a lot going for it, and for user-friendliness I&#039;d go for brevity. --[[User:Emvee|Emvee]] 17:11, 12 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::::Also on an Occam&#039;s razor tip, &amp;quot;Bumblebee (comic)&amp;quot; conveys more information in fewer characters than &amp;quot;Transformers: Bumblebee&amp;quot;. I really don&#039;t understand why the latter is preferable. --[[User:Emvee|Emvee]] 14:06, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::::::There&#039;s something to say for either argument, but as it is, we have proven to be unable to keep to one consistent &amp;quot;Transformers&amp;quot;-as-part-of-the-title policy at least since TFA. And if trying to keep &amp;quot;Transformers&amp;quot; out of the deal doesn&#039;t work, we oughta give the alternative a chance. I don&#039;t think it necesarilly makes it harder to find anything, as the search box reacts to words even if they are not the first part of a page title. And I want to have the changes in clear perspective before I might suggest deleting a few redirects, so at least for now, searches won&#039;t be any harder and we have a consistent policy. [[User:Geewunling|Geewunling]] 14:49, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I gotta say, I&#039;m hating how this is working in practice.  Article titles seem long and ugly to me.--[[User:Jimsorenson|Jimsorenson]] 15:46, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I feel the same, but it seems to be an necessary evil because &amp;quot;Transformers: ***&amp;quot; is a full title? duh. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I fear the day someone decides to add full titles to disambiguation suffixes as well, e.g. &amp;quot;Optimus Prime (Transformers Animated)&amp;quot;, &amp;quot;Grindor (Transformers: Revenge of the Fallen)&amp;quot; etc.--[[User:Nevermore|Nevermore]] 13:43, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::That would be silly, and I&#039;m pretty sure most people would oppose it. Putting &amp;quot;Transformers:&amp;quot; in names is a change we&#039;d already been drifting towards for a while with, for instance, the War for Cybertron articles all doing it. --[[User:Abates|abates]] 16:32, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::On a related note, it&#039;s a pet peeve of mine when a writeup talks about a specific medium related to a franchise but links to the franchise as a whole instead, such as &amp;quot;Jetfire was released as part of wave 1 of the [[Cybertron (franchise)|Cybertron]] toyline&amp;quot; or &amp;quot;in episode 6 of the [[Energon (franchise)|Energon]] cartoon...&amp;quot;.--[[User:Nevermore|Nevermore]] 17:29, 15 September 2011 (EDT)&lt;br /&gt;
:::::Would the best solution there be something like &amp;quot;Jetfire was released as part of wave 1 of the [[Cybertron (franchise)|Cybertron]] [[Cybertron (toyline)|toyline]]&amp;quot;? --[[Special:Contributions/77.99.176.103|77.99.176.103]] 03:32, 29 September 2011 (EDT) (oops, emvee not logged in)&lt;br /&gt;
::::::I think linking to the toyline page is sufficent. There&#039;s no need for an additional link to the corresponding umbrella franchise. The thought behind this is: &amp;quot;If Joe McRandom sees something that interests him and clicks a link, does he want the link to take him straight to the specific topic or to a more general overview?&amp;quot; I think link targets should always be as specific as necessary. If someone gets interested in a broader overview, he can always go one level up. After all, a link referring to G1 Optimus Prime leads to [[Optimus Prime (G1)]], not to [[Optimus Prime (disambiguation)]], either. In the same fashion, toyline pages should deeplink to the specific toy entries on the respective characters&#039; pages (or even their toy pages, if applicable). Like, if Joe McRandom is on the [[Transformers: Universe (2008 toyline)|Universe (2008 toyline)]] page, sees a &amp;quot;Prowl&amp;quot; toy listed under &amp;quot;Deluxe Class&amp;quot; and wants to read more about that toy, he wants the &amp;quot;Prowl&amp;quot; link to take him straight to [[Prowl (G1)/toys#Universe (2008)]], not to the [[Prowl (G1)|main character page]] where he then has to scroll down to &amp;quot;toys&amp;quot;, see that G1 Prowl toys have their separate page, go &#039;&#039;there&#039;&#039;, &#039;&#039;then&#039;&#039; scroll down to &amp;quot;Universe (2008)&amp;quot;. (It currently links to [[Prowl (G1)/toys]], which is at least halfway there.) I will fix this wherever I see it, and implement it when doing writeups.--[[User:Nevermore|Nevermore]] 08:11, 13 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
===Suggestion to creating templates===&lt;br /&gt;
&lt;br /&gt;
Do we need some kinds of templates when typing contents for convenience? For my experience in Terminator Wiki, we use templates like &amp;lt;nowiki&amp;gt;{{T3}} for &#039;&#039;[[Terminator 3: Rise of the Machines]]&#039;&#039; or {{TSCC}} for &#039;&#039;[[Terminator: The Sarah Connnor Chronicles]]&#039;&#039;&amp;lt;/nowiki&amp;gt;. What I&#039;m suggesting is that after we make all franchise names into full title (and we don&#039;t use redirect links), it is some how trouble some when typing the title. So we can make some templates like:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{tf|Armada}} -&amp;gt; &#039;&#039;[[Transformers: Armada (franchise)|Transformers: Armada]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{tf|Armada|toyline|Pokeformer}} -&amp;gt; &#039;&#039;[[Transformers: Armada (toyline)|Pokeformer]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{jptf|bwn}} -&amp;gt; &#039;&#039;[[Super Lifeform Transformers: Beast Wars Neo]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If there is any user who can created complex template, we could make&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{tf|armada|t}} -&amp;gt; &#039;&#039;[[Transformers: Armada (toyline)|Transformers: Armada]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
parameter 1:&lt;br /&gt;
2010 = Fight! Super Robot Lifeform Transformers 2010 (toyline)&lt;br /&gt;
thm = Transformers: The Headmasters (toyline)&lt;br /&gt;
mf = Transformers: Super-God Masterforce (toyline)&lt;br /&gt;
v = Fight! Super Robot Lifeform Transformers: Victory&lt;br /&gt;
z = Transformers: Zone&lt;br /&gt;
roc = Transformers: Return of Convoy&lt;br /&gt;
oc = Fight! Super Robot Lifeform Transformers: Operation Combination&lt;br /&gt;
armada = Transformers Armada&lt;br /&gt;
bwn = Super Lifeform Transformers: Beast Wars Neo&lt;br /&gt;
mov = Movie&lt;br /&gt;
rotf = Revenge of the Fallen&lt;br /&gt;
tfa = Transformers Animated&lt;br /&gt;
...and (blah blah)&lt;br /&gt;
&lt;br /&gt;
parameter 2:&lt;br /&gt;
*default* - franchise&lt;br /&gt;
t - toyline&lt;br /&gt;
ct - cartoon&lt;br /&gt;
co - comic&lt;br /&gt;
m - manga&lt;br /&gt;
f - film&lt;br /&gt;
&lt;br /&gt;
And, if possible:&lt;br /&gt;
if parameter 3 = s (for example), it will become short title like &#039;&#039;[[Transformers: Armada (toyline)|Armada]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:42, 24 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s something I&#039;ve thought about as well. Considering there are a lot of exceptions to the regular naming system (parts of franchises that are called something different or franchises that lack the (franchise) identifier on the wiki because it&#039;s not necessary to disambiguate it), I don&#039;t think a template can be coded to put a link together. A full list system like our TFtoon templates have could maybe work though. [[User:Geewunling|Geewunling]] 16:08, 25 September 2011 (EDT)&lt;br /&gt;
::I think with the number of franchises we have, it would end up being a hellishly big template and difficult to maintain for only a minor gain. --[[User:Abates|abates]] 18:03, 25 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
===&amp;quot;Fight! Super Robot Lifeform&amp;quot; Transformers===&lt;br /&gt;
With the insertion of this phrase into the Victory page titles, should it also be inserted into the titles of The Headmasters, Super-God Masterforce, and Zone? now while the immediate answer would be &amp;quot;No&amp;quot;, there are some places that do include this text above the &amp;quot;Toransufōmā&amp;quot; text in each of these series&#039;s logos. An example of this would the [[Transformers Tapestry]] (which even includes it in the Operation combination logo as well) and the [http://tfwiki.net/wiki/Image:Columbia_Zone_DVD.jpg Columbia DVD of Zone]. Its inclusion in these places seems more than mere coincidence, so would we take this idea into consideration? --[[User:Sabrblade|Sabrblade]] 14:33, 23 October 2011 (EDT)&lt;br /&gt;
:Um, that &#039;&#039;Zone&#039;&#039; DVD does not support your assertion. All of the &#039;&#039;actual&#039;&#039; media for those series (except for the Zone manga and story pages) do not include The &amp;quot;Fight!...&amp;quot; portion. [[User:Interrobang|—Interrobang]] 16:58, 23 October 2011 (EDT)&lt;br /&gt;
::Technically the whole toyline in Japan from 1985 to 1992 was called &amp;quot;Fight! Super Robot Lifeform Transformers&amp;quot; (as was written on the boxes), so at least the toyline pages for the series of those years would probably need the longer title than just &amp;quot;Transformers: &#039;&#039;X&#039;&#039; (toyline)&amp;quot; --[[User:Sabrblade|Sabrblade]] 16:04, 25 October 2011 (EDT)&lt;br /&gt;
:::So you want to move the toyline pages to some made-up name? Pick one: 1) Merge all of the toyline pages to &amp;quot;Fight! Super Robot Lifeform Transformers (toyline)&amp;quot; 2) Leave the toyline pages as they are instead of stressing over naming things that technically don&#039;t exist. [[User:Interrobang|—Interrobang]] 16:23, 25 October 2011 (EDT)&lt;br /&gt;
::::How is it &amp;quot;made up&amp;quot;? &amp;quot;Tatakae! Chō Robot Seimeitai&amp;quot; means &amp;quot;Fight! Super Robot Lifeform&amp;quot; and is written above the &amp;quot;Toransufōmā&amp;quot; text on the packages of the 1985-1992 Japanese toys. I&#039;m not proposing we merge all those toyline pages together, but rather something akin to the [[Transformers: Beast Wars (Japanese toyline)|Japanese Beast Wars toyline]] page, in which the individual toylines are kept separate even though they were all collectively the same-named toyline. --[[User:Sabrblade|Sabrblade]] 17:25, 25 October 2011 (EDT)&lt;br /&gt;
:::::&amp;quot;Fight! Super Robot Lifeform Transformers: The Headmasters&amp;quot; and its ilk are the imaginary names. Those articles for imaginary toylines are fine where they are. [[User:Interrobang|—Interrobang]] 17:53, 25 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
===&amp;quot;Movie&amp;quot;===&lt;br /&gt;
There&#039;s still [[Movie (franchise)]], [[Movie (toyline)]] and more. Shouldn&#039;t that be &amp;quot;Transformers (2007 franchise)&amp;quot; and &amp;quot;Transformers (2007 toyline)&amp;quot;, with the current [[Transformers (2007)]] becoming &amp;quot;Transformers (2007 movie)&amp;quot;?--[[User:Nevermore|Nevermore]] 20:44, 24 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Probably. I didn&#039;t move them, since I wanted to bring it up for discussion first. The film should be moved to just &amp;quot;Transformers (film)&amp;quot;, though. [[User:Interrobang|—Interrobang]] 21:05, 24 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Movie (&#039;&#039;media&#039;&#039;)&amp;quot; should be moved to &amp;quot;Transformers (2007 &#039;&#039;media&#039;&#039;)&amp;quot; while &amp;quot;Transformers (2007)&amp;quot; goes &amp;quot;Transformers (film)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:27, 24 October 2011 (EDT)&lt;br /&gt;
::That push for lexical accuracy strikes me as creating more ambiguity than it resolves.  -[[User:Derik|Derik]] 16:06, 25 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Jungaroo==&lt;br /&gt;
Someone made a lovely [[Jungaroo]] gobox, but there&#039;s no page for him. --[[User:Jimsorenson|Jimsorenson]] 21:23, 6 September 2011 (EDT)&lt;br /&gt;
:I don&#039;t think he&#039;s in any applicable fiction, but his [http://home.comcast.net/~BattleBeastSD/MGCKang.html bio card is online here]. Someone will have to translate it from Japanese first though. --[[User:Abates|abates]] 20:25, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Making the search suggestion work better ==&lt;br /&gt;
&lt;br /&gt;
I don&#039;t know if anyone else has this problem, but I noticed sometimes when I type something in the search box, the search suggestions below it jump around and end up on a list which doesn&#039;t quite match what I typed. I think it&#039;s something to do with the speed I&#039;m typing and the amount of time the server takes to respond to each request.&lt;br /&gt;
&lt;br /&gt;
Anyway, I tweaked the javascript for grabbing the suggestions from the server so it would only trigger when I stopped typing. That seems to fix the problem for me, and as a bonus it&#039;s not nagging the server on every keypress. The downside is no instant feedback when I type, but I can live without that if it fixes the other thing.&lt;br /&gt;
&lt;br /&gt;
If anyone else is having that problem and wants to have a go, just copy and paste the following into your [[Special:MyPage/monacobook.js|monacobook.js]] (caveat: only tested on Firefox and Chrome):&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
var ss_memory = null;&lt;br /&gt;
var ss_timeron = 0;&lt;br /&gt;
var ss_timer;&lt;br /&gt;
 &lt;br /&gt;
function DoActualSearch() {&lt;br /&gt;
    ss_timeron=0;&lt;br /&gt;
    var newdiv = document.getElementById(&amp;quot;searchsuggest&amp;quot;);&lt;br /&gt;
    if (!newdiv) {&lt;br /&gt;
        var newdiv = document.createElement(&amp;quot;div&amp;quot;);&lt;br /&gt;
        newdiv.id = &amp;quot;searchsuggest&amp;quot;;&lt;br /&gt;
        var searchdiv = document.getElementById(&amp;quot;searchBody&amp;quot;);&lt;br /&gt;
        searchdiv.appendChild(newdiv);&lt;br /&gt;
    }&lt;br /&gt;
    var x = document.getElementById(&amp;quot;searchInput&amp;quot;).value;&lt;br /&gt;
    if (x == ss_memory) {&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
    ss_memory = x;&lt;br /&gt;
    document.getElementById(&amp;quot;searchsuggest&amp;quot;).style.display = &#039;none&#039;;&lt;br /&gt;
    if (x.length &amp;lt; 30 &amp;amp;&amp;amp; x.length &amp;gt; 1 &amp;amp;&amp;amp; x.value != &amp;quot;&amp;quot;) {&lt;br /&gt;
        sajax_do_call(&amp;quot;wfAjaxSearchSuggest&amp;quot;, [x], newdiv);&lt;br /&gt;
        document.getElementById(&amp;quot;searchsuggest&amp;quot;).style.display = &#039;block&#039;;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function MySearchCall() {&lt;br /&gt;
  if(ss_timeron) {&lt;br /&gt;
    clearTimeout(ss_timer);&lt;br /&gt;
    ss_timer=setTimeout(&amp;quot;DoActualSearch();&amp;quot;,500);&lt;br /&gt;
  } else {&lt;br /&gt;
    ss_timer=setTimeout(&amp;quot;DoActualSearch();&amp;quot;,500);&lt;br /&gt;
    ss_timeron=1;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function myss_ajax_onload(){&lt;br /&gt;
    var x = document.getElementById(&#039;searchInput&#039;);&lt;br /&gt;
    x.onkeyup = function(){&lt;br /&gt;
        MySearchCall();&lt;br /&gt;
    };&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
hookEvent(&amp;quot;load&amp;quot;, myss_ajax_onload);&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Unfortunately it won&#039;t fix the actual contents of the search suggestions, so you&#039;ll still get a bunch of All Hail Megatron issues when you type &amp;quot;Megatron&amp;quot;, but that requires changes on the server. --[[User:Abates|abates]] 20:02, 14 September 2011 (EDT)&lt;br /&gt;
:Hmm.  I feel like adding &amp;lt;tt&amp;gt;ORDER BY `page_counter` DESC&amp;lt;/tt&amp;gt; around line 20 of &#039;&#039;suggest.php&#039;&#039; might help w/ our search results, but it&#039;s hard to say for sure given how abstracted mediawiki database calls are, someone would have ot make the change then test it.  -[[User:Derik|Derik]] 18:47, 15 September 2011 (EDT)&lt;br /&gt;
::The thought I had was to do a query on article titles starting with the search term, and then if that gives back less than 8 entries, do a second search to fill the rest of the list with titles with the term anywhere in the title. The search suggest currently supports both options, but not at the same time. --[[User:Abates|abates]] 20:07, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Stuff==&lt;br /&gt;
: Firstly, our organization of information related to the junior franchises is terrible and I&#039;d love to do something about it, but I need feedback. We currently have most Japanese and American Go-Bots as separate characters, except for the Japanese Go-Bots from the 1-2-3 line. Though there are requests for a separate Chopper page. Should those pages be split or not? And if so, what about the figures that came with some of the toys. Kid-Bot clearly isn&#039;t the &amp;quot;red driver&amp;quot; or &amp;quot;blue driver&amp;quot;, but the dog and &amp;quot;Gas-Bot&amp;quot; both have fiction in only one of the two franchises, so is it worth separating them? Also, does the unpublished coloring book count as apocrypha or not, seeing as it was mostly approved? And the human characters within, do they count as cameos like Kelly in the Dreamwave comics or separate characters? And does anyone know what the Japanese name was by which the First Transformers were released? The Go-Bots fansite has an image of Dumpkun&#039;s box featuring what looks like a G1 logo, the First Transformers logo and &amp;quot;初めて トランスフォーマー&amp;quot; written on it.&lt;br /&gt;
: Secondly, many disambiguation pages still mention if there&#039;s a separate page for the toys of a character. Is this system still necessary now that we use subpages to separate such stuff under? [[User:Geewunling|Geewunling]] 17:07, 23 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I think unpublished stuff is treated as apocrypha, isn&#039;t it? The character page coverage of unreleased Dreamwave issues is in notes, for instance. --[[User:Abates|abates]] 07:48, 24 September 2011 (EDT)&lt;br /&gt;
:::True, but we don&#039;t know if those were approved or know those weren&#039;t approved. The coloring book was approved, just not released. That makes it better comparable to Wreckers #$, which we do not consider apocrypha (though I wouldn&#039;t know if we&#039;d do that if Wreckers #5 didn&#039;t partially canonize it). [[User:Geewunling|Geewunling]] 11:39, 1 October 2011 (EDT)&lt;br /&gt;
::Just weighing in on the toy page issue: I find it useful to have these called out on the disambig pages. Being able to go directly from the disambig page to the toy page of a character saves me at least one click (if I see the suite box in time) and often some scrolling (if I don&#039;t see it). However, I won&#039;t fight too hard on this if consensus is for the removal of this feature. --[[User:Khajidha|Khajidha]] 07:47, 26 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Thinking some more about the Go-Bots stuff, as the Japanese version of Gas-Bot has no fiction, it probably doesn&#039;t need its own page - either link to Gas-Bot&#039;s page or just leave it unlinked in the appropriate toy sections. Same with the US version of the dog. --[[User:Abates|abates]] 21:30, 24 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Facebook. ==&lt;br /&gt;
&lt;br /&gt;
Is &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;http://www.facebook.com/pages/TFwikinet/191252494230187&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039; us?  Because it&#039;s the #1 link when you search for &amp;quot;TFWiki Facebook,&amp;quot; and our group is nowhere to be seen. -[[User:Derik|Derik]] 16:32, 12 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think our group is not showing up because you have to have a Facebook account to see it? When I go to the group&#039;s URL, I just get a page prompting me to log in to Facebook. --[[User:Abates|abates]] 17:47, 12 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::The link is this one: [http://www.facebook.com/groups/28226443881/ http://www.facebook.com/groups/28226443881/], which is the #3 on the search by &amp;quot;TFwiki site:facebook.com&amp;quot; on Google. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:51, 12 October 2011 (EDT)&lt;br /&gt;
:::So the other one isn&#039;t ours, and we can&#039;t put a link on it pointing it to the group.&lt;br /&gt;
:::Annoying.  -[[User:Derik|Derik]] 01:01, 13 October 2011 (EDT)&lt;br /&gt;
::::It&#039;s a &amp;quot;Community page&amp;quot;, whatever that is. Clicking on the &amp;quot;Create a page&amp;quot; button on the top right of that page does bring up some sort of form which seems like it will do something. --[[User:Abates|abates]] 01:12, 13 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Halloween ==&lt;br /&gt;
&lt;br /&gt;
Presuming we&#039;re deco&#039;ing our frontpage for Halloween... does anyone have any suggestions?  Monsters, ghosts, gouls? -[[User:Derik|Derik]] 02:09, 27 October 2011 (EDT)&lt;br /&gt;
:Animated Blitzwing&#039;s random face looks sorta Jack O&#039;Lanterny and could work as a replacement for the Autobot insignia on the site logo, assuming we can find a head-on image of it. --[[User:Abates|abates]] 02:35, 27 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Moving &amp;quot;(Timelines)&amp;quot; articles ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking that, as we don&#039;t bother with &amp;quot;(Timelines)&amp;quot; for SG, TransTech, and Animated characters, we should apply the same across the board and only use it if necessary.&lt;br /&gt;
&lt;br /&gt;
*[[Astrotrain (Timelines)]] → Astrotrain (Cybertron)&lt;br /&gt;
*[[Cannonball (Timelines)]] → Cannonball (G1)&lt;br /&gt;
*[[Cop-Tur (Timelines)]] → Cop-Tur (G1)&lt;br /&gt;
*[[Halogen (Timelines)]] → Halogen (G1)&lt;br /&gt;
*[[Side Burn (Timelines)]] → Side Burn (G1)&lt;br /&gt;
*[[Sky-Byte (Timelines)]] → Sky-Byte (G2)&lt;br /&gt;
*[[Switchblade (Timelines)]] → Switchblade (BW)&lt;br /&gt;
*[[Thunderblast (Timelines)]] → Thunderblast (G1)&lt;br /&gt;
*[[Yoketron (Timelines)]] → Yoketron (G1)&lt;br /&gt;
&lt;br /&gt;
The exceptions are the Descent into Evil characters, who don&#039;t really fit in any pre-existing franchise, and the Nexus Prime characters, who don&#039;t originate from a particular universe.&lt;br /&gt;
*[[Buzzclaw (Timelines)]]&lt;br /&gt;
*[[Dirge (Timelines)]]&lt;br /&gt;
*[[Flareup (Timelines)]]&lt;br /&gt;
*[[Landquake (Timelines)]]&lt;br /&gt;
*[[Ricochet (Timelines)]]&lt;br /&gt;
*[[Heatwave (Timelines)]]&lt;br /&gt;
&lt;br /&gt;
Thoughts? Or does nobody really care that much? [[User:Interrobang|—Interrobang]] 10:19, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Since you asked, I&#039;ll pitch 2¢ into the conversation, since I know a little bit about it. I found out the hard way that wiki &amp;quot;doesn&#039;t bother with &#039;(Timelines)&#039; for Animated.&amp;quot; And by hard way, I mean I was clobbered over the head without a hint of explanation for proposing that a Timelines-original Animated continuity character should be at &amp;quot;(Timelines).&amp;quot; But no hard feelings. I still think &amp;quot;franchise of origin&amp;quot; and not &amp;quot;continuity of origin&amp;quot; is best for disambiguations. For reasons that have been discussed previously on the subject. TransTech and SG are treated as a kind of sub-franchises of Timelines by the wiki, so I think they are an OK exception. - [[User:Starfield|Starfield]] 11:00, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::The prose stories are identified as &amp;quot;Transformers Timelines presents a Transformers: (franchise) story&amp;quot;. I would say that both franchises are equally valid to the stories, and the fact that non-Timelines stories (Around Cybertron, magazine comics, etc.) bleed together with Timelines stories makes the &amp;quot;(Timelines)&amp;quot; designation convoluted. [[User:Interrobang|—Interrobang]] 11:12, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::Well, that&#039;s different. It sounds like you are calling their actual franchise of origin into question, not just their disambiguation. I don&#039;t have an opinion about their actual franchise of origin. - [[User:Starfield|Starfield]] 11:28, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I&#039;m not denying that they&#039;re Timelines, but saying that they&#039;re better categorized under their other franchise. Like the Animated guys, it seems more instinctive to file [[Side Burn (Timelines)]] under &amp;quot;Side Burn (G1)&amp;quot; instead (not to mention that there&#039;s other Side Burn in Timelines: [[Side Burn (SG)]]).[[User:Interrobang|—Interrobang]] 11:38, 2 November 2011 (EDT)&lt;br /&gt;
I&#039;m hesitating, but let me think about the ramifications.  --[[User:ItsWalky|ItsWalky]] 11:20, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d be fine with this. Though, one thing I&#039;d like to propose is giving the Wings Universe characters their own disambiguation suffix. Like maybe &amp;quot;(Wings)&amp;quot; or something. I know it&#039;s a part of G1, but it&#039;s kinda like its own series within the over G1 continuity family like the Japanese G1 series are (which are also given their own suffixes such as &amp;quot;(Victory)&amp;quot;, &amp;quot;(ROC)&amp;quot;, &amp;quot;(BT)&amp;quot; etc.).&lt;br /&gt;
&lt;br /&gt;
:Though, as for the Descent into Evil characters, maybe something like &amp;quot;(DIE)&amp;quot; or &amp;quot;(Descent)&amp;quot; or even just &amp;quot;(Descent into Evil)&amp;quot;. Or, if not, keep them at &amp;quot;(Timelines)&amp;quot;. --[[User:Sabrblade|Sabrblade]] 11:51, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I think the DIE guys are fine where they are (although you could argue moving [[Ricochet (Timelines)]] because of [[Ricochet (SG)]], but I don&#039;t really care). As for the Wings Universe guys getting their own disambiguation, eh... [[User:Interrobang|—Interrobang]] 12:02, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I am &#039;&#039;&#039;definitely absolutely&#039;&#039;&#039; against creating a (Wings) disambiguation when (G1) or (Timelines) work perfectly fine.  We do NOT disambiguate by continuity except by absolute necessity within a franchise.  Making up a (Wings) parenthetical just because incredibly confuses our disambiguation policy for no real reason.  --[[User:ItsWalky|ItsWalky]] 13:46, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::And what exactly keeps the Descent into Evil guys from being tagged G1? --[[User:Khajidha|Khajidha]] 14:29, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::Is the intermezzo period between G1 and BW considered G1 or BW?&lt;br /&gt;
&lt;br /&gt;
:::It&#039;s all G1 characters... and IIRC the Insecticons were supposed ot be part of Insecticon plans which had been around for ages, so the characters weren&#039;t &amp;quot;BW-era only&amp;quot; characters...&lt;br /&gt;
&lt;br /&gt;
:::I could support a G1 disambigif you talked me into it. -[[User:Derik|Derik]] 15:01, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::DIE fiction (Descent into Evil itself and [[Intimidation Game]]) has elements of both BW and G1; it doesn&#039;t have a certain franchise placement. Dirge (Timelines) and Ricochet (Timelines) also have namesakes firmly in G1. [[User:Interrobang|—Interrobang]] 15:14, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::BW is both BW and G1.  And G1 has been back-incorporating BW elements since, like, 1995.  The fact DIE has G1 and BW doesn&#039;t mean it&#039;s part of neither.  -[[User:Derik|Derik]] 15:25, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I think that, by the nature of Timelines, it feels more natural to parse that specific set of characters by their continuity or parent-franchise of origin. Honestly, I think the Nexus components (&#039;&#039;all&#039;&#039; of them) are really the best and only candidates for the Timelines parser.&lt;br /&gt;
&lt;br /&gt;
::Also, I made a [http://digimon.wikia.com/wiki/Template:c quick template] that you guys could use here to simplify the coding for whenever you need to link a continuity-parsed name.[[Special:Contributions/192.249.47.196|192.249.47.196]] 15:37, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::Unfortunately I don&#039;t think that template would work as well here, because our articles are not consistently named by franchise. For instance [[Lightspeed (G1 Technobot)]], [[Flattop (Autobot)]] and [[Impactor]] are all (G1) characters but don&#039;t use (G1) in their title, so the template wouldn&#039;t work for linking to them. --[[User:Abates|abates]] 16:05, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think that Timelines is a pretty clunky franchise for the purposes of this wiki, in that it covers multiple continuities.  I think the proposal on the table makes sense.--[[User:Jimsorenson|Jimsorenson]] 12:31, 3 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Two spaces after a period in a sentence ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve noticed this for a while on the Wiki. In practice, it makes no difference as the software displays one space the same way it displays one. However, I&#039;ve been wondering why people do it. Now I know: They were taught so in school. By teachers who were taught on friggin&#039; &#039;&#039;typewriters&#039;&#039;. So the &amp;quot;two spaces after a period&amp;quot; rule is a leftover from the typewriter days, where it was a necessity, but it&#039;s completely obsolete on computers. [http://www.slate.com/articles/technology/technology/2011/01/space_invaders.html Source]--[[User:Nevermore|Nevermore]] 07:16, 4 November 2011 (EDT)&lt;br /&gt;
:The sentence spacing rules were, in fact, developed by typographers, but were not phased out via the magical introduction of the personal computer.  The em-space rule exists for monospaced fonts, which were still fairly common for a great number of printers through the mid-1980s.  If you would like to begin a tyrannical series of grammar-based wiki edits, I would begin by avoiding the use of prepositions at the start of sentences.  I would also advise some respect for the proper use of colons and semi-colons, as typographical errors should not take priority over proper word selection and punctuation.  Cheers!  --[[User:McFly|McFly]] 14:20, 7 November 2011 (EST)&lt;br /&gt;
:....or you can just set the bot to convert &amp;quot;  &amp;quot; to &amp;quot; &amp;quot;. Since we don&#039;t output monospace font, or anything.[[Special:Contributions/192.249.47.196|192.249.47.196]] 15:22, 7 November 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== More on the search box/&amp;quot;Transformers&amp;quot; everything ==&lt;br /&gt;
&lt;br /&gt;
Typing &amp;quot;Energon&amp;quot; into the search box does not give me [[Energon (franchise)]], [[Energon (cartoon)]] or [[Energon (toyline)]] as top results. Same for &amp;quot;Cybertron&amp;quot;. I assume this has to do with the recent &amp;quot;Transformers&amp;quot; prefixing for article titles. However, typing &amp;quot;Animated&amp;quot; into the seach box &#039;&#039;does&#039;&#039; give me franchise and toyline as top results, so it should be &#039;&#039;possible&#039;&#039; despite the prefixing.--[[User:Nevermore|Nevermore]] 07:36, 6 November 2011 (EST)&lt;br /&gt;
:It&#039;s purely alphabetical, dude. &#039;&#039;Animated&#039;&#039; shows up before &#039;&#039;Arcee (Animated)&#039;&#039; because &amp;quot;An&amp;quot; precedes &amp;quot;Ar&amp;quot;, whereas &#039;&#039;Arcee (Energon)&#039;&#039; comes up before &#039;&#039;Energon&#039;&#039; because &amp;quot;A&amp;quot; precedes &amp;quot;E&amp;quot;. --[[User:Xaaron|Xaaron]] 08:13, 6 November 2011 (EST)&lt;br /&gt;
::There&#039;s an option in the search suggest tool to limit the results to stuff starting with the search query rather than with stuff with the term anywhere in their titles, however it&#039;s not something that can be configured through MediaWiki. There&#039;s a bit of discussion about it in the &amp;quot;Making the search suggestion work better&amp;quot; section up above. --[[User:Abates|abates]] 14:36, 6 November 2011 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=659650</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=659650"/>
		<updated>2011-11-07T19:20:54Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Two spaces after a period in a sentence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Aligned Timeline ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m going to try and take a stab at creating an Aligned timeline that unites everything we know about the franchise(s) so far. Any help would be greatly appreciated. [[User:Tom Servo the Great|Tom Servo the Great]] 09:48, 17 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Help Wanted ==&lt;br /&gt;
&lt;br /&gt;
Hello one and all.  I&#039;m here representing a newly created Role-Playing forum that is based in the Transformers Universe.  We&#039;re in the early stages yet, and are looking for people to help get the ball rolling.  Since this site seems to lack a dedicated forum (where requests like these would usually be made) and I haven&#039;t seen any other way to effectively say my piece in front of a large audience, I thought that posting here was the best way to &amp;quot;advertise&amp;quot; us, as it were.  I sincerely apologize if this was the wrong move on our part, or if I&#039;ve breached protocol at all, but I can assure everyone that our intentions aren&#039;t malign.  Those interested, please contact me using any of the ways that I have listed on my username page here on this site.  I won&#039;t tempt fate by linking our website here directly =P  &lt;br /&gt;
&lt;br /&gt;
Once again, you all have my sincere greetings, and I hope to hear from you soon.  Also, as a side note: the difference in quality between this page and the transformers wikia is amazing.  [[User:Rathian Warrior|Rathian Warrior]] 23:50, 3 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Fictional&amp;quot; and &amp;quot;real&amp;quot; categories ==&lt;br /&gt;
I think we need to come up with a consistent way to distinguish categories of things that are real and categories of things that have appeared in fiction. So far, we&#039;ve skimmed the issue by using synonyms, such as [[:Category:Companies|companies]] and [[:Category:Businesses|businesses]], but that doesn&#039;t really work for things like [[:Category:Magazines|magazines]], which is already used for real magazines. Currently, we have [[:Category:Fictional books]], [[:Category:Fictional video games]] that consider the fictional entities &amp;quot;different&amp;quot;. On the other hand, we have [[:Category:Real-world events by day]] and [[:Category:Real world films]]. We focus more on the fictional aspect of Transformers, so it makes sense to not point out the fictionality in categories, but &amp;quot;real world&amp;quot; sounds awkward to some. Which one should we use? [[User:Interrobang|—Interrobang]] 00:26, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I thought I&#039;d cheat and see how some of the other fictional Wikis deal with the problem. Three different approaches I saw:&lt;br /&gt;
:*[http://tardis.wikia.com/ Doctor Who wiki] has a [http://tardis.wikia.com/wiki/Category:Real_world &amp;quot;Real World&amp;quot; category] for real world stuff and in most cases the categories for real world things are at &amp;quot;Real world X&amp;quot;.&lt;br /&gt;
:*[http://wookiepedia.org/ Wookiepedia] goes the parenthetical route, with &amp;quot;Books&amp;quot; and &amp;quot;Books (real-world)&amp;quot;. Though they also have one or two like &amp;quot;Real world companies&amp;quot;.&lt;br /&gt;
:*[http://stargate.wikia.com/ Stargate wiki] has &amp;quot;Books&amp;quot; versus &amp;quot;Stargate books&amp;quot; for real world books.&lt;br /&gt;
:I kinda like the parenthetical approach that Wookiepedia have taken. --[[User:Abates|abates]] 03:11, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I&#039;d favor pointing out the status of both categories, just to make absolutely clear what they are for. The words can be &amp;quot;Fictional&amp;quot; and &amp;quot;Real-world&amp;quot; (I notice both real-world categories use a different spelling. Whichever it&#039;s gonna be (if), only one spelling should be used). &amp;quot;Nonfictional&amp;quot; kinda works as an alternative, would &amp;quot;Real-world&amp;quot; be disliked. [[User:Geewunling|Geewunling]] 04:35, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If we go that route, I think &amp;quot;real-world&amp;quot; should be used, since &amp;quot;real world&amp;quot; is a lot more easier to fix than the other parsing. I like the Wookiepedia approach, but I&#039;m not sure that&#039;s enough to change how we already do categories. The idea to label both categories sounds nice, but &amp;quot;Fictional X&amp;quot; seems incongruous with unlabeled categories, such as &amp;quot;weapons&amp;quot;, &amp;quot;technology&amp;quot;, etc.; considering that our main focus is the fiction, I&#039;m leaning towards only labeling the real stuff. [[User:Interrobang|—Interrobang]] 13:02, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it would be advantageous to put a {{tl|disambig2}} at the top, so people could easily go from the fictional to the real world category too. --[[User:Abates|abates]] 16:30, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Yeah, I think I put that on [[:Category:Films]] a while ago. [[User:Interrobang|—Interrobang]] 16:57, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Speaking of this, I found we handle [[:Category:Films]] like [[:Category:Real people]], wouldn&#039;t this be some, um, confusing? It&#039;s just, somehow, reverse? (Except for the fictional films like &#039;&#039;Honoji&#039;&#039;) According to the logic of how we handle [[:Category:Real people]], shouldn&#039;t we place films like &#039;&#039;40-Year-Old Virgin&#039;&#039; or &#039;&#039;Godzilla&#039;&#039; in the [[:Category:Real world films]]? --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 23:04, 6 September 2011 (EDT)&lt;br /&gt;
::::::::Godzilla doesn&#039;t go in &amp;quot;Real world films&amp;quot; because it&#039;s not a real world &#039;&#039;Transformers&#039;&#039; film. The Transformers is implied in that category name. Presumably we could have a &amp;quot;Real films&amp;quot; category for Godzilla, etc, but I&#039;m not sure it&#039;s worth doing. --[[User:Abates|abates]] 23:53, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::We shouldn&#039;t use &amp;quot;fictional X&amp;quot; for two reasons. One, there things like [[As the Kitchen Sinks]] that are fictional even within the fictional Transformers universe. Second, the wiki is written in-universe by default and putting [[Big Steve&#039;s Used Cars]] in a &amp;quot;fictional businesses&amp;quot; category would kind of break that. Within Transformers fiction, &amp;quot;Big Steve&#039;s Used Cars&amp;quot; is not a fictional company, but &amp;quot;As the Kitchen Sinks&amp;quot; is a fictional TV show. - [[User:Starfield|Starfield]] 18:47, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::In-universe, As the Kitchen Sinks is not a fictional show. It depicts fictional events and fictional people, yes, but the show itself, as a piece of entertainment, is not fictional. I do get your point, as we actually have things like [[Frankenstein]] that are two layers of fiction removed from us. [[User:Interrobang|—Interrobang]] 19:18, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::Yes, of course. I meant, in-universe, &#039;&#039;As the Kitchen Sinks&#039;&#039; is a work of fiction, whereas &amp;quot;Big Steve&#039;s Used Cars&amp;quot; is a real business that sells real used cars to real people. Have I been saying it wrong all this time? Wasn&#039;t &#039;&#039;Buck Rogers&#039;&#039; a fictional TV show? Anyway, it sounds like you got my point. - [[User:Starfield|Starfield]] 21:14, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::Or, judging by the fact categories like &amp;quot;Magazines&amp;quot; in used for magazines in our real life and &amp;quot;Companies&amp;quot; for companies in real life, why not just use &amp;quot;Film&amp;quot; for films (such as DOTM) in real life, while we move current contents in &amp;quot;Films&amp;quot; to &amp;quot;Films in &#039;&#039;Transformers&#039;&#039; fictions&amp;quot;? --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 23:04, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::That seems like it would go counter to some of our existing naming schemes. e.g. if we split that out into films by franchise, you&#039;d get &amp;quot;Films in Generation 1&amp;quot; rather than &amp;quot;Generation 1 films&amp;quot;. Though admittedly the former title might have the advantage that it&#039;s clearer in meaning. --[[User:Abates|abates]] 23:50, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::::I think both are equally ambiguous in their meaning. If we still need to clarify the purpose of the categories, we can always spell it out in the category&#039;s introduction. [[User:Interrobang|—Interrobang]] 00:03, 7 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Transformers: &amp;quot; ==&lt;br /&gt;
We talked a bit about adding back &amp;quot;Transformers: &amp;quot; to the titles of articles [[Transformers_Wiki_talk:Community_Portal/Archive51#When_to_omit_.22Transformers.22_from_an_article_title|previously]], and the general sentiment was that people were for it or didn&#039;t have an issue with it. Does anybody else have any input in this matter? [[User:Interrobang|—Interrobang]] 00:34, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m okay with this change, but I do have three questions on execution. &amp;lt;br&amp;gt;1.) Whether or not &amp;quot;Transformers&amp;quot; is followed by a colon seems random in our current system. How will that be handled? &amp;lt;br&amp;gt;2.) If &amp;quot;Transformers(:)&amp;quot; is going to be added to every relevant page name, then what about all the extra words in the titles of Japanese stuff? &amp;lt;br&amp;gt;3.) What conseuqneces will this have for categories, lists, storylinks, etc? &amp;lt;br&amp;gt;[[User:Geewunling|Geewunling]] 04:41, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::#I think we&#039;ve had two consistent rules about that: If the title is some kind of phrase, like &amp;quot;Transformers United&amp;quot;, &amp;quot;The Transformers Collection&amp;quot;, or &amp;quot;Transformers Animated&amp;quot;, then we don&#039;t use the colon. If the title is some kind of obvious &amp;quot;title: subtitle&amp;quot; setup (&amp;quot;Transformers: Armada&amp;quot;, &amp;quot;Transformers: Prime&amp;quot;), then we use the colon. There&#039;s some borderline examples, but I think we can figure them out one by one. Official sources will help with determining colon-status. The other rule seems to apply to only games: If the title has another subtitle, then the first colon is dropped (ex. [[Transformers Prime: Terrorcon Defense]]). I dunno why, but we can add back the colon, I suppose.&lt;br /&gt;
::#I guess we add them? We could argue it for &#039;&#039;Victory&#039;&#039;, since it was released in English contexts as just &amp;quot;Transformers: Victory&amp;quot;.&lt;br /&gt;
::#I think we&#039;re just going to continue the same in relation to those. The articles will still be sorted by their subtitles in categories. Storylinks I could go either way on, but I think the trend is to drop the main title. I&#039;ve been doing that for the AAII storylinks to avoid excessively long links. [[User:Interrobang|—Interrobang]] 12:49, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t see how &amp;quot;Transformers United&amp;quot; and &amp;quot;Transformers Animated&amp;quot; are any different from &amp;quot;Transformers: Prime&amp;quot;. To me, all three could fall into either of your groups (phrase vs subtitle) and would prefer colons in all of those cases. Of your examples, only &amp;quot;The Transformers Collection&amp;quot; seems to really belong in the &amp;quot;phrase&amp;quot; group. --[[User:Khajidha|Khajidha]] 13:22, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::&amp;quot;United&amp;quot; and &amp;quot;Animated&amp;quot; are adjectives that modify &amp;quot;Transformers&amp;quot; and have official sources that omit the colon. &amp;quot;Transformers Prime&amp;quot; doesn&#039;t make sense in that way. [[User:Interrobang|—Interrobang]] 14:58, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I am not certain about those two &amp;quot;rules&amp;quot; for colons either. They&#039;re rather vague and bound to cause arguments and confusion. It needs to be made more obvious whether a colon should be used or not before &amp;quot;Transformers&amp;quot; can be added everywhere (a help page on the matter would also be handy in the future, me thinks).&lt;br /&gt;
&lt;br /&gt;
::::I think that if we would put the cartoon at &#039;&#039;Transformers: Victory&#039;&#039;, that would cause confusion with the manga, storypages, toyline and franchises, none of which were ever brought over and should thus not be named such. If moved, the &#039;&#039;Victory&#039;&#039; cartoon should best go to its Japanese name. [[User:Geewunling|Geewunling]] 15:28, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;shrug* The first rule is mostly there for Transformers Animated, which people will be resistant to moving to have a colon (plus, obvious cases like The Transformers Collection). The second rule I really don&#039;t care about and can be tossed (it mostly only concerns the movie series of video games and online games). [[User:Interrobang|—Interrobang]] 16:04, 6 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Are you suggesting there that Victory articles should be moved to &amp;quot;Fight! Super Robot Lifeform Transformers: Victory&amp;quot;? I&#039;d disagree with that, if so! --[[User:Abates|abates]] 07:25, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Why? We can&#039;t go around writing out the full names of Western franchises and stuff but not do so for the Japanese stuff. We already have &amp;quot;Fight! Super Robot Lifeform Transformers&amp;quot; written out for the 1985 &amp;amp; 1986 Japanese franchises, so why not &#039;&#039;Victory&#039;&#039;? [[User:Geewunling|Geewunling]] 07:30, 10 September 2011 (EDT)&lt;br /&gt;
:::::::Victory (the cartoon) has been released in the West as &amp;quot;Transformers: Victory&amp;quot;, to me that means that the official English name of the franchise &#039;&#039;is&#039;&#039; Transformers: Victory. Yes, we should give the full Japanese title at the beginning of the franchise page but there is no reason to move anything to that name. --[[User:Khajidha|Khajidha]] 08:35, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::That was pretty much my reasoning too (also typing out the full name every time we wanted to link to it would be tedious). --[[User:Abates|abates]] 17:59, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::Tying out &amp;quot;(franchise)&amp;quot; every time for everything is more tedious, but we still have it (for... some reason). Ditto long titles like [[The Story of Super Robot Lifeforms: The Transformers]] and [[Transformers Vault]]&#039;s previous ridiculously long title. &lt;br /&gt;
:::::::::But I guess the general principle of &amp;quot;Transformers: &amp;quot; is acceptable to most. I&#039;ll start moving the noncontroversial pages (Western comics and cartoons with definite subtitles, etc.) if there&#039;s no opposition in the next few hours. [[User:Interrobang|—Interrobang]] 18:08, 10 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::Is there a difference between [[Transformers, Beast Wars: The Gathering]] and [[Transformers, Beast Wars: The Ascending|Transformers: Beast Wars: The Ascending]]? I must admit, the comma/colon distinction seems kinda arbitrary. Also, these page names seem kind of overlong and stupid, what&#039;s wrong with [[Transformers, Beast Wars: The Ascending|The Ascending]] and [[Transformers, Beast Wars: The Gathering|The Gathering]]? It&#039;s a Transformers wiki and those are Beast Wars series; prefixing everything we possibly can with &amp;quot;Transformers&amp;quot; is only going to clog up the search box and make editing just that bit more arduous. What were the arguments in favour of this again? --[[User:Emvee|Emvee]] 16:21, 12 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::::That&#039;s the formatting used in the indicia. Your complaint about the search box is silly; did you really think typing &amp;quot;Transformers&amp;quot; into it yielded anything useful 99% of the time?&lt;br /&gt;
:::::::::::Like it or not, &amp;quot;Transformers: &amp;quot; is the part of the name of many things, and the hoops we have to go through to maintain this silly system of dropping it from article titles has gotten ridiculous and inconsistent. Adding &amp;quot;Transformers: &amp;quot; to article titles, on the other hand, adds &#039;&#039;clarity&#039;&#039; and avoids pointless disambiguation. &amp;quot;The Transformers: Bumblebee&amp;quot; is preferable to &amp;quot;Bumblebee (comic)&amp;quot;, &amp;quot;Transformers: Sector 7&amp;quot; to &amp;quot;Sector 7 (comic)&amp;quot;, etc. [[User:Interrobang|—Interrobang]] 16:44, 12 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::::I get that it&#039;s useful in some cases, but it just seems like applying the rule across the board means we&#039;re overcomplicating the issue. Occam&#039;s razor has a lot going for it, and for user-friendliness I&#039;d go for brevity. --[[User:Emvee|Emvee]] 17:11, 12 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::::::::Also on an Occam&#039;s razor tip, &amp;quot;Bumblebee (comic)&amp;quot; conveys more information in fewer characters than &amp;quot;Transformers: Bumblebee&amp;quot;. I really don&#039;t understand why the latter is preferable. --[[User:Emvee|Emvee]] 14:06, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::::::::There&#039;s something to say for either argument, but as it is, we have proven to be unable to keep to one consistent &amp;quot;Transformers&amp;quot;-as-part-of-the-title policy at least since TFA. And if trying to keep &amp;quot;Transformers&amp;quot; out of the deal doesn&#039;t work, we oughta give the alternative a chance. I don&#039;t think it necesarilly makes it harder to find anything, as the search box reacts to words even if they are not the first part of a page title. And I want to have the changes in clear perspective before I might suggest deleting a few redirects, so at least for now, searches won&#039;t be any harder and we have a consistent policy. [[User:Geewunling|Geewunling]] 14:49, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I gotta say, I&#039;m hating how this is working in practice.  Article titles seem long and ugly to me.--[[User:Jimsorenson|Jimsorenson]] 15:46, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I feel the same, but it seems to be an necessary evil because &amp;quot;Transformers: ***&amp;quot; is a full title? duh. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 13 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I fear the day someone decides to add full titles to disambiguation suffixes as well, e.g. &amp;quot;Optimus Prime (Transformers Animated)&amp;quot;, &amp;quot;Grindor (Transformers: Revenge of the Fallen)&amp;quot; etc.--[[User:Nevermore|Nevermore]] 13:43, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::That would be silly, and I&#039;m pretty sure most people would oppose it. Putting &amp;quot;Transformers:&amp;quot; in names is a change we&#039;d already been drifting towards for a while with, for instance, the War for Cybertron articles all doing it. --[[User:Abates|abates]] 16:32, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::On a related note, it&#039;s a pet peeve of mine when a writeup talks about a specific medium related to a franchise but links to the franchise as a whole instead, such as &amp;quot;Jetfire was released as part of wave 1 of the [[Cybertron (franchise)|Cybertron]] toyline&amp;quot; or &amp;quot;in episode 6 of the [[Energon (franchise)|Energon]] cartoon...&amp;quot;.--[[User:Nevermore|Nevermore]] 17:29, 15 September 2011 (EDT)&lt;br /&gt;
:::::Would the best solution there be something like &amp;quot;Jetfire was released as part of wave 1 of the [[Cybertron (franchise)|Cybertron]] [[Cybertron (toyline)|toyline]]&amp;quot;? --[[Special:Contributions/77.99.176.103|77.99.176.103]] 03:32, 29 September 2011 (EDT) (oops, emvee not logged in)&lt;br /&gt;
::::::I think linking to the toyline page is sufficent. There&#039;s no need for an additional link to the corresponding umbrella franchise. The thought behind this is: &amp;quot;If Joe McRandom sees something that interests him and clicks a link, does he want the link to take him straight to the specific topic or to a more general overview?&amp;quot; I think link targets should always be as specific as necessary. If someone gets interested in a broader overview, he can always go one level up. After all, a link referring to G1 Optimus Prime leads to [[Optimus Prime (G1)]], not to [[Optimus Prime (disambiguation)]], either. In the same fashion, toyline pages should deeplink to the specific toy entries on the respective characters&#039; pages (or even their toy pages, if applicable). Like, if Joe McRandom is on the [[Transformers: Universe (2008 toyline)|Universe (2008 toyline)]] page, sees a &amp;quot;Prowl&amp;quot; toy listed under &amp;quot;Deluxe Class&amp;quot; and wants to read more about that toy, he wants the &amp;quot;Prowl&amp;quot; link to take him straight to [[Prowl (G1)/toys#Universe (2008)]], not to the [[Prowl (G1)|main character page]] where he then has to scroll down to &amp;quot;toys&amp;quot;, see that G1 Prowl toys have their separate page, go &#039;&#039;there&#039;&#039;, &#039;&#039;then&#039;&#039; scroll down to &amp;quot;Universe (2008)&amp;quot;. (It currently links to [[Prowl (G1)/toys]], which is at least halfway there.) I will fix this wherever I see it, and implement it when doing writeups.--[[User:Nevermore|Nevermore]] 08:11, 13 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
===Suggestion to creating templates===&lt;br /&gt;
&lt;br /&gt;
Do we need some kinds of templates when typing contents for convenience? For my experience in Terminator Wiki, we use templates like &amp;lt;nowiki&amp;gt;{{T3}} for &#039;&#039;[[Terminator 3: Rise of the Machines]]&#039;&#039; or {{TSCC}} for &#039;&#039;[[Terminator: The Sarah Connnor Chronicles]]&#039;&#039;&amp;lt;/nowiki&amp;gt;. What I&#039;m suggesting is that after we make all franchise names into full title (and we don&#039;t use redirect links), it is some how trouble some when typing the title. So we can make some templates like:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{tf|Armada}} -&amp;gt; &#039;&#039;[[Transformers: Armada (franchise)|Transformers: Armada]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{tf|Armada|toyline|Pokeformer}} -&amp;gt; &#039;&#039;[[Transformers: Armada (toyline)|Pokeformer]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{jptf|bwn}} -&amp;gt; &#039;&#039;[[Super Lifeform Transformers: Beast Wars Neo]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If there is any user who can created complex template, we could make&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{tf|armada|t}} -&amp;gt; &#039;&#039;[[Transformers: Armada (toyline)|Transformers: Armada]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
parameter 1:&lt;br /&gt;
2010 = Fight! Super Robot Lifeform Transformers 2010 (toyline)&lt;br /&gt;
thm = Transformers: The Headmasters (toyline)&lt;br /&gt;
mf = Transformers: Super-God Masterforce (toyline)&lt;br /&gt;
v = Fight! Super Robot Lifeform Transformers: Victory&lt;br /&gt;
z = Transformers: Zone&lt;br /&gt;
roc = Transformers: Return of Convoy&lt;br /&gt;
oc = Fight! Super Robot Lifeform Transformers: Operation Combination&lt;br /&gt;
armada = Transformers Armada&lt;br /&gt;
bwn = Super Lifeform Transformers: Beast Wars Neo&lt;br /&gt;
mov = Movie&lt;br /&gt;
rotf = Revenge of the Fallen&lt;br /&gt;
tfa = Transformers Animated&lt;br /&gt;
...and (blah blah)&lt;br /&gt;
&lt;br /&gt;
parameter 2:&lt;br /&gt;
*default* - franchise&lt;br /&gt;
t - toyline&lt;br /&gt;
ct - cartoon&lt;br /&gt;
co - comic&lt;br /&gt;
m - manga&lt;br /&gt;
f - film&lt;br /&gt;
&lt;br /&gt;
And, if possible:&lt;br /&gt;
if parameter 3 = s (for example), it will become short title like &#039;&#039;[[Transformers: Armada (toyline)|Armada]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:42, 24 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It&#039;s something I&#039;ve thought about as well. Considering there are a lot of exceptions to the regular naming system (parts of franchises that are called something different or franchises that lack the (franchise) identifier on the wiki because it&#039;s not necessary to disambiguate it), I don&#039;t think a template can be coded to put a link together. A full list system like our TFtoon templates have could maybe work though. [[User:Geewunling|Geewunling]] 16:08, 25 September 2011 (EDT)&lt;br /&gt;
::I think with the number of franchises we have, it would end up being a hellishly big template and difficult to maintain for only a minor gain. --[[User:Abates|abates]] 18:03, 25 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
===&amp;quot;Fight! Super Robot Lifeform&amp;quot; Transformers===&lt;br /&gt;
With the insertion of this phrase into the Victory page titles, should it also be inserted into the titles of The Headmasters, Super-God Masterforce, and Zone? now while the immediate answer would be &amp;quot;No&amp;quot;, there are some places that do include this text above the &amp;quot;Toransufōmā&amp;quot; text in each of these series&#039;s logos. An example of this would the [[Transformers Tapestry]] (which even includes it in the Operation combination logo as well) and the [http://tfwiki.net/wiki/Image:Columbia_Zone_DVD.jpg Columbia DVD of Zone]. Its inclusion in these places seems more than mere coincidence, so would we take this idea into consideration? --[[User:Sabrblade|Sabrblade]] 14:33, 23 October 2011 (EDT)&lt;br /&gt;
:Um, that &#039;&#039;Zone&#039;&#039; DVD does not support your assertion. All of the &#039;&#039;actual&#039;&#039; media for those series (except for the Zone manga and story pages) do not include The &amp;quot;Fight!...&amp;quot; portion. [[User:Interrobang|—Interrobang]] 16:58, 23 October 2011 (EDT)&lt;br /&gt;
::Technically the whole toyline in Japan from 1985 to 1992 was called &amp;quot;Fight! Super Robot Lifeform Transformers&amp;quot; (as was written on the boxes), so at least the toyline pages for the series of those years would probably need the longer title than just &amp;quot;Transformers: &#039;&#039;X&#039;&#039; (toyline)&amp;quot; --[[User:Sabrblade|Sabrblade]] 16:04, 25 October 2011 (EDT)&lt;br /&gt;
:::So you want to move the toyline pages to some made-up name? Pick one: 1) Merge all of the toyline pages to &amp;quot;Fight! Super Robot Lifeform Transformers (toyline)&amp;quot; 2) Leave the toyline pages as they are instead of stressing over naming things that technically don&#039;t exist. [[User:Interrobang|—Interrobang]] 16:23, 25 October 2011 (EDT)&lt;br /&gt;
::::How is it &amp;quot;made up&amp;quot;? &amp;quot;Tatakae! Chō Robot Seimeitai&amp;quot; means &amp;quot;Fight! Super Robot Lifeform&amp;quot; and is written above the &amp;quot;Toransufōmā&amp;quot; text on the packages of the 1985-1992 Japanese toys. I&#039;m not proposing we merge all those toyline pages together, but rather something akin to the [[Transformers: Beast Wars (Japanese toyline)|Japanese Beast Wars toyline]] page, in which the individual toylines are kept separate even though they were all collectively the same-named toyline. --[[User:Sabrblade|Sabrblade]] 17:25, 25 October 2011 (EDT)&lt;br /&gt;
:::::&amp;quot;Fight! Super Robot Lifeform Transformers: The Headmasters&amp;quot; and its ilk are the imaginary names. Those articles for imaginary toylines are fine where they are. [[User:Interrobang|—Interrobang]] 17:53, 25 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
===&amp;quot;Movie&amp;quot;===&lt;br /&gt;
There&#039;s still [[Movie (franchise)]], [[Movie (toyline)]] and more. Shouldn&#039;t that be &amp;quot;Transformers (2007 franchise)&amp;quot; and &amp;quot;Transformers (2007 toyline)&amp;quot;, with the current [[Transformers (2007)]] becoming &amp;quot;Transformers (2007 movie)&amp;quot;?--[[User:Nevermore|Nevermore]] 20:44, 24 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Probably. I didn&#039;t move them, since I wanted to bring it up for discussion first. The film should be moved to just &amp;quot;Transformers (film)&amp;quot;, though. [[User:Interrobang|—Interrobang]] 21:05, 24 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Movie (&#039;&#039;media&#039;&#039;)&amp;quot; should be moved to &amp;quot;Transformers (2007 &#039;&#039;media&#039;&#039;)&amp;quot; while &amp;quot;Transformers (2007)&amp;quot; goes &amp;quot;Transformers (film)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:27, 24 October 2011 (EDT)&lt;br /&gt;
::That push for lexical accuracy strikes me as creating more ambiguity than it resolves.  -[[User:Derik|Derik]] 16:06, 25 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Jungaroo==&lt;br /&gt;
Someone made a lovely [[Jungaroo]] gobox, but there&#039;s no page for him. --[[User:Jimsorenson|Jimsorenson]] 21:23, 6 September 2011 (EDT)&lt;br /&gt;
:I don&#039;t think he&#039;s in any applicable fiction, but his [http://home.comcast.net/~BattleBeastSD/MGCKang.html bio card is online here]. Someone will have to translate it from Japanese first though. --[[User:Abates|abates]] 20:25, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Making the search suggestion work better ==&lt;br /&gt;
&lt;br /&gt;
I don&#039;t know if anyone else has this problem, but I noticed sometimes when I type something in the search box, the search suggestions below it jump around and end up on a list which doesn&#039;t quite match what I typed. I think it&#039;s something to do with the speed I&#039;m typing and the amount of time the server takes to respond to each request.&lt;br /&gt;
&lt;br /&gt;
Anyway, I tweaked the javascript for grabbing the suggestions from the server so it would only trigger when I stopped typing. That seems to fix the problem for me, and as a bonus it&#039;s not nagging the server on every keypress. The downside is no instant feedback when I type, but I can live without that if it fixes the other thing.&lt;br /&gt;
&lt;br /&gt;
If anyone else is having that problem and wants to have a go, just copy and paste the following into your [[Special:MyPage/monacobook.js|monacobook.js]] (caveat: only tested on Firefox and Chrome):&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
var ss_memory = null;&lt;br /&gt;
var ss_timeron = 0;&lt;br /&gt;
var ss_timer;&lt;br /&gt;
 &lt;br /&gt;
function DoActualSearch() {&lt;br /&gt;
    ss_timeron=0;&lt;br /&gt;
    var newdiv = document.getElementById(&amp;quot;searchsuggest&amp;quot;);&lt;br /&gt;
    if (!newdiv) {&lt;br /&gt;
        var newdiv = document.createElement(&amp;quot;div&amp;quot;);&lt;br /&gt;
        newdiv.id = &amp;quot;searchsuggest&amp;quot;;&lt;br /&gt;
        var searchdiv = document.getElementById(&amp;quot;searchBody&amp;quot;);&lt;br /&gt;
        searchdiv.appendChild(newdiv);&lt;br /&gt;
    }&lt;br /&gt;
    var x = document.getElementById(&amp;quot;searchInput&amp;quot;).value;&lt;br /&gt;
    if (x == ss_memory) {&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
    ss_memory = x;&lt;br /&gt;
    document.getElementById(&amp;quot;searchsuggest&amp;quot;).style.display = &#039;none&#039;;&lt;br /&gt;
    if (x.length &amp;lt; 30 &amp;amp;&amp;amp; x.length &amp;gt; 1 &amp;amp;&amp;amp; x.value != &amp;quot;&amp;quot;) {&lt;br /&gt;
        sajax_do_call(&amp;quot;wfAjaxSearchSuggest&amp;quot;, [x], newdiv);&lt;br /&gt;
        document.getElementById(&amp;quot;searchsuggest&amp;quot;).style.display = &#039;block&#039;;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function MySearchCall() {&lt;br /&gt;
  if(ss_timeron) {&lt;br /&gt;
    clearTimeout(ss_timer);&lt;br /&gt;
    ss_timer=setTimeout(&amp;quot;DoActualSearch();&amp;quot;,500);&lt;br /&gt;
  } else {&lt;br /&gt;
    ss_timer=setTimeout(&amp;quot;DoActualSearch();&amp;quot;,500);&lt;br /&gt;
    ss_timeron=1;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function myss_ajax_onload(){&lt;br /&gt;
    var x = document.getElementById(&#039;searchInput&#039;);&lt;br /&gt;
    x.onkeyup = function(){&lt;br /&gt;
        MySearchCall();&lt;br /&gt;
    };&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
hookEvent(&amp;quot;load&amp;quot;, myss_ajax_onload);&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Unfortunately it won&#039;t fix the actual contents of the search suggestions, so you&#039;ll still get a bunch of All Hail Megatron issues when you type &amp;quot;Megatron&amp;quot;, but that requires changes on the server. --[[User:Abates|abates]] 20:02, 14 September 2011 (EDT)&lt;br /&gt;
:Hmm.  I feel like adding &amp;lt;tt&amp;gt;ORDER BY `page_counter` DESC&amp;lt;/tt&amp;gt; around line 20 of &#039;&#039;suggest.php&#039;&#039; might help w/ our search results, but it&#039;s hard to say for sure given how abstracted mediawiki database calls are, someone would have ot make the change then test it.  -[[User:Derik|Derik]] 18:47, 15 September 2011 (EDT)&lt;br /&gt;
::The thought I had was to do a query on article titles starting with the search term, and then if that gives back less than 8 entries, do a second search to fill the rest of the list with titles with the term anywhere in the title. The search suggest currently supports both options, but not at the same time. --[[User:Abates|abates]] 20:07, 15 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Stuff==&lt;br /&gt;
: Firstly, our organization of information related to the junior franchises is terrible and I&#039;d love to do something about it, but I need feedback. We currently have most Japanese and American Go-Bots as separate characters, except for the Japanese Go-Bots from the 1-2-3 line. Though there are requests for a separate Chopper page. Should those pages be split or not? And if so, what about the figures that came with some of the toys. Kid-Bot clearly isn&#039;t the &amp;quot;red driver&amp;quot; or &amp;quot;blue driver&amp;quot;, but the dog and &amp;quot;Gas-Bot&amp;quot; both have fiction in only one of the two franchises, so is it worth separating them? Also, does the unpublished coloring book count as apocrypha or not, seeing as it was mostly approved? And the human characters within, do they count as cameos like Kelly in the Dreamwave comics or separate characters? And does anyone know what the Japanese name was by which the First Transformers were released? The Go-Bots fansite has an image of Dumpkun&#039;s box featuring what looks like a G1 logo, the First Transformers logo and &amp;quot;初めて トランスフォーマー&amp;quot; written on it.&lt;br /&gt;
: Secondly, many disambiguation pages still mention if there&#039;s a separate page for the toys of a character. Is this system still necessary now that we use subpages to separate such stuff under? [[User:Geewunling|Geewunling]] 17:07, 23 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I think unpublished stuff is treated as apocrypha, isn&#039;t it? The character page coverage of unreleased Dreamwave issues is in notes, for instance. --[[User:Abates|abates]] 07:48, 24 September 2011 (EDT)&lt;br /&gt;
:::True, but we don&#039;t know if those were approved or know those weren&#039;t approved. The coloring book was approved, just not released. That makes it better comparable to Wreckers #$, which we do not consider apocrypha (though I wouldn&#039;t know if we&#039;d do that if Wreckers #5 didn&#039;t partially canonize it). [[User:Geewunling|Geewunling]] 11:39, 1 October 2011 (EDT)&lt;br /&gt;
::Just weighing in on the toy page issue: I find it useful to have these called out on the disambig pages. Being able to go directly from the disambig page to the toy page of a character saves me at least one click (if I see the suite box in time) and often some scrolling (if I don&#039;t see it). However, I won&#039;t fight too hard on this if consensus is for the removal of this feature. --[[User:Khajidha|Khajidha]] 07:47, 26 September 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Thinking some more about the Go-Bots stuff, as the Japanese version of Gas-Bot has no fiction, it probably doesn&#039;t need its own page - either link to Gas-Bot&#039;s page or just leave it unlinked in the appropriate toy sections. Same with the US version of the dog. --[[User:Abates|abates]] 21:30, 24 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Facebook. ==&lt;br /&gt;
&lt;br /&gt;
Is &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;http://www.facebook.com/pages/TFwikinet/191252494230187&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039; us?  Because it&#039;s the #1 link when you search for &amp;quot;TFWiki Facebook,&amp;quot; and our group is nowhere to be seen. -[[User:Derik|Derik]] 16:32, 12 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think our group is not showing up because you have to have a Facebook account to see it? When I go to the group&#039;s URL, I just get a page prompting me to log in to Facebook. --[[User:Abates|abates]] 17:47, 12 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::The link is this one: [http://www.facebook.com/groups/28226443881/ http://www.facebook.com/groups/28226443881/], which is the #3 on the search by &amp;quot;TFwiki site:facebook.com&amp;quot; on Google. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:51, 12 October 2011 (EDT)&lt;br /&gt;
:::So the other one isn&#039;t ours, and we can&#039;t put a link on it pointing it to the group.&lt;br /&gt;
:::Annoying.  -[[User:Derik|Derik]] 01:01, 13 October 2011 (EDT)&lt;br /&gt;
::::It&#039;s a &amp;quot;Community page&amp;quot;, whatever that is. Clicking on the &amp;quot;Create a page&amp;quot; button on the top right of that page does bring up some sort of form which seems like it will do something. --[[User:Abates|abates]] 01:12, 13 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Halloween ==&lt;br /&gt;
&lt;br /&gt;
Presuming we&#039;re deco&#039;ing our frontpage for Halloween... does anyone have any suggestions?  Monsters, ghosts, gouls? -[[User:Derik|Derik]] 02:09, 27 October 2011 (EDT)&lt;br /&gt;
:Animated Blitzwing&#039;s random face looks sorta Jack O&#039;Lanterny and could work as a replacement for the Autobot insignia on the site logo, assuming we can find a head-on image of it. --[[User:Abates|abates]] 02:35, 27 October 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Moving &amp;quot;(Timelines)&amp;quot; articles ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking that, as we don&#039;t bother with &amp;quot;(Timelines)&amp;quot; for SG, TransTech, and Animated characters, we should apply the same across the board and only use it if necessary.&lt;br /&gt;
&lt;br /&gt;
*[[Astrotrain (Timelines)]] → Astrotrain (Cybertron)&lt;br /&gt;
*[[Cannonball (Timelines)]] → Cannonball (G1)&lt;br /&gt;
*[[Cop-Tur (Timelines)]] → Cop-Tur (G1)&lt;br /&gt;
*[[Halogen (Timelines)]] → Halogen (G1)&lt;br /&gt;
*[[Side Burn (Timelines)]] → Side Burn (G1)&lt;br /&gt;
*[[Sky-Byte (Timelines)]] → Sky-Byte (G2)&lt;br /&gt;
*[[Switchblade (Timelines)]] → Switchblade (BW)&lt;br /&gt;
*[[Thunderblast (Timelines)]] → Thunderblast (G1)&lt;br /&gt;
*[[Yoketron (Timelines)]] → Yoketron (G1)&lt;br /&gt;
&lt;br /&gt;
The exceptions are the Descent into Evil characters, who don&#039;t really fit in any pre-existing franchise, and the Nexus Prime characters, who don&#039;t originate from a particular universe.&lt;br /&gt;
*[[Buzzclaw (Timelines)]]&lt;br /&gt;
*[[Dirge (Timelines)]]&lt;br /&gt;
*[[Flareup (Timelines)]]&lt;br /&gt;
*[[Landquake (Timelines)]]&lt;br /&gt;
*[[Ricochet (Timelines)]]&lt;br /&gt;
*[[Heatwave (Timelines)]]&lt;br /&gt;
&lt;br /&gt;
Thoughts? Or does nobody really care that much? [[User:Interrobang|—Interrobang]] 10:19, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Since you asked, I&#039;ll pitch 2¢ into the conversation, since I know a little bit about it. I found out the hard way that wiki &amp;quot;doesn&#039;t bother with &#039;(Timelines)&#039; for Animated.&amp;quot; And by hard way, I mean I was clobbered over the head without a hint of explanation for proposing that a Timelines-original Animated continuity character should be at &amp;quot;(Timelines).&amp;quot; But no hard feelings. I still think &amp;quot;franchise of origin&amp;quot; and not &amp;quot;continuity of origin&amp;quot; is best for disambiguations. For reasons that have been discussed previously on the subject. TransTech and SG are treated as a kind of sub-franchises of Timelines by the wiki, so I think they are an OK exception. - [[User:Starfield|Starfield]] 11:00, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::The prose stories are identified as &amp;quot;Transformers Timelines presents a Transformers: (franchise) story&amp;quot;. I would say that both franchises are equally valid to the stories, and the fact that non-Timelines stories (Around Cybertron, magazine comics, etc.) bleed together with Timelines stories makes the &amp;quot;(Timelines)&amp;quot; designation convoluted. [[User:Interrobang|—Interrobang]] 11:12, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::Well, that&#039;s different. It sounds like you are calling their actual franchise of origin into question, not just their disambiguation. I don&#039;t have an opinion about their actual franchise of origin. - [[User:Starfield|Starfield]] 11:28, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I&#039;m not denying that they&#039;re Timelines, but saying that they&#039;re better categorized under their other franchise. Like the Animated guys, it seems more instinctive to file [[Side Burn (Timelines)]] under &amp;quot;Side Burn (G1)&amp;quot; instead (not to mention that there&#039;s other Side Burn in Timelines: [[Side Burn (SG)]]).[[User:Interrobang|—Interrobang]] 11:38, 2 November 2011 (EDT)&lt;br /&gt;
I&#039;m hesitating, but let me think about the ramifications.  --[[User:ItsWalky|ItsWalky]] 11:20, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d be fine with this. Though, one thing I&#039;d like to propose is giving the Wings Universe characters their own disambiguation suffix. Like maybe &amp;quot;(Wings)&amp;quot; or something. I know it&#039;s a part of G1, but it&#039;s kinda like its own series within the over G1 continuity family like the Japanese G1 series are (which are also given their own suffixes such as &amp;quot;(Victory)&amp;quot;, &amp;quot;(ROC)&amp;quot;, &amp;quot;(BT)&amp;quot; etc.).&lt;br /&gt;
&lt;br /&gt;
:Though, as for the Descent into Evil characters, maybe something like &amp;quot;(DIE)&amp;quot; or &amp;quot;(Descent)&amp;quot; or even just &amp;quot;(Descent into Evil)&amp;quot;. Or, if not, keep them at &amp;quot;(Timelines)&amp;quot;. --[[User:Sabrblade|Sabrblade]] 11:51, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I think the DIE guys are fine where they are (although you could argue moving [[Ricochet (Timelines)]] because of [[Ricochet (SG)]], but I don&#039;t really care). As for the Wings Universe guys getting their own disambiguation, eh... [[User:Interrobang|—Interrobang]] 12:02, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I am &#039;&#039;&#039;definitely absolutely&#039;&#039;&#039; against creating a (Wings) disambiguation when (G1) or (Timelines) work perfectly fine.  We do NOT disambiguate by continuity except by absolute necessity within a franchise.  Making up a (Wings) parenthetical just because incredibly confuses our disambiguation policy for no real reason.  --[[User:ItsWalky|ItsWalky]] 13:46, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::And what exactly keeps the Descent into Evil guys from being tagged G1? --[[User:Khajidha|Khajidha]] 14:29, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::Is the intermezzo period between G1 and BW considered G1 or BW?&lt;br /&gt;
&lt;br /&gt;
:::It&#039;s all G1 characters... and IIRC the Insecticons were supposed ot be part of Insecticon plans which had been around for ages, so the characters weren&#039;t &amp;quot;BW-era only&amp;quot; characters...&lt;br /&gt;
&lt;br /&gt;
:::I could support a G1 disambigif you talked me into it. -[[User:Derik|Derik]] 15:01, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::DIE fiction (Descent into Evil itself and [[Intimidation Game]]) has elements of both BW and G1; it doesn&#039;t have a certain franchise placement. Dirge (Timelines) and Ricochet (Timelines) also have namesakes firmly in G1. [[User:Interrobang|—Interrobang]] 15:14, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::BW is both BW and G1.  And G1 has been back-incorporating BW elements since, like, 1995.  The fact DIE has G1 and BW doesn&#039;t mean it&#039;s part of neither.  -[[User:Derik|Derik]] 15:25, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I think that, by the nature of Timelines, it feels more natural to parse that specific set of characters by their continuity or parent-franchise of origin. Honestly, I think the Nexus components (&#039;&#039;all&#039;&#039; of them) are really the best and only candidates for the Timelines parser.&lt;br /&gt;
&lt;br /&gt;
::Also, I made a [http://digimon.wikia.com/wiki/Template:c quick template] that you guys could use here to simplify the coding for whenever you need to link a continuity-parsed name.[[Special:Contributions/192.249.47.196|192.249.47.196]] 15:37, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::Unfortunately I don&#039;t think that template would work as well here, because our articles are not consistently named by franchise. For instance [[Lightspeed (G1 Technobot)]], [[Flattop (Autobot)]] and [[Impactor]] are all (G1) characters but don&#039;t use (G1) in their title, so the template wouldn&#039;t work for linking to them. --[[User:Abates|abates]] 16:05, 2 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think that Timelines is a pretty clunky franchise for the purposes of this wiki, in that it covers multiple continuities.  I think the proposal on the table makes sense.--[[User:Jimsorenson|Jimsorenson]] 12:31, 3 November 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Two spaces after a period in a sentence ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve noticed this for a while on the Wiki. In practice, it makes no difference as the software displays one space the same way it displays one. However, I&#039;ve been wondering why people do it. Now I know: They were taught so in school. By teachers who were taught on friggin&#039; &#039;&#039;typewriters&#039;&#039;. So the &amp;quot;two spaces after a period&amp;quot; rule is a leftover from the typewriter days, where it was a necessity, but it&#039;s completely obsolete on computers. [http://www.slate.com/articles/technology/technology/2011/01/space_invaders.html Source]--[[User:Nevermore|Nevermore]] 07:16, 4 November 2011 (EDT)&lt;br /&gt;
:The sentence spacing rules were, in fact, developed by typographers, but were not phased out via the magical introduction of the personal computer.  The em-space rule exists for monospaced fonts, which were still fairly common for a great number of printers through the mid-1980s.  If you would like to begin a tyrannical series of grammar-based wiki edits, I would begin by avoiding the use of prepositions at the start of sentences.  I would also advise some respect for the proper use of colons and semi-colons, as typographical errors should not take priority over proper word selection and punctuation.  Cheers!  --[[User:McFly|McFly]] 14:20, 7 November 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== More on the search box/&amp;quot;Transformers&amp;quot; everything ==&lt;br /&gt;
&lt;br /&gt;
Typing &amp;quot;Energon&amp;quot; into the search box does not give me [[Energon (franchise)]], [[Energon (cartoon)]] or [[Energon (toyline)]] as top results. Same for &amp;quot;Cybertron&amp;quot;. I assume this has to do with the recent &amp;quot;Transformers&amp;quot; prefixing for article titles. However, typing &amp;quot;Animated&amp;quot; into the seach box &#039;&#039;does&#039;&#039; give me franchise and toyline as top results, so it should be &#039;&#039;possible&#039;&#039; despite the prefixing.--[[User:Nevermore|Nevermore]] 07:36, 6 November 2011 (EST)&lt;br /&gt;
:It&#039;s purely alphabetical, dude. &#039;&#039;Animated&#039;&#039; shows up before &#039;&#039;Arcee (Animated)&#039;&#039; because &amp;quot;An&amp;quot; precedes &amp;quot;Ar&amp;quot;, whereas &#039;&#039;Arcee (Energon)&#039;&#039; comes up before &#039;&#039;Energon&#039;&#039; because &amp;quot;A&amp;quot; precedes &amp;quot;E&amp;quot;. --[[User:Xaaron|Xaaron]] 08:13, 6 November 2011 (EST)&lt;br /&gt;
::There&#039;s an option in the search suggest tool to limit the results to stuff starting with the search query rather than with stuff with the term anywhere in their titles, however it&#039;s not something that can be configured through MediaWiki. There&#039;s a bit of discussion about it in the &amp;quot;Making the search suggestion work better&amp;quot; section up above. --[[User:Abates|abates]] 14:36, 6 November 2011 (EST)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=622664</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=622664"/>
		<updated>2011-08-14T19:46:19Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Gif uploads blocked? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[Transformers: War for Cybertron (games)|games]], [[Transformers: Exodus|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Transformers: Exodus|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Transformers: Exodus|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
What about block quotes? The page for Transformers (2007) is full of them.  I think there should be a limit on how long the quote can be.--[[User:Megatron Prime|Megatron Prime]] 16:48, 19 May 2011 (EDT)&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Page views==&lt;br /&gt;
Where have they gone? I believe that they have disappeared from down the pages since the move a few weeks ago. Can they be put back? [[User:Geewunling|Geewunling]] 16:09, 29 May 2011 (EDT)&lt;br /&gt;
: I don&#039;t recall pageviews... What in specific are you talking about?  --[[User:ItsWalky|ItsWalky]] 16:12, 29 May 2011 (EDT)&lt;br /&gt;
::I guess [http://tfwiki.net/wiki/Special:Popularpages popular pages]? [[User:Interrobang|—Interrobang]] 16:20, 29 May 2011 (EDT)&lt;br /&gt;
:::Yeah those, how often a page has been visited. I kinda liked keeping tabs on relative popularity in pages (like how Mayumi and Shinichi &#039;&#039;never&#039;&#039; lost their 2:1 view ratio). [[User:Geewunling|Geewunling]] 16:24, 29 May 2011 (EDT)&lt;br /&gt;
::::The broken popular pages has apparently been a thing lately, as I noticed Abates was removing and re-adding the link to [[MediaWiki:Recentchangestext]] earlier this month. Maybe he knows more about it? --[[User:Apoc|Apoc]] 18:41, 29 May 2011 (EDT)&lt;br /&gt;
:::::No more than anyone else. I noticed it was gone and removed it from the template, but then it came back when we did the move so I readded it. I guess it got removed again, possibly for performance reasons? --[[User:Abates|abates]] 18:58, 29 May 2011 (EDT)&lt;br /&gt;
::::::If I had to make a poorly-educated guess, the pageview thing sounds exactly like one of the many things I had to remove from Shortpacked.com to keep it from lagging so so badly.  Lots of neat little things like page tracking and stuff like that used to be on there, but they were more trouble, resources-wise, than they were worth.  --[[User:ItsWalky|ItsWalky]] 19:20, 29 May 2011 (EDT)&lt;br /&gt;
:::::::I didn&#039;t change anything, but I generally make it a point to keep away from the Mediawiki software config, for fear of breaking that which I don&#039;t understand. --[[User:McFly|McFly]] 13:07, 9 June 2011 (EDT)&lt;br /&gt;
::::::::May have been Scout I guess? Looks like [http://www.mediawiki.org/wiki/Manual:$wgDisableCounters $wgDisableCounters] got turned on at some point anyway. --[[User:Abates|abates]] 17:02, 9 June 2011 (EDT)&lt;br /&gt;
:::::::::Wait, that WAS me.  $wgDisableCounters is supposed to be off for squid-cached installations anyway, since it doesn&#039;t actually work when you add a cache. --[[User:McFly|McFly]] 21:26, 12 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Why is Melissa from Kiss Players on the same Page as Marissa Faireborn from G1? ==&lt;br /&gt;
&lt;br /&gt;
I know they are some how connected ,but i see the two as different as G1 Starscream is to Animated Starscream ,maybe the same history ,but a little different.--[[User:Michael Alex Kawa|Michael Alex Kawa]] 10:43, 30 May 2011 (EDT)&lt;br /&gt;
:They are related in the same way that Orion Pax is related to G1 Optimus Prime.  --[[User:Andrusi|Andrusi]] 10:51, 30 May 2011 (EDT)&lt;br /&gt;
: Marissa = Marissa.  Same continuity and everything.  --[[User:ItsWalky|ItsWalky]] 11:02, 30 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== I don&#039;t know if this was what you are looking for when you asked for Kiss Players radio play translations ,but i hope this helps . ==&lt;br /&gt;
&lt;br /&gt;
I found this on Youtube cause I LOVE Melissa and noticed in that Holy Grail thingy that you guys needed Kiss Players radio play translations .I hope this helps ,even if it doesn&#039;t it is still pretty cool and CUTE .I did not make it so that is noted .Here is the link so you guys can go and look to see if it what is needed ,it is the only one i can find ,if it helps i will try to find more .[http://www.youtube.com/watch?v=6ZvUg2c649Y]&lt;br /&gt;
--[[User:Michael Alex Kawa|Melissa]] 18:25, 2 June 2011 (EDT)&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I also found this site ,it gives a brief description of the radio play ,again i hope this helps .[http://www.toyvey.com/kisskiss/radioplay/index.html]--[[User:Michael Alex Kawa|Melissa]] 14:32, 3 June 2011 (EDT)&lt;br /&gt;
:I haven&#039;t looked at the material myself yet (I&#039;m afraid it&#039;ll make me have to clean myself until I bleed to get the stain out) but if it&#039;s legit, then thank you very, VERY much.  This stuff needs to be cataloged to serve as a warning to future generations. -- [[User:Semysane|Semysane]] 07:25, 5 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The multiverse ==&lt;br /&gt;
So, at BotCon, Aaron Archer declared the Aligned continuity separate from the old, more meta multiverse. How does everyone want to approach this? Separate the aligned information about Primus, Unicron and the members of the 13, or keep it together for easy access and lack of confusion just as one article covers the various versions of the Matrix, or Energon, or the AllSpark? [[User:Alientraveller|Alientraveller]] 05:06, 6 June 2011 (EDT)&lt;br /&gt;
:Wait for Japan to release some piece of fiction with Prime as part of the Multiverse, then ignore him with a clear conscience.  -[[User:Derik|Derik]] 00:05, 29 June 2011 (EDT)&lt;br /&gt;
::Huh. I never realized until now that Japan even had the Multiverse. I guess because they don&#039;t have as many universes. And they don&#039;t have collectors&#039; club fiction. I vaguely knew there was crazy dimension hopping in Alternity, but I figured that was its own thing. But yup, it&#039;s right there on the Alternity page. Something about Hasbro-licensed fiction and Takara-licensed fiction sharing one big happy multiverse seems very, very weird to me. Anyway, I&#039;ll put an Alternity stub on the [[Multiverse]] page. - [[User:Starfield|Starfield]] 00:55, 29 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Moving from Wikia ==&lt;br /&gt;
&lt;br /&gt;
Hello guys, can anyone give me some advice about how to leave Wikia? I mostly need advice about easily moving content. I found that Wikia provides a database dump as an XML file with all page content except files, and with the page histories. I really need to have the page histories. I installed MediaWiki on my PC for testing, with EasyPHP for the database, and importing the XML file actually doesn&#039;t work. It says &amp;quot;Import failed: Loss of session data. Please try again.&amp;quot; So I guess I set up my database too quickly and forgot some things. This was just for quick testing after all. Did you follow that template for moving, or something else? I&#039;d really appreciate any advice and help from you! Cheers. [[User:Klow|Klow]] 07:36, 21 June 2011 (EDT)&lt;br /&gt;
:Right out of the gate, you need to go over EVERY page you download before you go live, because Wikia inserted code that provides linkbacks to Wikia in them, meaning your pages will be providing THEM with hits. I do not know exactly what process is involved, but it&#039;s a scumfuck move of theirs that you should be aware of. --[[User:M Sipher|M Sipher]] 14:18, 21 June 2011 (EDT)&lt;br /&gt;
::Nice to know, thanks. But what about what I mentioned above? How do I start and all? [[User:Klow|Klow]] 17:46, 21 June 2011 (EDT)&lt;br /&gt;
:::A helpful resource for leaving Wikia is the [http://awa.shoutwiki.com/ Anti-Wikia Alliance site], which has useful info on departing from Wikia. The &amp;quot;loss of session data&amp;quot; usually means that you just have to try again. --[[User:Abates|abates]] 18:02, 21 June 2011 (EDT)&lt;br /&gt;
:I&#039;m just the server architecture guy, so I can&#039;t help with the XML import, but let me warn you right now, Mediawiki for a moderate-traffic site is a PIG.  Get a server geek to help you out, as we&#039;ve got a buttload of cache, and STILL have performance issues from time to time.  It&#039;s all stuff I can probably fix, if I ever have the free time to dedicate to the problem, but it&#039;s definitely a big old pain in the rear. --[[User:McFly|McFly]] 08:27, 22 June 2011 (EDT)&lt;br /&gt;
::Shoutwiki has been down for some time now, so the Anti-Wikia Alliance can&#039;t really help... :/ McFly, you mean I shouldn&#039;t stick to Mediawiki? [[User:Klow|Klow]] 07:23, 23 June 2011 (EDT)&lt;br /&gt;
:::I mean that you should make sure that whoever you&#039;ve got really knows how to tweak your wiki installation to stand up to the traffic.  Wikia is terrible at a great many things.  Providing high-availability Mediawiki service to their userbase is NOT one of them.--[[User:McFly|McFly]] 12:15, 24 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Fiction Header Sprawl ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Proposal section headers.png|thumb]]&lt;br /&gt;
Our fiction sections (particularly for movie characters) feature a gob-smackingly large number of headers (apparently one for each miniseries.)&lt;br /&gt;
&lt;br /&gt;
This can make it difficult to tell, as one&#039;s reading, is the next section is a new continuity or continues from the old one.&lt;br /&gt;
&lt;br /&gt;
I propose a &#039;&#039;&#039;&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;{{cntd}}&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&#039;&#039;&#039; template that could be used to mark fiction headers which continue from the previous section.  Proposed markup follows:&lt;br /&gt;
 ===&#039;&#039;Transformers&#039;&#039; 2007===&lt;br /&gt;
 Mojo was a bling&#039;d puppy.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{cntd}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 ===Revenge of the Fallen===&lt;br /&gt;
 Mojo&#039;s got a bitch&lt;br /&gt;
In the above example the ROTF section would be marked by a &amp;quot;continued...&amp;quot; as in the image at right.  (It&#039;s a CSS preceeding-content declaration.  It could just as easily be an arrow, and indent, graying-back the header, a color, etc.)&lt;br /&gt;
&lt;br /&gt;
The example at right is clumsy, but I thought I&#039;d throw it out to see if anyone thought the &#039;&#039;&#039;idea&#039;&#039;&#039; had merit. -[[User:Derik|Derik]] 06:56, 8 July 2011 (EDT)&lt;br /&gt;
:I&#039;m seeing a flaw in this, in particular with movie fiction, since there are events in-between films that don&#039;t necessarily mesh with the movies themselves. Likewise, G1 characters popping up in BW fiction, where it seemingly continues both Marvel G1 and Sunbow G1. --[[User:Detour|Detour]] 08:32, 8 July 2011 (EDT)&lt;br /&gt;
[[Image:Rs-lastpannel.jpg|thumb]]&lt;br /&gt;
::That is a flaw which arises from the way we structure our fiction sections.&lt;br /&gt;
::The IDW DOTM adaption, for instance, makes several slight tweaks to the story-- presumably to better fit its ongoing plans for tie-in comics.  Thus &#039;Rising Storm&#039; should &#039;&#039;not&#039;&#039; be followed by the DOTM movie... it should be followed by the DOTM movie &#039;&#039;&#039;adaption&#039;&#039;&#039; (See pic at right, which explicitly declares this.)&lt;br /&gt;
::There have historically been problems with this-- we didn&#039;t want lots of redundant sections in character bios, the 2007 adaption dumped most of the Quatar action despite these scenes obviously occurring in their continuity... etc.  So there was a hodge-podge &amp;quot;let&#039;s make only ONE section for each movie...&amp;quot; approach adapted.&lt;br /&gt;
::That&#039;s not getting into how cludgy the mini-derived section titles are.  Scenes in &#039;&#039;Foundation&#039;&#039; and &#039;&#039;Defiance&#039;&#039; interleave with one another, making them virtually impossible to properly wikify under the existing section-title bodge-up.  What we &#039;&#039;really&#039;&#039; need are sections like &#039;Era of the Primes&#039; &#039;Before the War&#039; &#039;Exile in Space&#039; al sitting under an &amp;quot;IDW Comics Continuity&amp;quot; header.&lt;br /&gt;
::(Why the hell the Titans books are listed in the &#039;&#039;middle&#039;&#039; of the IDW miniseries escapes me.)&lt;br /&gt;
::Whatever, our headers-- particularly for movie comics-- are broken.  Above is one suggestion to render them less-so. -[[User:Derik|Derik]] 08:47, 8 July 2011 (EDT)&lt;br /&gt;
:::I can definitely get behind something to simplify our header layout for the movie characters - I actually proposed something similar years ago, shortly after ROTF came out, which if I recall right basically amounted to &amp;quot;describe the movies first, then subsequent to them, do a section for each continuity&amp;quot; - IDW all in one, Titan all in one, and so on, rather than the frustrating, fragmented attempted-chronological order we use now. It just about worked for TF1, but after ROTF, things have just gotten more and more messy. However, I will spit &#039;&#039;blood&#039;&#039; if we turn into Wookieepedia and start with those rubbish &amp;quot;In-fiction description of time period&amp;quot; headers. - [[User:Chris McFeely|Chris McFeely]] 08:53, 8 July 2011 (EDT)&lt;br /&gt;
::::Hrm in the what now? -[[User:Derik|Derik]] 09:01, 8 July 2011 (EDT)&lt;br /&gt;
:::::He means header titles like &#039;Era of the Primes&#039; which describe a fictional time period. I can agree that those aren&#039;t a very good idea for us, given that such eras don&#039;t exist across all continuities in a continuity family. Trying to blend the various continuities in such a way implies they&#039;re more similar than they are. McFeely&#039;s idea of putting the films together, then having section for each of the other continuities, makes more sense for the way Transformers fiction is handled continuity-wise. --[[User:Tigerpaw28|Tigerpaw28]] 14:54, 8 July 2011 (EDT)&lt;br /&gt;
::::::I&#039;m fine with Chris&#039;s idea or maintaining the current status quo. I am however, adamantly against time period sections. [[User:Interrobang|—Interrobang]] 15:03, 8 July 2011 (EDT)&lt;br /&gt;
::::::Yeah, I&#039;m thinking McFeely&#039;s proposal has the least problems when it comes to sorting messy fiction. --[[User:M Sipher|M Sipher]] 18:08, 8 July 2011 (EDT)&lt;br /&gt;
:::::::Took a bit of a poke around to see if that old proposal was still around, and [[User:Chris_McFeely/ROTF_proposal|restored it]]. [[Transformers Wiki talk:Community Portal/Archive38|Here&#039;s]] what some people thought at the time. - [[User:Chris McFeely|Chris McFeely]] 18:12, 8 July 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Uploading of pngs ==&lt;br /&gt;
&lt;br /&gt;
I wonder whether a warning when someone tries to upload a png would help. By the looks, taking the &#039;png&#039; extension out of [http://www.mediawiki.org/wiki/Manual:$wgFileExtensions Manual:$wgFileExtensions] (Is Scout still handing MediaWiki configuration?) will cause the site to display a warning which you then have to continue through to upload the image. It&#039;s possible that people will just click through without reading it like with the &amp;quot;this is a huge file&amp;quot; warning, but it seems like it&#039;d be worth a try. --[[User:Abates|abates]] 19:32, 18 July 2011 (EDT)&lt;br /&gt;
:What&#039;s wrong with PNGs?  I was under the impression that they worked. --[[User:McFly|McFly]] 13:28, 19 July 2011 (EDT)&lt;br /&gt;
::Pngs use a compression method that is not well suited to screencaps, so a png screencap will be unnecessarily large compared to a jpg copy of the same screencap. --[[User:Abates|abates]] 15:59, 19 July 2011 (EDT)&lt;br /&gt;
:::I&#039;ve made the appropriate changes.  Let&#039;s see if it makes a difference.  (I doubt it.) --[[User:McFly|McFly]] 11:57, 3 August 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== MonacoBook Skin ==&lt;br /&gt;
&lt;br /&gt;
Hello. Dota 6 here! I was wondering if the MonacoBook skin is a custom MediaWiki skin or can you actually download it from somewhere? --[[User:Dota 6|Dota 6]] 21:11, 29 July 2011 (EDT) Dota 6 signing out!&lt;br /&gt;
&lt;br /&gt;
== What gives ==&lt;br /&gt;
&lt;br /&gt;
Okay, I can see that maybe you don&#039;t find my jokes funny. I can accept that, but to simply &amp;quot;undo&amp;quot; my first edit to the wiki without comment is rude. Obviously I am not a vandal, I am not trying to cause harm. I have been reading this wiki for a few weeks, and I simply came to a page filled with &#039;&#039;terrible&#039;&#039; captions. Captions so bad that one actually asked for someone to think of something better. [http://tfwiki.net/w2/index.php?title=Gold_Plastic_Syndrome&amp;amp;diff=prev&amp;amp;oldid=614367 This is the edit.] Maybe you don&#039;t see that as an improvement, but surely it is no worse than what was there. Even if you can&#039;t stomach all of them, surely you could simply fix one or two, instead of the entire edit. Surely you could at least leave a reasoning in the summary, or a message on my talk page saying &amp;quot;Thanks for the edit, but that isn&#039;t quite our style&amp;quot; or some-such. What is the point of having a wiki if you are simply going to smack new editors away without even having the respect to mention why? I understand that fighting vandalism is a hard and full-time job, but that is no reason to people with good intentions poorly. [[User:JohnnyMrNinja|JohnnyMrNinja]] 04:21, 30 July 2011 (EDT)&lt;br /&gt;
:Read this:[[Transformers_Wiki:Caption]]. Simply put, you need to do some actual work around here before messing with captions. --[[User:Khajidha|Khajidha]] 04:33, 30 July 2011 (EDT)&lt;br /&gt;
:Also, don&#039;t take it personally you weren&#039;t told why it was reverted. There&#039;s too many reverts in a day to bother to explain them all and it seems most anons and users-for-a-day simply don&#039;t care enough about their edit either to want to know why it was reverted, if they notice at all. If one cares, one can always ask - an explanation is guaranteed to be given. [[User:Geewunling|Geewunling]] 05:59, 30 July 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Bot request==&lt;br /&gt;
And we get a bot to change out all the instances of &amp;quot;Jusco&amp;quot; with &amp;quot;[[JUSCO]]&amp;quot;, the proper capitalization for the stores? --[[User:M Sipher|M Sipher]] 14:02, 1 August 2011 (EDT)&lt;br /&gt;
:There din&#039;t seem to be that many, so I went ahead and did &#039;em manually. --[[User:Abates|abates]] 19:45, 1 August 2011 (EDT)&lt;br /&gt;
::Do we still have a bot?  -[[User:Derik|Derik]] 20:29, 3 August 2011 (EDT)&lt;br /&gt;
:::...Um, I thought we had [[User:Deceptitran|your bot]]? --[[User:Tigerpaw28|Tigerpaw28]] 20:44, 3 August 2011 (EDT)&lt;br /&gt;
::::And [[User:DNAVI]]. - [[User:Starfield|Starfield]] 21:34, 3 August 2011 (EDT)&lt;br /&gt;
:::::Oh, wait. DNAVI&#039;s owner thinks he&#039;s pretty much done with this place. - [[User:Starfield|Starfield]] 21:36, 3 August 2011 (EDT)&lt;br /&gt;
::::::Decptitran&#039;s database structure got trashed when my site got deleted.  ...I should probably fix it dome day.  -[[User:Derik|Derik]] 21:46, 3 August 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Interviews on External links ==&lt;br /&gt;
&lt;br /&gt;
Flashback&#039;s recent plugging of his site&#039;s interview have struck my curiosity, what exactly is the standard for adding interviews to the external links on real-life people&#039;s articles? Anyone who&#039;s got an interview can add one, or do they have to be special interviews? --[[User:Detour|Detour]] 19:53, 3 August 2011 (EDT)&lt;br /&gt;
:If the interview adds relevant and interesting information to the person, I think it&#039;s ok in the external links section.  If it&#039;s supporting a specific fact, then the reference format should be used.--[[User:Jimsorenson|Jimsorenson]] 19:54, 3 August 2011 (EDT)&lt;br /&gt;
:I think they should be primarily about (or at least have substantial coverage of) the subject&#039;s Transformers work. --[[User:Abates|abates]] 22:27, 3 August 2011 (EDT)&lt;br /&gt;
::I think that should be the case too, unless the real-life person is tough to find any information on. I recently added an interview to Marlene Aragon&#039;s article that has nothing to do with Transformers, but does provide some information as to her age and her &#039;career&#039; in voice acting. It wouldn&#039;t be interesting for anyone with a more prominent role in Transformers (or anything else), but since this is about everything the page can provide on her, it should stay. [[User:Geewunling|Geewunling]] 02:20, 4 August 2011 (EDT)&lt;br /&gt;
:::That&#039;s interesting, it&#039;s the same reason I linked to an archived Allspark interview for Elaine To. There was no other information I could find about her anywhere else. But in regard to Flashback and his Realmcast interviews... I didn&#039;t listen to any of them in their entirety, but I listened to a third of the Michael Bell one, which can be summed up as both interviewer and interviewee complaining about the Michael Bay films daring to make the original voice cast audition for roles and then only using Cullen, and IDW&#039;s declining to go with that All Hail Megatron motion comic... So I&#039;m really not certain these links really add anything other than a plug for Flashback&#039;s site. But if anyone else feels like listening to them and proving me wrong, go ahead, I don&#039;t mind. --[[User:Detour|Detour]] 02:36, 4 August 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Gif uploads blocked? ==&lt;br /&gt;
&lt;br /&gt;
I keep getting a &amp;lt;tt&amp;gt;&amp;quot;.gif&amp;quot; is not a permitted file type. Permitted file types are jpg, jpeg, ppt, ogg, ico, svg, ogg, psd, ttf, pdf, wav.&amp;lt;/tt&amp;gt; when I try to upload a .gif.&lt;br /&gt;
&lt;br /&gt;
Dis someone trip a flag in the settings, or have I just missed something? -[[User:Derik|Derik]] 15:18, 13 August 2011 (EDT)&lt;br /&gt;
:I think that&#039;s an unintended side effect from the PNG ban. McFeely should be able to fix it. [[User:Geewunling|Geewunling]] 15:30, 13 August 2011 (EDT)&lt;br /&gt;
::We banned PNG&#039;s?  But they&#039;re occasionally useful!&lt;br /&gt;
::Can&#039;t we ban people who upload PNG&#039;s instead.  -[[User:Derik|Derik]] 15:39, 13 August 2011 (EDT)&lt;br /&gt;
:::You can read a little upwards on it under &amp;quot;Uploading of pngs&amp;quot;. I&#039;m not sure what has been programmed to prevent PNG uploads, though. You&#039;d have to ask McFeely. [[User:Geewunling|Geewunling]] 15:45, 13 August 2011 (EDT)&lt;br /&gt;
::::I&#039;m guessing you&#039;re meaning to type &amp;quot;McFly&amp;quot;, not &amp;quot;McFeely,&amp;quot; because I haven&#039;t a clue. /:) - [[User:Chris McFeely|Chris McFeely]] 17:37, 13 August 2011 (EDT)&lt;br /&gt;
:::Gah, $wgStrictFileExtensions must be set true. I only intended for my request to display it as a warning rather than preventing uploading of them altogether (you know, like when you upload an image which is too big). I guess MediaWiki doesn&#039;t have enough options to do what I was suggesting. --[[User:Abates|abates]] 18:28, 13 August 2011 (EDT)&lt;br /&gt;
::::Bitch, bitch, bitch.  (It&#039;s fixed, provided someone confirms that much.  Drop any complaints on my Talk page, I&#039;ve got a watchlist set on it.) --[[User:McFly|McFly]] 15:46, 14 August 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=616716</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=616716"/>
		<updated>2011-08-03T15:57:30Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Uploading of pngs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Transformers: Exodus|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Transformers: Exodus|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Transformers: Exodus|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
What about block quotes? The page for Transformers (2007) is full of them.  I think there should be a limit on how long the quote can be.--[[User:Megatron Prime|Megatron Prime]] 16:48, 19 May 2011 (EDT)&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Page views==&lt;br /&gt;
Where have they gone? I believe that they have disappeared from down the pages since the move a few weeks ago. Can they be put back? [[User:Geewunling|Geewunling]] 16:09, 29 May 2011 (EDT)&lt;br /&gt;
: I don&#039;t recall pageviews... What in specific are you talking about?  --[[User:ItsWalky|ItsWalky]] 16:12, 29 May 2011 (EDT)&lt;br /&gt;
::I guess [http://tfwiki.net/wiki/Special:Popularpages popular pages]? [[User:Interrobang|—Interrobang]] 16:20, 29 May 2011 (EDT)&lt;br /&gt;
:::Yeah those, how often a page has been visited. I kinda liked keeping tabs on relative popularity in pages (like how Mayumi and Shinichi &#039;&#039;never&#039;&#039; lost their 2:1 view ratio). [[User:Geewunling|Geewunling]] 16:24, 29 May 2011 (EDT)&lt;br /&gt;
::::The broken popular pages has apparently been a thing lately, as I noticed Abates was removing and re-adding the link to [[MediaWiki:Recentchangestext]] earlier this month. Maybe he knows more about it? --[[User:Apoc|Apoc]] 18:41, 29 May 2011 (EDT)&lt;br /&gt;
:::::No more than anyone else. I noticed it was gone and removed it from the template, but then it came back when we did the move so I readded it. I guess it got removed again, possibly for performance reasons? --[[User:Abates|abates]] 18:58, 29 May 2011 (EDT)&lt;br /&gt;
::::::If I had to make a poorly-educated guess, the pageview thing sounds exactly like one of the many things I had to remove from Shortpacked.com to keep it from lagging so so badly.  Lots of neat little things like page tracking and stuff like that used to be on there, but they were more trouble, resources-wise, than they were worth.  --[[User:ItsWalky|ItsWalky]] 19:20, 29 May 2011 (EDT)&lt;br /&gt;
:::::::I didn&#039;t change anything, but I generally make it a point to keep away from the Mediawiki software config, for fear of breaking that which I don&#039;t understand. --[[User:McFly|McFly]] 13:07, 9 June 2011 (EDT)&lt;br /&gt;
::::::::May have been Scout I guess? Looks like [http://www.mediawiki.org/wiki/Manual:$wgDisableCounters $wgDisableCounters] got turned on at some point anyway. --[[User:Abates|abates]] 17:02, 9 June 2011 (EDT)&lt;br /&gt;
:::::::::Wait, that WAS me.  $wgDisableCounters is supposed to be off for squid-cached installations anyway, since it doesn&#039;t actually work when you add a cache. --[[User:McFly|McFly]] 21:26, 12 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Why is Melissa from Kiss Players on the same Page as Marissa Faireborn from G1? ==&lt;br /&gt;
&lt;br /&gt;
I know they are some how connected ,but i see the two as different as G1 Starscream is to Animated Starscream ,maybe the same history ,but a little different.--[[User:Michael Alex Kawa|Michael Alex Kawa]] 10:43, 30 May 2011 (EDT)&lt;br /&gt;
:They are related in the same way that Orion Pax is related to G1 Optimus Prime.  --[[User:Andrusi|Andrusi]] 10:51, 30 May 2011 (EDT)&lt;br /&gt;
: Marissa = Marissa.  Same continuity and everything.  --[[User:ItsWalky|ItsWalky]] 11:02, 30 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== I don&#039;t know if this was what you are looking for when you asked for Kiss Players radio play translations ,but i hope this helps . ==&lt;br /&gt;
&lt;br /&gt;
I found this on Youtube cause I LOVE Melissa and noticed in that Holy Grail thingy that you guys needed Kiss Players radio play translations .I hope this helps ,even if it doesn&#039;t it is still pretty cool and CUTE .I did not make it so that is noted .Here is the link so you guys can go and look to see if it what is needed ,it is the only one i can find ,if it helps i will try to find more .[http://www.youtube.com/watch?v=6ZvUg2c649Y]&lt;br /&gt;
--[[User:Michael Alex Kawa|Melissa]] 18:25, 2 June 2011 (EDT)&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I also found this site ,it gives a brief description of the radio play ,again i hope this helps .[http://www.toyvey.com/kisskiss/radioplay/index.html]--[[User:Michael Alex Kawa|Melissa]] 14:32, 3 June 2011 (EDT)&lt;br /&gt;
:I haven&#039;t looked at the material myself yet (I&#039;m afraid it&#039;ll make me have to clean myself until I bleed to get the stain out) but if it&#039;s legit, then thank you very, VERY much.  This stuff needs to be cataloged to serve as a warning to future generations. -- [[User:Semysane|Semysane]] 07:25, 5 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The multiverse ==&lt;br /&gt;
So, at BotCon, Aaron Archer declared the Aligned continuity separate from the old, more meta multiverse. How does everyone want to approach this? Separate the aligned information about Primus, Unicron and the members of the 13, or keep it together for easy access and lack of confusion just as one article covers the various versions of the Matrix, or Energon, or the AllSpark? [[User:Alientraveller|Alientraveller]] 05:06, 6 June 2011 (EDT)&lt;br /&gt;
:Wait for Japan to release some piece of fiction with Prime as part of the Multiverse, then ignore him with a clear conscience.  -[[User:Derik|Derik]] 00:05, 29 June 2011 (EDT)&lt;br /&gt;
::Huh. I never realized until now that Japan even had the Multiverse. I guess because they don&#039;t have as many universes. And they don&#039;t have collectors&#039; club fiction. I vaguely knew there was crazy dimension hopping in Alternity, but I figured that was its own thing. But yup, it&#039;s right there on the Alternity page. Something about Hasbro-licensed fiction and Takara-licensed fiction sharing one big happy multiverse seems very, very weird to me. Anyway, I&#039;ll put an Alternity stub on the [[Multiverse]] page. - [[User:Starfield|Starfield]] 00:55, 29 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Moving from Wikia ==&lt;br /&gt;
&lt;br /&gt;
Hello guys, can anyone give me some advice about how to leave Wikia? I mostly need advice about easily moving content. I found that Wikia provides a database dump as an XML file with all page content except files, and with the page histories. I really need to have the page histories. I installed MediaWiki on my PC for testing, with EasyPHP for the database, and importing the XML file actually doesn&#039;t work. It says &amp;quot;Import failed: Loss of session data. Please try again.&amp;quot; So I guess I set up my database too quickly and forgot some things. This was just for quick testing after all. Did you follow that template for moving, or something else? I&#039;d really appreciate any advice and help from you! Cheers. [[User:Klow|Klow]] 07:36, 21 June 2011 (EDT)&lt;br /&gt;
:Right out of the gate, you need to go over EVERY page you download before you go live, because Wikia inserted code that provides linkbacks to Wikia in them, meaning your pages will be providing THEM with hits. I do not know exactly what process is involved, but it&#039;s a scumfuck move of theirs that you should be aware of. --[[User:M Sipher|M Sipher]] 14:18, 21 June 2011 (EDT)&lt;br /&gt;
::Nice to know, thanks. But what about what I mentioned above? How do I start and all? [[User:Klow|Klow]] 17:46, 21 June 2011 (EDT)&lt;br /&gt;
:::A helpful resource for leaving Wikia is the [http://awa.shoutwiki.com/ Anti-Wikia Alliance site], which has useful info on departing from Wikia. The &amp;quot;loss of session data&amp;quot; usually means that you just have to try again. --[[User:Abates|abates]] 18:02, 21 June 2011 (EDT)&lt;br /&gt;
:I&#039;m just the server architecture guy, so I can&#039;t help with the XML import, but let me warn you right now, Mediawiki for a moderate-traffic site is a PIG.  Get a server geek to help you out, as we&#039;ve got a buttload of cache, and STILL have performance issues from time to time.  It&#039;s all stuff I can probably fix, if I ever have the free time to dedicate to the problem, but it&#039;s definitely a big old pain in the rear. --[[User:McFly|McFly]] 08:27, 22 June 2011 (EDT)&lt;br /&gt;
::Shoutwiki has been down for some time now, so the Anti-Wikia Alliance can&#039;t really help... :/ McFly, you mean I shouldn&#039;t stick to Mediawiki? [[User:Klow|Klow]] 07:23, 23 June 2011 (EDT)&lt;br /&gt;
:::I mean that you should make sure that whoever you&#039;ve got really knows how to tweak your wiki installation to stand up to the traffic.  Wikia is terrible at a great many things.  Providing high-availability Mediawiki service to their userbase is NOT one of them.--[[User:McFly|McFly]] 12:15, 24 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Fiction Header Sprawl ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Proposal section headers.png|thumb]]&lt;br /&gt;
Our fiction sections (particularly for movie characters) feature a gob-smackingly large number of headers (apparently one for each miniseries.)&lt;br /&gt;
&lt;br /&gt;
This can make it difficult to tell, as one&#039;s reading, is the next section is a new continuity or continues from the old one.&lt;br /&gt;
&lt;br /&gt;
I propose a &#039;&#039;&#039;&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;{{cntd}}&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&#039;&#039;&#039; template that could be used to mark fiction headers which continue from the previous section.  Proposed markup follows:&lt;br /&gt;
 ===&#039;&#039;Transformers&#039;&#039; 2007===&lt;br /&gt;
 Mojo was a bling&#039;d puppy.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{cntd}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 ===Revenge of the Fallen===&lt;br /&gt;
 Mojo&#039;s got a bitch&lt;br /&gt;
In the above example the ROTF section would be marked by a &amp;quot;continued...&amp;quot; as in the image at right.  (It&#039;s a CSS preceeding-content declaration.  It could just as easily be an arrow, and indent, graying-back the header, a color, etc.)&lt;br /&gt;
&lt;br /&gt;
The example at right is clumsy, but I thought I&#039;d throw it out to see if anyone thought the &#039;&#039;&#039;idea&#039;&#039;&#039; had merit. -[[User:Derik|Derik]] 06:56, 8 July 2011 (EDT)&lt;br /&gt;
:I&#039;m seeing a flaw in this, in particular with movie fiction, since there are events in-between films that don&#039;t necessarily mesh with the movies themselves. Likewise, G1 characters popping up in BW fiction, where it seemingly continues both Marvel G1 and Sunbow G1. --[[User:Detour|Detour]] 08:32, 8 July 2011 (EDT)&lt;br /&gt;
[[Image:Rs-lastpannel.jpg|thumb]]&lt;br /&gt;
::That is a flaw which arises from the way we structure our fiction sections.&lt;br /&gt;
::The IDW DOTM adaption, for instance, makes several slight tweaks to the story-- presumably to better fit its ongoing plans for tie-in comics.  Thus &#039;Rising Storm&#039; should &#039;&#039;not&#039;&#039; be followed by the DOTM movie... it should be followed by the DOTM movie &#039;&#039;&#039;adaption&#039;&#039;&#039; (See pic at right, which explicitly declares this.)&lt;br /&gt;
::There have historically been problems with this-- we didn&#039;t want lots of redundant sections in character bios, the 2007 adaption dumped most of the Quatar action despite these scenes obviously occurring in their continuity... etc.  So there was a hodge-podge &amp;quot;let&#039;s make only ONE section for each movie...&amp;quot; approach adapted.&lt;br /&gt;
::That&#039;s not getting into how cludgy the mini-derived section titles are.  Scenes in &#039;&#039;Foundation&#039;&#039; and &#039;&#039;Defiance&#039;&#039; interleave with one another, making them virtually impossible to properly wikify under the existing section-title bodge-up.  What we &#039;&#039;really&#039;&#039; need are sections like &#039;Era of the Primes&#039; &#039;Before the War&#039; &#039;Exile in Space&#039; al sitting under an &amp;quot;IDW Comics Continuity&amp;quot; header.&lt;br /&gt;
::(Why the hell the Titans books are listed in the &#039;&#039;middle&#039;&#039; of the IDW miniseries escapes me.)&lt;br /&gt;
::Whatever, our headers-- particularly for movie comics-- are broken.  Above is one suggestion to render them less-so. -[[User:Derik|Derik]] 08:47, 8 July 2011 (EDT)&lt;br /&gt;
:::I can definitely get behind something to simplify our header layout for the movie characters - I actually proposed something similar years ago, shortly after ROTF came out, which if I recall right basically amounted to &amp;quot;describe the movies first, then subsequent to them, do a section for each continuity&amp;quot; - IDW all in one, Titan all in one, and so on, rather than the frustrating, fragmented attempted-chronological order we use now. It just about worked for TF1, but after ROTF, things have just gotten more and more messy. However, I will spit &#039;&#039;blood&#039;&#039; if we turn into Wookieepedia and start with those rubbish &amp;quot;In-fiction description of time period&amp;quot; headers. - [[User:Chris McFeely|Chris McFeely]] 08:53, 8 July 2011 (EDT)&lt;br /&gt;
::::Hrm in the what now? -[[User:Derik|Derik]] 09:01, 8 July 2011 (EDT)&lt;br /&gt;
:::::He means header titles like &#039;Era of the Primes&#039; which describe a fictional time period. I can agree that those aren&#039;t a very good idea for us, given that such eras don&#039;t exist across all continuities in a continuity family. Trying to blend the various continuities in such a way implies they&#039;re more similar than they are. McFeely&#039;s idea of putting the films together, then having section for each of the other continuities, makes more sense for the way Transformers fiction is handled continuity-wise. --[[User:Tigerpaw28|Tigerpaw28]] 14:54, 8 July 2011 (EDT)&lt;br /&gt;
::::::I&#039;m fine with Chris&#039;s idea or maintaining the current status quo. I am however, adamantly against time period sections. [[User:Interrobang|—Interrobang]] 15:03, 8 July 2011 (EDT)&lt;br /&gt;
::::::Yeah, I&#039;m thinking McFeely&#039;s proposal has the least problems when it comes to sorting messy fiction. --[[User:M Sipher|M Sipher]] 18:08, 8 July 2011 (EDT)&lt;br /&gt;
:::::::Took a bit of a poke around to see if that old proposal was still around, and [[User:Chris_McFeely/ROTF_proposal|restored it]]. [[Transformers Wiki talk:Community Portal/Archive38|Here&#039;s]] what some people thought at the time. - [[User:Chris McFeely|Chris McFeely]] 18:12, 8 July 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Uploading of pngs ==&lt;br /&gt;
&lt;br /&gt;
I wonder whether a warning when someone tries to upload a png would help. By the looks, taking the &#039;png&#039; extension out of [http://www.mediawiki.org/wiki/Manual:$wgFileExtensions Manual:$wgFileExtensions] (Is Scout still handing MediaWiki configuration?) will cause the site to display a warning which you then have to continue through to upload the image. It&#039;s possible that people will just click through without reading it like with the &amp;quot;this is a huge file&amp;quot; warning, but it seems like it&#039;d be worth a try. --[[User:Abates|abates]] 19:32, 18 July 2011 (EDT)&lt;br /&gt;
:What&#039;s wrong with PNGs?  I was under the impression that they worked. --[[User:McFly|McFly]] 13:28, 19 July 2011 (EDT)&lt;br /&gt;
::Pngs use a compression method that is not well suited to screencaps, so a png screencap will be unnecessarily large compared to a jpg copy of the same screencap. --[[User:Abates|abates]] 15:59, 19 July 2011 (EDT)&lt;br /&gt;
:::I&#039;ve made the appropriate changes.  Let&#039;s see if it makes a difference.  (I doubt it.) --[[User:McFly|McFly]] 11:57, 3 August 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== MonacoBook Skin ==&lt;br /&gt;
&lt;br /&gt;
Hello. Dota 6 here! I was wondering if the MonacoBook skin is a custom MediaWiki skin or can you actually download it from somewhere? --[[User:Dota 6|Dota 6]] 21:11, 29 July 2011 (EDT) Dota 6 signing out!&lt;br /&gt;
&lt;br /&gt;
== What gives ==&lt;br /&gt;
&lt;br /&gt;
Okay, I can see that maybe you don&#039;t find my jokes funny. I can accept that, but to simply &amp;quot;undo&amp;quot; my first edit to the wiki without comment is rude. Obviously I am not a vandal, I am not trying to cause harm. I have been reading this wiki for a few weeks, and I simply came to a page filled with &#039;&#039;terrible&#039;&#039; captions. Captions so bad that one actually asked for someone to think of something better. [http://tfwiki.net/w2/index.php?title=Gold_Plastic_Syndrome&amp;amp;diff=prev&amp;amp;oldid=614367 This is the edit.] Maybe you don&#039;t see that as an improvement, but surely it is no worse than what was there. Even if you can&#039;t stomach all of them, surely you could simply fix one or two, instead of the entire edit. Surely you could at least leave a reasoning in the summary, or a message on my talk page saying &amp;quot;Thanks for the edit, but that isn&#039;t quite our style&amp;quot; or some-such. What is the point of having a wiki if you are simply going to smack new editors away without even having the respect to mention why? I understand that fighting vandalism is a hard and full-time job, but that is no reason to people with good intentions poorly. [[User:JohnnyMrNinja|JohnnyMrNinja]] 04:21, 30 July 2011 (EDT)&lt;br /&gt;
:Read this:[[Transformers_Wiki:Caption]]. Simply put, you need to do some actual work around here before messing with captions. --[[User:Khajidha|Khajidha]] 04:33, 30 July 2011 (EDT)&lt;br /&gt;
:Also, don&#039;t take it personally you weren&#039;t told why it was reverted. There&#039;s too many reverts in a day to bother to explain them all and it seems most anons and users-for-a-day simply don&#039;t care enough about their edit either to want to know why it was reverted, if they notice at all. If one cares, one can always ask - an explanation is guaranteed to be given. [[User:Geewunling|Geewunling]] 05:59, 30 July 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Bot request==&lt;br /&gt;
And we get a bot to change out all the instances of &amp;quot;Jusco&amp;quot; with &amp;quot;[[JUSCO]]&amp;quot;, the proper capitalization for the stores? --[[User:M Sipher|M Sipher]] 14:02, 1 August 2011 (EDT)&lt;br /&gt;
:There din&#039;t seem to be that many, so I went ahead and did &#039;em manually. --[[User:Abates|abates]] 19:45, 1 August 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=610951</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=610951"/>
		<updated>2011-07-19T17:28:03Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Uploading of pngs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Transformers: Exodus|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Transformers: Exodus|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Transformers: Exodus|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
What about block quotes? The page for Transformers (2007) is full of them.  I think there should be a limit on how long the quote can be.--[[User:Megatron Prime|Megatron Prime]] 16:48, 19 May 2011 (EDT)&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Page views==&lt;br /&gt;
Where have they gone? I believe that they have disappeared from down the pages since the move a few weeks ago. Can they be put back? [[User:Geewunling|Geewunling]] 16:09, 29 May 2011 (EDT)&lt;br /&gt;
: I don&#039;t recall pageviews... What in specific are you talking about?  --[[User:ItsWalky|ItsWalky]] 16:12, 29 May 2011 (EDT)&lt;br /&gt;
::I guess [http://tfwiki.net/wiki/Special:Popularpages popular pages]? [[User:Interrobang|—Interrobang]] 16:20, 29 May 2011 (EDT)&lt;br /&gt;
:::Yeah those, how often a page has been visited. I kinda liked keeping tabs on relative popularity in pages (like how Mayumi and Shinichi &#039;&#039;never&#039;&#039; lost their 2:1 view ratio). [[User:Geewunling|Geewunling]] 16:24, 29 May 2011 (EDT)&lt;br /&gt;
::::The broken popular pages has apparently been a thing lately, as I noticed Abates was removing and re-adding the link to [[MediaWiki:Recentchangestext]] earlier this month. Maybe he knows more about it? --[[User:Apoc|Apoc]] 18:41, 29 May 2011 (EDT)&lt;br /&gt;
:::::No more than anyone else. I noticed it was gone and removed it from the template, but then it came back when we did the move so I readded it. I guess it got removed again, possibly for performance reasons? --[[User:Abates|abates]] 18:58, 29 May 2011 (EDT)&lt;br /&gt;
::::::If I had to make a poorly-educated guess, the pageview thing sounds exactly like one of the many things I had to remove from Shortpacked.com to keep it from lagging so so badly.  Lots of neat little things like page tracking and stuff like that used to be on there, but they were more trouble, resources-wise, than they were worth.  --[[User:ItsWalky|ItsWalky]] 19:20, 29 May 2011 (EDT)&lt;br /&gt;
:::::::I didn&#039;t change anything, but I generally make it a point to keep away from the Mediawiki software config, for fear of breaking that which I don&#039;t understand. --[[User:McFly|McFly]] 13:07, 9 June 2011 (EDT)&lt;br /&gt;
::::::::May have been Scout I guess? Looks like [http://www.mediawiki.org/wiki/Manual:$wgDisableCounters $wgDisableCounters] got turned on at some point anyway. --[[User:Abates|abates]] 17:02, 9 June 2011 (EDT)&lt;br /&gt;
:::::::::Wait, that WAS me.  $wgDisableCounters is supposed to be off for squid-cached installations anyway, since it doesn&#039;t actually work when you add a cache. --[[User:McFly|McFly]] 21:26, 12 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Why is Melissa from Kiss Players on the same Page as Marissa Faireborn from G1? ==&lt;br /&gt;
&lt;br /&gt;
I know they are some how connected ,but i see the two as different as G1 Starscream is to Animated Starscream ,maybe the same history ,but a little different.--[[User:Michael Alex Kawa|Michael Alex Kawa]] 10:43, 30 May 2011 (EDT)&lt;br /&gt;
:They are related in the same way that Orion Pax is related to G1 Optimus Prime.  --[[User:Andrusi|Andrusi]] 10:51, 30 May 2011 (EDT)&lt;br /&gt;
: Marissa = Marissa.  Same continuity and everything.  --[[User:ItsWalky|ItsWalky]] 11:02, 30 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== I don&#039;t know if this was what you are looking for when you asked for Kiss Players radio play translations ,but i hope this helps . ==&lt;br /&gt;
&lt;br /&gt;
I found this on Youtube cause I LOVE Melissa and noticed in that Holy Grail thingy that you guys needed Kiss Players radio play translations .I hope this helps ,even if it doesn&#039;t it is still pretty cool and CUTE .I did not make it so that is noted .Here is the link so you guys can go and look to see if it what is needed ,it is the only one i can find ,if it helps i will try to find more .[http://www.youtube.com/watch?v=6ZvUg2c649Y]&lt;br /&gt;
--[[User:Michael Alex Kawa|Melissa]] 18:25, 2 June 2011 (EDT)&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I also found this site ,it gives a brief description of the radio play ,again i hope this helps .[http://www.toyvey.com/kisskiss/radioplay/index.html]--[[User:Michael Alex Kawa|Melissa]] 14:32, 3 June 2011 (EDT)&lt;br /&gt;
:I haven&#039;t looked at the material myself yet (I&#039;m afraid it&#039;ll make me have to clean myself until I bleed to get the stain out) but if it&#039;s legit, then thank you very, VERY much.  This stuff needs to be cataloged to serve as a warning to future generations. -- [[User:Semysane|Semysane]] 07:25, 5 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The multiverse ==&lt;br /&gt;
So, at BotCon, Aaron Archer declared the Aligned continuity separate from the old, more meta multiverse. How does everyone want to approach this? Separate the aligned information about Primus, Unicron and the members of the 13, or keep it together for easy access and lack of confusion just as one article covers the various versions of the Matrix, or Energon, or the AllSpark? [[User:Alientraveller|Alientraveller]] 05:06, 6 June 2011 (EDT)&lt;br /&gt;
:Wait for Japan to release some piece of fiction with Prime as part of the Multiverse, then ignore him with a clear conscience.  -[[User:Derik|Derik]] 00:05, 29 June 2011 (EDT)&lt;br /&gt;
::Huh. I never realized until now that Japan even had the Multiverse. I guess because they don&#039;t have as many universes. And they don&#039;t have collectors&#039; club fiction. I vaguely knew there was crazy dimension hopping in Alternity, but I figured that was its own thing. But yup, it&#039;s right there on the Alternity page. Something about Hasbro-licensed fiction and Takara-licensed fiction sharing one big happy multiverse seems very, very weird to me. Anyway, I&#039;ll put an Alternity stub on the [[Multiverse]] page. - [[User:Starfield|Starfield]] 00:55, 29 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Moving from Wikia ==&lt;br /&gt;
&lt;br /&gt;
Hello guys, can anyone give me some advice about how to leave Wikia? I mostly need advice about easily moving content. I found that Wikia provides a database dump as an XML file with all page content except files, and with the page histories. I really need to have the page histories. I installed MediaWiki on my PC for testing, with EasyPHP for the database, and importing the XML file actually doesn&#039;t work. It says &amp;quot;Import failed: Loss of session data. Please try again.&amp;quot; So I guess I set up my database too quickly and forgot some things. This was just for quick testing after all. Did you follow that template for moving, or something else? I&#039;d really appreciate any advice and help from you! Cheers. [[User:Klow|Klow]] 07:36, 21 June 2011 (EDT)&lt;br /&gt;
:Right out of the gate, you need to go over EVERY page you download before you go live, because Wikia inserted code that provides linkbacks to Wikia in them, meaning your pages will be providing THEM with hits. I do not know exactly what process is involved, but it&#039;s a scumfuck move of theirs that you should be aware of. --[[User:M Sipher|M Sipher]] 14:18, 21 June 2011 (EDT)&lt;br /&gt;
::Nice to know, thanks. But what about what I mentioned above? How do I start and all? [[User:Klow|Klow]] 17:46, 21 June 2011 (EDT)&lt;br /&gt;
:::A helpful resource for leaving Wikia is the [http://awa.shoutwiki.com/ Anti-Wikia Alliance site], which has useful info on departing from Wikia. The &amp;quot;loss of session data&amp;quot; usually means that you just have to try again. --[[User:Abates|abates]] 18:02, 21 June 2011 (EDT)&lt;br /&gt;
:I&#039;m just the server architecture guy, so I can&#039;t help with the XML import, but let me warn you right now, Mediawiki for a moderate-traffic site is a PIG.  Get a server geek to help you out, as we&#039;ve got a buttload of cache, and STILL have performance issues from time to time.  It&#039;s all stuff I can probably fix, if I ever have the free time to dedicate to the problem, but it&#039;s definitely a big old pain in the rear. --[[User:McFly|McFly]] 08:27, 22 June 2011 (EDT)&lt;br /&gt;
::Shoutwiki has been down for some time now, so the Anti-Wikia Alliance can&#039;t really help... :/ McFly, you mean I shouldn&#039;t stick to Mediawiki? [[User:Klow|Klow]] 07:23, 23 June 2011 (EDT)&lt;br /&gt;
:::I mean that you should make sure that whoever you&#039;ve got really knows how to tweak your wiki installation to stand up to the traffic.  Wikia is terrible at a great many things.  Providing high-availability Mediawiki service to their userbase is NOT one of them.--[[User:McFly|McFly]] 12:15, 24 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Fiction Header Sprawl ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Proposal section headers.png|thumb]]&lt;br /&gt;
Our fiction sections (particularly for movie characters) feature a gob-smackingly large number of headers (apparently one for each miniseries.)&lt;br /&gt;
&lt;br /&gt;
This can make it difficult to tell, as one&#039;s reading, is the next section is a new continuity or continues from the old one.&lt;br /&gt;
&lt;br /&gt;
I propose a &#039;&#039;&#039;&amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;{{cntd}}&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt;&#039;&#039;&#039; template that could be used to mark fiction headers which continue from the previous section.  Proposed markup follows:&lt;br /&gt;
 ===&#039;&#039;Transformers&#039;&#039; 2007===&lt;br /&gt;
 Mojo was a bling&#039;d puppy.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{cntd}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 ===Revenge of the Fallen===&lt;br /&gt;
 Mojo&#039;s got a bitch&lt;br /&gt;
In the above example the ROTF section would be marked by a &amp;quot;continued...&amp;quot; as in the image at right.  (It&#039;s a CSS preceeding-content declaration.  It could just as easily be an arrow, and indent, graying-back the header, a color, etc.)&lt;br /&gt;
&lt;br /&gt;
The example at right is clumsy, but I thought I&#039;d throw it out to see if anyone thought the &#039;&#039;&#039;idea&#039;&#039;&#039; had merit. -[[User:Derik|Derik]] 06:56, 8 July 2011 (EDT)&lt;br /&gt;
:I&#039;m seeing a flaw in this, in particular with movie fiction, since there are events in-between films that don&#039;t necessarily mesh with the movies themselves. Likewise, G1 characters popping up in BW fiction, where it seemingly continues both Marvel G1 and Sunbow G1. --[[User:Detour|Detour]] 08:32, 8 July 2011 (EDT)&lt;br /&gt;
[[Image:Rs-lastpannel.jpg|thumb]]&lt;br /&gt;
::That is a flaw which arises from the way we structure our fiction sections.&lt;br /&gt;
::The IDW DOTM adaption, for instance, makes several slight tweaks to the story-- presumably to better fit its ongoing plans for tie-in comics.  Thus &#039;Rising Storm&#039; should &#039;&#039;not&#039;&#039; be followed by the DOTM movie... it should be followed by the DOTM movie &#039;&#039;&#039;adaption&#039;&#039;&#039; (See pic at right, which explicitly declares this.)&lt;br /&gt;
::There have historically been problems with this-- we didn&#039;t want lots of redundant sections in character bios, the 2007 adaption dumped most of the Quatar action despite these scenes obviously occurring in their continuity... etc.  So there was a hodge-podge &amp;quot;let&#039;s make only ONE section for each movie...&amp;quot; approach adapted.&lt;br /&gt;
::That&#039;s not getting into how cludgy the mini-derived section titles are.  Scenes in &#039;&#039;Foundation&#039;&#039; and &#039;&#039;Defiance&#039;&#039; interleave with one another, making them virtually impossible to properly wikify under the existing section-title bodge-up.  What we &#039;&#039;really&#039;&#039; need are sections like &#039;Era of the Primes&#039; &#039;Before the War&#039; &#039;Exile in Space&#039; al sitting under an &amp;quot;IDW Comics Continuity&amp;quot; header.&lt;br /&gt;
::(Why the hell the Titans books are listed in the &#039;&#039;middle&#039;&#039; of the IDW miniseries escapes me.)&lt;br /&gt;
::Whatever, our headers-- particularly for movie comics-- are broken.  Above is one suggestion to render them less-so. -[[User:Derik|Derik]] 08:47, 8 July 2011 (EDT)&lt;br /&gt;
:::I can definitely get behind something to simplify our header layout for the movie characters - I actually proposed something similar years ago, shortly after ROTF came out, which if I recall right basically amounted to &amp;quot;describe the movies first, then subsequent to them, do a section for each continuity&amp;quot; - IDW all in one, Titan all in one, and so on, rather than the frustrating, fragmented attempted-chronological order we use now. It just about worked for TF1, but after ROTF, things have just gotten more and more messy. However, I will spit &#039;&#039;blood&#039;&#039; if we turn into Wookieepedia and start with those rubbish &amp;quot;In-fiction description of time period&amp;quot; headers. - [[User:Chris McFeely|Chris McFeely]] 08:53, 8 July 2011 (EDT)&lt;br /&gt;
::::Hrm in the what now? -[[User:Derik|Derik]] 09:01, 8 July 2011 (EDT)&lt;br /&gt;
:::::He means header titles like &#039;Era of the Primes&#039; which describe a fictional time period. I can agree that those aren&#039;t a very good idea for us, given that such eras don&#039;t exist across all continuities in a continuity family. Trying to blend the various continuities in such a way implies they&#039;re more similar than they are. McFeely&#039;s idea of putting the films together, then having section for each of the other continuities, makes more sense for the way Transformers fiction is handled continuity-wise. --[[User:Tigerpaw28|Tigerpaw28]] 14:54, 8 July 2011 (EDT)&lt;br /&gt;
::::::I&#039;m fine with Chris&#039;s idea or maintaining the current status quo. I am however, adamantly against time period sections. [[User:Interrobang|—Interrobang]] 15:03, 8 July 2011 (EDT)&lt;br /&gt;
::::::Yeah, I&#039;m thinking McFeely&#039;s proposal has the least problems when it comes to sorting messy fiction. --[[User:M Sipher|M Sipher]] 18:08, 8 July 2011 (EDT)&lt;br /&gt;
:::::::Took a bit of a poke around to see if that old proposal was still around, and [[User:Chris_McFeely/ROTF_proposal|restored it]]. [[Transformers Wiki talk:Community Portal/Archive38|Here&#039;s]] what some people thought at the time. - [[User:Chris McFeely|Chris McFeely]] 18:12, 8 July 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Uploading of pngs ==&lt;br /&gt;
&lt;br /&gt;
I wonder whether a warning when someone tries to upload a png would help. By the looks, taking the &#039;png&#039; extension out of [http://www.mediawiki.org/wiki/Manual:$wgFileExtensions Manual:$wgFileExtensions] (Is Scout still handing MediaWiki configuration?) will cause the site to display a warning which you then have to continue through to upload the image. It&#039;s possible that people will just click through without reading it like with the &amp;quot;this is a huge file&amp;quot; warning, but it seems like it&#039;d be worth a try. --[[User:Abates|abates]] 19:32, 18 July 2011 (EDT)&lt;br /&gt;
:What&#039;s wrong with PNGs?  I was under the impression that they worked. --[[User:McFly|McFly]] 13:28, 19 July 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=601328</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=601328"/>
		<updated>2011-06-24T16:50:54Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Configuration Settings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
&lt;br /&gt;
On Echo (the apache/squid server,) noatime and data=writeback is enabled in /etc/fstab as of 6/24/2011.  This should reduce the overall I/O load on the system, ideally giving us some added performance.&lt;br /&gt;
&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 5.0, Kernel 2.6.24&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.9&lt;br /&gt;
* Memcached: 1.2.2&lt;br /&gt;
* MySQL: 5.0&lt;br /&gt;
* MediaWiki:  1.12.0&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=601313</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=601313"/>
		<updated>2011-06-24T16:15:48Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Moving from Wikia */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Transformers: Exodus|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Transformers: Exodus|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Transformers: Exodus|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
What about block quotes? The page for Transformers (2007) is full of them.  I think there should be a limit on how long the quote can be.--[[User:Megatron Prime|Megatron Prime]] 16:48, 19 May 2011 (EDT)&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Page views==&lt;br /&gt;
Where have they gone? I believe that they have disappeared from down the pages since the move a few weeks ago. Can they be put back? [[User:Geewunling|Geewunling]] 16:09, 29 May 2011 (EDT)&lt;br /&gt;
: I don&#039;t recall pageviews... What in specific are you talking about?  --[[User:ItsWalky|ItsWalky]] 16:12, 29 May 2011 (EDT)&lt;br /&gt;
::I guess [http://tfwiki.net/wiki/Special:Popularpages popular pages]? [[User:Interrobang|—Interrobang]] 16:20, 29 May 2011 (EDT)&lt;br /&gt;
:::Yeah those, how often a page has been visited. I kinda liked keeping tabs on relative popularity in pages (like how Mayumi and Shinichi &#039;&#039;never&#039;&#039; lost their 2:1 view ratio). [[User:Geewunling|Geewunling]] 16:24, 29 May 2011 (EDT)&lt;br /&gt;
::::The broken popular pages has apparently been a thing lately, as I noticed Abates was removing and re-adding the link to [[MediaWiki:Recentchangestext]] earlier this month. Maybe he knows more about it? --[[User:Apoc|Apoc]] 18:41, 29 May 2011 (EDT)&lt;br /&gt;
:::::No more than anyone else. I noticed it was gone and removed it from the template, but then it came back when we did the move so I readded it. I guess it got removed again, possibly for performance reasons? --[[User:Abates|abates]] 18:58, 29 May 2011 (EDT)&lt;br /&gt;
::::::If I had to make a poorly-educated guess, the pageview thing sounds exactly like one of the many things I had to remove from Shortpacked.com to keep it from lagging so so badly.  Lots of neat little things like page tracking and stuff like that used to be on there, but they were more trouble, resources-wise, than they were worth.  --[[User:ItsWalky|ItsWalky]] 19:20, 29 May 2011 (EDT)&lt;br /&gt;
:::::::I didn&#039;t change anything, but I generally make it a point to keep away from the Mediawiki software config, for fear of breaking that which I don&#039;t understand. --[[User:McFly|McFly]] 13:07, 9 June 2011 (EDT)&lt;br /&gt;
::::::::May have been Scout I guess? Looks like [http://www.mediawiki.org/wiki/Manual:$wgDisableCounters $wgDisableCounters] got turned on at some point anyway. --[[User:Abates|abates]] 17:02, 9 June 2011 (EDT)&lt;br /&gt;
:::::::::Wait, that WAS me.  $wgDisableCounters is supposed to be off for squid-cached installations anyway, since it doesn&#039;t actually work when you add a cache. --[[User:McFly|McFly]] 21:26, 12 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Why is Melissa from Kiss Players on the same Page as Marissa Faireborn from G1? ==&lt;br /&gt;
&lt;br /&gt;
I know they are some how connected ,but i see the two as different as G1 Starscream is to Animated Starscream ,maybe the same history ,but a little different.--[[User:Michael Alex Kawa|Michael Alex Kawa]] 10:43, 30 May 2011 (EDT)&lt;br /&gt;
:They are related in the same way that Orion Pax is related to G1 Optimus Prime.  --[[User:Andrusi|Andrusi]] 10:51, 30 May 2011 (EDT)&lt;br /&gt;
: Marissa = Marissa.  Same continuity and everything.  --[[User:ItsWalky|ItsWalky]] 11:02, 30 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== I don&#039;t know if this was what you are looking for when you asked for Kiss Players radio play translations ,but i hope this helps . ==&lt;br /&gt;
&lt;br /&gt;
I found this on Youtube cause I LOVE Melissa and noticed in that Holy Grail thingy that you guys needed Kiss Players radio play translations .I hope this helps ,even if it doesn&#039;t it is still pretty cool and CUTE .I did not make it so that is noted .Here is the link so you guys can go and look to see if it what is needed ,it is the only one i can find ,if it helps i will try to find more .[http://www.youtube.com/watch?v=6ZvUg2c649Y]&lt;br /&gt;
--[[User:Michael Alex Kawa|Melissa]] 18:25, 2 June 2011 (EDT)&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I also found this site ,it gives a brief description of the radio play ,again i hope this helps .[http://www.toyvey.com/kisskiss/radioplay/index.html]--[[User:Michael Alex Kawa|Melissa]] 14:32, 3 June 2011 (EDT)&lt;br /&gt;
:I haven&#039;t looked at the material myself yet (I&#039;m afraid it&#039;ll make me have to clean myself until I bleed to get the stain out) but if it&#039;s legit, then thank you very, VERY much.  This stuff needs to be cataloged to serve as a warning to future generations. -- [[User:Semysane|Semysane]] 07:25, 5 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The multiverse ==&lt;br /&gt;
&lt;br /&gt;
So, at BotCon, Aaron Archer declared the Aligned continuity separate from the old, more meta multiverse. How does everyone want to approach this? Separate the aligned information about Primus, Unicron and the members of the 13, or keep it together for easy access and lack of confusion just as one article covers the various versions of the Matrix, or Energon, or the AllSpark? [[User:Alientraveller|Alientraveller]] 05:06, 6 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Moving from Wikia ==&lt;br /&gt;
&lt;br /&gt;
Hello guys, can anyone give me some advice about how to leave Wikia? I mostly need advice about easily moving content. I found that Wikia provides a database dump as an XML file with all page content except files, and with the page histories. I really need to have the page histories. I installed MediaWiki on my PC for testing, with EasyPHP for the database, and importing the XML file actually doesn&#039;t work. It says &amp;quot;Import failed: Loss of session data. Please try again.&amp;quot; So I guess I set up my database too quickly and forgot some things. This was just for quick testing after all. Did you follow that template for moving, or something else? I&#039;d really appreciate any advice and help from you! Cheers. [[User:Klow|Klow]] 07:36, 21 June 2011 (EDT)&lt;br /&gt;
:Right out of the gate, you need to go over EVERY page you download before you go live, because Wikia inserted code that provides linkbacks to Wikia in them, meaning your pages will be providing THEM with hits. I do not know exactly what process is involved, but it&#039;s a scumfuck move of theirs that you should be aware of. --[[User:M Sipher|M Sipher]] 14:18, 21 June 2011 (EDT)&lt;br /&gt;
::Nice to know, thanks. But what about what I mentioned above? How do I start and all? [[User:Klow|Klow]] 17:46, 21 June 2011 (EDT)&lt;br /&gt;
:::A helpful resource for leaving Wikia is the [http://awa.shoutwiki.com/ Anti-Wikia Alliance site], which has useful info on departing from Wikia. The &amp;quot;loss of session data&amp;quot; usually means that you just have to try again. --[[User:Abates|abates]] 18:02, 21 June 2011 (EDT)&lt;br /&gt;
:I&#039;m just the server architecture guy, so I can&#039;t help with the XML import, but let me warn you right now, Mediawiki for a moderate-traffic site is a PIG.  Get a server geek to help you out, as we&#039;ve got a buttload of cache, and STILL have performance issues from time to time.  It&#039;s all stuff I can probably fix, if I ever have the free time to dedicate to the problem, but it&#039;s definitely a big old pain in the rear. --[[User:McFly|McFly]] 08:27, 22 June 2011 (EDT)&lt;br /&gt;
::Shoutwiki has been down for some time now, so the Anti-Wikia Alliance can&#039;t really help... :/ McFly, you mean I shouldn&#039;t stick to Mediawiki? [[User:Klow|Klow]] 07:23, 23 June 2011 (EDT)&lt;br /&gt;
:::I mean that you should make sure that whoever you&#039;ve got really knows how to tweak your wiki installation to stand up to the traffic.  Wikia is terrible at a great many things.  Providing high-availability Mediawiki service to their userbase is NOT one of them.--[[User:McFly|McFly]] 12:15, 24 June 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=600653</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=600653"/>
		<updated>2011-06-22T12:27:48Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Moving from Wikia */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Transformers: Exodus|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Transformers: Exodus|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Transformers: Exodus|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
What about block quotes? The page for Transformers (2007) is full of them.  I think there should be a limit on how long the quote can be.--[[User:Megatron Prime|Megatron Prime]] 16:48, 19 May 2011 (EDT)&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Page views==&lt;br /&gt;
Where have they gone? I believe that they have disappeared from down the pages since the move a few weeks ago. Can they be put back? [[User:Geewunling|Geewunling]] 16:09, 29 May 2011 (EDT)&lt;br /&gt;
: I don&#039;t recall pageviews... What in specific are you talking about?  --[[User:ItsWalky|ItsWalky]] 16:12, 29 May 2011 (EDT)&lt;br /&gt;
::I guess [http://tfwiki.net/wiki/Special:Popularpages popular pages]? [[User:Interrobang|—Interrobang]] 16:20, 29 May 2011 (EDT)&lt;br /&gt;
:::Yeah those, how often a page has been visited. I kinda liked keeping tabs on relative popularity in pages (like how Mayumi and Shinichi &#039;&#039;never&#039;&#039; lost their 2:1 view ratio). [[User:Geewunling|Geewunling]] 16:24, 29 May 2011 (EDT)&lt;br /&gt;
::::The broken popular pages has apparently been a thing lately, as I noticed Abates was removing and re-adding the link to [[MediaWiki:Recentchangestext]] earlier this month. Maybe he knows more about it? --[[User:Apoc|Apoc]] 18:41, 29 May 2011 (EDT)&lt;br /&gt;
:::::No more than anyone else. I noticed it was gone and removed it from the template, but then it came back when we did the move so I readded it. I guess it got removed again, possibly for performance reasons? --[[User:Abates|abates]] 18:58, 29 May 2011 (EDT)&lt;br /&gt;
::::::If I had to make a poorly-educated guess, the pageview thing sounds exactly like one of the many things I had to remove from Shortpacked.com to keep it from lagging so so badly.  Lots of neat little things like page tracking and stuff like that used to be on there, but they were more trouble, resources-wise, than they were worth.  --[[User:ItsWalky|ItsWalky]] 19:20, 29 May 2011 (EDT)&lt;br /&gt;
:::::::I didn&#039;t change anything, but I generally make it a point to keep away from the Mediawiki software config, for fear of breaking that which I don&#039;t understand. --[[User:McFly|McFly]] 13:07, 9 June 2011 (EDT)&lt;br /&gt;
::::::::May have been Scout I guess? Looks like [http://www.mediawiki.org/wiki/Manual:$wgDisableCounters $wgDisableCounters] got turned on at some point anyway. --[[User:Abates|abates]] 17:02, 9 June 2011 (EDT)&lt;br /&gt;
:::::::::Wait, that WAS me.  $wgDisableCounters is supposed to be off for squid-cached installations anyway, since it doesn&#039;t actually work when you add a cache. --[[User:McFly|McFly]] 21:26, 12 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Why is Melissa from Kiss Players on the same Page as Marissa Faireborn from G1? ==&lt;br /&gt;
&lt;br /&gt;
I know they are some how connected ,but i see the two as different as G1 Starscream is to Animated Starscream ,maybe the same history ,but a little different.--[[User:Michael Alex Kawa|Michael Alex Kawa]] 10:43, 30 May 2011 (EDT)&lt;br /&gt;
:They are related in the same way that Orion Pax is related to G1 Optimus Prime.  --[[User:Andrusi|Andrusi]] 10:51, 30 May 2011 (EDT)&lt;br /&gt;
: Marissa = Marissa.  Same continuity and everything.  --[[User:ItsWalky|ItsWalky]] 11:02, 30 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== I don&#039;t know if this was what you are looking for when you asked for Kiss Players radio play translations ,but i hope this helps . ==&lt;br /&gt;
&lt;br /&gt;
I found this on Youtube cause I LOVE Melissa and noticed in that Holy Grail thingy that you guys needed Kiss Players radio play translations .I hope this helps ,even if it doesn&#039;t it is still pretty cool and CUTE .I did not make it so that is noted .Here is the link so you guys can go and look to see if it what is needed ,it is the only one i can find ,if it helps i will try to find more .[http://www.youtube.com/watch?v=6ZvUg2c649Y]&lt;br /&gt;
--[[User:Michael Alex Kawa|Melissa]] 18:25, 2 June 2011 (EDT)&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I also found this site ,it gives a brief description of the radio play ,again i hope this helps .[http://www.toyvey.com/kisskiss/radioplay/index.html]--[[User:Michael Alex Kawa|Melissa]] 14:32, 3 June 2011 (EDT)&lt;br /&gt;
:I haven&#039;t looked at the material myself yet (I&#039;m afraid it&#039;ll make me have to clean myself until I bleed to get the stain out) but if it&#039;s legit, then thank you very, VERY much.  This stuff needs to be cataloged to serve as a warning to future generations. -- [[User:Semysane|Semysane]] 07:25, 5 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The multiverse ==&lt;br /&gt;
&lt;br /&gt;
So, at BotCon, Aaron Archer declared the Aligned continuity separate from the old, more meta multiverse. How does everyone want to approach this? Separate the aligned information about Primus, Unicron and the members of the 13, or keep it together for easy access and lack of confusion just as one article covers the various versions of the Matrix, or Energon, or the AllSpark? [[User:Alientraveller|Alientraveller]] 05:06, 6 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Moving from Wikia ==&lt;br /&gt;
&lt;br /&gt;
Hello guys, can anyone give me some advice about how to leave Wikia? I mostly need advice about easily moving content. I found that Wikia provides a database dump as an XML file with all page content except files, and with the page histories. I really need to have the page histories. I installed MediaWiki on my PC for testing, with EasyPHP for the database, and importing the XML file actually doesn&#039;t work. It says &amp;quot;Import failed: Loss of session data. Please try again.&amp;quot; So I guess I set up my database too quickly and forgot some things. This was just for quick testing after all. Did you follow that template for moving, or something else? I&#039;d really appreciate any advice and help from you! Cheers. [[User:Klow|Klow]] 07:36, 21 June 2011 (EDT)&lt;br /&gt;
:Right out of the gate, you need to go over EVERY page you download before you go live, because Wikia inserted code that provides linkbacks to Wikia in them, meaning your pages will be providing THEM with hits. I do not know exactly what process is involved, but it&#039;s a scumfuck move of theirs that you should be aware of. --[[User:M Sipher|M Sipher]] 14:18, 21 June 2011 (EDT)&lt;br /&gt;
::Nice to know, thanks. But what about what I mentioned above? How do I start and all? [[User:Klow|Klow]] 17:46, 21 June 2011 (EDT)&lt;br /&gt;
:::A helpful resource for leaving Wikia is the [http://awa.shoutwiki.com/ Anti-Wikia Alliance site], which has useful info on departing from Wikia. The &amp;quot;loss of session data&amp;quot; usually means that you just have to try again. --[[User:Abates|abates]] 18:02, 21 June 2011 (EDT)&lt;br /&gt;
:I&#039;m just the server architecture guy, so I can&#039;t help with the XML import, but let me warn you right now, Mediawiki for a moderate-traffic site is a PIG.  Get a server geek to help you out, as we&#039;ve got a buttload of cache, and STILL have performance issues from time to time.  It&#039;s all stuff I can probably fix, if I ever have the free time to dedicate to the problem, but it&#039;s definitely a big old pain in the rear. --[[User:McFly|McFly]] 08:27, 22 June 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=596100</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=596100"/>
		<updated>2011-06-13T01:26:33Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Page views */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Transformers: Exodus|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Transformers: Exodus|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Transformers: Exodus|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
What about block quotes? The page for Transformers (2007) is full of them.  I think there should be a limit on how long the quote can be.--[[User:Megatron Prime|Megatron Prime]] 16:48, 19 May 2011 (EDT)&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Page views==&lt;br /&gt;
Where have they gone? I believe that they have disappeared from down the pages since the move a few weeks ago. Can they be put back? [[User:Geewunling|Geewunling]] 16:09, 29 May 2011 (EDT)&lt;br /&gt;
: I don&#039;t recall pageviews... What in specific are you talking about?  --[[User:ItsWalky|ItsWalky]] 16:12, 29 May 2011 (EDT)&lt;br /&gt;
::I guess [http://tfwiki.net/wiki/Special:Popularpages popular pages]? [[User:Interrobang|—Interrobang]] 16:20, 29 May 2011 (EDT)&lt;br /&gt;
:::Yeah those, how often a page has been visited. I kinda liked keeping tabs on relative popularity in pages (like how Mayumi and Shinichi &#039;&#039;never&#039;&#039; lost their 2:1 view ratio). [[User:Geewunling|Geewunling]] 16:24, 29 May 2011 (EDT)&lt;br /&gt;
::::The broken popular pages has apparently been a thing lately, as I noticed Abates was removing and re-adding the link to [[MediaWiki:Recentchangestext]] earlier this month. Maybe he knows more about it? --[[User:Apoc|Apoc]] 18:41, 29 May 2011 (EDT)&lt;br /&gt;
:::::No more than anyone else. I noticed it was gone and removed it from the template, but then it came back when we did the move so I readded it. I guess it got removed again, possibly for performance reasons? --[[User:Abates|abates]] 18:58, 29 May 2011 (EDT)&lt;br /&gt;
::::::If I had to make a poorly-educated guess, the pageview thing sounds exactly like one of the many things I had to remove from Shortpacked.com to keep it from lagging so so badly.  Lots of neat little things like page tracking and stuff like that used to be on there, but they were more trouble, resources-wise, than they were worth.  --[[User:ItsWalky|ItsWalky]] 19:20, 29 May 2011 (EDT)&lt;br /&gt;
:::::::I didn&#039;t change anything, but I generally make it a point to keep away from the Mediawiki software config, for fear of breaking that which I don&#039;t understand. --[[User:McFly|McFly]] 13:07, 9 June 2011 (EDT)&lt;br /&gt;
::::::::May have been Scout I guess? Looks like [http://www.mediawiki.org/wiki/Manual:$wgDisableCounters $wgDisableCounters] got turned on at some point anyway. --[[User:Abates|abates]] 17:02, 9 June 2011 (EDT)&lt;br /&gt;
:::::::::Wait, that WAS me.  $wgDisableCounters is supposed to be off for squid-cached installations anyway, since it doesn&#039;t actually work when you add a cache. --[[User:McFly|McFly]] 21:26, 12 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Why is Melissa from Kiss Players on the same Page as Marissa Faireborn from G1? ==&lt;br /&gt;
&lt;br /&gt;
I know they are some how connected ,but i see the two as different as G1 Starscream is to Animated Starscream ,maybe the same history ,but a little different.--[[User:Michael Alex Kawa|Michael Alex Kawa]] 10:43, 30 May 2011 (EDT)&lt;br /&gt;
:They are related in the same way that Orion Pax is related to G1 Optimus Prime.  --[[User:Andrusi|Andrusi]] 10:51, 30 May 2011 (EDT)&lt;br /&gt;
: Marissa = Marissa.  Same continuity and everything.  --[[User:ItsWalky|ItsWalky]] 11:02, 30 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== I don&#039;t know if this was what you are looking for when you asked for Kiss Players radio play translations ,but i hope this helps . ==&lt;br /&gt;
&lt;br /&gt;
I found this on Youtube cause I LOVE Melissa and noticed in that Holy Grail thingy that you guys needed Kiss Players radio play translations .I hope this helps ,even if it doesn&#039;t it is still pretty cool and CUTE .I did not make it so that is noted .Here is the link so you guys can go and look to see if it what is needed ,it is the only one i can find ,if it helps i will try to find more .[http://www.youtube.com/watch?v=6ZvUg2c649Y]&lt;br /&gt;
--[[User:Michael Alex Kawa|Melissa]] 18:25, 2 June 2011 (EDT)&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I also found this site ,it gives a brief description of the radio play ,again i hope this helps .[http://www.toyvey.com/kisskiss/radioplay/index.html]--[[User:Michael Alex Kawa|Melissa]] 14:32, 3 June 2011 (EDT)&lt;br /&gt;
:I haven&#039;t looked at the material myself yet (I&#039;m afraid it&#039;ll make me have to clean myself until I bleed to get the stain out) but if it&#039;s legit, then thank you very, VERY much.  This stuff needs to be cataloged to serve as a warning to future generations. -- [[User:Semysane|Semysane]] 07:25, 5 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The multiverse ==&lt;br /&gt;
&lt;br /&gt;
So, at BotCon, Aaron Archer declared the Aligned continuity separate from the old, more meta multiverse. How does everyone want to approach this? Separate the aligned information about Primus, Unicron and the members of the 13, or keep it together for easy access and lack of confusion just as one article covers the various versions of the Matrix, or Energon, or the AllSpark? [[User:Alientraveller|Alientraveller]] 05:06, 6 June 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=594651</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=594651"/>
		<updated>2011-06-09T17:07:24Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Page views */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Transformers: Exodus|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Transformers: Exodus|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Transformers: Exodus|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
What about block quotes? The page for Transformers (2007) is full of them.  I think there should be a limit on how long the quote can be.--[[User:Megatron Prime|Megatron Prime]] 16:48, 19 May 2011 (EDT)&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Page views==&lt;br /&gt;
Where have they gone? I believe that they have disappeared from down the pages since the move a few weeks ago. Can they be put back? [[User:Geewunling|Geewunling]] 16:09, 29 May 2011 (EDT)&lt;br /&gt;
: I don&#039;t recall pageviews... What in specific are you talking about?  --[[User:ItsWalky|ItsWalky]] 16:12, 29 May 2011 (EDT)&lt;br /&gt;
::I guess [http://tfwiki.net/wiki/Special:Popularpages popular pages]? [[User:Interrobang|—Interrobang]] 16:20, 29 May 2011 (EDT)&lt;br /&gt;
:::Yeah those, how often a page has been visited. I kinda liked keeping tabs on relative popularity in pages (like how Mayumi and Shinichi &#039;&#039;never&#039;&#039; lost their 2:1 view ratio). [[User:Geewunling|Geewunling]] 16:24, 29 May 2011 (EDT)&lt;br /&gt;
::::The broken popular pages has apparently been a thing lately, as I noticed Abates was removing and re-adding the link to [[MediaWiki:Recentchangestext]] earlier this month. Maybe he knows more about it? --[[User:Apoc|Apoc]] 18:41, 29 May 2011 (EDT)&lt;br /&gt;
:::::No more than anyone else. I noticed it was gone and removed it from the template, but then it came back when we did the move so I readded it. I guess it got removed again, possibly for performance reasons? --[[User:Abates|abates]] 18:58, 29 May 2011 (EDT)&lt;br /&gt;
::::::If I had to make a poorly-educated guess, the pageview thing sounds exactly like one of the many things I had to remove from Shortpacked.com to keep it from lagging so so badly.  Lots of neat little things like page tracking and stuff like that used to be on there, but they were more trouble, resources-wise, than they were worth.  --[[User:ItsWalky|ItsWalky]] 19:20, 29 May 2011 (EDT)&lt;br /&gt;
:::::::I didn&#039;t change anything, but I generally make it a point to keep away from the Mediawiki software config, for fear of breaking that which I don&#039;t understand. --[[User:McFly|McFly]] 13:07, 9 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Why is Melissa from Kiss Players on the same Page as Marissa Faireborn from G1? ==&lt;br /&gt;
&lt;br /&gt;
I know they are some how connected ,but i see the two as different as G1 Starscream is to Animated Starscream ,maybe the same history ,but a little different.--[[User:Michael Alex Kawa|Michael Alex Kawa]] 10:43, 30 May 2011 (EDT)&lt;br /&gt;
:They are related in the same way that Orion Pax is related to G1 Optimus Prime.  --[[User:Andrusi|Andrusi]] 10:51, 30 May 2011 (EDT)&lt;br /&gt;
: Marissa = Marissa.  Same continuity and everything.  --[[User:ItsWalky|ItsWalky]] 11:02, 30 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== I don&#039;t know if this was what you are looking for when you asked for Kiss Players radio play translations ,but i hope this helps . ==&lt;br /&gt;
&lt;br /&gt;
I found this on Youtube cause I LOVE Melissa and noticed in that Holy Grail thingy that you guys needed Kiss Players radio play translations .I hope this helps ,even if it doesn&#039;t it is still pretty cool and CUTE .I did not make it so that is noted .Here is the link so you guys can go and look to see if it what is needed ,it is the only one i can find ,if it helps i will try to find more .[http://www.youtube.com/watch?v=6ZvUg2c649Y]&lt;br /&gt;
--[[User:Michael Alex Kawa|Melissa]] 18:25, 2 June 2011 (EDT)&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
I also found this site ,it gives a brief description of the radio play ,again i hope this helps .[http://www.toyvey.com/kisskiss/radioplay/index.html]--[[User:Michael Alex Kawa|Melissa]] 14:32, 3 June 2011 (EDT)&lt;br /&gt;
:I haven&#039;t looked at the material myself yet (I&#039;m afraid it&#039;ll make me have to clean myself until I bleed to get the stain out) but if it&#039;s legit, then thank you very, VERY much.  This stuff needs to be cataloged to serve as a warning to future generations. -- [[User:Semysane|Semysane]] 07:25, 5 June 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== The multiverse ==&lt;br /&gt;
&lt;br /&gt;
So, at BotCon, Aaron Archer declared the Aligned continuity separate from the old, more meta multiverse. How does everyone want to approach this? Separate the aligned information about Primus, Unicron and the members of the 13, or keep it together for easy access and lack of confusion just as one article covers the various versions of the Matrix, or Energon, or the AllSpark? [[User:Alientraveller|Alientraveller]] 05:06, 6 June 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=589407</id>
		<title>MediaWiki:Tech</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki:Tech&amp;diff=589407"/>
		<updated>2011-05-26T15:41:11Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Hosting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This &#039;&#039;&#039;Tech Portal&#039;&#039;&#039; is to serve as a clearinghouse for information related to technical issues on Transformers Wiki.&lt;br /&gt;
&lt;br /&gt;
This page&#039;s purpose is to hold information-- any tech issues, questions or initiatives should be discussed on the main [[Transformers Wiki talk:Community Portal|Community Portal]] pages where everyone can weigh in. This page isn&#039;t an attempt to split-out discussion, merely to archive its results.&lt;br /&gt;
&lt;br /&gt;
==Information==&lt;br /&gt;
===Coding Standards===&lt;br /&gt;
* Transformers Wiki:Semantic linking initiative&lt;br /&gt;
&lt;br /&gt;
===Scripting===&lt;br /&gt;
* Transformers Wiki&#039;s editable javascript file is located at [[MediaWiki:Common.css]]. It can only be altered by admins.&lt;br /&gt;
* Your personal javascript file can be located at [[Special:Mypage/monacobook.js|User:Username/monacobook.js]] or [[Special:Mypage/monoobook.js|User:Username/monobook.js]]. There does not appear to be a corresponding User:Username/common.js, annoyingly.&lt;br /&gt;
* [[User:Derik/javascript]] — Derik&#039;s loose documentation of the likely-to-be-useful Javascript functions on TFWiki. (You will not be able to use any of these functions without editing either the site&#039;s or your personal .js file though.)&lt;br /&gt;
&lt;br /&gt;
===Hosting===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Minor note:  Much of these notes are here to keep us all in the loop, and should be wikified a little more than I&#039;m going to get to tonight.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The current wiki, post Bookworm, is a metered, unmanaged [http://en.wikipedia.org/wiki/Virtual_private_server VPS] provided by [http://www.slicehost.com/ Slicehost.]&lt;br /&gt;
** This provides us with a dedicated server under the Xen virtualization software.  Our Linux distribution of choice was Debian 5.0, on a Xen-aware 2.6.24 SMP-capable kernel.&lt;br /&gt;
* As of June 2009, it is running in a semi-optimized state, with MediaWiki configured to utilize a [http://en.wikipedia.org/wiki/Squid_cache Squid] reverse proxy cache for all anonymous users, and a small [http://en.wikipedia.org/wiki/Memcached memcached] instance for all database queries.&lt;br /&gt;
** As of May 2011, functions are split between two boxes:  Front-end hosts Squid, Apache, and Postfix, and the Back-end server hosts MySQL and Memcached.  Disk IO contention has dropped to usable, if not ideal levels.&lt;br /&gt;
** Squid has also been updated to use the AUFS file handler instead of UFS.  This uses more disk I/O, but parallelizes cache access for better concurrency.  I&#039;m also investigating the COSS handler, but that&#039;s currently untested.&lt;br /&gt;
* MySQL is largely using InnoDB tables, which can be backed up in a live state, with the purchase of a hefty Innobackup license.  This is not in the cards, so we are instead using LVM snapshots from Slicehost.  This has been tested, and functions as expected.&lt;br /&gt;
* FULL local filesystem backups are done via snapshot nightly and weekly.  While these cannot be exported to another server, they do allow us to revert to the previous day&#039;s database/configuration/file library without much hassle.&lt;br /&gt;
** Long term, we should find someone to host an rsync backup of the entire /var/lib/mediawiki directory, along with an offsite replica of the MySQL database.  While it would take a while to reupload the data, this would effectively preserve the wiki in the event of a complete catastrophic datacenter failure.  (We&#039;d be down for a while, but we wouldn&#039;t lose more than a day&#039;s work.)&lt;br /&gt;
* PHP session handling is done via the file handler, as the default Debian PHP package does NOT support the mm handler.&lt;br /&gt;
** This was a key issue with many of our page loading glitches when the wiki first launched on this platform.&lt;br /&gt;
====Configuration Settings====&lt;br /&gt;
Memcached:  192MB allocated&lt;br /&gt;
APC:  40MB allocated&lt;br /&gt;
====Software versions====&lt;br /&gt;
* OS: Debian 5.0, Kernel 2.6.24&lt;br /&gt;
* Squid: 2.7&lt;br /&gt;
* Apache: 2.2.9&lt;br /&gt;
* Memcached: 1.2.2&lt;br /&gt;
* MySQL: 5.0&lt;br /&gt;
* MediaWiki:  1.12.0&lt;br /&gt;
&lt;br /&gt;
===Future ideas===&lt;br /&gt;
* It is possible to host a Mediawiki installation on a Cloud Hosting provider, such as Rackspace&#039;s Mosso, or Amazon&#039;s EC2.  This would basically give us a bomb-proof installation, &#039;&#039;as long as we also maintain proper backups.&#039;&#039;&lt;br /&gt;
* Ideally, we should split the site into multiple servers:  One for the database, one for the Squid cache(s), and one for the Apache webserver/memcached.&lt;br /&gt;
* As long as we&#039;re at it, a local DB replica would allow us to back up just the database more frequently, without any impact on site performance.  If we really want to get fancy, we could keep weekly, daily, and hourly backups, which could then be recovered within minutes.  Right now, if we roll back the server, we go back in time for both the database &#039;&#039;&#039;and&#039;&#039;&#039; the images.&lt;br /&gt;
* Memcached only gets better as we allocate more RAM.  This may become a priority, if we have the RAM to spare on the current box.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:TFWiki.net]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=587136</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=587136"/>
		<updated>2011-05-19T15:04:17Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* Eagc7&amp;#039;s movie comic section edits */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Exodus: The Official History of the War for Cybertron|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Exodus: The Official History of the War for Cybertron|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Exodus: The Official History of the War for Cybertron|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::No wonder the connection becomes smooth again recently. Nice Works!! --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 22:45, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::::::Yeah, I&#039;d noticed that the site was back to normal. Thanks for the hard work. --[[User:Khajidha|Khajidha]] 22:52, 17 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Thanks for fixing our wiki! [[User:JW|JW]] 07:15, 18 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Eagc7&#039;s movie comic section edits ==&lt;br /&gt;
&lt;br /&gt;
Lately Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is good. However, Eagc7 has been editing the somewhat neglected movie prequel comic sections in character articles, which is bad. I know he tries, but whenever he does this sort of thing, he just ends up creating work for somebody else to clean up, and frankly, it&#039;s easier to write stuff from scratch than it is to fix somebody&#039;s spelling &amp;amp; grammar, as well as trying to make the text fit the tone and style of the paragraphs surrounding it (which is important considering the Foundation comics take place during the other Movie prequel comics). I haven&#039;t read Foundation and Rising Storm, [http://tfwiki.net/wiki/Special:Contributions/Eagc7 so I can&#039;t fix all of this myself], but that seems like a fair bit of work to fix at a time when the wiki was experiencing random downtime and BotCon is rapidly approaching (meaning a good chunk of our regular editors will not be able to edit much, and in any case would be updating stuff about/from BotCon). Like I said, I know he&#039;s trying, and he&#039;s getting much better than he used to be, but... maybe he should leave fiction edits to the professionals. --[[User:FFN|FFN]] 16:27, 18 May 2011 (EDT)&lt;br /&gt;
:Take it up with him via his Talk Page or the E-mail a User link.  If there&#039;s really a stylistic problem, then we need a Style Guide for new users to reference.--[[User:McFly|McFly]] 11:04, 19 May 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=586329</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=586329"/>
		<updated>2011-05-17T19:43:50Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* TFwiki in the past week */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Exodus: The Official History of the War for Cybertron|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Exodus: The Official History of the War for Cybertron|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Exodus: The Official History of the War for Cybertron|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;br /&gt;
:::::Cowboy time.  We&#039;ve moved the application server and cache to another box, and synced over the contents.  If anything&#039;s missing, we can try to sync it over from the old webserver, but it wouldn&#039;t be off by more than a few minutes, so here&#039;s hoping that we&#039;re back in business!--[[User:McFly|McFly]] 15:43, 17 May 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=584855</id>
		<title>MediaWiki talk:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=MediaWiki_talk:Community_Portal&amp;diff=584855"/>
		<updated>2011-05-13T20:15:06Z</updated>

		<summary type="html">&lt;p&gt;McFly: /* TFwiki in the past week */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NEWSECTIONLINK__&lt;br /&gt;
&lt;br /&gt;
This is the place for discussion of topics that affect the entire wiki.  Some topics that would ordinarily be here have merited their own pages:&lt;br /&gt;
&lt;br /&gt;
{{chapters|title=Specific Discussion Subjects|align=left|content=&lt;br /&gt;
&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Moving From Wikia:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving|Arriving]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving|Leaving]]&lt;br /&gt;
* [[Transformers Wiki:Community Portal/Complaints|Complaints]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;New Ad Policy:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki:Ads|Ads]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Bookworm Database-Crash:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Damage Control Central|Damage Control Central]]&lt;br /&gt;
* [[Project:Bookworm Crash]]&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Leaving2|Leaving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Server Move:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Arriving2|Arriving Take 2]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Relicensing:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Relicensing|Relicensing]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;Dealing With Vandalism:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/Vandalism|Vandalism]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;div class=&amp;quot;list-header&amp;quot;&amp;gt;&#039;&#039;&#039;GoBots Sister Wiki:&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Transformers Wiki talk:Community Portal/GoBots|Discussion on the place of GoBots in this wiki]]&lt;br /&gt;
}}&amp;lt;br/&amp;gt; &lt;br /&gt;
&amp;lt;!--BEGIN ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
{{:{{FULLPAGENAMEE}}/Archive}}&lt;br /&gt;
&amp;lt;!--END ARCHIVE NAV INCLUDE--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Didn&#039;t we have a Transformers Appearances/References in Other Media page?==&lt;br /&gt;
I could have sworn we did, mentioning stuff like Family guy etc.  If we don&#039;t have such a page, would it be allowed to be created? [[User:Drmick|Drmick]] 11:53, 18 December 2010 (EST)&lt;br /&gt;
:Unless it&#039;s officially sanctioned by Hasbro, no, we do not mention Transformer appearances in other media. --[[User:NCZ|NCZ]] 11:54, 18 December 2010 (EST)&lt;br /&gt;
:: If it ever existed, it would have been destroyed with fire in about 30 seconds.  --[[User:ItsWalky|ItsWalky]] 12:46, 18 December 2010 (EST)&lt;br /&gt;
::: Of course, if we did have such a page, we could use it as a lighting rod, keep anons from adding something to Soundwave&#039;s page every time Seth Green says the word &amp;quot;transformers.&amp;quot; -- [[User:Semysane|Semysane]] 16:28, 18 December 2010 (EST)&lt;br /&gt;
::::Of course, NO. Discussion over. --[[User:M Sipher|M Sipher]] 16:45, 18 December 2010 (EST)&lt;br /&gt;
::::Discussion not quite over. If the unofficial nature of the topic is the reason why it is not allowed, then there are several articles that already exist that are pushing boundaries on the wiki. I would have thought that the biggest problem would be it&#039;s size.[[User:Drmick|Drmick]] 09:26, 20 December 2010 (EST)&lt;br /&gt;
:::::Yeah, that&#039;d be the other big reason. There&#039;s so many such references it would be impossible to keep track of them all. It would also involve making sure what&#039;s added there is actually a TF reference. And given all the Toms, Dicks and Harrys that&#039;ll come out of the woodwork to add such stuff,  that&#039;s going to be more trouble than not having a page. Best not to get a larger headache for the sake of reducing a smaller one. --[[User:Tigerpaw28|Tigerpaw28]] 12:44, 20 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Knockoff warning&amp;quot; for toy sections?==&lt;br /&gt;
Just something that occurred to me... as I skimmed this page http://www.highendtfs.com/?q=node/17 and looked at alllllll the &amp;quot;could be mistaken for real and paid stupid money for&amp;quot; knockoffs... is there any objection to some form of link to this in the relevant toy sections? Sadly, the page lacks a &amp;quot;jump to&amp;quot; feature of any kind, but alerting people to the potential danger of dropping several hundred on what they think is a genuine Defensor box set... --[[User:M Sipher|M Sipher]] 02:50, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:I think it skirts the line with our &amp;quot;we don&#039;t really discuss knockoffs&amp;quot; policy, but on the other hand, yeah, it&#039;s a useful bit of information, almost to the point where we could stand to have a special page about &#039;&#039;these specific knockoffs&#039;&#039;.  I am not opposed to adding a link to that site, no, as long as it&#039;s got a massive and specific caveat attached to it (maybe even with a special template box thing (&amp;quot;A Prime Problem&amp;quot;-themed perhaps?)).  Hell, maybe the highendtfs people would be willing to throw up navigation in exchange for the inevitable deluge of hits - anyone got contact info for the owner?  [[User:Hooper X|-hx]] 09:11, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::It&#039;s worth noting that there are some very well-done Henkei seekers knockoffs now, too.  The really expensive ones even, like Thundercracker.  Their sections could use warnings as well. -- [[User:Semysane|Semysane]] 17:56, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::Are they in knockoff PACKAGING that is meant to look like the real thing? That&#039;s the really tricky part. G1 MIB shit is much, much more expensive. --[[User:M Sipher|M Sipher]] 20:27, 19 December 2010 (EST)&lt;br /&gt;
::::Yes, they are: http://www.seibertron.com/transformers/news/buyer-beware-update-on-ko-henkei-seekers/20380/ -- [[User:Semysane|Semysane]] 23:03, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::I am not sure I want to attach more template boxes to pages as is. Especially over something like knockoffs. [[User:Interrobang|—Interrobang]] 20:55, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I&#039;d &#039;&#039;thought&#039;&#039; about a template, but... ehn. I think a simple link under the TFU.info (or whatever), perhaps with a bolded &amp;quot;&#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;&amp;quot; text. Like...&lt;br /&gt;
&lt;br /&gt;
::::*&#039;&#039;[http://www.highendtfs.com/?q=node/17 &#039;&#039;&#039;Knockoff alert&#039;&#039;&#039;: More information on packaged imitations of this toy at HighendTFs.com]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::Thoughts? This would ONLY cover stuff that is in packaging meant to deceive you by looking as real as they can get it. --[[User:M Sipher|M Sipher]] 21:05, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I could agree with that. This is a step beyond your standard knock off crap, some notice might be appropriate.--[[User:Khajidha|Khajidha]] 21:44, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I think it is a good idea to have it, since it is useful. This is different from putting info of some KO or unlicensed products on the page. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:49, 19 December 2010 (EST)&lt;br /&gt;
&lt;br /&gt;
== Extension:Oversight ==&lt;br /&gt;
&lt;br /&gt;
Quite a few times I&#039;ve seen admins delete and undelete pages to clean out bad revisions. Why they do this I have no idea, since we have [http://www.mediawiki.org/wiki/Extension:Oversight the Oversight extension] installed.&lt;br /&gt;
&lt;br /&gt;
Perhaps we should look into granting some people &amp;quot;oversighter&amp;quot; access? --[[User:-Blackout-|-Blackout-]] 05:09, 25 December 2010 (EST)&lt;br /&gt;
:I&#039;ve just noticed that deleting and then restoring pages in the manner mentioned above has the side effect of resetting a page&#039;s page views stats, so that&#039;s another point in favour of the Oversight extension. --[[User:Abates|abates]] 18:40, 11 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia, revisited ==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Incidents#The_.22Campaign_of_Deletion.22_against_the_Transformers_Wiki_Project_by_NotARealWord_and_TFWiki.net]&lt;br /&gt;
&lt;br /&gt;
Just in case anyone&#039;s interested. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 10:54, 5 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log back in)&lt;br /&gt;
:NEWSFLASH: Nobody cares. --[[User:M Sipher|M Sipher]] 16:21, 5 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Captcha to prevent spambots? ==&lt;br /&gt;
&lt;br /&gt;
Is there any way we could implement captcha to account creation to prevent the spambot problem we&#039;re having now? I&#039;ve seen other wikis use that measure. Maybe also disable new page creation by anons? [[User:Interrobang|—Interrobang]] 12:56, 6 January 2011 (EST)&lt;br /&gt;
:We already have CAPTCHA implemented on the account creation service. --[[Special:Contributions/84.193.193.10|84.193.193.10]] 13:09, 6 January 2011 (EST) (-Blackout-, can&#039;t be bothered to log in)&lt;br /&gt;
::Never mind, then! [[User:Interrobang|—Interrobang]] 13:30, 6 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Real world events by day Category ==&lt;br /&gt;
&lt;br /&gt;
These of course comprise every date of the year.  However, I notice recently people have been adding fictional events to these dates.  That basically invalidates the Category, since it&#039;s no longer comprised of only real-world events.  The fictional events should be moved out into another section, or the category name should be changed to &amp;quot;Events by day&amp;quot;.  Thoughts? --[[User:MistaTee|MistaTee]] 22:01, 9 January 2011 (EST)&lt;br /&gt;
:I agree with changing to &amp;quot;Events by day&amp;quot;. I would also support having separate fictional and real world sections on the pages. --[[User:Khajidha|Khajidha]] 22:38, 9 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Project Wonderful ads ==&lt;br /&gt;
&lt;br /&gt;
Um, guys, I found there [http://www.projectwonderful.com/img/uploads/pics/53018-1293943633.gif Non-official products] in the ads of CapturedPrey. I know the small ads are showing up randomly (and may not be controllable since we can&#039;t regulate them), but I think it is still need to be reported here. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 01:04, 16 January 2011 (EST)&lt;br /&gt;
: I don&#039;t mind them in the non-permanent ads.  TFSource used them all the time in their ads before we made them permanent sponsors.  It was only when we made them a permanent sponsor did we ask to make them free of third-party product.  --[[User:ItsWalky|ItsWalky]] 01:57, 16 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Games &amp;lt;strike&amp;gt;fiction&amp;lt;/strike&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Okay, now that [[User:Ascendron|Ascendron]] has flooded the character pages with stubs for 30 years worth of crappy Transformers games, can we reconsider how the Games sections are treated? I really don&#039;t think in-universe fiction descriptions are the way to handle it. [[War for Cybertron]] may&#039;ve had a plot, but the majority of TF games are more in the vein of &amp;quot;hit things until they stop coming&amp;quot;. A fiction section makes even less sense for games where the character selection is variable. &#039;&#039;&amp;quot;[[Hardhead (G1)#Transformers:_The_Headmasters|Hardhead]] may (or may not) have been present at this battle. Or this one. Or this...&amp;quot;&#039;&#039; Ditto for generic drone soldiers. Isn&#039;t there a way to address the games without trying to craft a sensical fiction for them? --[[User:Xaaron|Xaaron]] 08:46, 25 January 2011 (EST)&lt;br /&gt;
:I agree. The games should appear as merchandise on all relevant characters pages, but there is no need for a fiction write up for most games on those same pages. A generic write up on the game page should suffice. Something like &amp;quot;An Autobot warrior participated in a battle...&amp;quot;, with a character box listing all potential &amp;quot;Autobot warriors&amp;quot; (aka playable characters). --[[User:Khajidha|Khajidha]] 09:21, 25 January 2011 (EST)&lt;br /&gt;
::Moving games to merchandise sounds awful.  It would result in amazing amounts of lost information.  I have no idea what doing that would solve.  --[[User:ItsWalky|ItsWalky]] 09:44, 25 January 2011 (EST)&lt;br /&gt;
::I think it depends on the game - for example in the ROTF console game, while you CAN play as multiple characters, the game provides a suggested one for you.  IMO, that&#039;s who &amp;quot;actually&amp;quot; did the stuff depicted in the game (and the opposing side&#039;s campaign generally suggests it as well).  When you can just pick from a half-dozen dudes and it doesn&#039;t matter, then maybe a brief summary of the game&#039;s plot and a note.  &amp;quot;Jerkwagon was one of many Autobots involved in blah blah plot synopsis bluh.  NOTE: Such-and-such game allowed players to choose multiple protagonists, including Jerkwagon.&amp;quot;  [[User:Hooper X|-hx]] 13:19, 25 January 2011 (EST)&lt;br /&gt;
I agree that Games should be their own section -- there&#039;s certainly enough of them, and they should be treated differently than keychains and what-not. But I think an out-of-universe description of the games would be better in most cases. Instead of having to write vague text like &#039;&#039;&amp;quot;As Ultra Magnus searched for the truth behind Optimus Prime&#039;s death, he battled Trypticon in a game of death and suffering.&amp;quot;&#039;&#039;, which is about all the plot I could wrangle out of [[Transformers: Mystery of Convoy|Convoy no Nazo]] and tells you virtually nothing, we could write something more informative, like &#039;&#039;&amp;quot;Trypticon is the boss of Stage 10.&amp;quot;&#039;&#039;, and describe what actually happens in the game instead of trying to make it sound like believable fiction. --[[User:Xaaron|Xaaron]] 11:29, 25 January 2011 (EST)&lt;br /&gt;
:::My personal view on the matter is, from a character&#039;s page, I should be able to find EVERY place that character has appeared. And when we do list guys having an appearance when they&#039;re most likely an animation error in the far-background of an episode, I don&#039;t think there&#039;s any excuse to NOT list an appearance of a character wherever he might appear, including board and video games. Is that a lot of work? Yeah. But beneath all the jokes that make this place so great, this is still an encyclopedia, and purposely leaving out information out of an encyclopedia is wrong. Though I think Hooper X has the right idea... I doesn&#039;t have to be the most super-extensive write up. Heck, I was even going to suggest just having a link saying &amp;quot;See Return of Convoy article&amp;quot; or something like that. Also: I apologize if I had started getting very sloppy last night, but looking back, it was like 5 in the morning by the time I finished up. Yikes. --[[User:Ascendron|Ascendron]] 14:10, 25 January 2011 (EST)&lt;br /&gt;
::::I totally agree that the games should be dealt with on the character pages. I&#039;m just looking for an option other than a completely in-fiction description. --[[User:Xaaron|Xaaron]] 15:14, 25 January 2011 (EST)&lt;br /&gt;
::::: The first idea that comes to mind is having a subsection called &amp;quot;Gameplay&amp;quot; or something like that for each game write-up, something that would be similar to a note? Though really, my main solution for stuff like that has been, up to this point, to just stick a couple of notes in the game write-up, like on [[Cheetor (BW)|Cheetor]]&#039;s page. I&#039;ll keep on trying to think up other solutions though... --[[User:Ascendron|Ascendron]] 15:26, 25 January 2011 (EST)&lt;br /&gt;
::::Storylinks already serve as that, so what&#039;s the point of another link? [[User:Interrobang|—Interrobang]] 15:47, 25 January 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Fiction order guide? ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve been over the Style guides a few times trying to find if a page like this already exists, but it doesn&#039;t look like it. I&#039;ll be the first to admit that when adding in new fiction/game subsections to a character&#039;s article, I sometimes confuse and probably put them out of order. So I&#039;ve been wondering if a page that lists every fictional work and game in the proper order of each other would be a good idea? On one hand, it seems like an ABSURD amount of work for a style guide, one that would have to be CONSTANTLY updated as new things come out. On the other hand, it would be very handy to have a list to reference for character pages. Especially because it can get VERY frustrating trying to hunt down which book/cartoon/whatever came first in the same year. For those who don&#039;t understand what I&#039;m talking about, here&#039;s an example I quickly put together, using the [[Cheetor (BW)]] and [[Optimus Prime (G1)]] pages as reference.&lt;br /&gt;
&lt;br /&gt;
When listing a character&#039;s media appearances, use this sorting order:&lt;br /&gt;
*Fiction&lt;br /&gt;
**Generation 1 Marvel Comics continuity&lt;br /&gt;
**Generation 1 S.T.A.R.S. pack-in flyers&lt;br /&gt;
**Generation 1 cartoon continuity&lt;br /&gt;
**Generation 1 Kid Stuff Talking Story Books&lt;br /&gt;
**Generation 1 Big Looker Story Books&lt;br /&gt;
**Generation 1 Ladybird Books continuity&lt;br /&gt;
**&#039;&#039;Transformers in 3-D&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers PD Type&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic&lt;br /&gt;
**Beast Wars First wave toy bios&lt;br /&gt;
**Beast Wars Cartoon continuity&lt;br /&gt;
***Dawn of Future&#039;s Past&lt;br /&gt;
***&#039;&#039;Beast Wars&#039;&#039; cartoon&lt;br /&gt;
***Fast Action Battlers toyline&lt;br /&gt;
***3H &#039;&#039;Tales from the Beast Wars&#039;&#039; comics&lt;br /&gt;
***IDW &#039;&#039;Beast Wars&#039;&#039; comics&lt;br /&gt;
***&#039;&#039;Transformers Legends&#039;&#039; anthology&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; cartoon&lt;br /&gt;
***&#039;&#039;Beast Machines&#039;&#039; toy bio&lt;br /&gt;
***&#039;&#039;Universe&#039;&#039; comic&lt;br /&gt;
***&#039;&#039;Beast Wars Metals&#039;&#039; comic&lt;br /&gt;
***Beast Wars &#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comic&lt;br /&gt;
**Generation 1 Dreamwave comics continuity&lt;br /&gt;
**&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;&lt;br /&gt;
**&#039;&#039;Transformers/G.I. Joe&#039;&#039;&lt;br /&gt;
**Generation 1 IDW comics continuity&lt;br /&gt;
**&#039;&#039;Hearts of Steel&#039;&#039;&lt;br /&gt;
**&#039;&#039;Music Label&#039;&#039;&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; (pack-in comic)&lt;br /&gt;
**&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga&lt;br /&gt;
**Alternity&lt;br /&gt;
**&#039;&#039;Robot Heroes&#039;&#039; comic&lt;br /&gt;
**&#039;&#039;Universe&#039;&#039; cartoon&lt;br /&gt;
**Wings of Honor&lt;br /&gt;
&lt;br /&gt;
Is this a good idea? Would anyone actually like to see this kind of thing, or would I just be putting a whole bunch of work into something we don&#039;t need? --[[User:Ascendron|Ascendron]] 16:28, 25 January 2011 (EST)&lt;br /&gt;
:We do need standardization of section names. The section order, however, depends on order in which the character appeared in those continuities in the real world. Then the subsections are ordered by the fictional chronology. [[User:Interrobang|—Interrobang]] 16:35, 25 January 2011 (EST)&lt;br /&gt;
::No wonder I get confused by this fiction order thing. @_@ I guess I might just be one of those people that will never get the hang of some of these things. And yeah, the section names was definitely something else I wanted to tackle, since I&#039;ve seen at times no less than four different ways to refer to a certain media. I sometimes have to check the storylinks at the end to be sure it&#039;s all part of the same story! --[[User:Ascendron|Ascendron]] 16:45, 25 January 2011 (EST)&lt;br /&gt;
::Note that, within a continuity, flashbacks and time travel can mean that experiential fictional chronology for one character requires a different order of headings than for another.  [[User:JW|JW]] 20:16, 25 January 2011 (EST)&lt;br /&gt;
:::In regards to standardization, I have an idea. What if we create a list of headers (kept on this page perhaps) used on Optimus Prime (G1)&#039;s page (probably has the greatest number of different headers), use that as our initial standards list, then update it as we find other headers or decide to change the existing standards? Once we think we&#039;ve covered the majority of possibilities, we could move it to a help page and make it official policy. --[[User:Tigerpaw28|Tigerpaw28]] 17:49, 6 February 2011 (EST)&lt;br /&gt;
::::I put together [[User:Jackpot/Sandbox/Sections|a sandbox along these lines]] a couple of years ago. It hasn&#039;t been updated in quite a while, and I&#039;m not sure it was ever actually complete, and it was the subject of [[User_talk:Jackpot/Sandbox/Sections|a bit of debate]]... but there it is, for what it&#039;s worth. (Also, I support standardization of headers, but I&#039;ve run into [[Talk:Ricochet_(Headmasters)#Header|some]] [[Transformers_Wiki_talk:Community_Portal/Archive22#Section_naming_conventions|opposition]] over the nitty-gritty before, so best of luck.) - [[User:Jackpot|Jackpot]] 06:11, 8 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Foreign name reorganization ==&lt;br /&gt;
&lt;br /&gt;
Is there any chance we could consider moving the foreign names somewhere else in the article other than at the top? We&#039;ve already established a new standard for episodes, but characters could stand to have their names moved to their own dedicated section, likely under &amp;quot;Notes&amp;quot;. There, we could add things like kana and Cyrillic forms of names not different from the English version. Opinions? [[User:Interrobang|—Interrobang]] 15:56, 4 February 2011 (EST)&lt;br /&gt;
:I&#039;m in favor of it. --[[User:Khajidha|Khajidha]] 16:33, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::All things considered, since this is (mostly) an english-centric wiki when it comes to stuff, the foreign names do come off as being interesting trivia more than anything else. I&#039;m in favour of this too. --[[User:Ascendron|Ascendron]] 16:37, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;m fine with where they are now, personally. --[[User:Detour|Detour]] 16:39, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I can see the logic in them being moved down to notes. You&#039;ve got an in-universe profile, then a bunch of out-of-universe names, then the in-universe fiction section. The only argument I have against it is that I&#039;m used to seeing the foreign names at the top. --[[User:Abates|abates]] 17:05, 4 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::If it can be moved downward (to the first entry of the notes section or a new section after the notes section) instead of being on the top, MOVE it. Originally, I&#039;m fine withe where they are {{m-}} but that would be a character with fewer foreign names. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 19:55, 4 February 2011 (EST)&lt;br /&gt;
Any further opinions on this? [[User:Interrobang|—Interrobang]] 00:36, 21 February 2011 (EST)&lt;br /&gt;
:What about cases where some of the extra names at the top are English, e.g. Omni Productions names, or preliminary or nicknames? Would they remain at the top or become notes too? --[[User:Abates|abates]] 01:29, 21 February 2011 (EST)&lt;br /&gt;
::The Malay dub still technically counts as foreign in my mind. Nicknames should be integrated in the introduction (or notes section), and preliminary names should have been in notes in the first place, since they aren&#039;t the characters&#039; &amp;quot;real names&amp;quot; in any sense. Further elaboration of the preliminary names better suits the notes section, anyway. [[User:Interrobang|—Interrobang]] 01:43, 21 February 2011 (EST)&lt;br /&gt;
Japanese names are often for a character in a slightly different continuity. Like &amp;quot;Fire Convoy&amp;quot; is a Car Robots character and &amp;quot;Optimus Prime&amp;quot; is an RID character, but they share the same page. Or &amp;quot;Flame Convoy&amp;quot; is a Galaxy Force character but &amp;quot;Scourge&amp;quot; is a Cybertron character. In that case they should have the Japanese name up top. The names that are just different language versions of the English character can go on bottom. - [[User:Starfield|Starfield]] 13:18, 23 February 2011 (EST)&lt;br /&gt;
:... no. &#039;&#039;Cybertron&#039;&#039; and &#039;&#039;Galaxy Force&#039;&#039; are NOT different stories (Takara officially put GF back in the same timeline as the prior two series), and the &#039;&#039;RID/CR&#039;&#039; split is a unique case. In neither case should the names go up top. --[[User:M Sipher|M Sipher]] 13:44, 23 February 2011 (EST)&lt;br /&gt;
::They are slightly different continuities. Galaxy Force doesn&#039;t have the [[Omega Frequency]] for example. And the Grand Black Hole is different. And the [[Japanese Generation 1 cartoon continuity]] is different. [[Blaster (G1)|Broadcast]] never became Twincast in English. I think Japanese names are a special case and deserve to be on top since Japanese toyline &amp;amp; fiction continuity is always slightly separate. But I can hit the &amp;quot;end&amp;quot; key on the keyboard easy enough. - [[User:Starfield|Starfield]] 16:56, 23 February 2011 (EST)&lt;br /&gt;
:::Every single foreign language version of something is technically a slightly different continuity, strictly due to the nature of translation.  This is not a arena in which Galaxy Force is unique.  --[[User:ItsWalky|ItsWalky]] 17:01, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Commercial Appearances section ==&lt;br /&gt;
&lt;br /&gt;
Alright, so I plan later on to start going through characters&#039; pages and add in a &amp;quot;Commercial Appearances&amp;quot; section where it applies (sorry, I can&#039;t this weekend... homework to do!). Several characters already have this section and a lot of these commercials have nice short animations or other interesting characterizations and tidbits that I think they bear to be included in the characters&#039; pages. Although, much like the Games sections, I&#039;ll only be able to marginally help by adding in the section itself to let people know that there&#039;s work to be done on a character&#039;s page... MY computer is so incredibly shitty that I can&#039;t even play videos off youtube. D:&lt;br /&gt;
&lt;br /&gt;
But anyways, the reason I&#039;m bringing this up here is because before I get started, I&#039;d like to discuss what kind of format we want for this section, so it can be done right the first time around. Obviously, where it applies, stuff like indicating who the voice actor for the character makes sense, but should the write-up be in-universe or not? Since commercials fluctuate between using a short animation telling a mini-story and just being a straight-up commercial saying &amp;quot;buy this toy!&amp;quot; should a combination of both in-universe and out-of-universe description be used? And should we count the parts where the kids brandish their action figures and talk for the character as dialog spoken by the character? That&#039;s all the questions on the subject I can really think of for now... --[[User:Ascendron|Ascendron]] 15:12, 6 February 2011 (EST)&lt;br /&gt;
:I would write up the animation segments in-universe so long as they&#039;re unique to the commercial (i.e. not just recycled footage from one of the cartoons). Anything else that&#039;s notable enough could qualify for an out of universe note. But I wouldn&#039;t bother with recycled animation or the kids talking for the figures. That doesn&#039;t qualify as fiction to me.  &lt;br /&gt;
:In regards to your inability to view the commercials, would it help if you could download them in some fashion and then watch them offline? Maybe burn the videos to a DVD disc? --[[User:Tigerpaw28|Tigerpaw28]] 17:43, 6 February 2011 (EST)&lt;br /&gt;
::Yeah, any clips taken from pre-existing mediums would be redundant from those scenes being already covered in other sections on that character&#039;s page. Personally though, I&#039;m still on the fence about the kids talking for the figures... I find it comparable to botcon script readings in a way... People just talking out loud for a character without any accompanying animation... I&#039;m prone to be swayed either way. As for me viewing the commercials themselves, my spring break is a week from now. I might have access to a better computer then, but otherwise I&#039;ll just be putting in information already available on the wiki to the appropriate pages throughout the week, I guess. --[[User:Ascendron|Ascendron]] 17:53, 6 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How to resolve monster debates?==&lt;br /&gt;
[[User:-Blackout-]]&#039;s recent meltdown over being prevented from editing [[Goldbug (IDW)]] has made me think again about how policy/content discussions tend to go on this wiki. It&#039;s a big part of why I haven&#039;t been around since last summer: I found myself perpetuating these miles-long debates that few cared to read, everyone was irritated by, and most importantly &#039;&#039;were impossible to resolve.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
That Goldbug article is a sterling example. Right now, people are talking about it as if the [[Talk:Goldbug (IDW)/Archive1|giant]] [[Talk:Goldbug (IDW)/Archive2|debate]] had resolved in favor of the current setup, so changing the article at this point is taboo because it &amp;quot;was dealt with already.&amp;quot; But that&#039;s not how it went at all. Blackout&#039;s dickishly unilateral edit-war was definitely the Wrong Way to reopen this, but it&#039;s also wrong to pretend that we had achieved consensus or closure on the issue.&lt;br /&gt;
&lt;br /&gt;
At [[Talk:Goldbug (IDW)/Archive2#Breaking down the problem|the end of the debate]], I had restated the case for [[User:Jackpot/Sandbox/Goldbug (G1)|my &amp;quot;Goldbug (G1)&amp;quot; sandbox]], which is definitely different from the current setup, and 6 other people declared support for it while 2 objected at length. But the objectors were also against the current setup: Jeysie wanted the toy gone, and Derik wanted... something inscrutable and Deriky. Combining those numbers with the [[Talk:Goldbug (IDW)/Archive1#Vote Tally|premature vote]] that had been taken earlier (and adjusting for the voters who changed their minds by the end), I count:&lt;br /&gt;
&lt;br /&gt;
Sandbox: 8&amp;lt;br /&amp;gt;&lt;br /&gt;
Sandbox with modifications: 3&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page: 7&amp;lt;br /&amp;gt;&lt;br /&gt;
Current page without the toy: 2&lt;br /&gt;
&lt;br /&gt;
That&#039;s not consensus. That&#039;s deadlock. In fact, there were fewer votes to keep the page as-is than there were to change it in some fashion. The current setup didn&#039;t win out in terms of votes, logic, precedent, or any other measure: It won out because it was what happened to be there when the debate died of exhaustion.&lt;br /&gt;
&lt;br /&gt;
So we&#039;re stuck with an awkward page that most people want to be different, encased in concrete forevermore. I don&#039;t see any way out of this situation, and I&#039;ve watched the same principle play out with other debates too many times. At the very least, I wonder if it would be helpful to have a Template:Deadlock that we could slap on inconclusive debates (with a picture of [[Drift (G1)|Deadlock]], natch) so people know the true state of things.&lt;br /&gt;
&lt;br /&gt;
Taking that idea further, maybe it could come with a period of enforced moratorium – say, two weeks – followed by a revote and/or a formalized &amp;quot;final statements&amp;quot; opportunity? The most extreme option I can think of is to create a &amp;quot;council of elders&amp;quot; that has the community-bestowed power to resolve intractable debates and declare relevant policy principles. Basically, a Supreme Court. I do worry that creating an authoritative heirarchy might produce even more problems, but I figured I&#039;d throw it out there.&lt;br /&gt;
&lt;br /&gt;
Thoughts? Other ideas?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:20, 9 February 2011 (EST)&lt;br /&gt;
: This whole argument goes to the heart of what we mean when we say two characters are &amp;quot;the same&amp;quot;. The Bumblebee toy was produced and fiction was made to promote that toy, thus all of those fictions (which differ from each other) are about &amp;quot;the same&amp;quot; character. The Goldbug toy was produced with a tech spec that stated that it was &amp;quot;the same&amp;quot; character as Bumblebee. Fiction was produced to promote that toy, thus all those varying depictions of Goldbug are &amp;quot;the same&amp;quot; character as Bumblebee. The same argument applies to the differing backstories of Optimus Prime; Orion Pax and Optronix are &amp;quot;the same&amp;quot; character because they both are earlier forms of the character that was used to promote the sale of the Optimus Prime toy. The problem comes in with later stories that are not produced to promote those original toys. How do we decide what is the same? When is a character &amp;quot;the same character under different circumstances/in a different universe&amp;quot; and when is it simply an homage character? I really can&#039;t see how others see the IDW Goldbug as &amp;quot;the same&amp;quot; character as the original toy and not (as I see him) as a simple homage character. Under their viewpoint the toy belongs, under mine it doesn&#039;t. --[[User:Khajidha|Khajidha]] 10:15, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
: I NOMINATE MYSELF AS FINAL ARBITER AND SUPREME OVERLORD.  all decisions will be made based on what amuses me the most.  (seriously, we probably ought to have some kind of &amp;quot;no consensus&amp;quot; tag for articles like that.)  [[User:Hooper X|-hx]] 12:58, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Mmm...probably best not to restart the Goldbug debate itself here, Khajidha -- that would quickly distract from what Jackpot&#039;s actually asking here, which is how debates should be resolved &#039;&#039;in general&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Some of the basic rules we already follow should remain. No &amp;quot;edit-warring&amp;quot;...leave it up to the Talk Pages to hash out the problem. I don&#039;t think a mere two weeks is enough to give people time to change their minds, though, especially in this crowd. One thing I notice is that despite dozens of regular contributors and hundreds overall, most Talk Page or Community Portal votes I&#039;ve seen have less than 20 votes at the end. Many of these debates fly right under the radar. I&#039;m relatively active here, but the Goldbug (IDW) chaos completely passed me by. &lt;br /&gt;
&lt;br /&gt;
What about, when a Talk Page debate has clearly reached an impasse between &amp;lt;strike&amp;gt;obstinant&amp;lt;/strike&amp;gt; strong-willed parties, a Vote is taken on the &#039;&#039;Main Page&#039;&#039;? Some sort of easy-to-see box temporarily added to the Main Page, &amp;quot;above the fold&amp;quot; so that its visible to all visitors when they enter? It would be more noticeable than if the vote is hidden away on a single Talk Page people may or may not see. Something like &#039;&#039;&amp;quot;A [[Deadlock]] has arisen! Choose from the following choices: Should [[Goldbug (IDW)]] have the G1 toy on his page? Yes or No? (See the Goldbug (IDW) Talk Page for the full debate.)&amp;quot;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I realize many debates won&#039;t be as simple as Yes or No, but if the debating parties agree in advance how to phrase the Voting Box, it could be a useful tool. --[[User:Xaaron|Xaaron]] 13:07, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Yeah, wasn&#039;t really trying to restart that debate. Was bringing up questions about general character debates, as they seem to occur quite often. But other debates also bog down, so I recognize that my questions don&#039;t apply to those debates.--[[User:Khajidha|Khajidha]] 13:35, 10 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I like the idea of keeping a debate in the regulars&#039; faces until a decision has been reached by enough people (at least 20? 25?). Many debates I keep away from because I think they&#039;ll disappear anyway and my vote doesn&#039;t really matter &amp;lt;s&amp;gt;and I also can&#039;t deal all that well with the aggressive nature of most debates, making it actively a lose-only situation if I&#039;d enter&amp;lt;/s&amp;gt;. I&#039;m not sure if others feel that way, but I imagine this would be a boost for all to participate. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
::I absolutely disagree with the premise that people who don&#039;t care enough to read the argument should have it shoved in their face until they vote. AT MOST, we should mention it somewhere prominent, like the community portal. --[[User:Jimsorenson|Jimsorenson]] 18:53, 10 February 2011 (EST)&lt;br /&gt;
:::I agree that essentially putting a ballot on the front page is asking for trouble. You might get the dozens of votes you&#039;re looking for, but they&#039;ll all be uninformed gut reactions. One of the reasons these debates happen is that issues can be much more complicated and subtle than they seem at first glance. Plus one would hope that the reasoning behind the winning option would help develop our policies, but if the decisions are made by the majority of an explicitly uninformed mob, it&#039;s hard to glean any substantial precedent out of that.&lt;br /&gt;
:::But I think an approach like that &#039;&#039;could&#039;&#039; be combined with my &amp;quot;final statements&amp;quot; suggestion. Thinking out loud here: After a cooling-off period has been declared and a set amount of time has passed, anyone who wants to present a case can write up a defense of his or her preferred option. Those are all submitted to a neutral volunteer, who then posts them simultaneously on the relevant Talk page, and those become the voting choices. No replies are allowed, only votes. We put a notice up at least on the Community Portal, possibly on the Main Page, for another set time period, then close voting and go with the majority.&lt;br /&gt;
:::How does that sound? Like I said, thinking out loud, so suggestions are more than welcome.&lt;br /&gt;
:::- [[User:Jackpot|Jackpot]] 19:18, 10 February 2011 (EST)&lt;br /&gt;
::::Sounds pretty good to me. --[[User:Khajidha|Khajidha]] 10:19, 11 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==How featured articles are chosen==&lt;br /&gt;
On a side note, would a box like that also be useful to start a voting system for featured pages? Because I&#039;m fine with Drift and Wreck-Gar and all others before, but I am absolutely clueless as to who chose them to become featured for what reasons. I&#039;d like to see a better system for that. [[User:Geewunling|Geewunling]] 13:23, 10 February 2011 (EST)&lt;br /&gt;
: If there was a recently-completed article that&#039;s of respectable length, I choose it.  The pool for featured articles is pretty damn small.  Not many articles are finished, and the ones that are finished have usually already been Featured Articles already.  Finished articles don&#039;t happen very frequently, so sometimes we find one that&#039;s close to completion near the end of a month and then push to finish it before the month is over.  Sometimes we think a subject or a character is timely (like around BotCon, or before an episode or movie premiere) and push for that.  If you want a heads up, Chris McFeely&#039;s [[Matrix of Leadership]] article is so totally March&#039;s.  (I think Chris has the record for number of articles he&#039;s completed which have become featured.)  --[[User:ItsWalky|ItsWalky]] 13:31, 10 February 2011 (EST)&lt;br /&gt;
: Long story short, if you want an article to be featured, finish it.  That means photos for every toy and known merchandise, and storylinks (with summaries) to every piece of fiction they&#039;ve appeared in.  Behind the scenes information helps.  The longer and more involved the article, the more appealing it is.  Meaning, finishing an article for a Mini-Con who showed up in the background somewhere, or finishing an article for someone who doesn&#039;t have any illutrated appearances... these are probably not going to be featured.  But people like Perceptor (G1) or Side Burn (RID) or High Wire (Armada) have enough about them to say to make an interesting featured article.  --[[User:ItsWalky|ItsWalky]] 13:36, 10 February 2011 (EST)&lt;br /&gt;
: &amp;quot;Long story short,&amp;quot; my ass. --[[User:ItsWalky|ItsWalky]] 13:37, 10 February 2011 (EST)&lt;br /&gt;
:: Have we done any episodes as Featured yet?  I know the over-arching &amp;quot;Target 2006&amp;quot; article was chosen once.  You&#039;d think we could get, say [[Code of Hero]] up to that standard pretty quickly.  [[User:Hooper X|-hx]] 07:42, 11 February 2011 (EST)&lt;br /&gt;
:::I really think we need to get [[BotCon]] up to that standard. We&#039;re pretty close! --[[User:M Sipher|M Sipher]] 15:22, 11 February 2011 (EST)&lt;br /&gt;
:::[[B.O.T. (episode)|B.O.T.]] is a Featured article about an episode.  [[User:Excise|Excise]] 00:00, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Letterers ==&lt;br /&gt;
On images of comic pages, do we credit the &#039;&#039;letterers&#039;&#039; by placing the image in an &amp;quot;Image by Letterer Name&amp;quot; category?  We&#039;ve got a few contradictory examples around.  [[User:JW|JW]] 15:32, 12 February 2011 (EST)&lt;br /&gt;
:Okay, three options: For images currently in categories like &amp;quot;Images by Mike Scott&amp;quot; (where Mike Scott is a letterer), we can:&lt;br /&gt;
:# Create the category and treat letterers just like artists, inkers, and colorists.&lt;br /&gt;
:# Instead place them in a &amp;quot;Images &#039;&#039;lettered&#039;&#039; by Mike Scott&amp;quot; category.&lt;br /&gt;
:# Remove the category, and not attempt to categorize images by letterer.&lt;br /&gt;
:I&#039;m probably going to go with option 3 barring dissent.  [[User:JW|JW]] 17:25, 16 February 2011 (EST)&lt;br /&gt;
::I added galleries to a few of the pages for letterers (eg [[Bill Oakley]], [[Peri Godbold]]) on the basis that lettering can make or [[:Image:Cryotekmrrghmraghmrugghagh.jpg|break]] a comic. As well as adding the text, the letterer has to pick where the balloons will go and place, them, so they do have a large degree of control over how the comic turns out. That said, I don&#039;t know that we need to categorise images by letterer. The original intention was [[:Category talk:Images by artist|not to]], but it looks like we ended up doing it anyway, and at least one template is set up to put images into category by letterer. --[[User:Abates|abates]] 18:44, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;d vote for option 3 as well.--[[User:MistaTee|MistaTee]] 22:02, 16 February 2011 (EST)&lt;br /&gt;
::I&#039;m leaning towards option 3 myself. My reasoning is that even though letterers can have a large effect on a comic, I don&#039;t see too many people wanting to find every image lettered by a given letterer. The galleries, on the other hand, are useful for demonstrating the quality of an individual&#039;s work. So those should be used. While the obsessive in me thinks we should categorize images by every applicable characteristic, it&#039;s not realistic. I don&#039;t think it benefits us enough to go through all that work for categories that only a few people might find useful. --[[User:Tigerpaw28|Tigerpaw28]] 01:09, 17 February 2011 (EST)&lt;br /&gt;
&#039;Kay, I&#039;m going to go with option 3.  This may involve editing a template or two.  [[User:JW|JW]] 10:35, 17 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Categories by toy size class? ==&lt;br /&gt;
Do we &#039;&#039;want&#039;&#039; the following categories?&lt;br /&gt;
&amp;lt;br&amp;gt;Leader class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Deluxe class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Voyager class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;Scout class toy images&lt;br /&gt;
&amp;lt;br&amp;gt;They currently have a very few things in them (and could obviously have many more), but the cat&#039; pages themselves have not been created.  [[User:JW|JW]] 15:43, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:No. --[[User:M Sipher|M Sipher]] 16:13, 12 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::No. --[[User:ItsWalky|ItsWalky]] 21:06, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::As long as it&#039;s only the images and not the articles, I couldn&#039;t care less. [[User:Interrobang|—Interrobang]] 21:09, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:There&#039;s also a &amp;quot;Legends class toy images&amp;quot; category which has 90 images in it. --[[User:Abates|abates]] 21:21, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::Legends are kind of an exception because they&#039;re a different scale/play pattern, as evidenced by the upcoming Cyberverse stuff. Scouts-on-up are &#039;&#039;generally&#039;&#039; meant to intermingle, Legends aren&#039;t. --[[User:M Sipher|M Sipher]] 07:41, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I could go either way on this one. It&#039;s a lot of work to fill these categories out, but the ability to find all the Deluxe figures easily intrigues me. If we did institute this I would also think that this would be the proper place to put the &amp;quot;exclusive figure&amp;quot; categories and such. Basically, any category that pertains to a particular toy and not to the character could be tagged to the image of that toy. --[[User:Khajidha|Khajidha]] 23:08, 15 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:I&#039;ve been doing them because I saw other people do them. I don&#039;t mind either way. --[[User:FFN|FFN]] 05:51, 16 February 2011 (EST)&lt;br /&gt;
So, counting me as &amp;quot;no&amp;quot;, that&#039;s three &amp;quot;no&amp;quot;s, an &amp;quot;I don&#039;t care&amp;quot;, an &amp;quot;I don&#039;t mind either way&amp;quot;, and an &amp;quot;either way/intrigues me&amp;quot;.  I think we&#039;re leaning toward &amp;quot;no&amp;quot;.  Final comments?  [[User:JW|JW]] 07:08, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I guess it&#039;s &amp;quot;no&amp;quot; or at least &amp;quot;not the time&amp;quot;? (Though I&#039;m &amp;quot;I&#039;m not sure&amp;quot;.) --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 11:21, 16 February 2011 (EST)&lt;br /&gt;
:::I&#039;ve gone with &amp;quot;no&amp;quot;, and added a note to that effect to [[Transformers_Wiki:Images]].  [[User:JW|JW]] 14:27, 16 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Ha ha, none of the no&#039;s have actually said why they&#039;ve said no.  Such super debating skills that. [[Special:Contributions/213.105.226.130|213.105.226.130]] 17:44, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Undo Redone? ==&lt;br /&gt;
&lt;br /&gt;
I just undid an edit, but instead of getting the automatic &amp;quot;Reverting edit ##### by User1 to last version by User2&amp;quot; summary, that box was blank.  In addition, above the edit window were the captions &amp;quot;Current revision&amp;quot; and &amp;quot;Your text&amp;quot;, side by side, as if there&#039;s meant to be one editable text window under each.  Instead, there was only one such text window beneath them, stretching across under both captions.  The page is protected so only registered users can edit it, so that MIGHT have something to do with the problem, though I doubt it.--[[User:Apcog|Apcog]] 20:28, 19 February 2011 (EST)&lt;br /&gt;
:It doesn&#039;t automatically create an edit summary if you&#039;re doing an undo on multiple revisions, so that might be it. Not sure about the other part - it&#039;s always shown me a diff at the top of the screen when I&#039;ve done an undo. --[[User:Abates|abates]] 20:54, 19 February 2011 (EST)&lt;br /&gt;
::Okay, blank edit summary&#039;s explained, because it was indeed a group of 3-4 edits being undone all at once.  Still inexplicable is the fact that I just checked the page history; it didn&#039;t even accept my Undo!  LoneGamer78 ended up doing it instead.  I&#039;ve noticed some sluggish response from the site over the past fifteen minutes or so, perhaps whatever caused that was a factor?  It may never be known...--[[User:Apcog|Apcog]] 21:02, 19 February 2011 (EST)&lt;br /&gt;
:::Is it possible she just beat you to it by a few moments and thus there was an edit conflict? I&#039;ve had that happen sometimes, and so there&#039;s no diff shown because now the page already matches what you were going to change it to. (Uh, does that make sense?) --[[Special:Contributions/67.252.49.31|67.252.49.31]] 22:17, 19 February 2011 (EST)&lt;br /&gt;
::::Can&#039;t rule it out entirely, but edit conflicts usually announce themselves as such, and they DO have two distinct editable text windows: one showing the text as it stands after someone edited while you were typing, the other as it would have been if you&#039;d edited without interference.--[[User:Apcog|Apcog]] 22:24, 19 February 2011 (EST)&lt;br /&gt;
:::::A few times I&#039;ve &amp;quot;undone&amp;quot; an edit, but someone else beat me to it. It doesn&#039;t seem to show an edit conflict if that happens, probably because the change is identical to the previous one. --[[User:Abates|abates]] 23:06, 19 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Banner ad question. ==&lt;br /&gt;
The small side box ad (the one that&#039;s still a free-floater) currently has an ad for some webcomic.  Which is fine, but one of the panels has GIANT ERECT LADY NIPPLES ALL OVER THE PLACE.  I&#039;m not offended by it, but it&#039;s, uh, something.  [[User:Hooper X|-hx]] 06:39, 21 February 2011 (EST)&lt;br /&gt;
:Ah, yeah.  That&#039;d be because it&#039;s an NSFW comic called DarkBrain which is read aloud by &amp;quot;adult film star Tabitha Stevens.&amp;quot; -- [[User:Semysane|Semysane]] 16:50, 22 February 2011 (EST)&lt;br /&gt;
:: If people don&#039;t like it, I can yank it.  I didn&#039;t think its THO was that objectionable, apparently, when I okayed it.  --[[User:ItsWalky|ItsWalky]] 17:27, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== help ==&lt;br /&gt;
&lt;br /&gt;
I cant find the latest talk please help([[User:Manmcmanman|Manmcmanman]] 15:44, 21 February 2011 (EST))&lt;br /&gt;
:What do you mean by the latest talk? -- [[User:SFH|SFH]] 15:54, 21 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen Online Games ==&lt;br /&gt;
&lt;br /&gt;
So, I figured I might as well finish up the online game write-ups for Revenge of the Fallen online games, in case they go offline once Dark of the Moon comes out. But, hot damn, do I ever suck. Which means I&#039;m not very likely to get pics of later levels in some of these games. I&#039;ll be trying to add in whatever I can to these sections, but some help would be much appreciated! --[[User:Ascendron|Ascendron]] 14:57, 22 February 2011 (EST)&lt;br /&gt;
:I can have a go at getting some screencaps tonight if no one else does. Which games in particular? I noticed some of them are already gone a couple of weeks ago, as Hasbro has redirected most of the monkeybar site they were on to the Hub site, which doesn&#039;t have them. --[[User:Abates|abates]] 17:58, 22 February 2011 (EST)&lt;br /&gt;
::Well, personally I&#039;m having difficulty getting pics of every character&#039;s sprite from Battle for the Matrix. I&#039;m currently working on The RPMs Devastator game. --[[User:Ascendron|Ascendron]] 18:41, 22 February 2011 (EST)&lt;br /&gt;
:::I got caps of everyone except the Fallen, haven&#039;t uploaded them yet though. I couldn&#039;t get the [[flying drone]]s to transform either. They just seem to fly around wildly in robot mode. --[[User:Abates|abates]] 04:56, 23 February 2011 (EST)&lt;br /&gt;
::::Dang! The Fallen is the only one I can&#039;t get to either! And yeah, the flying drones are near-impossible to get a screencap of. I got a couple mid-transformation, but that&#039;s it. If any of your pics are better than mine, feel free to replace them. --[[User:Ascendron|Ascendron]] 13:55, 23 February 2011 (EST)&lt;br /&gt;
:::::I went and got pics from Flight of the Bumblebee and Allspark Highway. Unfortunately I can&#039;t get pics of Ratchet from the later since robovision isn&#039;t up anymore! Darn! I&#039;ll upload them later. --[[User:Ascendron|Ascendron]] 14:45, 23 February 2011 (EST)&lt;br /&gt;
::::::I grabbed a screenshot of The Fallen finally. Man, that game is a memory hog. --[[User:Abates|abates]] 03:38, 25 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Countdown? ==&lt;br /&gt;
&lt;br /&gt;
Sorry if this isn&#039;t the right place to put this, but a while back ago, there was a countdown to ROTF on the Main Page. Perhaps a countdown to DOTM would now be appropriate as it&#039;s so close?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;d appreciate it if someone could tell me how to program/insert/design/&amp;lt;insert verb here&amp;gt; a countdown on a wiki page (it&#039;s for another wiki). What template or whatever does that use? I&#039;d be very grateful if someone could tell me.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Again, terribly sorry if this is the wrong place to say this...&lt;br /&gt;
&amp;lt;br&amp;gt;- [[User:Queso|¡Usa El Queso!]] 4:02 PM, 22 February 2011 A.D.&lt;br /&gt;
:Dark of the Moon countdown based on Derik&#039;s ROTF code: {{#expr: ({{ #time: U |July 1, 2011}} - {{ #time: U }})/86400 round 0}} days until [[Dark of the Moon (film)|TF: Dark of the Moon]]! --[[User:Abates|abates]] 19:05, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==When to omit &amp;quot;Transformers&amp;quot; from an article title==&lt;br /&gt;
So I got a hankering to remove the &amp;quot;Transformers&amp;quot; from [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] and all of their related pages, since unlike [[Transformers Animated (franchise)|Transformers Animated]], there&#039;s just no good reason to break policy for them. There are [[Revenge of the Fallen (Xbox 360/PS3/PC)|other video games that we drop the &amp;quot;TF&amp;quot; from]], and if &amp;quot;Prime&amp;quot; is too common a term, then what about &amp;quot;[[Energon (franchise)|Energon]]&amp;quot; or &amp;quot;[[Cybertron (franchise)|Cybertron]]&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
But then I decided to check out [http://tfwiki.net/wiki/Special:Search?ns0=1&amp;amp;search=Transformers&amp;amp;searchx=Search&amp;amp;limit=500 which pages use &amp;quot;Transformers&amp;quot; in their titles,] and holyyyyyyyy crap. I copy-pasted here all the ones I found that I thought could lose the &amp;quot;Transformers&amp;quot; without negating their meaning, destroying a phrase, or otherwise severely damaging the title. (I added an &amp;quot;(etc.)&amp;quot; to each one that represents a series of identically-worded pages):&lt;br /&gt;
&lt;br /&gt;
[[Transformers: War for Cybertron]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Prime (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Animated (franchise)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Universe (Marvel comic)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[1-2-3 Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Hasbro Transformers Collectors&#039; Club (magazine)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Legends]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beast Wars Transmetals (N64)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Headmasters (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Battle to Save the Earth]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Energon Within]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Quest]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Key Recovery: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Power Up: The Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cybertron: Primus Unleashed]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers PD Type]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Animated Movie]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Generations]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Rise of the Chevy Autobots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Annual 1990]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Sticker Book (1986)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars: Transformers (video game)]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Junior Novel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Look and Find Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Coloring and Activity Book and Crayons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Learn to Count Activity Tablet]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Reusable Sticker Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Storybook]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Movie Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Prime Time]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Mix &amp;amp; Match]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic issue 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers The Game (console)]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Autobots/Decepticons]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers History of Music 1984-1990]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Mosaic]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Name Generator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Battle Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Binaltech &amp;amp; TF Collection Complete Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Comic Magazine]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Pop-Up Book]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Visualworks]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tooth Tunes]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Tapestry]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Song Universe]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers G1: Awakening]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada Annual 2004]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Beginnings]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers the Movie water]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Score]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Thirteen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: War Within Omnibus]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: The Ride]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Mutating Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Beast Wars Transformers Jigsaw Puzzle]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Kōtetsu no Yūki]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Continuum: The Definitive Chronology]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Bumblebee]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Adventures]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Top Trumps: Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Race for the Mini-Con Robots]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Battle Begins]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: Secret of the Star Saber]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Armada: The Autobots Strike Back]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Galaxy Force: Sound Pack 2]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Theme Song Collection]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Drift]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Revenge of the Fallen Annual 2010]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers CyberToy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Hall of Fame]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Ironhide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Evo.]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers Legends of the Microns: Sound of Evolution Vol. 1]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Music Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Ultimate Guide: Revenge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Battle for the Matrix]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Coloring and Activity Book and Stickers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Activity Book and Gel Pen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Sector 7]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Cybertron Adventures]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers RPMs: Devastator&#039;s Demise]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Cadbury&#039;s Transformers Card Game]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Ridiculous Legend Transformers]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Famicom How-to Manga: Transformers: Mystery of Convoy]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Caramel]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Comic-Magazin]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Extra Comic-Sonderheft]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers Super-Auswahlband]] (etc.)&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Transformers: Energon Valentine&#039;s cards]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 1]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[The Transformers: Infestation issue 2]]&lt;br /&gt;
&lt;br /&gt;
For many of them, the choice to keep or drop the &amp;quot;TF&amp;quot; seems intuitive, and many others are in a grey area... but I&#039;ll be damned if I can put into words any kind of coherent rationale. I&#039;m seriously thinking that we&#039;ve outgrown the &amp;quot;drop extraneous &#039;TF&#039;s&amp;quot; rule. Back when we only had a few hundred pages, it made a certain kind of sense: Why bother writing out stuff like &amp;quot;Transformers: Generation 2&amp;quot; when just &amp;quot;Generation 2&amp;quot; is equally meaningful to everyone here? Besides, isn&#039;t every page about Transformers by default? But in the past five years, both the wiki and the subject matter have exploded, and with both so many fine-grain, obscure topics being covered and so much not-strictly-TF content we&#039;ve added, I don&#039;t think the policy serves us anymore. It doesn&#039;t make things simple; it makes things arbitrary and unpredictable.&lt;br /&gt;
&lt;br /&gt;
So unless someone can sum up our policy in a way that makes a lick of sense, I propose: &#039;&#039;&#039;If a topic has an official title, then that should be used in full as the title of the relevant articles.&#039;&#039;&#039; Period. So [[Transformers: War for Cybertron]] and [[Transformers: Prime (franchise)]] would stay right where they are, and yes, [[Generation 2 (franchise)]] would become &amp;quot;Transformers: Generation 2 (franchise)&amp;quot;, [[Revenge of the Fallen (franchise)]] would become &amp;quot;Transformers: Revenge of the Fallen (franchise)&amp;quot;, etc. I don&#039;t think we&#039;d need to make that change happen instantly, but we could slowly propagate it as people feel inclined to. I also think we can keep the parenthetical abbreviations and in-sentence references as short as they currently are; this is only about the titles.&lt;br /&gt;
&lt;br /&gt;
Thoughts?&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 18:43, 22 February 2011 (EST)&lt;br /&gt;
:What are these &amp;quot;Transformers&amp;quot;? -[[Special:Contributions/75.185.113.106|75.185.113.106]] 18:58, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::I&#039;ve always been for having the full name as article titles. (Maybe also drop the &amp;quot;(franchise)&amp;quot; disambigs, because durr, but that&#039;s other topic.) Not only do we keep the full name of the subject, it aids us in disambiguation (it&#039;s easier to have smaller sets of &amp;quot;Transformers: Cybertron&amp;quot; and &amp;quot;Cybertron&amp;quot; than a large set of just &amp;quot;Cybertron&amp;quot;). [[User:Interrobang|—Interrobang]] 19:22, 22 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::I don&#039;t have an opinion on adding or removing &amp;quot;Transformers:&amp;quot; from articles (other than that adding it would perhaps make articles and reading unnecessarily longer - right now, I hate having to type out &amp;quot;Transformers Animated&amp;quot; before &amp;quot;The AllSpark Almanac&amp;quot;), but I do oppose removing (franchise). If there&#039;s one thing I hate, it&#039;s when there&#039;s one &#039;most important&#039; page that goes undisamb&#039;ed (like Spark) and you&#039;ll have to go through a lot of trouble to ensure it all is meant to link there. When I cleaned up the Lithone links for planet and species, nearly every single one link directed the wrong way. Same for D-HQ, AllSpark vs Allspark, Junkion, Black Friday, etc. So, keep (franchise). [[User:Geewunling|Geewunling]] 01:49, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I too think &amp;quot;Transformers: &amp;quot; should be kept as well as &amp;quot; (franchise)&amp;quot;. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:46, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::I don&#039;t mind losing Transformers when it the prefix in a title that&#039;s the form of Transformers: &amp;lt;subtitle&amp;gt;, as in that case the subtitle itself is more the actual official name and &amp;quot;Transformers&amp;quot; is just tacked on as an extra identifier.&lt;br /&gt;
&lt;br /&gt;
::::But in some of those things, Transformers is, well, a vital part of the thing&#039;s actual name. I mean, for instance, the Club&#039;s full official name &#039;&#039;is&#039;&#039; &amp;quot;Hasbro Transformers Collectors&#039; Club&amp;quot;, so removing &amp;quot;Transformers&amp;quot; from it would be incorrect. --[[Special:Contributions/67.252.49.31|67.252.49.31]] 03:00, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::I don&#039;t think that distinction is clear enough to be workable anymore. Looking at that list, tons of them I have no idea which side of the divide they&#039;d fall on. For instance, &amp;quot;[[Transformers Legends]]&amp;quot; is the proper title of the book; that&#039;s how it would be listed in any store or library, but for &#039;&#039;our&#039;&#039; purposes the &amp;quot;TF&amp;quot; is as extraneous as the one that we omit from [[Energon (comic)]] or [[Dinobots Strike Back]]. The &amp;quot;for our purposes&amp;quot; thing is so often so questionable... like, what would that dictate for [[Transformers: The Ultimate Guide]]? It&#039;s definitely a subtitle situation like you described, but there are lots of non-TF &amp;quot;Ultimate Guide&amp;quot;s published by the same company... but we would never cover them, so for our purposes is the &amp;quot;TF&amp;quot; still redundant?&lt;br /&gt;
:::::I agree with Geewunling that it would be annoying to have to type out longer titles (though readability should be unchanged, since I think we could still truncate in-sentence references). But right NOW it&#039;s annoying that our lack of a coherent policy is making everything increasingly unpredictable. We&#039;re seeing a lot of creep in the form of stuff like [[Transformers: Prime (franchise)]] and for some reason video games. So I don&#039;t even know what should be &amp;quot;corrected&amp;quot; anymore or how to decide the matter when creating a new article.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 13:58, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::The annoyance of editors doesn&#039;t really enter into my consideration; the wiki is ultimately for the readers, not our convenience. If we have to do some more work for the best presentation, so be it. —Interrobang, not logged in&lt;br /&gt;
&lt;br /&gt;
:I&#039;m OK with moving articles to put Transformers into the title so long as we don&#039;t delete the redirects. If we move &amp;quot;Revenge of the Fallen (film)&amp;quot; to &amp;quot;Transformers: Revenge of the Fallen (film)&amp;quot;, there are going to be a whole bunch of sites linking to the old URL, and I don&#039;t wanna have a repeat of the &amp;quot;(Shattered Glass)&amp;quot; thing where all the redirects get deleted and a whole lot of other sites are pointing to useless error pages. --[[User:Abates|abates]] 22:25, 23 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;(WFC)&amp;quot; vs. &amp;quot;(Prime)&amp;quot;==&lt;br /&gt;
There are currently [[Talk:Transformers: War for Cybertron (franchise)#&amp;quot;(WFC)&amp;quot; instead of &amp;quot;(Prime)&amp;quot; for characters that originated in this franchise?|two]] [[Talk:Optimus Prime (Prime)#Move|discussions]] going about whether articles on subjects that originated in &#039;&#039;War for Cybertron&#039;&#039;-branded fiction (the [[War for Cybertron games|games]], [[Exodus: The Official History of the War for Cybertron|novel]], and [[Transformers: War for Cybertron (comic)|comic]]) should be titled &amp;quot;(WFC)&amp;quot; rather than &amp;quot;(Prime)&amp;quot;. It was suggested that this should be brought up in the Community Portal, so here it is.&lt;br /&gt;
&lt;br /&gt;
For the record, looking at [[War for Cybertron games#Featured Characters|this list]], right now we&#039;re using &amp;quot;(Prime)&amp;quot; for all named characters, even those currently exclusive to WfC, and &amp;quot;(WFC)&amp;quot; for all character &#039;&#039;types&#039;&#039; from the games. I&#039;m not sure why that is, but that&#039;s the state of things.&lt;br /&gt;
&lt;br /&gt;
- [[User:Jackpot|Jackpot]] 17:46, 28 February 2011 (EST)&lt;br /&gt;
:I completely agree with Jackpot. It is stupid we have an article called [[Ultra Magnus (Prime)]] stating &amp;quot;Ultra Magnus is an Autobot Wrecker from the WFC portion of the Aligned family continuity&amp;quot;. I blame myself for not doing this a lot earlier, treating the WFC navbox as like a subsection of Prime when the novel was so clearly a tie-in to those games. [[User:Alientraveller|Alientraveller]] 18:48, 28 February 2011 (EST)&lt;br /&gt;
::WFC is a tie-in game. As I pointed out, how many Mini-Cons from the PS2 Transformers game use the disambiguator &amp;quot;(Transformers)&amp;quot;? And even then, what of novel-original characters? Do they get &amp;quot;(Exodus)&amp;quot;? And heck, didn&#039;t Exodus come out &#039;&#039;before&#039;&#039; WFC? Shouldn&#039;t the characters thusly use &amp;quot;(Exodus)&amp;quot; over &amp;quot;(WFC)&amp;quot; or &amp;quot;(Prime)&amp;quot;? --[[User:Detour|Detour]] 18:57, 28 February 2011 (EST)&lt;br /&gt;
::: The book and game came out on the same day, as I recall. So... yeah. I&#039;m completely against this. We used &amp;quot;Prime&amp;quot; because that was the name we WERE using for the continuity family; frankly, I find this wishy-washy &amp;quot;aligned continuity family&amp;quot; thing pretty lame. The core of the damn family is the Prime cartoon. It is THE central feature, and will be THE major fictional outlet and -almost assuredly- what future non-show fictions will adhere more closely to. I don&#039;t see the point in all this subdividing and adding more parantheticals. --[[User:M Sipher|M Sipher]] 19:19, 28 February 2011 (EST)&lt;br /&gt;
::::I find it &#039;&#039;extremely&#039;&#039; hard to believe that if Hasbro&#039;s &amp;quot;decade&amp;quot; plan goes through, &#039;&#039;Prime&#039;&#039; is the last franchise we&#039;re going to see spring from it. Even Aaron Archer thinks &amp;quot;Prime&amp;quot; is a bad name for the overall deal. Given what a fractured start it&#039;s already off to, I think separating out the &amp;quot;family&amp;quot; foundation is the only sensible thing to do. So that&#039;s why [[Aligned continuity family]] exists.&lt;br /&gt;
::::As for the &amp;quot;(WFC)&amp;quot; notion, I&#039;m not as personally attached to that, even though I do think it&#039;s the correct thing to do. Mostly I think that WfC needs to be acknowledged as an entity unto itself, not just a subset of &#039;&#039;Prime&#039;&#039;. Strictly from a branding point of view, it ISN&#039;T a subset; nothing has been both WfC- and Prime-branded. It&#039;s not just the title of a video game; it&#039;s in the titles of [[Transformers: War for Cybertron (comic)|a comic]] and [[Exodus: The Official History of the War for Cybertron|a novel]], plus they&#039;ve made [[Transformers: War for Cybertron (franchise)#Toys|toys from it]] that definitely don&#039;t fit the &#039;&#039;Prime&#039;&#039; brand. (True, the toys aren&#039;t labeled &amp;quot;WfC&amp;quot;, but that&#039;s par for the course with &#039;&#039;Generations&#039;&#039; anyway. At the very least, it&#039;s a grey area.) Beyond branding, it just has a unique aesthetic and sensibility that&#039;s very different from &#039;&#039;Prime&#039;&#039;.&lt;br /&gt;
::::Based on all that, the best place WfC fits in our schema is as a &amp;quot;franchise&amp;quot;, to my judgement. &amp;quot;&#039;&#039;Prime&#039;&#039; tie-in&amp;quot; doesn&#039;t cut it.&lt;br /&gt;
::::- [[User:Jackpot|Jackpot]] 19:55, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::WFC is not &#039;&#039;just&#039;&#039; a tie-in game. It has [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fcfb1b5-19b9-f369-10be-e91a2108d9ab online bios] and [http://www.hasbro.com/transformers/en_US/play/details.cfm?guid=7fd5ecd9-19b9-f369-1041-a7635be83172 online timeline]. Hasbro made it its own thing. Franchise-like. Before any Prime show started we learned from the timeline that [[Megatron (Prime)|D-16]] was an Energon mine laborer and rose to prominence in secret gladiatorial combat and took the name &amp;quot;Megatron&amp;quot;. So [[Megatron (Prime)]] had a whole history before the show even existed. The non-show characters with the (Prime) disambiguation also shows it doesn&#039;t quite fit. I&#039;d go for WFC. - [[User:Starfield|Starfield]] 19:35, 28 February 2011 (EST)&lt;br /&gt;
::::AGAIN, Exodus came out the SAME DAY. So why does WFC get prominence? --[[User:M Sipher|M Sipher]] 19:56, 28 February 2011 (EST)&lt;br /&gt;
:::::Because that&#039;s the phrase that&#039;s used in the names of [[War for Cybertron games|all]] [[Exodus: The Official History of the War for Cybertron|the]] [[Transformers: War for Cybertron (comic)|media]]. - [[User:Jackpot|Jackpot]] 20:02, 28 February 2011 (EST)&lt;br /&gt;
::::::I don&#039;t see how the subline &amp;quot;The official history of the war for Cybertron&amp;quot; is the exact same as &amp;quot;War For Cybertron: The Vidya Game&amp;quot;. --[[User:Detour|Detour]] 20:24, 28 February 2011 (EST)&lt;br /&gt;
:::::::I agree. Aside from three (ambiguous) words on the book&#039;s front, there&#039;s not much that says it&#039;s part of the WFC &amp;quot;franchise&amp;quot;. Same for Generations. If they wanted to, they could have made figures of every War for Cybertron character and released it in a toyline explicitly called &amp;quot;Transformers: War for Cybertron&amp;quot;. But they didn&#039;t; they just released five toys based on WFC designs and released them under Generations, so Generations is a WFC toy line as much as it is a G1 one (actually, probably more of G1 considering how very few WFC toys there were). The video games are only different because of hardware limitations, so having multiple games with the same title does not a franchise make. Having a website with bios and everything is a moot point, because almost every video game has that. The comic, I&#039;ll give you that one, but I don&#039;t think it&#039;s a franchise if it&#039;s a game and a tie-in comic with a limited release. --[[User:NCZ|NCZ]] 20:30, 28 February 2011 (EST)&lt;br /&gt;
::::::::For what it&#039;s worth, when you [http://www.hasbro.com/transformers/en_US/discover/movie-news/Transformers-War-for-Cybertron.cfm click on &amp;quot;War For Cybertron&amp;quot;] it brings up all the Generations toys. I also think the WFC timeline ties in Exodus to WFC since the events in the comic and timeline are basically from the book. - [[User:Starfield|Starfield]] 20:48, 28 February 2011 (EST)&lt;br /&gt;
:::::::::It also brings up PCC Icepick (item 12 of 12, on page 2). --[[User:Khajidha|Khajidha]] 20:52, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
::::::::The WfC-branded timeline and comic both cover events in &#039;&#039;Exodus&#039;&#039;. Hell, the comic was written by the same dude. I don&#039;t understand the logic that says that the &amp;quot;War for Cybertron&amp;quot; in the novel&#039;s title doesn&#039;t mean the same thing. If there were a novel called &amp;quot;Deuteronomy: The Official History of the Beast Wars&amp;quot; set during the events of the cartoon, I wouldn&#039;t be trying to say it was part of the &#039;&#039;Beast Machines&#039;&#039; franchise.&lt;br /&gt;
::::::::Let me put in a slightly different light: Because franchises are branding-based, not continuity-based, I&#039;m not comfortable with the &#039;&#039;Prime&#039;&#039; franchise being stretched to include all this stuff that doesn&#039;t have the &#039;&#039;Prime&#039;&#039; label on it. Yes, it&#039;s clearly all RELATED, story-wise, but that&#039;s what [[Aligned continuity family|continuity pages]] are for. This feels like taking &#039;&#039;Machine Wars&#039;&#039; (which is the opposite kind of sparse: a toyline with virtually no fiction) and rolling it into G2. Sure, they&#039;re in the same family, and there are connections between the two, but they&#039;re not marketed with the same label, so we don&#039;t do it. Before &#039;&#039;Prime&#039;&#039; existed, there were these other forms of media sharing a unique title (that even got the TF-logo lockup treatment!) and covering common ground. Then &#039;&#039;Prime&#039;&#039; showed up, and so far the two labels have not been seen on the same product. To me, that means two franchises.&lt;br /&gt;
::::::::- [[User:Jackpot|Jackpot]] 21:20, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:::::::::But... there is no overarching label on the products we have poked into the WFC &amp;quot;Franchise&amp;quot;. &amp;quot;Transformers: War for Cybertron&amp;quot; has its own logo which is also on the tie-in comic, and Exodus has its own logo. They&#039;re still prequels to TF:Prime. --[[User:Abates|abates]] 21:33, 28 February 2011 (EST)&lt;br /&gt;
::::::::::I guess I just see the &amp;quot;War for Cybertron&amp;quot; in the title of &#039;&#039;Exodus&#039;&#039; as having more meaning than you do. Yeah, Hasbro could&#039;ve been more blatant if they&#039;d wanted to, but it&#039;s still clearly telling the reader it&#039;s part of the same deal as the WfC games and comic, without making any reference to &#039;&#039;Prime&#039;&#039; (or vice-versa). I can imagine a situation where the &#039;&#039;Prime&#039;&#039; branding might retroactively subsume WfC, like how the &amp;quot;Wreckers&amp;quot; comic was given the &#039;&#039;Universe&#039;&#039; brand (they say there&#039;s another game coming out, after all). But that hasn&#039;t happened yet, so in the meantime I say WfC doesn&#039;t belong under the &#039;&#039;Prime&#039;&#039; franchise.&lt;br /&gt;
::::::::::Anyway, at this point if we don&#039;t see eye-to-eye, we probably won&#039;t, so I&#039;m going to shut up now.&lt;br /&gt;
::::::::::- [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:What about the next thing after &#039;&#039;Prime&#039;&#039; that is in the Modern/Aligned continuity? We would have a new disambiguation, like, &amp;quot;Spike (Next Franchise).&amp;quot; and characters that have never been in Prime, like &amp;quot;Ultra Magnus (Prime).&amp;quot; Kind of confusing. - [[User:Starfield|Starfield]] 21:57, 28 February 2011 (EST)&lt;br /&gt;
::No it isn&#039;t. The idea that WFC/Exodus are part of a big wad of continuity colloquially known as &amp;quot;Prime&amp;quot;, and referred to as &amp;quot;Prime&amp;quot; because the &amp;quot;Prime&amp;quot; cartoon is THE core of the whole shebang, and will liekly BE said core for the near future, is not a hard one. It only gets confusing when you start letting obfuscating pedantry in, at which point you&#039;re only making more work for no payoff and making things harder for our readers. A trend which seems to keep coming up over and over again, I&#039;ve noticed... --[[User:M Sipher|M Sipher]] 22:09, 28 February 2011 (EST)&lt;br /&gt;
:::I&#039;m pretty sure I&#039;ve had my share of &amp;quot;obfuscating pedantry&amp;quot; moments, but I completely agree with Siph on this one. --[[User:Khajidha|Khajidha]] 22:18, 28 February 2011 (EST)&lt;br /&gt;
::::For the record, if people really think that using &amp;quot;(WFC)&amp;quot; would be confounding to readers, that&#039;s not a decision I&#039;m very invested in. This discussion has ballooned into bigger issues that I &#039;&#039;do&#039;&#039; feel more strongly about, but the parenthetical itself is very take-it-or-leave-it for me. - [[User:Jackpot|Jackpot]] 22:39, 28 February 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
I would at the least support migrating characters who have thus far &#039;&#039;only&#039;&#039; appeared in WFC to the appropriate parenthetical.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:55, 1 March 2011 (EST)&lt;br /&gt;
:And move them back if they appear in Prime? [[User:Alientraveller|Alientraveller]] 11:03, 1 March 2011 (EST)&lt;br /&gt;
::Yes. I think that would make the most sense to people looking for the characters.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
:::I am willing to make this compromise for the time being. [[User:Alientraveller|Alientraveller]] 14:27, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
==War For Cybertron== &lt;br /&gt;
War for cybertron is a relativley new game, but it is a great one. I am kind of new on this website, but to me, it looks like the War For Cybertron title has gotten mixed up with Transformers: Prime, a completley diffrent universe. also, WFC is G1 Canon. All the WFC pages and articles should be labled on G1, MAJOR cleanup is needed. {{unsigned|Holymoses|06:30, March 3, 2011 (EST)}}&lt;br /&gt;
:You clearly &#039;&#039;are&#039;&#039; quite new, because we would advise you to read [[Aligned continuity family|this article]] before you start in on this notion. - [[User:Chris McFeely|Chris McFeely]] 06:33, 3 March 2011 (EST)&lt;br /&gt;
:In Hasbro&#039;s own words: &amp;quot;The TRANSFORMERS brand team would like to confirm that Transformers War for Cybertron video game, Transformers Exodus novel, and the Transformers Prime television show are in the same aligned continuity. Hasbro is creating a single continuity to tell the bulk of our TRANSFORMERS stories going forward.&amp;quot; Here&#039;s the [http://www.allspark.com/content/view/8189/20/ link] to the announcement --[[User:Khajidha|Khajidha]] 06:45, 3 March 2011 (EST)&lt;br /&gt;
::You aren&#039;t completely wrong. The game developers were heavily inspired by G1, and were pretty much making a G1 game as far as they knew. It&#039;s just that, like Khajidha said, Hasbro says War for Cybertron is part of the same continuity as Prime, so that&#039;s what the wiki goes with. - [[User:Starfield|Starfield]] 00:00, 4 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
Well that still seems weird, since &amp;quot;Prime&amp;quot; has a completley diffrent story, and &amp;quot;Exodus&amp;quot; doesnt connect the two sagas very well. even if its what Hasbro said, i think we should put all this into consideration, Aaron Archer himself said that War for Cybertron was a game set in the G1 Universe. I think its wrong of Hasbro to try and connect the two diffrent Continuities. {{unsigned|Holymoses|09:12, March 4, 2011 (EST)}}&lt;br /&gt;
:First of all, when did Aaron Archer say that? Second, Hasbro gets to define what is in each continuity for the simple reason that it is their intellectual property. It may not be to your liking, but it cannot be wrong as they are the ones who determine what is right. --[[User:Khajidha|Khajidha]] 09:35, 4 March 2011 (EST)&lt;br /&gt;
::Yeah, gonna need a source on that Archer statement. Especially since he&#039;s been amongst the ones saying WFC/Exodus is part of the new continuity. Also, weren&#039;t a lot of elements in WFC, like Dark Energon, Hasbro mandates from a story bible they supplied the creators (hereby proving that Hasbro&#039;s intent was always for it to be part of the new continuity), or am I imagining things again? --[[User:Detour|Detour]] 10:08, 4 March 2011 (EST)&lt;br /&gt;
:::From what I read about that production bible, it is a result of guys at Hasbro sitting down and &amp;quot;[http://collider.com/roberto-orci-jeff-kline-interview-transformers-prime/75039/ coalescing all the mythologies] that they had institutionally for years. Actually putting it down to paper.&amp;quot; It sounds like they were just collecting and not adding new stuff in. I wouldn&#039;t be surprised if Dark Energon were added &#039;&#039;after&#039;&#039; it was in the game. And what about timing? Orci said Hasbro put together the bible after the movies came out (in mid 2009). The video game came out in mid 2010 with a video game lead time of ??? - [[User:Starfield|Starfield]] 11:27, 4 March 2011 (EST)&lt;br /&gt;
::::Unless Dark Energon is actually just the new name for Angolmois energy. The name may have been taken from the video game, but the concept could well have been in the production bible before WFC. --[[User:Khajidha|Khajidha]] 11:37, 4 March 2011 (EST)&lt;br /&gt;
::::What a load of supposition and crap. I hereby dub it &amp;quot;crapposition&amp;quot;. I can pretty much say that you are completely wrong. --[[User:M Sipher|M Sipher]] 12:38, 4 March 2011 (EST)&lt;br /&gt;
:::::[http://www.joystiq.com/2010/05/05/interview-matt-tieger-of-high-moon-studios-on-transformers/ Matt Tieger said] that High Moon started working on WfC when they shipped their &amp;quot;Bourne&amp;quot; game, which according to the accompanying notes was mid-2008, between the first movie and RotF. [http://www.cheatcc.com/extra/interviewtransformerswarforcybertron2.html This interview] talks up the G1 inspiration and then says the WfC storyline is &amp;quot;a completely original story that we made up at High Moon. We worked closely with Hasbro...&amp;quot; The consistent impression I&#039;ve gotten from several different interviews is that High Moon started from G1 and then made pitches to Hasbro, which Hasbro would provide feedback on, and eventually there was a game. The only people who I&#039;ve seen actually talk about the 400-page story-bible are the &#039;&#039;Prime&#039;&#039; creators. And if Orci was being literal when he said the bible was put together &amp;quot;after the movie’s came out&amp;quot;, then game development would&#039;ve indeed started earlier. At the very least, it sounds pretty likely that there was some simultaneous creation.&lt;br /&gt;
:::::In the end, the chicken-and-egg question is basically moot because either way, WfC is part of the new deal. It doesn&#039;t matter who said the words &amp;quot;Dark Energon&amp;quot; first; it&#039;s part of the structure that binds all of the pieces, so that&#039;s that. But for nitpicking&#039;s sake, Starfield&#039;s suppositions aren&#039;t off-base from the evidence we have. Siph, if you have additional info that clarifies or contradicts any of that, please share.&lt;br /&gt;
:::::- [[User:Jackpot|Jackpot]] 19:44, 4 March 2011 (EST)&lt;br /&gt;
::::::I, similarly, have found it quite plausible when thinking on the subject to believe that High Moon could have created the idea of Dark Energon, and that Hasbro then said to themselves &amp;quot;We can use THAT!&amp;quot; and put it in the bible. It&#039;s certainly outside the realm of possibility, unless you know something we don&#039;t, Siph. - [[User:Chris McFeely|Chris McFeely]] 05:24, 5 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
:Because nothing whatsoever can change in the millions of years between the WFC era and the Prime cartoon era. And yeah, good luck sourcing that Aaron claim. --[[User:M Sipher|M Sipher]] 11:24, 4 March 2011 (EST)&lt;br /&gt;
I think that if they were in the game or in Exodus:The Offical History of the War for Cybertron, they  should be labled (WFC),but if they poped into the Prime teley-show or comics, they should be labled (Prime).-[ [User:DinoDigger97|DinoDigger97]] 2:11 3 Apil 2011&lt;br /&gt;
&lt;br /&gt;
== Captured-Prey ads ==&lt;br /&gt;
&lt;br /&gt;
One of the things advertised there appears to be a fan-made Megatron min-figure. Seeing as how everybody was upset that the TFSource ad [[Transformers_Wiki_talk:Community_Portal/Archive47#TFsource_ad_buy|featured fansproject stuff]], surely, this isn&#039;t right either? [[User:Item42|Item42]] 05:33, 8 March 2011 (EST)&lt;br /&gt;
:Check the section back up this page titled [[#Project_Wonderful_ads|Project Wonderful ads]]. --[[User:Abates|abates]] 05:59, 8 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Revenge of the Fallen video game character articles - [X] Scout 1, [X] Scout 2 pages for the same design ==&lt;br /&gt;
&lt;br /&gt;
With the upcoming DOTM games, I thought I should look at the ROTF game articles that were abandoned in 2009 and see if I could do anything for them. I believe it was Derik who made this decision, but I am now wondering if it is necessary to have say [[Aerialbot Scout 1]] and [[Aerialbot Scout 2]], [[Omnibot Scout 1]] and [[Omnibot Scout 2]] (and so on) considering &amp;quot;Scout 1&amp;quot; and &amp;quot;Scout 2&amp;quot; are just the two different colour schemes for these mass produced generic, nameless characters who only differ in terms of textures. Any completed articles on these will have different images, but exactly the same information. Isn&#039;t that redundant? Should we perhaps just stick both of each under Aeriabot Scout, Omnibot Scout, Stunticon Scout? --[[User:FFN|FFN]] 07:14, 11 March 2011 (EST)&lt;br /&gt;
:According to the articles the two Aerialbot Scouts have different health, primary weapon and secondary weapon ratings. Is that enough for separation? I don&#039;t know, but it should be considered before making a decision. --[[User:Khajidha|Khajidha]] 09:55, 11 March 2011 (EST)&lt;br /&gt;
::I don&#039;t even know where those stats came from - I don&#039;t believe the person who filled them in originally ever explained. Were they from a website, article or guide book? --[[User:FFN|FFN]] 11:42, 11 March 2011 (EST)&lt;br /&gt;
&lt;br /&gt;
== Found some much needed images, but... ==&lt;br /&gt;
&lt;br /&gt;
I found them on [http://transformersiv.mforos.com/1519135/8979801-transformers-g1-aventuras-y-nostalgias-que-nunca-moriran/ this site], and I don&#039;t speak the language (I think it&#039;s Spanish) to ask for their permission to use them. The images are covers of the [[Marvel Books]] titles [[Battle at Oil Valley]], [[Summertime Coloring Book]], and [[Super Activity Book]]. That&#039;s right we don&#039;t even have an article for that last one. They also have page scans of these and other Marvel Books titles. I don&#039;t feel right just taking them for our use here and was wondering if someone who spoke the lingo would contact them for us. --[[User:Khajidha|Khajidha]] 09:21, 12 March 2011 (EST)&lt;br /&gt;
:Nevermind, Google Chrome finally remembered that it had translational abilities. The poster is offering them for download to all and sundry, so he/she can hardly care if we borrow them. I&#039;ll probably still insert a link to the main site out of courtesy. --[[User:Khajidha|Khajidha]] 11:22, 12 March 2011 (EST)&lt;br /&gt;
::After looking at them, I realized that they were Steve Stonebreaker&#039;s scans. I have contacted him and received permission to use them here. I&#039;ll be adding more soon. --[[User:Khajidha|Khajidha]] 09:55, 16 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Hey, I&#039;ve got a new user talk page template request... ==&lt;br /&gt;
[[Image:Rebirth1 Hardhead and Blurr.jpg|right|thumb|300px|TOO MANY QUOTES]]&lt;br /&gt;
Can we have one that reminds folks that every new thing in Transformers that even vaguely reminds you of an old thing in Transformers IS NOT A REFERENCE AND THAT IS NOT HOW REFERENCES WORK AND STOP PUTTING THEM IN THE &amp;quot;TRANSFORMERS REFERENCES&amp;quot; SECTION.  Ahem.  --[[User:ItsWalky|ItsWalky]] 23:18, 13 March 2011 (EDT)&lt;br /&gt;
:You mean like [[Template:notareference|this]]? --[[User:NCZ|NCZ]] 23:22, 13 March 2011 (EDT)&lt;br /&gt;
::Hooray! --[[User:ItsWalky|ItsWalky]] 23:30, 13 March 2011 (EDT)&lt;br /&gt;
:::Brilliant. - [[User:Jackpot|Jackpot]] 02:39, 14 March 2011 (EDT)&lt;br /&gt;
::::That&#039;s an oldie, but a goodie. Personally, I&#039;m wondering if there&#039;s any template that can be set up for the people that just drown episode articles in quotes... --[[User:Detour|Detour]] 02:42, 14 March 2011 (EDT)&lt;br /&gt;
:::::I think we&#039;d first need a consensus on how many quotes are appropriate. [[User:JW|JW]] 07:41, 14 March 2011 (EDT)&lt;br /&gt;
::::::It&#039;s a conversation that needs to be had, I think.  You have to take length of the story into account - there are more quotes in a two hour movie than in a twenty five minute episode.  I&#039;d put the early cutoff at around five for episodes, though. [[User:Hooper X|-hx]] 08:00, 14 March 2011 (EDT)&lt;br /&gt;
:::::::I like the idera of a mximum of 5 per 30 minutes (or part thereof) for Episodes &amp;amp; movies, but what would be a good size for comics? I&#039;d say around 3 per issue, but it breaks down with short issues and back up stories (i.e.e most of the Marvel UK exclusive stuff...) [[User:G1MarvelBlaster|G1MarvelBlaster]] 10:19, 14 March 2011 (EDT)&lt;br /&gt;
::::::::I&#039;d set a &amp;quot;soft&amp;quot; limit higher for 30-minute episodes {{m-}} around 10 quotes {{m-}} and I&#039;d allow more than that if the episode was particularly well-written or quotable.  I don&#039;t think there&#039;s any need for a low, hard limit, as I don&#039;t think lots of quotes hurt the wiki until we get into &amp;quot;quoting the whole darn episode&amp;quot; territory.  Heck, in fact, I might favor a policy of &#039;&#039;judging each quote for itself.&#039;&#039;  I.e., if a quote is good/noteworthy/illustrative/funny/wadeva, it can be kept, even if there are two dozen other quotes already.  Each must stand on its merits, but there would be no hard cap.  [[User:JW|JW]] 11:31, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::Yeah, some episodes happen to have a lot of funny/significant/memorable lines, others don&#039;t. If we set a hard cap, we might be damning ourselves to a lot of pointless fights over which quotes deserve to be included under the arbitrary limit. I&#039;m more in favor of making a list of criteria that we can point to when we weed lame quotes out.&lt;br /&gt;
:::::::::Oh, and I support making a template. &#039;&#039;Prime&#039;&#039; Soundwave is the best character I can think of to use, but Movie Bumblebee or G1 Wreck-Gar would also be appropriate. Or a shot of G1 Soundwave with a tape inside of him? Can&#039;t think of a good header, though...&lt;br /&gt;
:::::::::- [[User:Jackpot|Jackpot]] 11:49, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::I mainly suggested it as a starting point because if it comes down to putting each quote in place based on &amp;quot;which one we like more&amp;quot; the talk pages are going to be absolutely horrible.  HOW CAN YOU LEAVE OUT MY FAVORITE QUOTE IT IS SO FUNNY AND RELEVANT.  The &amp;quot;5 per 30 minutes&amp;quot; is just a suggestion - obviously an episode that&#039;s really funny or poignant can get more.  Comics issues we could maybe use pagecount as a starting point.  But basically, combine the two ideas.  A list of criteria is a good idea, but we also need to avoid having like, thirty quotes for a given story, twelve of which are totally shitty.  If we get over five-six quotes, it&#039;s time to think about trimming, just because seriously, 90% of TF fiction isn&#039;t that goddamned quotable - or there are better places for the quotes.  &amp;quot;I don&#039;t rock and roll - I burn!&amp;quot; belongs on Inferno&#039;s page, not on the episode it appeared in.  [[User:Hooper X|-hx]] 11:51, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::Fair enough. Just so long as the number is sufficiently &amp;quot;soft&amp;quot; that we don&#039;t forget that our goal is high quality, not an arbitrarily low quantity. - [[User:Jackpot|Jackpot]] 12:17, 14 March 2011 (EDT)&lt;br /&gt;
:::::::::::::Exactly.  Like I said, I think we can also judiciously use key &#039;&#039;character&#039;&#039; quotes on the &#039;&#039;characters&#039;&#039;&#039; pages.  Some quotes are very episode/story specific, while others provide insight into a character&#039;s personality or mindset.  I think that&#039;s a good way to winnow the chaff, you know?  -hx at work not logged in gotta run&lt;br /&gt;
::::::::::::::The 5-6 quotes before we start trimming sounds good, especially if some more individual character based quotes can be moved to the character pages. The big problem I keep seeing with quotes is that too many people want to quote an entire scene. If it goes beyond 3 lines it&#039;s probably not what we mean by quote here. And even 3 lines is pushing it. These should really be a single line quip or a two line set up and pay off. --[[User:Khajidha|Khajidha]] 14:22, 14 March 2011 (EDT)&lt;br /&gt;
::::::::::::::5 to 6 sounds like a good starting point to me as well. Khajidha makes a good point about the definition of quote. That, along with Hooks&#039; point about using key character quotes on that character&#039;s article, should be pointed out on [[Help:Example episode article]], once it exists.  --[[User:Tigerpaw28|Tigerpaw28]] 17:32, 14 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Maybe a silly question, can we? ==&lt;br /&gt;
&lt;br /&gt;
Ok, exposing my ignorance here, but isthere a way to search the wiki by alt-mode? If I wanted to know every TF that turns into a Helicopter say? There&#039;s not a &amp;quot;helicopter&amp;quot; catagory, so howwould I find them all? Thanks for any help.--[[Special:Contributions/76.28.76.206|76.28.76.206]] 19:59, 19 March 2011 (EDT)&lt;br /&gt;
:[[Popular Earth vehicle alternate modes]] covers some characters.  There&#039;s been a few vague proposals to create a new hierarchy of categories for altmodes, but it would be a lot of work, and it&#039;s generally shouted down.  [[User:JW|JW]] 20:08, 19 March 2011 (EDT)&lt;br /&gt;
:I think the current best option if you want to do something like this is TFU.info&#039;s Identify section.  --[[User:Andrusi|Andrusi]] 11:00, 30 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Grimlock letter==&lt;br /&gt;
[[Image:Grimlock letter.jpg|thumb|right]]&lt;br /&gt;
I recently acquired this and thought it&#039;s exactly the sort of thing we should be covering. I had no idea it even existed until a friend sent it to me and on that thought, should we add letters from Soundwave, Ratchet(?), Dreadwind and Blaster to the Holy Grails? Was there a similar response from the US comic, and do Titan still send these letters out today from Starscream? Enquiring minds want to know. Incidentally, he said he got Tailgate as his free mini-toy. --[[User:Emvee|Emvee]] 15:31, 29 March 2011 (EDT)&lt;br /&gt;
:Good find. A letter from Grimlock is pretty awesome. That should go somewhere. The Letters Page page? - [[User:Starfield|Starfield]] 16:58, 29 March 2011 (EDT)&lt;br /&gt;
::I&#039;ve added a link from there; I&#039;ll type it up verbatim if we think it&#039;s justified? --[[User:Emvee|Emvee]] 18:09, 29 March 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Voice actors by series ==&lt;br /&gt;
&lt;br /&gt;
We have a bunch of categories for voice actors by language, but I was wondering if we should have categories for voice actors by series? Would categories like &amp;quot;Beast Wars voice actors&amp;quot; and &amp;quot;Victory voice actors&amp;quot; be useful? --[[User:Abates|abates]] 04:27, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:That could be useful.  It&#039;d be better than looking up cast lists and opening up every character page, at least. -- [[User:Semysane|Semysane]] 06:30, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Sound like a nice idea to me. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 10:01, 14 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Just Stop&amp;quot; Notice? ==&lt;br /&gt;
&lt;br /&gt;
Do we think there&#039;s a role for the following proposed user notice template, for users like Eagc7?&lt;br /&gt;
&lt;br /&gt;
{{messagebox|image_name=War_War_Stop_It.jpg|image_width=225px|width=90%|header=Just Stop|message_text=Please stop editing this wiki.  While you haven&#039;t done anything ban-worthy (yet), you are not a productive contributor.  (The reasons &#039;&#039;why&#039;&#039; are above this notice on your talk page.)  So, please, &#039;&#039;&#039;just stop.&#039;&#039;&#039;}}&lt;br /&gt;
&lt;br /&gt;
Opinions? [[User:JW|JW]] 14:39, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:If one is created, I love this image for it! --[[User:MistaTee|MistaTee]] 15:35, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::It seems a bit rude, but the image would be &#039;&#039;perfect&#039;&#039; if this is made. --[[User:NCZ|NCZ]] 15:45, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:::If this gets phrased differently, I&#039;d support it. Right now, the text&#039;s too rude. [[User:Geewunling|Geewunling]] 15:52, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I think it is meant to be rude and probably should be rude. This tag is designed to be placed on the talk pages of people who have seemingly ignored the multiple instances of other tags. --[[User:Khajidha|Khajidha]] 15:57, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
I&#039;m a little iffy on this proposal. I admit that Eagc7 has a very poor grasp of the English language, but I&#039;m a little uncomfortable with telling a person to leave a site just because of that. If you look over his fiction edits (the ones you can read) the posts he has made are accurate, just...occasionally unreadable. -- [[User:SFH|SFH]] 16:02, 26 April 2011 (EDT)&lt;br /&gt;
:I&#039;m with SFH. Eagc7&#039;s English seems to be all over the place, but there are times when he gets it more or less correctly and only needs minor typo fixes. --[[User:Detour|Detour]] 16:21, 26 April 2011 (EDT)&lt;br /&gt;
Whether a person&#039;s edits are bad enough (and bad enough all the time enough) to ask them to never post again seems like something that shouldn&#039;t be in the hands of, well, everybody.  Putting a template up that says you&#039;re a bad speller or that you&#039;re not using Preview enough... that&#039;s pretty straight forward.  But I dunno if I&#039;m comfortable with giving us all a tool to shame each other off the wiki entirely.  --[[User:ItsWalky|ItsWalky]] 16:49, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:In addition, if someone&#039;s edits are so bad (and so consistently bad) that they&#039;re more of a nuisance than they are helpful, then that person should probably just be gotten rid of, instead of getting the Middle Finger Personified In A Template.  As Detour said, yeah, Eagc7&#039;s English could use some work, but he does enough good here that I don&#039;t think he&#039;s completely poison or anything.  --[[User:ItsWalky|ItsWalky]] 16:51, 26 April 2011 (EDT)&lt;br /&gt;
I could maybe get behind the idea of a &amp;quot;Stop editing until you&#039;ve read the complaints on your user page&amp;quot; template for the blissfully unaware people constantly making edits that are being undone as soon as they make them whilst ignoring comments on their user page telling them what they&#039;re doing wrong.  But a template like THIS, and this sort of behavior in general, is how we end up with trolls that come by and vandalize the wiki on a daily basis for years and years.  We could avoid that sort of future headache by just not being all-out douchebags to people even if they&#039;re stupid and/or their contributions are annoying. --[[User:DrSpengler|DrSpengler]] 17:15, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I suppose the only problem with making a &amp;quot;read your talk page&amp;quot; template is that they&#039;ll never read it. -- [[User:Semysane|Semysane]] 18:24, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I like this idea, too. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::Got me there. --[[User:DrSpengler|DrSpengler]] 18:36, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:This will not go well.  If someone&#039;s a real pest here, ban them.  If they&#039;re being a pest but not quite that bad yet, notify them on their talkpage with whichever templates are already needed, and then if they don&#039;t clean up, ban them.  We shouldn&#039;t be creating--publicly--an underclass of users.  If you&#039;re allowed to have an account here, you&#039;re allowed to post--otherwise we look scummy.  --[[User:Thylacine 2000|Thylacine 2000]] 19:17, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
::This is basically every stereotype of this wiki and its userbase given textbox form.  I love it.  [[User:Hooper X|-hx]] 20:33, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
The consensus seems to be against it, and the arguments are all good ones.  (Kind of a pity, since the image was so perfect, but...)  I withdraw the suggestion.  Thanks all for weighing in!  [[User:JW|JW]] 20:25, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It is a good template despite the rudeness, but it is potentially necessary for extreme conditions as a last resort. --&#039;&#039;&#039;[[User:TX55|&amp;lt;span style= &amp;quot;color:#00FA9A&amp;quot;&amp;gt;TX55&amp;lt;/span&amp;gt;]]&#039;&#039;&#039;&amp;lt;small&amp;gt;&amp;lt;SUP&amp;gt;&#039;&#039;[[User talk:TX55|&amp;lt;span style= &amp;quot;color:#0000CD&amp;quot;&amp;gt;TALK&amp;lt;/span&amp;gt;]]&#039;&#039;&amp;lt;/SUP&amp;gt;&amp;lt;/small&amp;gt; 21:01, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
Is it possible that we could reuse that image for another template?  Perhaps a Final Warning template, letting users know that if they don&#039;t cut their shit out, they&#039;re gonna get banned. -- [[User:Semysane|Semysane]] 21:42, 26 April 2011 (EDT)&lt;br /&gt;
: Clearly it should be used for a &amp;quot;stop edit/revert warring&amp;quot; template.  --[[User:ItsWalky|ItsWalky]] 22:32, 26 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Our Blogger blog? ==&lt;br /&gt;
&lt;br /&gt;
To me it appears that our blog doesn&#039;t have much use. Our twitter sends out links to occasional pages and our facebook is an easy place to congregate and talk about TFs and not take up our talk pages, but the blog hasn&#039;t been used in over half a year.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking using it to keep track of current trends and such. We could highlight pages that are being worked on, point out users who have been creating/adding a lot to pages (i.e. Geewunling creating minor GI Joe pages, Chris McFeely going crazy with the Japanese food tie-ins). This way an editor or lurker who happens to miss a few days can easily catch up rather than having to sift through the new pages and new files (and even then if a page has just had an entirely new writeup from a stub, it wouldn&#039;t show up there).&lt;br /&gt;
&lt;br /&gt;
Any thoughts on this? --[[User:Bluestreak7|Bluestreak7]] 14:21, 28 April 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
:I think it would be a good way to draw attention to obscure and/or new stuff on the Wiki. --[[User:Abates|abates]] 07:46, 2 May 2011 (EDT)&lt;br /&gt;
::I think so, too, but there are questions left unanswered if we want to go ahead with this. Who would be given control over the posts? Should it be extra mod duties or instead given to some other veteran editors? If so, how many? Would we want weekly updates or something with less frequency? Overall, who is in the current position to grant other users the power to add posts. I can see this as a useful too, but like many things on this wiki, we need to come up with some sort of procedure before it comes to fruition. --[[User:Bluestreak7|Bluestreak7]] 11:33, 3 May 2011 (EDT)&lt;br /&gt;
&lt;br /&gt;
==TFwiki in the past week==&lt;br /&gt;
Could someone tell me why the TFwiki has been down/inaccessible for most of the time in the past week? [[User:Geewunling|Geewunling]] 02:04, 10 May 2011 (EDT)&lt;br /&gt;
:I would wager &amp;quot;massive spikes in traffic, as DotM stuff hits,&amp;quot; which has happened before.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:20, 10 May 2011 (EDT)&lt;br /&gt;
::I thought traffic wouldn&#039;t be a likely cause since the third movie is still over a month away. Guess I was wrong. Thanks! [[User:Geewunling|Geewunling]] 02:27, 10 May 2011 (EDT)&lt;br /&gt;
:::There&#039;s at least some clamor now that the toys are out there.--[[User:Rosicrucian|Rosicrucian]][[User Talk:Rosicrucian|&amp;lt;sup&amp;gt;Talk&amp;lt;/sup&amp;gt;]] 02:46, 10 May 2011 (EDT)&lt;br /&gt;
::::Technical explanation or non-technical?  Traffic HAS picked up a bit, the wiki hardware (such as it is) is slightly overtaxed, and we need to start doing some math on what we can separate into other servers, and how much it&#039;ll cost to do so.--[[User:McFly|McFly]] 16:15, 13 May 2011 (EDT)&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=Optimus_Prime_(G1)&amp;diff=362305</id>
		<title>Optimus Prime (G1)</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=Optimus_Prime_(G1)&amp;diff=362305"/>
		<updated>2009-09-08T16:39:33Z</updated>

		<summary type="html">&lt;p&gt;McFly: Undo revision 362303 by 74.248.211.250 (Talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{factions|autobot|autobotg2}}&lt;br /&gt;
{{disambig3|Optimus Prime}}&lt;br /&gt;
{{suite}}&lt;br /&gt;
:&#039;&#039;Optimus Prime is the leader of the [[Autobot]]s from the [[Generation 1 (franchise)|Generation 1]] [[continuity family]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Image:Optimusg1.jpg|right|350px|thumb|I&#039;m that guy everyone remembers. No, not the [[Soundwave (G1)|tape guy]], the other guy.]]&lt;br /&gt;
&#039;&#039;&#039;Optimus Prime&#039;&#039;&#039; is the awe-inspiring [[Prime (rank)|leader]] of the [[Autobot]] forces. Originally a mere civilian, he was chosen by the [[Matrix of Leadership|Matrix]] to command, the first in a number of heavy burdens he has been forced to bear. Another is his bringing of the Transformers&#039; conflict to Earth. The complete opposite of his mortal enemy [[Megatron (G1)|Megatron]], every casualty, [[human]] or [[Transformer|Cybertronian]], weighs heavily on his [[spark]]. He does not show this side to his soldiers, and he never succumbs to despair. The Autobots need a decisive, charismatic leader, and that is what he gives them. It was that leadership which turned the tide of the [[Great War (G1)|Great War]]. &lt;br /&gt;
&lt;br /&gt;
On the battlefield, there are few who rival Optimus Prime&#039;s prowess. He is easily the strongest of any Autobot his [[Scale|size]], and his [[ion blaster]] and his [[energon-axe]] are deadly weapons. He would sacrifice his life to protect his fellow Autobots or those under their care, and [[The many deaths of Optimus Prime|does so on a regular basis]]. His compassion for other sentient beings is his only real weakness, and one the Decepticons have taken advantage of time and again... though it&#039;s also the source of his strength!&lt;br /&gt;
&lt;br /&gt;
Prime carries within him the [[Matrix of Leadership]].&lt;br /&gt;
&lt;br /&gt;
Before being rebuilt into a [[Powermaster]] his robot mode split into three components:&lt;br /&gt;
&lt;br /&gt;
*A sentient robot module, the [[Brain Center]].&lt;br /&gt;
*A wheeled drone module known as [[Roller]].&lt;br /&gt;
*A [[Combat Deck]].&lt;br /&gt;
&lt;br /&gt;
Although Optimus Prime can function as three independent modules, injury to any one module is felt by the other two.&lt;br /&gt;
&lt;br /&gt;
{{bigquote|Freedom is the right of all sentient beings.|Optimus Prime&#039;s most common [[bio]] quote}}&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Japanese name:&#039;&#039; &#039;&#039;&#039;Convoy&#039;&#039;&#039; (コンボイ)&lt;br /&gt;
:&#039;&#039;Japanese name (Laser Rod):&#039;&#039; &#039;&#039;&#039;Battle Convoy&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;French-Canadian &amp;amp; Czech name:&#039;&#039; &#039;&#039;&#039;Optimus Primus&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;Hungarian name (The Movie):&#039;&#039; &#039;&#039;&#039;Optimusz Fővezér&#039;&#039;&#039; / &#039;&#039;&#039;Optimusz Prájm&#039;&#039;&#039; (&amp;quot;Optimus Chief&amp;quot;)&lt;br /&gt;
:&#039;&#039;Italian name:&#039;&#039; &#039;&#039;&#039;Commander&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;Portuguese name (Portugal comics):&#039;&#039; &#039;&#039;&#039;Optimus Supremo&#039;&#039;&#039; (&amp;quot;Optimus Supreme&amp;quot;)&lt;br /&gt;
:&#039;&#039;Portuguese name (Brazil cartoon):&#039;&#039; &#039;&#039;&#039;Líder Optimus&#039;&#039;&#039; (&amp;quot;Leader Optimus&amp;quot;), sometimes Optimus Prime&lt;br /&gt;
:&#039;&#039;Portuguese name (Brazil comics):&#039;&#039; &#039;&#039;&#039;Supremus Absolutus&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;Taiwanese name:&#039;&#039; &#039;&#039;&#039;Tīh-ghŭ&#039;&#039;&#039; (鐵牛, literally &amp;quot;Iron Ox&amp;quot; or &amp;quot;Iron Bull&amp;quot;, a kind of vehicle in early days and rural area)&lt;br /&gt;
:&#039;&#039;Chinese name (Taiwan):&#039;&#039; &#039;&#039;&#039;Jr-tsūn&#039;&#039;&#039; (至尊, &amp;quot;Prime&amp;quot;)&lt;br /&gt;
:&#039;&#039;Cantonese name:&#039;&#039; &#039;&#039;&#039;O Baak Man&#039;&#039;&#039; (柯柏文)&lt;br /&gt;
:&#039;&#039;Chinese name (China):&#039;&#039; &#039;&#039;&#039;Qing Tian Zhu&#039;&#039;&#039; (擎天柱, &amp;quot;Pillar that Supports the Sky&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
==Fiction==&lt;br /&gt;
===Marvel Comics continuity===&lt;br /&gt;
{{main|Optimus Prime (G1)/Marvel Comics continuity}}&lt;br /&gt;
[[Image:CommandPerformances-Autobotsattack.jpg|left|thumb|300px|Don&#039;t worry, the multiple crises of conscience come soon enough.]]&lt;br /&gt;
&lt;br /&gt;
Optimus Prime was a gladiator champion for [[Iacon]] before quickly working his way up the Autobot ranks once [[Megatron (G1)|Megatron]] started the war.  Four million years ago, when Decepticons attacked the [[Ark (G1)|Ark]], he personally chose to crash it onto [[Earth]], a decision that caused him much remorse when the war restarted on Earth in the modern day.  &lt;br /&gt;
&lt;br /&gt;
Though Optimus allowed himself to be destroyed when he betrayed his own moral code while playing a video game, a copy of his mind survived on a [[floppy disk]].  Years later, he was restored as a [[Powermaster]], binary bonded to the [[Nebulan]], [[Hi-Q]].  Optimus Prime slowly earned the respect of Decepticon leader [[Scorponok (G1)|Scorponok]], mourned the loss of his friend [[Ratchet (G1)|Ratchet]], and ultimately sacrificed everything to defeat [[Unicron]].  Though Optimus died again, his mind persisted in Hi-Q, and the [[Last Autobot]] was able to restore him as an [[Action Master]] in time to bring a temporary end to the war.  &lt;br /&gt;
&lt;br /&gt;
In [[Generation 2|one universe]], Optimus Prime went on to battle [[Jhiaxus (G2)|Jhiaxus]], his [[Cybertronian Empire]], and the [[Swarm]].  In [[Classics (2006)|another]], fifteen years of peace passed before Megatron rose again.  &lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===S.T.A.R.S. pack-in flyers===&lt;br /&gt;
The Autobots were outnumbered and outgunned on Earth from the start, though Optimus was confident (and correct) that reinforcements from Cybertron would arrive. {{storylink|Reinforcements from Cybertron!}} &lt;br /&gt;
&lt;br /&gt;
However, the situation was still so desperate that Optimus not only decided to recruit human allies {{storylink|The battle is far from over!}}, but aggressively tried to recruit and &#039;&#039;deputise&#039;&#039; human children, including giving them the power to co-ordinate Autobot teams in battles. He wouldn&#039;t even make a final move on the Decepticons until he had enough child soldiers on his side. {{storylink|Earthlings: THE S.T.A.R.S. need your help now!}} {{storylink|Have the Decepticons defeated us once and for all?}} In at least one case, this likely led to the &#039;&#039;death&#039;&#039; of a small boy at Decepticon hands. {{storylink|Can one boy, alone, hold back the evil Decepticons?}}&lt;br /&gt;
&lt;br /&gt;
Optimus later led a convoy in search for a building site for [[Autobot City]], which ran into a Decepticon ambush. {{storylink|Rodimus Prime remembers the Transformers greatest battle on Earth.}} He sent off several Autobots to get help, knowing this was the only chance of victory. {{storylink|Transformers Combat Data}} Those several Autobots were seen again, but Prime... wasn&#039;t. &lt;br /&gt;
&lt;br /&gt;
===Generation 1 cartoon continuity===&lt;br /&gt;
{{main|Optimus Prime (G1)/Generation 1 cartoon continuity}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Mtmte2_shermandam.jpg|left|250px|thumb|He had this ax once.  It was very memorable.]]&lt;br /&gt;
&lt;br /&gt;
Before the war, Optimus Prime was originally &#039;&#039;&#039;Orion Pax&#039;&#039;&#039;, a young dock worker with a girlfriend named [[Elita One|Ariel]].  But as the war began, Megatron destroyed them both, and [[Alpha Trion (G1)|Alpha Trion]] rebuilt them into more powerful warriors.  &lt;br /&gt;
&lt;br /&gt;
Four million years ago, Optimus Prime ended a Decepticon attack on the Ark by directing it towards prehistoric Earth.  When both factions reawakened in 1984, Optimus Prime and the Autobots fought the Decepticons on numerous occasions until 2005.  During an attack on [[Autobot City]] on Earth, Prime fell in battle against Megatron and passed the [[Matrix of Leadership]] to [[Ultra Magnus (G1)|Ultra Magnus]].  &lt;br /&gt;
&lt;br /&gt;
Optimus Prime eventually returned, once as a [[zombie]], and again when he was rebuilt by the [[Quintesson]]s to stop the spread of the [[Hate Plague]].  &lt;br /&gt;
&lt;br /&gt;
The details between these events differ between universes.  Sometimes Optimus Prime merged with [[Vector Sigma]] soon after defeating the Hate Plague, and returned much, much later as Star Convoy.  Sometimes Optimus Prime partnered up with [[Marissa Faireborn]] to receive upgrades through mutual [[kiss]]ing.  Sometimes... look, he did a lot of weird stuff, okay?&lt;br /&gt;
&lt;br /&gt;
===Kid Stuff Talking Story Books===&lt;br /&gt;
:&#039;&#039;Voice actor:&#039;&#039; Unknown&lt;br /&gt;
&lt;br /&gt;
Optimus Prime is a &amp;quot;metallic nemesis&amp;quot;. Megatron said so.&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===Big Looker Story Books===&lt;br /&gt;
[[Image:KidsPrime1.jpg|right|150px|thumb|And the fluffy kitten played with that yarn all gosh-darn night.]]&lt;br /&gt;
&lt;br /&gt;
When a two-part race was being held with a massive supply of oil and gasoline as the prize, both the Decepticons and the Autobots badly wanted to win it. Megatron entered the race by hiding himself inside a hollowed-out car and harassed [[Cliffjumper (G1)|Cliffjumper]] all throughout the contest. When Prime discovered the car was being driven by his arch foe, he swiftly pulled a telephone pole out from the ground and used it to bash the mortal hell out of the cheating Decepticon. Thanks to Prime&#039;s violent intervention, Cliffjumper was able to win the race. Afterward, Optimus Prime celebrated the Minibot&#039;s victory with a gargantuan smile as all the Decepticons starved to death. {{storylink|The Great Car Rally}}&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
{{-}}&lt;br /&gt;
===Ladybird Books continuity===&lt;br /&gt;
{{storylink|Autobots&#039; Lightning Strike}} {{storylink|Megatron&#039;s Fight for Power}} {{storylink|Autobots Fight Back}} {{storylink|Laserbeak&#039;s Fury}} {{storylink|Autobot Hostage}} {{storylink|Decepticons Underground}}&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Transformer PD Type&#039;&#039; comic===&lt;br /&gt;
&lt;br /&gt;
[[Image:PDtype-Matrixattack.jpg|left|thumb|250px|This is the highlight of this entire page.]]&lt;br /&gt;
&lt;br /&gt;
When a horde of time-displaced Decepticons joined forces to hunt down the five [[Blackball]]s, a super energy source, Optimus Prime gathered a team of time-displaced Autobots to help stop them.&lt;br /&gt;
&lt;br /&gt;
In one encounter with his arch-foe [[Megatron (G1)|Megatron]], they reenacted their epic struggle from the [[Battle of Autobot City]]. However, this time around, Prime avoided dying by launching his &amp;quot;Matrix Attack&amp;quot;...&#039;&#039;literally&#039;&#039; launching the [[Matrix of Leadership|Matrix]] from his chest, bonking Megatron on the head. {{storylink|Transformer PD Type|You&#039;re Great! Optimus Prime!}}&lt;br /&gt;
&lt;br /&gt;
Later, Optimus Prime and [[Ultra Magnus (G1)|Ultra Magnus]] concocted a cunning strategy. They disguised a round, black cartoon explosive as a Blackball and gave it to [[Starscream (G1)|Starscream]]. Starscream promptly brought it to Megatron, where it blew both of them up. Optimus and Magnus were astounded their plan actually worked. {{storylink|Transformer PD Type|Don&#039;t Cry! Megatron!!}}&lt;br /&gt;
&lt;br /&gt;
In one of his less impressive moments, after running out of ammo during a battle with [[Deathsaurus (Victory)|Deathsaurus]], Optimus Prime ordered his fellow Autobots to improvise and hurl everything that wasn&#039;t nailed down at their enemy. This included the Blackball, unfortunately. Catching it, Deathsaurus began to fantasize about his inevitable galactic conquest, all the while being pelted with rocks and litter. Frustrated, Deathsaurus accidentally hurled the Blackball back to the Autobots in a fit of rage. {{storylink|Transformer PD Type|Good Job! Deathsaurus!!}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic===&lt;br /&gt;
[[Image:G2Hero.jpg|right|200px|thumb|GAH, HE&#039;S LOOKING AT ME!]]&lt;br /&gt;
In the year 199X, the Decepticons had learned of a powerful new energy source known as [[forestonite]] which just happened to be located (surprise surprise) on [[Earth]]. Megatron sent his trio of [[Cyberjet]]s to Earth first to draw out the enemy Autobots. The Cyberjets made quick work of [[Electro]] but were soon halted by the appearance of Optimus Prime.&lt;br /&gt;
&lt;br /&gt;
Megatron then entered the fray and fired his Black Hole Burn attack from his fusion cannon, narrowly missing Optimus Prime but vaporizing [[Hooligan (G2)|Hooligan]] in the process. Prime fought fiercely but Megatron began to take the upper-hand in battle.&lt;br /&gt;
&lt;br /&gt;
However, Prime was encouraged to keep fighting by the cheers of a human boy named [[Junpei]]. Megatron, surprised at Prime&#039;s resilience, attempted to finish his foe off with his Tornado Axe attack. Prime countered with his Double Wheel-Torque Mega-Ton, which trumped Megatron&#039;s attack and injured the Decepticon badly. Megatron teleported back to his ship and left Earth&#039;s atmosphere, vowing to return.&lt;br /&gt;
&lt;br /&gt;
Optimus Prime addressed Junpei, asking if the boy was injured. Junpei revealed he was alright but presented concern about the Decepticons returning to Earth. Optimus Prime swore that the Autobots would remain on Earth until the threat of the Decepticons was finished and asked for Junpei&#039;s help in making that future a reality. {{storylink|The New Battle!!}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Beast Wars&#039;&#039; cartoon continuity===&lt;br /&gt;
====&#039;&#039;Beast Wars&#039;&#039; cartoon====&lt;br /&gt;
[[Image:G1Prime BWMegs.jpg|left|180px|thumb|You have to get up preeeeetty early in the timestream to beat Optimus Prime!]]&lt;br /&gt;
&lt;br /&gt;
The [[Beast Wars (event)|Beast Wars]] raged on prehistoric Earth, eventually leading to the discovery of the buried Ark sometime after its crash on prehistoric Earth. [[Megatron (BW)|Megatron]], following [[Megatron (G1)|his namesake&#039;s]] instructions in a desperate gambit, decided to attempt to change history by killing Prime, who was still lying in the Ark in [[stasis lock]]. Megatron hoped that this would result in the Decepticons winning the Great War and eventually [[Predacon (BW)|Predacon]] control of Cybertron. Megatron unleashed a full-power weapon blast at Optimus Prime&#039;s face, near-fatally injuring him. {{storylink|The Agenda (Part III)}} However, [[Optimus Primal]] proceeded to take Prime&#039;s spark into his body to protect it from surgical trauma while his injuries were repaired. The subsequent power increase caused by Prime&#039;s spark&#039;s connection to the Matrix mutated Primal into a large, [[Transmetal]] &amp;quot;Optimal Optimus&amp;quot; form. Then, with the repairs complete, Prime&#039;s spark was restored, and he briefly activated before sinking back into normal stasis. {{storylink|Optimal Situation}}&lt;br /&gt;
&lt;br /&gt;
Sometime after the Autobots and Decepticons awoke in the 1980s, the original Megatron gained access to one of Earth&#039;s &#039;&#039;Voyager&#039;&#039; spacecraft and inscribed a message on the [[Golden Disk (Voyager)|disk]] on board. In the event that he lost the War, Megatron left instructions for the descendants of the Decepticons to use [[transwarp]] technology to travel to Prehistoric Earth, locate the [[Ark (G1)|Ark]], and change history by killing Optimus Prime. {{storylink|The Agenda (Part 2)}}&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Beast Machines&#039;&#039; cartoon====&lt;br /&gt;
[[Image:Sparkwar2_Optimus_hologram_primal.jpg|right|200px|thumb|]]&lt;br /&gt;
:&#039;&#039;Voice actor&#039;&#039;: [[Garry Chalk]] (English), [[Tilo Schmitz]] (German)&lt;br /&gt;
&lt;br /&gt;
An enormous statue of Optimus Prime, bearing two [[Golden Disk (disambiguation)|Golden Disks]], could be seen on Cybertron in front of the Hall of Archives. The statue was subsequently blown to pieces by the [[Vehicon (BM)|Vehicon forces]]. {{storylink|Fires of the Past}} Later, Megatron beamed a hologram of Optimus Prime down to the ruins of [[Iacon]] to confront [[Optimus Primal]]. Primal mistook the hologram for the real thing and shared with it the code for the [[Oracle (BM)|Oracle]]. Megatron quickly revealed his ruse. Primal explained to his Maximals that he knew the image was fake, but he needed the location of the missing [[spark]]s from Megatron&#039;s mind. {{storylink|Sparkwar Pt. II: The Search}}&lt;br /&gt;
&lt;br /&gt;
{{note|Writer [[Bob Skir]] claims that neither the statue nor the golden disks in its hands were mentioned in the script. However, he suggested that they were either the [[Golden Disk (Voyager)|disks]] from the Voyager 1 and Voyager 2 probes, or that Optimus won them in the 2,395,989th Annual Cybertronian spelling bee.&amp;lt;ref&amp;gt;[http://bigbot.com/beast-machines-transformers-bob-skir/Beast-Machines-FAQ/Tue_12_Oct_1999.html Q&amp;amp;A from Bigbot&#039;s &amp;quot;bobskir.com&amp;quot;]&amp;lt;/ref&amp;gt; We&#039;re betting on the latter.}}&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Universe: Primeval Dawn&#039;&#039;====&lt;br /&gt;
[[Image:Sparkholderprimevaldawn.jpg|left|190px|thumb|&amp;quot;Oh, I also have this in me now, too.&amp;quot;]]&lt;br /&gt;
The Vok took the Matrix of Leadership from an unconscious Optimus Prime, used it to create [[Primal Prime]], then gave the Matrix to their new creation. {{storylink|Primeval Dawn Part 1}}&lt;br /&gt;
&lt;br /&gt;
{{note|In the &#039;&#039;Beast Wars&#039;&#039; cartoon, Prime&#039;s spark was shown to be contained in a Matrix-like vessel. In [[Universe (2003 comic)|Primeval Dawn]], that vessel was shown to be merely a container for his spark, and the actual Matrix was hidden underneath.}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Beast Wars Metals&#039;&#039; comic===&lt;br /&gt;
[[Image:CheetasManga1.jpg|right|100px|thumb|Cheetor, that&#039;s Prime&#039;s Spark, not a toy.]]&lt;br /&gt;
Optimus Prime was blasted into pieces by Dragon Megatron. Fortunately, his spark remained perfectly intact—in the remains of his [[Optimal Situation|Matrix-shaped spark chamber]]. Megatron was going to destroy Prime&#039;s spark, but [[Cheetor (BW)|Cheetor]] (now in his Transmetal body) saved it. Prime&#039;s spark was eventually swallowed by Optimus Primal, who was upgraded into Optimal Optimus by doing so.&lt;br /&gt;
&lt;br /&gt;
After Megatron was killed by Optimal Optimus, Primal and his crew said it would be troublesome to fix Optimus Prime&#039;s body.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===Dreamwave comics continuity===&lt;br /&gt;
{{cleanup|April 2009|Needs general expansion and STORYLINKS TO INDIVIDUAL ISSUES. Links to the series are not acceptable.}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Optronix optimus.jpg|left|180px|thumb|What? OPTRONIX is evolving!]]&lt;br /&gt;
Optimus Prime started life as &#039;&#039;&#039;Optronix&#039;&#039;&#039; (Orion to his friends&amp;lt;ref&amp;gt;The [[Keepers Trilogy]] novels set in Dreamwave continuity&amp;lt;/ref&amp;gt;), a data archivist. After taking note of a battle in which the Autobot leader [[Sentinel Prime (G1)|Sentinel Prime]] had been defeated by Megatron, he was summoned to the council of elders and informed that the Matrix had chosen him to be the next leader of the Autobots. He received the Matrix of Leadership shortly thereafter, gaining a powerful new body in the process, and almost arranged for the Autobot evacuation of Cybertron, intending to leave the Decepticons to their own devices, until a battle with Megatron beneath the planet&#039;s surface, accompanied by visions from the Matrix, stirred him on to fight for the safety of his homeworld. Some time into his role as leader, Prime disappeared in a [[space bridge]] explosion along with Megatron, but returned some time later, having spent a period of time on [[Quintessa]]. {{storylink|The War Within}}&lt;br /&gt;
&lt;br /&gt;
Following the awakening of the Transformers on Earth, the Autobots protected the planet from the Decepticons. Over the next fifteen years, the Autobots befriended the humans, particularly the [[Witwicky|Witwicky family]]. The Autobots finally allied with humankind and eventually defeated the Decepticons at the turn of the century. They planned to return to Cybertron aboard the newly constructed &#039;&#039;[[Ark II]]&#039;&#039;, along with seven humans, including Witwicky patriarch [[Sparkplug Witwicky|Sparkplug]]. Before the ship departed, Prime gave a piece of the Matrix to [[Spike Witwicky (G1)|Spike Witwicky]], Sparkplug&#039;s son and [[Bumblebee (G1)|Bumblebee]]&#039;s closest human friend. But the ship was destroyed as part of a military conspiracy to take control of the Transformers. However, a terrorist organization run by the enigmatic [[Lazarus]] was able to seize control of several of the Transformers that fell back to Earth, while the U.S. military located Prime&#039;s body. Spike was forced by the product chief, General [[Robert Hallo]], to use the piece of the Matrix to reactivate Prime. Functional again, Prime used the Matrix to reactivate more of his fallen comrades, and then faced off against Megatron in [[San Francisco]]. {{storylink|Prime Directive}}&lt;br /&gt;
&lt;br /&gt;
Following this, Prime began to experience subconscious urgings, leading both the Autobots and the Decepticons to the Arctic Circle, where Shockwave arrived to greet them—and arrest them as war criminals. Shockwave had succeeded in ending the war on Cybertron, but Prime soon fell in with a rebel Autobot group that had discovered Shockwave had a greater agenda. Rallying Autobots across Cybertron to the cause, Prime faced Shockwave in battle but was defeated and had the Matrix ripped from him and used to activate Vector Sigma. Before Shockwave could make full use of the mega-computer&#039;s data, however, [[Ultra Magnus (G1)|Ultra Magnus]] arrived and bested him. The injuries Prime took in this conflict necessitated a prolonged restoration period in stasis. {{storylink|War and Peace}}&lt;br /&gt;
&lt;br /&gt;
{{note|...which turned out to be the remainder of Dreamwave&#039;s existence. Bummer.}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;===&lt;br /&gt;
[[Image:GIJoevsTFcobraprime.jpg|right|275px|thumb|G.1. Joe—the real universal hero!]]&lt;br /&gt;
&lt;br /&gt;
Several Autobots and Decepticons, including Optimus Prime, were reformatted into will-less war machines under the control of [[Cobra]]. During an initial attack on a human peace conference, Cobra&#039;s remote control of Optimus mysteriously failed. Later at Cobra&#039;s island headquarters in the Caribbean, Cobra scientists pulled Optimus apart to find out what was impeding their commands. As this analysis took place, Optimus reverse hacked into Cobra computers until they shut him down in a panic. Despite this, Prime sent a viral message out to hundreds of email addresses that included the coordinates of Cobra&#039;s base. The message was intercepted by [[G.I. Joe (team)|G.I. Joe]] who teamed up with Wheeljack and Bumblebee. After Wheeljack broke the remote control over the Transformers, Prime went after [[Cobra Commander]]. More than a bit frightened of a giant robot gunning for him, the human released Megatron, who was trapped in gun model. Megatron transformed and fought Prime to a standstill until other Autobots came to back him up. &lt;br /&gt;
&lt;br /&gt;
Although he was weak and low on [[Energon (fuel)|energon]], Prime made a last-ditch effort to save the day when he rammed through the wall of Megatron&#039;s energon-producing lab. After a quick recharge, Optimus single-handedly smashed the Decepticons, pounded Megatron to the ground, and ripped his [[fusion cannon]] off his arm. Prime then teamed up with the Joes and used Megatron&#039;s cannon to shoot down the [[SPS satellite]] that had gone rogue and was destroying the island. &lt;br /&gt;
&lt;br /&gt;
With the battle over, Prime and the Autobots boarded a new &#039;&#039;[[Ark (G1)|Ark]]&#039;&#039; ship built by G.I. Joe and returned to [[Cybertron (planet)|Cybertron]]. {{storylink|G.I. Joe vs. the Transformers}}&lt;br /&gt;
&lt;br /&gt;
[[Image:GIJoevstfIIprime1930s.jpg|left|275px|thumb|Retro Convoy: TRANSFORM!!!]]&lt;br /&gt;
On a Cybertron dominated by [[Shockwave (G1)|Shockwave]] and the Decepticons, Optimus Prime and the Autobots took on the roles of resistance fighters. Cobra experimentation transported a contingent of Cobras and G.I. Joes to Cybertron and destabilized [[Teletran 3]]. The computer then sent several Transformers to [[Earth]] across different time periods. A team made up of Joes and Cobra agents were sent back and found Optimus Prime and the [[Stunticon]]s in 1930s-era Chicago, disguised as period cars and trucks. The Stunticons chased Prime and the Joes around the city until everything was wrapped up with bullets, a collapsed bridge and some dynamite.&lt;br /&gt;
&lt;br /&gt;
After the Transformers and humans were returned to present-day Cybertron and the Decepticons were vanquished by the recently-arrived [[Dinobot (G1)|Dinobots]], Prime made an agreement with the Joes to destroy the technology that started the whole mess in order to protect Earth. {{storylink|G.I. Joe vs. the Transformers II}}&lt;br /&gt;
&lt;br /&gt;
On Cybertron, Optimus Prime kicked back to do a little bit of paperwork and reminisce. With Shockwave defeated, Cybertron was enjoying a new era of peace. He was interrupted by Hot Rod, who reported that a group of &amp;quot;pesky humans with their peashooters&amp;quot; were giving an Autobot team on Earth a hard time. Prime suspected Cobra&#039;s involvement and counseled Hot Rod not to be so dismissive of the humans. &lt;br /&gt;
&lt;br /&gt;
Later, at a peace celebration, Prime was watching a procession of Autobots when Decepticons attacked. Optimus ordered Omega Supreme into action but the huge Autobot was quickly overcome by Menasor, Piranacon and Predaking. Prime hopped into the fray, saved a female Autobot from getting smushed by the falling Omega, rode a flying Decepticon into Piranacon&#039;s face, smashed another Decepticon into the ground, and carried a wounded Autobot out of danger. &lt;br /&gt;
&lt;br /&gt;
[[Image:Primevsserpentor.jpg|right|175px|thumb|Serpent O.R. soon realized that &amp;quot;This I command!&amp;quot; doesn&#039;t work on Optimus Prime.]] &lt;br /&gt;
Menasor cut off Prime&#039;s escape and confronted him with a hologram of [[Serpentor|Serpent O.R.]] The new Decepticon leader carried Megatron&#039;s memories and information downloaded from Soundwave, from which he learned of the Matrix of Leadership. Serpent O.R. offered Optimus a trade: hostages and peace if he handed over the Matrix. Optimus agreed. &lt;br /&gt;
&lt;br /&gt;
In his stronghold, Serpent O.R. questioned Prime about his own worthiness to carry the Matrix, but Optimus broke free of his chains and aggressively ordered him to surrender. A group of Decepticons broke in and nearly took Prime apart, but not before Serpent O.R. took the Matrix for himself and changed into the massive Serpentor Prime. The Matrix showed Serpentor Prime the error of his ways but as he was about to commit suicide Cobra Commander tripped a device and took over Serpentor Prime&#039;s body. Moments before he crushed Arcee, a severely damaged Optimus Prime threw Hawk toward the Matrix but warned the human not to touch the artifact. Hawk did so anyway and through a quasi-mystical transfer of power Serpentor Prime was vanquished. &lt;br /&gt;
&lt;br /&gt;
Later repaired by a female nursebot, Optimus went back to finishing his paperwork. A leader&#039;s job is never done. {{storylink|G.I. Joe vs. the Transformers: The Art of War}}&lt;br /&gt;
&lt;br /&gt;
Sensing a new, yet old, danger to planet Earth, Prime elected to send himself to earth on an investigation, and gave Hot Rod a glare when the young Autobot accused his leader of taking an unnecessary risk to atone for the death of a close friend.&lt;br /&gt;
&lt;br /&gt;
Optimus Prime landed in the Himalayan Mountains with G.I. Joes [[Flint (G.I. Joe)|Flint]] and [[Hawk (G.I. Joe)|Hawk]]. As they searched the area, the trio was attacked by [[Bludgeon (G1)|Bludgeon]] in his [[Pretender]] shell. Prime whacked him with his [[energon-axe]] and in return Bludgeon bearhugged him and coated him in metal-eating slime. Hawk, still carrying power from the Matrix, helped Prime break free. Optimus then shot his way into the hidden kingdom of [[Cobra-La]].&lt;br /&gt;
&lt;br /&gt;
While they wandered through the tunnels, the Joes and Prime found cave paintings that described the last visit to Earth by the planet-eating god [[Unicron]]. They were attacked again by Bludgeon and Cobra-La minions, but were led away by a ragged [[Joe Colton]], prisoner of Cobra-La for the last 25 years. Bludgeon managed to find them again and during a second battle Prime tore open the Pretender&#039;s shell, revealing Bludgeon&#039;s robot form inside. Bludgeon tripped and dangled dangerously over a chasm, but rather than let Optimus Prime save him, Bludgeon forced Prime to drop him to his death laughing all the way down.&lt;br /&gt;
&lt;br /&gt;
The Joes discovered a cavern where the people of Cobra-La were growing metal-eating spores as a last defense against Unicron. Flint and [[Cosmos (G1)|Cosmos]] took a load of the spores into space just as Unicron appeared in Earth orbit. Prime, Hawk and Colton headed deeper into Cobra-La to rescue [[Firewall]] and kick butt. Prime was tackled and pinned by a giant bug creature, but made a dramatic recovery and tossed the bug aside. He then took the machine-hating Cobra-La leader [[Golobulus]] to task with a single punch. Flint and Cosmos released the spores, which devoured Unicron from the inside and defeated the giant Transformer before he could harm [[Earth]].&lt;br /&gt;
&lt;br /&gt;
With the threat of Unicron gone, Prime relaxed with [[Eject]] and Firewall by watching some reality TV, and sighed at the banality. {{storylink|G.I. Joe vs. the Transformers: Black Horizon}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Transformers/G.I. Joe&#039;&#039;===&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
=== IDW comics continuity ===&lt;br /&gt;
{{ongoing}}&lt;br /&gt;
&lt;br /&gt;
{{note|&#039;&#039;[[Megatron Origin]]&#039;&#039; depicted that before the war, a robot that&#039;s a hybrid of the &amp;quot;Orion Pax&amp;quot; and &amp;quot;Optronix&amp;quot; designs appears listening to [[Sentinel Prime (G1)|Sentinel Prime]]&#039;s speech at the funeral of [[Bumper (G1)|Bumper]] and [[Fastback]]. He is standing with [[Elita One]], [[Alpha Trion (G1)|Alpha Trion]], and a white version of himself (presumably [[Ultra Magnus (G1)|Ultra Magnus]], possibly even [[Dion]]). Whether this is truly the [[IDW Generation 1 continuity|IDW continuity]]&#039;s version of pre-Prime Optimus or not remains unrevealed.}}&lt;br /&gt;
&lt;br /&gt;
[[Image:SpotlightBlurr-Optimus.jpg|left|thumb|200px|There&#039;s something missing...]]&lt;br /&gt;
&lt;br /&gt;
Galvanized by the death of Sentinel Prime, Optimus joined the Autobot forces under Sentinel&#039;s successor, [[Zeta Prime]], and was assigned to a unit commanded by the veteran [[Kup (G1)|Kup]]. During his tour of duty, his unit intercepted a message reporting a planned attempt on the Prime&#039;s life. He approached former racer [[Blurr (G1)|Blurr]] as a reliable means of getting the news to Zeta Prime in a hurry. The former celebrity balked, but ultimately the young soldier helped Blurr find what really drove him to race, and thus recruited him to the Autobot cause. {{storylink|Spotlight: Blurr}}&lt;br /&gt;
&lt;br /&gt;
An undisclosed amount of time later, Optimus became Optimus Prime. While reviewing his new troops, he came upon a defiant old veteran called Ironhide, who thought of Prime as a wet-behind-the-audio-receptors upstart. Optimus was intrigued by this old coot and asked Ironhide to teach him about the ways of war—and Ironhide did just that. Everything he threw at Optimus, Optimus took and learnt. All his hard comments were taken in. But one day, Optimus, having gained much wisdom since meeting Ironhide, decided to go against Ironhide&#039;s counsel, heading east instead of west. This turned out to be a good idea, as [[Trypticon (G1)|Trypticon]] had been waiting in the west to ambush the Autobot forces. Later still, Ironhide and Optimus got a bit unlucky and ended up dangling off a cliff with Ironhide missing a leg. They were eventually rescued. After this, Ironhide developed a respect and awe for his protege. {{storylink|All Hail Megatron issue 13}}&lt;br /&gt;
&lt;br /&gt;
{{note| This story conflicts with previous fiction featuring Optimus and Irohide: In &#039;&#039;Spotlight: Blurr&#039;&#039;, pre-Prime Optimus and Ironhide are in the same unit, which contradicts neither of them recognizing the other when Optimus &#039;&#039;&#039;Prime&#039;&#039;&#039; reviews his troops.}}&lt;br /&gt;
&lt;br /&gt;
[[Image:IDWOptimus.jpg|right|150px|thumb|Freedom is the right of all sentient and heavily-armed beings.]]&lt;br /&gt;
&lt;br /&gt;
A further undisclosed amount of time later, Optimus Prime commanded the Autobot armed forces spread across the galaxy from the [[Autobot Orbital Command Hub]]. He was directly involved in the cataclysm ([[IDW timeline|just under 450 years ago]]) that reduced [[Cybertron (planet)|Cybertron]] to a dead husk, fighting alongside [[Megatron (G1)|Megatron]] in an attempt to stop [[Thunderwing (G1)|Thunderwing]]&#039;s rampage. Their efforts were futile, and they only survived due to Cybertron itself swallowing Thunderwing at [[Thunderhead Pass]]. Megatron was unconvinced that Thunderwing was dead, and he advocated that Cybertron be destroyed to better insure that the mad Decepticon was forever destroyed. Optimus Prime refused and threatened to stop any effort that Megatron attempted. Megatron agreed to spare the planet, but warned Prime that anything which happened afterward was on his head. &lt;br /&gt;
&lt;br /&gt;
In the present, Prime received a pulsewave from [[Ironhide (G1)|Ironhide]], who was stationed under [[Prowl (G1)|Prowl]]&#039;s team on Earth, saying that the Decepticon infiltration cell under [[Starscream (G1)|Starscream]] had broken their infiltration methods and enacted [[Infiltration protocol|siege mode]] prematurely. Soon afterward, the Autobot science vessel &#039;&#039;[[Calabi-Yau]]&#039;&#039; sent a distress signal from above Thunderhead Pass, and he ordered the [[Wrecker]]s to withdraw from [[Varas Centralus]] and meet him on Cybertron. {{storylink|Stormbringer issue 2|Stormbringer #2}} Thunderwing had been restored by [[Bludgeon (G1)|Bludgeon]] and his followers, and though the Wreckers made short work of them, the real fight would be met with Thunderwing. After the Wreckers, [[Predacon (G1)|Predacons]] and [[Centurion droid]]s were unable to destroy the monster, Prime took to the field, firing massive amounts of energy at Thunderwing, forcing it to exhaust its last reserves of [[Ultra-Energon]] and, ultimately, its life. {{storylink|Stormbringer issue 4|Stormbringer #4}}&lt;br /&gt;
&lt;br /&gt;
[[Image:IDWPrime Earth.jpg|left|150px|thumb|Don&#039;t crush the cameraman!]]&lt;br /&gt;
[[Jetfire (G1)|Jetfire]] discovered information in Bludgeon&#039;s files about the mysterious new form of Energon found on [[Earth]]. Linking it to the pulsewave transmission from Ironhide, Prime diverted his spacecraft to Earth and called [[Nightbeat (G1)|Nightbeat]] in to assist him. {{storylink|Spotlight: Nightbeat}}. Shortly after arrival, and having undergone alteration so that he could disguise himself as an Earth truck, he slowly began to realize how unusual the situation Prowl&#039;s unit had found itself in was. {{storylink|Infiltration issue 6|Infiltration #6}} Not only had the Decepticons broken their own infiltration protocols over what Starscream had dubbed [[Ultra-Energon|Ore-13]], but after attempting to recover what appeared to be [[Sunstreaker (G1)|Sunstreaker]]&#039;s remains, it was also evident that some of the planet&#039;s native sentient lifeforms—[[human]]s—posed a threat possibly equal to that of their old enemies. {{storylink|Escalation issue 2|Escalation #2}}&lt;br /&gt;
&lt;br /&gt;
Optimus Prime, now fully filled-in on Earth&#039;s happenings, decided that they needed reinforcements. He called Nightbeat, [[Hot Rod (G1)|Hot Rod]], and [[Hardhead (G1)|Hardhead]] to come when they could. When Prowl pointed out that Megatron, in his new gun-based Earth mode, was in the breakaway Soviet state of [[Brasnya]] stirring up trouble, Prime ordered them into action.&lt;br /&gt;
&lt;br /&gt;
[[Blitzwing (G1)|Blitzwing]] almost got the drop on Prime, but [[Roller]] was right behind him and took out Blitzwing with a single shot. Megatron returned to his full-size robot mode and disagreed with the quality of Prime&#039;s tea and crumpets. At last, the two rivals were going to go at it.&lt;br /&gt;
&lt;br /&gt;
[[Image:Escalation5 Primedies enlightning.jpg|right|300px|thumb|Rule of thumb, Megs—if he don&#039;t turn gray, he&#039;s A-OK.]]&lt;br /&gt;
The fight went well at first, with Prime blowing Megatron&#039;s [[fusion cannon]] clean off. Megatron, however, tireless thanks to Ore-13, prevailed, almost beating Prime into [[stasis lock]]. {{storylink|Escalation issue 5|Escalation #5}}&lt;br /&gt;
&lt;br /&gt;
However, Prime transferred his consciousness into his trailer, leading Megatron to believe him dead. Realizing that Ore-13 was the same as Ultra-Energon, Prime returned to his body in time to save his forces from the relentless Megatron, blasting him point blank in the face and dealing enough damage to the Decepticon leader to drain his power reserves, just as he did against Thunderwing. The victory was narrow, however, leaving Optimus with the daunting task of fending off an increasing enemy force without his last ace in the hole. {{storylink|Escalation issue 6|Escalation #6}}&lt;br /&gt;
&lt;br /&gt;
This near-death experience had left Prime somewhat unsettled. While his consciousness was in [[infraspace]] downloading to his trailer, he sensed a presence of dread—the visage of his long-missing predecessor, [[Nova Prime]]. Looking for answers, Optimus Prime left Earth temporarily to seek an audience with [[Omega Supreme (G1)|Omega Supreme]] for answers. Once there, he found out about Nova&#039;s beliefs of how Transformers were a superior race and should remake the universe in their image, and he faced down the rampaging [[Monstructor]], a legacy of Nova&#039;s tenure locked away by Omega Supreme. Then he gave his &amp;quot;you shouldn&#039;t have done that&amp;quot; speech to Omega, handed Monstructor&#039;s limbs over to Jetfire&#039;s team, and went on to have angst-ridden introspection about himself and the tarnished legacy of the [[Prime (rank)|Prime lineage]]. {{storylink|Spotlight: Optimus Prime}}&lt;br /&gt;
&lt;br /&gt;
After returning to Earth, Nightbeat discovered that a human group was aware of the base&#039;s location and recommended to Prime that they move the &#039;&#039;[[Ark-19]]&#039;&#039;. As preparations were underway, Prime received a message from [[Hound (G1)|Hound]] saying that Thunderwing had been stolen. [[Sideswipe (G1)|Sideswipe]], eager to search for Sunstreaker, suggested that they be reassigned to Earth, and Prime agreed. However, the thrashing that Prime gave Megatron had so embarrassed the Decepticon leader that he ordered in the Decepticons&#039; living weapon, [[Sixshot]]. While moving the &#039;&#039;Ark-19&#039;&#039;, Prime and the others came under fire by Sixshot, who severely damaged their ship. {{storylink|Devastation issue 1|Devastation #1}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Devastation4 PrimeSixshot hyperbole.jpg|left|180px|thumb|&amp;quot;And THAT&#039;S for killing my brother in another timeline!&amp;quot;]]&lt;br /&gt;
Ordering [[Ratchet (G1)|Ratchet]] to get [[Jimmy Pink]] and [[Verity Carlo]] to safety, Optimus then instructed Nightbeat to upload all of &#039;&#039;Ark-19&#039;&#039;&amp;lt;nowiki&amp;gt;&#039;&amp;lt;/nowiki&amp;gt;s data to &#039;&#039;[[Ark-32]]&#039;&#039; and for Prowl to activate the self-destruct sequence. {{storylink|Devastation issue 2|Devastation #2}} When &#039;&#039;Ark-19&#039;&#039; exploded, it was assumed that Optimus was on board, but all was good at the end when he appeared with [[Bumblebee (G1)|Bumblebee]] and the others, ready to take on Sixshot. {{storylink|Devastation issue 3|Devastation #3}} Optimus and the Autobots held Sixshot at bay, but the U.S. military ordered an air strike to destroy the alien robots. The battle was a stalemate, as Sixshot had to return to the Decepticons while the Autobots [[orbital jump]]ed just in time to avoid destruction. {{storylink|Devastation issue 4|Devastation #4}} On &#039;&#039;Ark-32&#039;&#039;, after a conversation with Jetfire, Prime informed Prowl that they needed to retrieve [[Wheeljack (G1)|Wheeljack]], Hot Rod and Ironhide, and leave Earth to see to another crisis. The secure facility on [[Garrus-9]] had been breached, and Prime and company needed to make sure that some of the &amp;quot;recent inmates&amp;quot; there didn&#039;t end up &amp;quot;in enemy hands&amp;quot;. {{storylink|Devastation issue 5|Devastation #5}} Before leaving Earth, Optimus Prime redirected Hound&#039;s unit to rendezvous with &#039;&#039;Ark-32&#039;&#039; at Garrus-9, and he told Hound to impress upon Sideswipe the importance of their mission and how he didn&#039;t leave Earth or Sunstreaker behind lightly. {{storylink|Devastation issue 6|Devastation #6}}&lt;br /&gt;
&lt;br /&gt;
[[Image:DarknessPrimes.jpg|right|250px|thumb|Think he can go one series without having a near-death experience?]]&lt;br /&gt;
Optimus Prime and Prowl met with [[Fortress Maximus (G1)|Fortress Maximus]] and Jetfire on Garrus-9 and discussed the prisoners&#039; breakout and how a surviving Decepticon had been tortured. Maximus and Jetfire gave each other a guilty glance. Prime left Maximus in charge and returned with Prowl to the &#039;&#039;Ark-32&#039;&#039;. Meanwhile, [[Dead Universe]] resident [[Cyclonus (G1)|Cyclonus]] attacked Hound&#039;s crew, but they received help from Ultra Magnus and drove Cyclonus to escape to [[Corata-Vaz]]. There, he activated the [[Nega-Core]] and fought with Magnus and Hound&#039;s crew, who had followed him. In desperation, Cyclonus activated the Nega-Core&#039;s guardian—Thunderwing. Using the distraction, Cyclonus escaped, but Magnus sent another tracker after him. All this was reported to Optimus Prime on the &#039;&#039;Ark-32&#039;&#039;, who recognized that this had something to do with his infraspace encounter in Brasnya. Prime ordered Jetfire to summon the Wreckers to find out what Thunderwing was guarding. {{storylink|Spotlight: Cyclonus}}&lt;br /&gt;
&lt;br /&gt;
The prison soon came under attack from Nova Prime. Rather then watch his soldiers be slaughtered by the undead monster, Optimus Prime ordered a retreat and faced Nova alone. Announcing his new title of Nemesis Prime, Optimus&#039;s predecessor explained the nature of the [[Darkness (G1)|Darkness]] before unleashing a portion on the Autobot leader. Shattered, Prime collapsed onto his hands and knees as Nemesis loomed. {{storylink|Spotlight: Doubledealer}}&lt;br /&gt;
&lt;br /&gt;
[[Image:OptimusdeadNemesis.jpg|left|200px|thumb|&amp;quot;Optimus! I&#039;ve come to help y—oh. Sorted, then?&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
Unexpectedly for Nemesis Prime, the Darkness seemed to be more interested in the younger Prime and sought to be passed onto Optimus. Nemesis wasn&#039;t about to let go of the power he commanded, and he savagely attacked Optimus Prime, whose attempts at reason fell on deaf ears. Just as Nemesis Prime seemed victorious, [[Galvatron (G1)|Galvatron]] attacked the fallen Prime from behind, killing him. Nemesis&#039;s death allowed the Darkness finally to enter Optimus, who tried to fight against its evil to no avail. Galvatron offered the Autobot a choice: kill himself by plunging into the [[Solar pool]], or pass on the Darkness to Galvatron, who had coveted it for so long. Optimus seemed to do so willingly, but just as he passed on the Darkness, he threw the surprised Galvatron into the solar pool. As Optimus gazed upon the dead body of Nemesis, he told himself he could not mourn the elder Prime&#039;s death, as Nova had truly died long ago. {{storylink|Spotlight: Sideswipe}}&lt;br /&gt;
&lt;br /&gt;
[[Image:AHMPrimecritical.jpg|right|250px|thumb|So he&#039;s dying. [[The many deaths of Optimus Prime|This shouldn&#039;t be a problem by now]].]]&lt;br /&gt;
A year later, Optimus Prime combined his Autobot squad with another squad. Having received word of a supposed Decepticon power struggle, Prime led the Autobots to a location where Starscream&#039;s &amp;quot;group&amp;quot; was, only to be ambushed by a unified Decepticon force. Though they managed to turn the tide briefly, Devastator&#039;s appearance made the difference, enabling Megatron to rip the Matrix of Leadership from Prime&#039;s chest. Prime was dealt another blow (mentally) when the Autobots were told that they&#039;d been sold out by a traitor in their ranks (who was later revealed to be [[Sunstreaker (G1)|Sunstreaker]]). {{storylink|All Hail Megatron issue 8|All Hail Megatron #8}} The Autobots were led to a space bridge, where Prime, who was the last to go, used his remaining energy to destroy the machine. Unfortunately, this heroic act left Prime in critical condition. {{storylink|All Hail Megatron issue 7|All Hail Megatron #7}} With this defeat, the Autobots were forced to leave Earth to the Decepticons. {{storylink|All Hail Megatron issue 1|All Hail Megatron #1}}&lt;br /&gt;
&lt;br /&gt;
After Prime&#039;s unit met up with Kup&#039;s unit, and after dealing with the Swarm and Sideswipe&#039;s sacrifice to save them, Ratchet and Wheeljack managed to use energon from the &#039;&#039;Trion&#039;&#039; to bring Prime back online in time to smooth over an Autobot argument. As the others excitedly welcomed him back, Prime made a speech about how he was proud of them and that he wanted to win the war. {{storylink|All Hail Megatron issue 9|All Hail Megatron #9}}. After the Autobots recovered and prepared for a final stand against the Swarm, Prime had a brief chat with Ironhide (during which Ironhide admitted to hating him secretly at first sight at the start of the Great War), then prepared for the Swarm&#039;s onslaught. When they came, the Autobots fought back, but they were quickly outnumbered by the thousands. Thankfully, Omega Supreme arrived and saved them from certain doom. After Omega briefly told them about his arrival, Prime ordersed him to transform and transport the Autobots back to Earth. {{storylink|All Hail Megatron issue 10|All Hail Megatron #10}}&lt;br /&gt;
&lt;br /&gt;
Arriving at [[New York City]] while the Decepticons were fending off attacks by a European air squad, Optimus and the Autobots began to engage the Decepticons again. After a bit of fighting, and with the threat of Devasator, Optimus ordered Omega Supreme to take Devastator away from the city and fight him elsewhere. Optimus Prime encountered Megatron, and the two engaged in a bit of viewpoint bantering, mostly about the way their war was now changing and the fact that the humans Prime had &amp;quot;sworn to protect&amp;quot; were about to drop a nuclear bomb on the city. {{storylink|All Hail Megatron issue 11|All Hail Megatron #11}}&lt;br /&gt;
&lt;br /&gt;
[[Image:AHM-13 Prime mouth.jpg|thumb|left|Optimus will overenergize on this stuff, then wake up the next morning in a CR chamber full of ice with his robo-kidneys missing.]]&lt;br /&gt;
&lt;br /&gt;
After that, they engaged in a fierce battle while trading more banter. At first, Megatron took the advantage, but just as he was about to leave with the Decepticons and take the Matrix with him, a shot from [[Shockwave (G1)|an experimental weapon made from a Transformer]] fired by [[Spike Witwicky (G1)|a brave human]] hit him it the face. Seizing the opportunity, Optimus grabbed Megatron&#039;s fusion cannon and slammed it against Megatron&#039;s head, bringing him down in defeat. Before Optimus could truly finish him off, however, Starscream intervened and, after exchanging words, took off with Megatron and the Matrix. Prime&#039;s decision to go after them or save New York from nuclear devastation was rendered moot when Thundercracker, who had grown disenchanted with the way the Decepticons went after the humans, blew up the bomb at the cost of his own life (thanks to an angry Skywarp). The war over for the moment, Prime met with Spike Witwicky, thanked him for helping the Autobots out, and asked if there was some way to help the humans in return. However, Spike responded that they had brought their war to Earth, so any chance of human-Transformer relations was now long gone. {{storylink|All Hail Megatron issue 12|All Hail Megatron #12}}&lt;br /&gt;
&lt;br /&gt;
Later, in an abandoned cave supposedly somewhere within NY&#039;s ruins, Optimus heard Iromhide&#039;s resignation from the Autobot forces. Respecting Ironhide too much, he did not argue, but after some energon and a little flashback, Optimus convinced Ironhide to stay. {{storylink|All Hail Megatron issue 13}}&lt;br /&gt;
&lt;br /&gt;
{{note|The events of &#039;&#039;Spotlight: Mirage&#039;&#039; possibly take place in an alternate/unknown continuity.}}&lt;br /&gt;
&lt;br /&gt;
Optimus Prime commanded one of the last remaining pockets of Autobot resistance, hiding out in the [[Pegasus Star Cluster]]. While awaiting the arrival of Bumblebee&#039;s team, he and Hound tried to work out how to convert the [[Zodiac Energy]] for their consumption. &amp;quot;Bumblebee&#039;s&amp;quot; arrival proved to be their downfall, as it was really the self-serving mercenary [[Mirage (G1)|Mirage]], who destroyed the bunker security systems, allowing the Decepticons inside. Optimus Prime refused to surrender during the ensuing struggle, until Mirage used the critically injured Jetfire as a hostage, forcing Prime to back down. When Megatron betrayed Mirage&#039;s word and ordered the execution of the Autobots, Optimus Prime tried to reason with the mercenary, appealing to his former friendship with Hound...until Mirage killed Hound in defiance. Furious, Optimus Prime broke free of his captors and tackled Mirage into the Zodiac Energy chamber. {{storylink|Spotlight: Mirage}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Hearts of Steel&#039;&#039;===&lt;br /&gt;
[[Image:HeartsofSteel_1_Prime_Bumblebee.jpg|thumb|left|200px|]]&lt;br /&gt;
&lt;br /&gt;
The Autobots and the Decepticons came to [[Earth|a distant world]] in the grip of an ice age. Assuming alternate modes based upon the [[Dinosaur|dominant (though doomed) indigenous creatures]] of this planet, they continued their ancient, unending war. However, the Autobots, with their energy levels dangerously low, withdrew from combat as the world grew colder. They sought refuge in a deep cavern and entered [[stasis lock]], awaiting the day when surface conditions changed to better suit their operation. Millions of years later, Bumblebee was awoken by the hammering of humans working on a rail line. He briefly considered awakening Optimus Prime, but thought better of it. After discovering the world had changed significantly, Ratchet thought there was no reason to awaken Prime. {{storylink|Hearts of Steel issue 1}} When Bumblebee discovered the Decepticons were once again active on this world, Ratchet and Prowl agreed that the Autobots must intervene, but again decided out of rousing Optimus from his slumber. {{Storylink|Hearts of Steel issue 2|Hearts of Steel #2}}&lt;br /&gt;
&lt;br /&gt;
{{Note|Optimus Prime appears very briefly in the first few pages, in his &amp;quot;Ice Age Wars&amp;quot; body (we only see him in robot mode, but his altmode is a brachiosaurus&amp;lt;ref&amp;gt;[http://www.allspark.com/forums/index.php?s=d5d311674e796c81d010d26ac751389b&amp;amp;showtopic=10074&amp;amp;st=20&amp;amp;p=266183&amp;amp;#entry266183 Allspark forums post] by [[Guido Guidi]], August 15th, 2006&amp;lt;/ref&amp;gt;. He spends most of the story in stasis lock. [[:Image:Opthos.jpg|Unused concept art]] depicts him as transforming into a locomotive engine.}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comics===&lt;br /&gt;
&lt;br /&gt;
{{storylink|Henkei! Henkei! volume 1}} {{storylink|Henkei! Henkei! volume 2}} {{storylink|Henkei! Henkei! volume 7}}&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga===&lt;br /&gt;
&lt;br /&gt;
{{storylink|Enter! The Transformers}} {{storylink|Enter the Emperor of Destruction!}} {{storylink|Kingdom of Giants}} {{storylink|The Enemy from the Arctic}} {{storylink|Wataru&#039;s Power}} {{storylink|Optimus Prime&#039;s Secret}} {{storylink|Time of Resurrection}} {{storylink|Creation! The New Emperor of Destruction!!}} {{storylink|The Threat of Galvatron}}&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===Alternity===&lt;br /&gt;
&lt;br /&gt;
In 2007, the Optimus Prime of [[universal stream]] Primax 109.0 Beta encountered a mysterious messenger from another world: another incarnation of himself from the multiverse, who left him with a warning. Two years hence, Megatron would bring the terrifying super-dimensional lifeform known as the &amp;quot;Beast of Time&amp;quot;, [[Hytherion]], into their dimension to destroy Earth. The only thing that could battle Hytherion was the power of the super-evolved multi-dimensional race of Cybertronians known as the [[Alternity (species)|Alternity]]. Prime agreed that when the danger appeared, he would join the Alternity in the fight.&lt;br /&gt;
&lt;br /&gt;
Sure enough, in 2009, when Hytherion&#039;s colossal claw-marks appeared on planets throughout the solar system, Prime&#039;s other-dimensional incarnation returned, bringing with him an [[Auto-avatar]] with which Prime fused. In that instant, he was reborn as part of the Alternity, a manifold being who encompassed all the different incarnations of Optimus Prime through the multiverse at once. Prime reached his hands heaveanward and peeled back the layers of reality, exposing the gargantuan fanged maw of Hytherion looming above the Autobots. {{storylink|From Here to Alternity}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Robot Heroes&#039;&#039; comic===&lt;br /&gt;
{{comingsoon}}&lt;br /&gt;
{{storylink|I Am Optimus Prime (Robot Heroes)|I Am Optimus Prime}}&lt;br /&gt;
&lt;br /&gt;
==Commercial appearances==&lt;br /&gt;
Optimus Prime has appeared in more [[Commercial|television commercials]] than any other Transformer... just as with everything else. He has been voiced by Peter Cullen in every animation segment in which he&#039;s had a speaking role.&lt;br /&gt;
&lt;br /&gt;
[[Image:Toycommercial-firstPrime.jpg|right|thumb|My wheels don&#039;t disappear!]]&lt;br /&gt;
&lt;br /&gt;
* He was one of the featured characters in the first ever appearance of the Transformers anywhere, an advertisement for the first issue of [[The Transformers (Marvel comic)|the Generation 1 comic]]. He arrives in the midst of a desert battle as the Decepticons attacked a power plant on Earth, driving to back up his troops in defending it. He strikes a rather iconic pose as he transforms and fires, which would be replicated and copied numerous times in the early years of the franchise. This first commercial used nonfinal versions of the characters&#039; [[character model]]s; Optimus Prime, for example, still had wheels on his legs. [http://www.youtube.com/watch?v=b9-7RjhFzpM]&lt;br /&gt;
&lt;br /&gt;
* In a commercial for the [[Triple Changer]]s, Optimus confronts Astrotrain on a desert battlefield, but the Triple-Changer escapes under fire from other Autobots. Shortly afterward, Prime uses Perceptor&#039;s microscope mode to examine a fragment of Decepticon battle armor. [http://www.youtube.com/watch?v=9WssZjIsUIU]&lt;br /&gt;
&lt;br /&gt;
* Prime and Jazz are shown fighting Megatron in the desert in an ad for the 1985 cars, whom he summons to help out with the battle. [http://www.youtube.com/watch?v=9WssZjIsUIU]&lt;br /&gt;
&lt;br /&gt;
* Prime narrates two commercials around the time of &#039;&#039;[[The Transformers: The Movie]]&#039;&#039;, describing the action as [[Springer (G1)|Springer]] battles [[Wreck-Gar (G1)|Wreck-Gar]], and [[Hot Rod (G1)|Hot Rod]] and [[Kup (G1)|Kup]] take on the [[Sharkticon (G1)|Sharkticons]]. [http://www.youtube.com/watch?v=5X-10pud7DY] &lt;br /&gt;
&lt;br /&gt;
[[Image:Toycommercial-PowermasterOptimusPrime.jpg|right|thumb|An integral part of Powermaster Prime&#039;s transformation is Joyride shooting lightning bolts through his pointed finger.]]&lt;br /&gt;
&lt;br /&gt;
* Prime was prominently featured in the ad for the first comic issue featuring the [[Powermaster]]s. On the rocky plains where practically every Transformer battle ever seems to happen, Prime arrives in his Powermaster body to back up three of his troops against Dreadwind and Darkwing. He&#039;s shown combining with [[Hi-Q]] and transforming, attacking with his trailer&#039;s battle station mode, then combining with the trailer to continue the attack. Who wins? Find out in [[People Power!|Marvel Comics]]! [http://www.youtube.com/watch?v=voX_KNNxNCI]&lt;br /&gt;
&lt;br /&gt;
[[Image:OptimusQuickswitchCommercial.jpg|right|thumb|Optimus Prime is so giving, he even gives other Transformers time in his commercials.]]&lt;br /&gt;
&lt;br /&gt;
* Prime also features briefly in [[Quickswitch]]&#039;s ad; in a battle on the moon, Quickswitch transforms to gun mode and is wielded by Powermaster Optimus Prime.&lt;br /&gt;
&lt;br /&gt;
* An abbreviated ad for Powermaster Prime uses footage from both the Marvel Comic and Quickswitch commercials.&lt;br /&gt;
&lt;br /&gt;
* Prime&#039;s Powermaster body shows up yet again in the [[Classic Pretender|Pretender Classic]]s ad. He comes under attack in the darkened streets of the city, prompting the narrator to explain that he needs the greatest Transformers ever! Prime then welcomes back Bumblebee and Jazz in their Pretender forms. [http://www.youtube.com/watch?v=mahbq-FnSPY]&lt;br /&gt;
&lt;br /&gt;
* Powermaster Prime and [[Piranacon]] are the representatives from each faction that [[Doubledealer]] doublecrosses! Everyone wonders who that guy is that Prime&#039;s talking to... He looks kinda suspicious!&lt;br /&gt;
&lt;br /&gt;
* Optimus features prominently in the first [[Action Master]] commercial; he&#039;s shown surrounded by a circle of his troops, and challenges them to give up their transforming powers to become faster, stronger, more alive! [http://www.youtube.com/watch?v=KeNf3jQ1zdw]&lt;br /&gt;
&lt;br /&gt;
* A stock intro was used for several Micromaster commercials, with Optimus opening his fist to reveal a Micromaster city within.&lt;br /&gt;
&lt;br /&gt;
[[Image:Hotrodpatrolcommercial.jpg|right|thumb|Prime wants to know if they can transform, because he sure can&#039;t!]]&lt;br /&gt;
&lt;br /&gt;
* A similar sequence in another Micromaster has Prime opening his fist to find the [[Hot Rod Patrol]] inside. He and Jazz check them out, and Optimus wonders if they can transform. &lt;br /&gt;
&lt;br /&gt;
* In an ad for the Micromaster micro bases, a battle rages outside an Autobot base, and Prime watches impassively as Bumblebee and Jazz pull two [[Interstellar shuttle|captured]] [[Attack Copter|vehicles]] into the base. Prime is the first to notice that the vehicles are transforming and shooting things. &lt;br /&gt;
&lt;br /&gt;
* Prime and [[Ramjet (G1)|Ramjet]] are the stars of the first &#039;&#039;[[Generation 2 (franchise)|Generation 2]]&#039;&#039; commercial, animated with [[Computer-generated imagery|CGI]]. Prime is shown driving down a road in his &#039;&#039;Generation 2&#039;&#039; colored truck mode. He rocket-launches up into the air to transform, then has a brutal fight with Ramjet. Despite getting a hole blasted in his chest, he wins the fight and fires his gun into the air in triumph. Non-speaking.&lt;br /&gt;
&lt;br /&gt;
* Prime also is shown briefly in a commercial for the new Megatron tank toy. He transforms and finds his head in a target crosshairs. In the subsequent toy segment, Prime&#039;s toy is shown getting completely trashed by that of Megatron. Non-speaking.&lt;br /&gt;
&lt;br /&gt;
* And finally, Prime got his own rap segment. He&#039;s shown in his Combat toy body, waiting for Megatron as he attacks a human subdivision. Prime converts to robot form, blows up Megatron&#039;s weapon at point blank range, and slugs it out with him. Apparently emerging victorious, is next shown sitting next to an identical truck, which the live-action kid mistakes for the real thing. The real Prime then transforms and picks up the kid, inspecting the human with his cold, lifeless, flashing red optics. Prime is once again voiced by Peter Cullen in this commercial.&lt;br /&gt;
&lt;br /&gt;
Prime also appeared in commercials for &#039;&#039;Transformers&#039;&#039; products other than the toys themselves...&lt;br /&gt;
&lt;br /&gt;
* In the ad for [[Coleco]]&#039;s [[Power Cycle]], Optimus Prime shoots &#039;&#039;at&#039;&#039; a child riding the titular cycle, but misses. This footage is recycled from the advertisement for the comic.&lt;br /&gt;
&lt;br /&gt;
* Prime delivers a load of shoes to schoolchildren in a South American ad for [[Bata]]&#039;s licensed &#039;&#039;Transformers&#039;&#039; footwear.&lt;br /&gt;
&lt;br /&gt;
==Games==&lt;br /&gt;
===&#039;&#039;Revenge of the Fallen&#039;&#039;: The Game===&lt;br /&gt;
:&#039;&#039;Voice actor:&#039;&#039;&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
{{storylink|Revenge of the Fallen (Xbox 360/PS3/PC)|Revenge of the Fallen}}&lt;br /&gt;
==Toys==&lt;br /&gt;
{{main|Optimus Prime (G1)/toys}}&lt;br /&gt;
&lt;br /&gt;
==Merchandise==&lt;br /&gt;
:&#039;&#039;Main article: [[Optimus Prime (G1)/toys#Merchandise|Merchandise]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* According to [[Bob Budiansky]], longtime comics writer [[Denny O&#039;Neil]] named Optimus Prime prior to Budiansky being brought on to the &#039;&#039;Transformers&#039;&#039; project.&lt;br /&gt;
&lt;br /&gt;
* Optimus Prime&#039;s Japanese name is &amp;quot;Convoy&amp;quot;, which is named after his original name &amp;quot;Battle Convoy&amp;quot; in the [[Diaclone]] toyline, because the name &amp;quot;Optimus Prime&amp;quot; is difficult for Japanese kids to remember and pronounce. &amp;lt;ref&amp;gt;&#039;&#039;&#039;Figure-Oh&#039;&#039;&#039; No. 114&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*According to an early &#039;&#039;[[Transformers Universe (Marvel comic)|Universe]]&#039;&#039;-style profile published in &#039;&#039;[[The Transformers Comics Magazine]]&#039;&#039;, Optimus Prime&#039;s &amp;quot;official&amp;quot; nicknames were at one point considered to be &amp;quot;Autobot Commander&amp;quot;, &amp;quot;Chief&amp;quot;, &amp;quot;Big Boss&amp;quot; and &amp;quot;Roller&amp;quot;. As far as it is known, no piece of fiction has ever purposely addressed him using these nicknames, though it&#039;s a fair bet he&#039;s been called &amp;quot;chief&amp;quot; at least once or twice anyway.&lt;br /&gt;
&lt;br /&gt;
* He [[Letters page (Marvel UK)|allegedly]] hates the music of [[wikipedia:Mötley_Crüe|Mötley Crüe]].&lt;br /&gt;
&lt;br /&gt;
* According to the staff of &#039;&#039;[[Beast Wars (cartoon)|Beast Wars]]&#039;&#039;, Optimus Prime became a space explorer in the [[Beast Era]].&amp;lt;ref&amp;gt;[[Beast Wars Universe]] ISBN 978-4766938005&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Optimusprime-mom.jpg|right|125px|thumb|Prime&#039;s mom knows how to write in cursive.]]&lt;br /&gt;
* By the time Optimus Prime appeared in &#039;&#039;[[Beast Machines (cartoon)|Beast Machines]]&#039;&#039;, his 3D model from &#039;&#039;Beast Wars&#039;&#039; had apparently been lost, leading the animators to use a faceplated Optimus Primal head as a quick replacement to save time and budget.&lt;br /&gt;
&lt;br /&gt;
* Aside from occasionally having Alpha Trion as a father figure, Optimus Prime may have a mother! In an advertisement for [[Pepsi Convoy]] that shows him in a refrigerator (along with [[Destron Pizza]]), a note attached to a nearby piece of Tupperware reads:&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Dear Convoy&#039;&#039;&lt;br /&gt;
:&#039;&#039;Warm it before you eat&#039;&#039;&lt;br /&gt;
:&#039;&#039;Mom&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:Although the ad itself is for Pepsi Convoy, he is a separate character, and it can be assumed that the note was left for Convoy/Optimus Prime himself.&lt;br /&gt;
&lt;br /&gt;
* The first wave of Dreamwave posters in 2001 identified Optimus Prime as [http://www.comicden.com/merch/posters.htm &amp;quot;Captimus Primus&amp;quot;], which is tantalizingly close to making some sort of sense.&lt;br /&gt;
&lt;br /&gt;
* According to EJ Su, Optimus Prime&#039;s [[Holomatter|Holomatter avatar]] is modeled after [[wikipedia:Ulysses_S._Grant|Ulysses S. Grant]].&amp;lt;ref&amp;gt;[http://www.protodepot.com/archive/2007_11_01_archive.html Idea: Holomatter Projection]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* As of [[All Hail Megatron issue 13|All Hail Megatron #13]], Optimus has a mouth underneath that [[faceplate]] of his.&lt;br /&gt;
&lt;br /&gt;
* This Optimus Prime, along with the original [[Ultra Magnus (G1)|Ultra Magnus]], [[Hot Rod (G1)|Rodimus Prime]], and [[Jazz (G1)|Jazz]] makes a cameo appearance as one of the four elders who began the [[Space Bridge]] project in the &#039;&#039;[[Cybertron (cartoon)|Cybertron]]&#039;&#039; episode [[Balance]].&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.ntfa.net/universe/english/index.php?act=view&amp;amp;char=Optimus_Prime Optimus Prime&#039;s Universe profile at NTFA.net]&lt;br /&gt;
&lt;br /&gt;
* [http://www.ntfa.net/universe/english/index.php?act=view&amp;amp;char=Optimus_Prime_PM Powermaster Optimus Prime&#039;s Universe profile at NTFA.net]&lt;br /&gt;
&lt;br /&gt;
== Footnotes ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Action Masters]]&lt;br /&gt;
[[Category:Alternators]]&lt;br /&gt;
[[Category:Alternity characters]]&lt;br /&gt;
[[Category:Attacktix]]&lt;br /&gt;
[[Category:Autobots]]&lt;br /&gt;
[[Category:Autobot leaders]]&lt;br /&gt;
[[Category:Beast Wars characters]]&lt;br /&gt;
[[Category:Classics characters]]&lt;br /&gt;
[[Category:Combiners]]&lt;br /&gt;
[[Category:Convention exclusives]]&lt;br /&gt;
[[Category:E-Hobby]]&lt;br /&gt;
[[Category:Generation 1 characters]]&lt;br /&gt;
[[Category:Generation 2 characters]]&lt;br /&gt;
[[Category:Ghosts]]&lt;br /&gt;
[[Category:Go-Bots]]&lt;br /&gt;
[[Category:Headmasters characters]]&lt;br /&gt;
[[Category:Henkei! Henkei! characters]]&lt;br /&gt;
[[Category:Kiss Players characters]]&lt;br /&gt;
[[Category:Machine Wars characters]]&lt;br /&gt;
[[Category:Revenge of the Fallen characters]]&lt;br /&gt;
[[Category:Mail order exclusives]]&lt;br /&gt;
[[Category:Matrix bearers]]&lt;br /&gt;
[[Category:Multi-component Transformers]]&lt;br /&gt;
[[Category:Non-Triple Changer third mode]]&lt;br /&gt;
[[Category:Powermasters]]&lt;br /&gt;
[[Category:Return of Convoy characters]]&lt;br /&gt;
[[Category:Robot Heroes]]&lt;br /&gt;
[[Category:Robot Masters characters]]&lt;br /&gt;
[[Category:Rulers of Cybertron]]&lt;br /&gt;
[[Category:Titanium Series]]&lt;br /&gt;
[[Category:Toys &amp;quot;R&amp;quot; Us exclusives]]&lt;br /&gt;
[[Category:Zombies]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
	<entry>
		<id>https://tfwiki.duckdns.org/index.php?title=Optimus_Prime_(G1)&amp;diff=362304</id>
		<title>Optimus Prime (G1)</title>
		<link rel="alternate" type="text/html" href="https://tfwiki.duckdns.org/index.php?title=Optimus_Prime_(G1)&amp;diff=362304"/>
		<updated>2009-09-08T16:39:08Z</updated>

		<summary type="html">&lt;p&gt;McFly: Protected &amp;quot;Optimus Prime (G1)&amp;quot;: Caption revert war going on, locking down indefinitely [edit=sysop:move=sysop]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{factions|autobot|autobotg2}}&lt;br /&gt;
{{disambig3|Optimus Prime}}&lt;br /&gt;
{{suite}}&lt;br /&gt;
:&#039;&#039;Optimus Prime is the leader of the [[Autobot]]s from the [[Generation 1 (franchise)|Generation 1]] [[continuity family]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Image:Optimusg1.jpg|right|350px|thumb|Optimus Prime]]&lt;br /&gt;
&#039;&#039;&#039;Optimus Prime&#039;&#039;&#039; is the awe-inspiring [[Prime (rank)|leader]] of the [[Autobot]] forces. Originally a mere civilian, he was chosen by the [[Matrix of Leadership|Matrix]] to command, the first in a number of heavy burdens he has been forced to bear. Another is his bringing of the Transformers&#039; conflict to Earth. The complete opposite of his mortal enemy [[Megatron (G1)|Megatron]], every casualty, [[human]] or [[Transformer|Cybertronian]], weighs heavily on his [[spark]]. He does not show this side to his soldiers, and he never succumbs to despair. The Autobots need a decisive, charismatic leader, and that is what he gives them. It was that leadership which turned the tide of the [[Great War (G1)|Great War]]. &lt;br /&gt;
&lt;br /&gt;
On the battlefield, there are few who rival Optimus Prime&#039;s prowess. He is easily the strongest of any Autobot his [[Scale|size]], and his [[ion blaster]] and his [[energon-axe]] are deadly weapons. He would sacrifice his life to protect his fellow Autobots or those under their care, and [[The many deaths of Optimus Prime|does so on a regular basis]]. His compassion for other sentient beings is his only real weakness, and one the Decepticons have taken advantage of time and again... though it&#039;s also the source of his strength!&lt;br /&gt;
&lt;br /&gt;
Prime carries within him the [[Matrix of Leadership]].&lt;br /&gt;
&lt;br /&gt;
Before being rebuilt into a [[Powermaster]] his robot mode split into three components:&lt;br /&gt;
&lt;br /&gt;
*A sentient robot module, the [[Brain Center]].&lt;br /&gt;
*A wheeled drone module known as [[Roller]].&lt;br /&gt;
*A [[Combat Deck]].&lt;br /&gt;
&lt;br /&gt;
Although Optimus Prime can function as three independent modules, injury to any one module is felt by the other two.&lt;br /&gt;
&lt;br /&gt;
{{bigquote|Freedom is the right of all sentient beings.|Optimus Prime&#039;s most common [[bio]] quote}}&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Japanese name:&#039;&#039; &#039;&#039;&#039;Convoy&#039;&#039;&#039; (コンボイ)&lt;br /&gt;
:&#039;&#039;Japanese name (Laser Rod):&#039;&#039; &#039;&#039;&#039;Battle Convoy&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;French-Canadian &amp;amp; Czech name:&#039;&#039; &#039;&#039;&#039;Optimus Primus&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;Hungarian name (The Movie):&#039;&#039; &#039;&#039;&#039;Optimusz Fővezér&#039;&#039;&#039; / &#039;&#039;&#039;Optimusz Prájm&#039;&#039;&#039; (&amp;quot;Optimus Chief&amp;quot;)&lt;br /&gt;
:&#039;&#039;Italian name:&#039;&#039; &#039;&#039;&#039;Commander&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;Portuguese name (Portugal comics):&#039;&#039; &#039;&#039;&#039;Optimus Supremo&#039;&#039;&#039; (&amp;quot;Optimus Supreme&amp;quot;)&lt;br /&gt;
:&#039;&#039;Portuguese name (Brazil cartoon):&#039;&#039; &#039;&#039;&#039;Líder Optimus&#039;&#039;&#039; (&amp;quot;Leader Optimus&amp;quot;), sometimes Optimus Prime&lt;br /&gt;
:&#039;&#039;Portuguese name (Brazil comics):&#039;&#039; &#039;&#039;&#039;Supremus Absolutus&#039;&#039;&#039;&lt;br /&gt;
:&#039;&#039;Taiwanese name:&#039;&#039; &#039;&#039;&#039;Tīh-ghŭ&#039;&#039;&#039; (鐵牛, literally &amp;quot;Iron Ox&amp;quot; or &amp;quot;Iron Bull&amp;quot;, a kind of vehicle in early days and rural area)&lt;br /&gt;
:&#039;&#039;Chinese name (Taiwan):&#039;&#039; &#039;&#039;&#039;Jr-tsūn&#039;&#039;&#039; (至尊, &amp;quot;Prime&amp;quot;)&lt;br /&gt;
:&#039;&#039;Cantonese name:&#039;&#039; &#039;&#039;&#039;O Baak Man&#039;&#039;&#039; (柯柏文)&lt;br /&gt;
:&#039;&#039;Chinese name (China):&#039;&#039; &#039;&#039;&#039;Qing Tian Zhu&#039;&#039;&#039; (擎天柱, &amp;quot;Pillar that Supports the Sky&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
==Fiction==&lt;br /&gt;
===Marvel Comics continuity===&lt;br /&gt;
{{main|Optimus Prime (G1)/Marvel Comics continuity}}&lt;br /&gt;
[[Image:CommandPerformances-Autobotsattack.jpg|left|thumb|300px|Don&#039;t worry, the multiple crises of conscience come soon enough.]]&lt;br /&gt;
&lt;br /&gt;
Optimus Prime was a gladiator champion for [[Iacon]] before quickly working his way up the Autobot ranks once [[Megatron (G1)|Megatron]] started the war.  Four million years ago, when Decepticons attacked the [[Ark (G1)|Ark]], he personally chose to crash it onto [[Earth]], a decision that caused him much remorse when the war restarted on Earth in the modern day.  &lt;br /&gt;
&lt;br /&gt;
Though Optimus allowed himself to be destroyed when he betrayed his own moral code while playing a video game, a copy of his mind survived on a [[floppy disk]].  Years later, he was restored as a [[Powermaster]], binary bonded to the [[Nebulan]], [[Hi-Q]].  Optimus Prime slowly earned the respect of Decepticon leader [[Scorponok (G1)|Scorponok]], mourned the loss of his friend [[Ratchet (G1)|Ratchet]], and ultimately sacrificed everything to defeat [[Unicron]].  Though Optimus died again, his mind persisted in Hi-Q, and the [[Last Autobot]] was able to restore him as an [[Action Master]] in time to bring a temporary end to the war.  &lt;br /&gt;
&lt;br /&gt;
In [[Generation 2|one universe]], Optimus Prime went on to battle [[Jhiaxus (G2)|Jhiaxus]], his [[Cybertronian Empire]], and the [[Swarm]].  In [[Classics (2006)|another]], fifteen years of peace passed before Megatron rose again.  &lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===S.T.A.R.S. pack-in flyers===&lt;br /&gt;
The Autobots were outnumbered and outgunned on Earth from the start, though Optimus was confident (and correct) that reinforcements from Cybertron would arrive. {{storylink|Reinforcements from Cybertron!}} &lt;br /&gt;
&lt;br /&gt;
However, the situation was still so desperate that Optimus not only decided to recruit human allies {{storylink|The battle is far from over!}}, but aggressively tried to recruit and &#039;&#039;deputise&#039;&#039; human children, including giving them the power to co-ordinate Autobot teams in battles. He wouldn&#039;t even make a final move on the Decepticons until he had enough child soldiers on his side. {{storylink|Earthlings: THE S.T.A.R.S. need your help now!}} {{storylink|Have the Decepticons defeated us once and for all?}} In at least one case, this likely led to the &#039;&#039;death&#039;&#039; of a small boy at Decepticon hands. {{storylink|Can one boy, alone, hold back the evil Decepticons?}}&lt;br /&gt;
&lt;br /&gt;
Optimus later led a convoy in search for a building site for [[Autobot City]], which ran into a Decepticon ambush. {{storylink|Rodimus Prime remembers the Transformers greatest battle on Earth.}} He sent off several Autobots to get help, knowing this was the only chance of victory. {{storylink|Transformers Combat Data}} Those several Autobots were seen again, but Prime... wasn&#039;t. &lt;br /&gt;
&lt;br /&gt;
===Generation 1 cartoon continuity===&lt;br /&gt;
{{main|Optimus Prime (G1)/Generation 1 cartoon continuity}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Mtmte2_shermandam.jpg|left|250px|thumb|He had this ax once.  It was very memorable.]]&lt;br /&gt;
&lt;br /&gt;
Before the war, Optimus Prime was originally &#039;&#039;&#039;Orion Pax&#039;&#039;&#039;, a young dock worker with a girlfriend named [[Elita One|Ariel]].  But as the war began, Megatron destroyed them both, and [[Alpha Trion (G1)|Alpha Trion]] rebuilt them into more powerful warriors.  &lt;br /&gt;
&lt;br /&gt;
Four million years ago, Optimus Prime ended a Decepticon attack on the Ark by directing it towards prehistoric Earth.  When both factions reawakened in 1984, Optimus Prime and the Autobots fought the Decepticons on numerous occasions until 2005.  During an attack on [[Autobot City]] on Earth, Prime fell in battle against Megatron and passed the [[Matrix of Leadership]] to [[Ultra Magnus (G1)|Ultra Magnus]].  &lt;br /&gt;
&lt;br /&gt;
Optimus Prime eventually returned, once as a [[zombie]], and again when he was rebuilt by the [[Quintesson]]s to stop the spread of the [[Hate Plague]].  &lt;br /&gt;
&lt;br /&gt;
The details between these events differ between universes.  Sometimes Optimus Prime merged with [[Vector Sigma]] soon after defeating the Hate Plague, and returned much, much later as Star Convoy.  Sometimes Optimus Prime partnered up with [[Marissa Faireborn]] to receive upgrades through mutual [[kiss]]ing.  Sometimes... look, he did a lot of weird stuff, okay?&lt;br /&gt;
&lt;br /&gt;
===Kid Stuff Talking Story Books===&lt;br /&gt;
:&#039;&#039;Voice actor:&#039;&#039; Unknown&lt;br /&gt;
&lt;br /&gt;
Optimus Prime is a &amp;quot;metallic nemesis&amp;quot;. Megatron said so.&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===Big Looker Story Books===&lt;br /&gt;
[[Image:KidsPrime1.jpg|right|150px|thumb|And the fluffy kitten played with that yarn all gosh-darn night.]]&lt;br /&gt;
&lt;br /&gt;
When a two-part race was being held with a massive supply of oil and gasoline as the prize, both the Decepticons and the Autobots badly wanted to win it. Megatron entered the race by hiding himself inside a hollowed-out car and harassed [[Cliffjumper (G1)|Cliffjumper]] all throughout the contest. When Prime discovered the car was being driven by his arch foe, he swiftly pulled a telephone pole out from the ground and used it to bash the mortal hell out of the cheating Decepticon. Thanks to Prime&#039;s violent intervention, Cliffjumper was able to win the race. Afterward, Optimus Prime celebrated the Minibot&#039;s victory with a gargantuan smile as all the Decepticons starved to death. {{storylink|The Great Car Rally}}&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
{{-}}&lt;br /&gt;
===Ladybird Books continuity===&lt;br /&gt;
{{storylink|Autobots&#039; Lightning Strike}} {{storylink|Megatron&#039;s Fight for Power}} {{storylink|Autobots Fight Back}} {{storylink|Laserbeak&#039;s Fury}} {{storylink|Autobot Hostage}} {{storylink|Decepticons Underground}}&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Transformer PD Type&#039;&#039; comic===&lt;br /&gt;
&lt;br /&gt;
[[Image:PDtype-Matrixattack.jpg|left|thumb|250px|This is the highlight of this entire page.]]&lt;br /&gt;
&lt;br /&gt;
When a horde of time-displaced Decepticons joined forces to hunt down the five [[Blackball]]s, a super energy source, Optimus Prime gathered a team of time-displaced Autobots to help stop them.&lt;br /&gt;
&lt;br /&gt;
In one encounter with his arch-foe [[Megatron (G1)|Megatron]], they reenacted their epic struggle from the [[Battle of Autobot City]]. However, this time around, Prime avoided dying by launching his &amp;quot;Matrix Attack&amp;quot;...&#039;&#039;literally&#039;&#039; launching the [[Matrix of Leadership|Matrix]] from his chest, bonking Megatron on the head. {{storylink|Transformer PD Type|You&#039;re Great! Optimus Prime!}}&lt;br /&gt;
&lt;br /&gt;
Later, Optimus Prime and [[Ultra Magnus (G1)|Ultra Magnus]] concocted a cunning strategy. They disguised a round, black cartoon explosive as a Blackball and gave it to [[Starscream (G1)|Starscream]]. Starscream promptly brought it to Megatron, where it blew both of them up. Optimus and Magnus were astounded their plan actually worked. {{storylink|Transformer PD Type|Don&#039;t Cry! Megatron!!}}&lt;br /&gt;
&lt;br /&gt;
In one of his less impressive moments, after running out of ammo during a battle with [[Deathsaurus (Victory)|Deathsaurus]], Optimus Prime ordered his fellow Autobots to improvise and hurl everything that wasn&#039;t nailed down at their enemy. This included the Blackball, unfortunately. Catching it, Deathsaurus began to fantasize about his inevitable galactic conquest, all the while being pelted with rocks and litter. Frustrated, Deathsaurus accidentally hurled the Blackball back to the Autobots in a fit of rage. {{storylink|Transformer PD Type|Good Job! Deathsaurus!!}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Comic Bom Bom G-2&#039;&#039; comic===&lt;br /&gt;
[[Image:G2Hero.jpg|right|200px|thumb|GAH, HE&#039;S LOOKING AT ME!]]&lt;br /&gt;
In the year 199X, the Decepticons had learned of a powerful new energy source known as [[forestonite]] which just happened to be located (surprise surprise) on [[Earth]]. Megatron sent his trio of [[Cyberjet]]s to Earth first to draw out the enemy Autobots. The Cyberjets made quick work of [[Electro]] but were soon halted by the appearance of Optimus Prime.&lt;br /&gt;
&lt;br /&gt;
Megatron then entered the fray and fired his Black Hole Burn attack from his fusion cannon, narrowly missing Optimus Prime but vaporizing [[Hooligan (G2)|Hooligan]] in the process. Prime fought fiercely but Megatron began to take the upper-hand in battle.&lt;br /&gt;
&lt;br /&gt;
However, Prime was encouraged to keep fighting by the cheers of a human boy named [[Junpei]]. Megatron, surprised at Prime&#039;s resilience, attempted to finish his foe off with his Tornado Axe attack. Prime countered with his Double Wheel-Torque Mega-Ton, which trumped Megatron&#039;s attack and injured the Decepticon badly. Megatron teleported back to his ship and left Earth&#039;s atmosphere, vowing to return.&lt;br /&gt;
&lt;br /&gt;
Optimus Prime addressed Junpei, asking if the boy was injured. Junpei revealed he was alright but presented concern about the Decepticons returning to Earth. Optimus Prime swore that the Autobots would remain on Earth until the threat of the Decepticons was finished and asked for Junpei&#039;s help in making that future a reality. {{storylink|The New Battle!!}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Beast Wars&#039;&#039; cartoon continuity===&lt;br /&gt;
====&#039;&#039;Beast Wars&#039;&#039; cartoon====&lt;br /&gt;
[[Image:G1Prime BWMegs.jpg|left|180px|thumb|You have to get up preeeeetty early in the timestream to beat Optimus Prime!]]&lt;br /&gt;
&lt;br /&gt;
The [[Beast Wars (event)|Beast Wars]] raged on prehistoric Earth, eventually leading to the discovery of the buried Ark sometime after its crash on prehistoric Earth. [[Megatron (BW)|Megatron]], following [[Megatron (G1)|his namesake&#039;s]] instructions in a desperate gambit, decided to attempt to change history by killing Prime, who was still lying in the Ark in [[stasis lock]]. Megatron hoped that this would result in the Decepticons winning the Great War and eventually [[Predacon (BW)|Predacon]] control of Cybertron. Megatron unleashed a full-power weapon blast at Optimus Prime&#039;s face, near-fatally injuring him. {{storylink|The Agenda (Part III)}} However, [[Optimus Primal]] proceeded to take Prime&#039;s spark into his body to protect it from surgical trauma while his injuries were repaired. The subsequent power increase caused by Prime&#039;s spark&#039;s connection to the Matrix mutated Primal into a large, [[Transmetal]] &amp;quot;Optimal Optimus&amp;quot; form. Then, with the repairs complete, Prime&#039;s spark was restored, and he briefly activated before sinking back into normal stasis. {{storylink|Optimal Situation}}&lt;br /&gt;
&lt;br /&gt;
Sometime after the Autobots and Decepticons awoke in the 1980s, the original Megatron gained access to one of Earth&#039;s &#039;&#039;Voyager&#039;&#039; spacecraft and inscribed a message on the [[Golden Disk (Voyager)|disk]] on board. In the event that he lost the War, Megatron left instructions for the descendants of the Decepticons to use [[transwarp]] technology to travel to Prehistoric Earth, locate the [[Ark (G1)|Ark]], and change history by killing Optimus Prime. {{storylink|The Agenda (Part 2)}}&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Beast Machines&#039;&#039; cartoon====&lt;br /&gt;
[[Image:Sparkwar2_Optimus_hologram_primal.jpg|right|200px|thumb|]]&lt;br /&gt;
:&#039;&#039;Voice actor&#039;&#039;: [[Garry Chalk]] (English), [[Tilo Schmitz]] (German)&lt;br /&gt;
&lt;br /&gt;
An enormous statue of Optimus Prime, bearing two [[Golden Disk (disambiguation)|Golden Disks]], could be seen on Cybertron in front of the Hall of Archives. The statue was subsequently blown to pieces by the [[Vehicon (BM)|Vehicon forces]]. {{storylink|Fires of the Past}} Later, Megatron beamed a hologram of Optimus Prime down to the ruins of [[Iacon]] to confront [[Optimus Primal]]. Primal mistook the hologram for the real thing and shared with it the code for the [[Oracle (BM)|Oracle]]. Megatron quickly revealed his ruse. Primal explained to his Maximals that he knew the image was fake, but he needed the location of the missing [[spark]]s from Megatron&#039;s mind. {{storylink|Sparkwar Pt. II: The Search}}&lt;br /&gt;
&lt;br /&gt;
{{note|Writer [[Bob Skir]] claims that neither the statue nor the golden disks in its hands were mentioned in the script. However, he suggested that they were either the [[Golden Disk (Voyager)|disks]] from the Voyager 1 and Voyager 2 probes, or that Optimus won them in the 2,395,989th Annual Cybertronian spelling bee.&amp;lt;ref&amp;gt;[http://bigbot.com/beast-machines-transformers-bob-skir/Beast-Machines-FAQ/Tue_12_Oct_1999.html Q&amp;amp;A from Bigbot&#039;s &amp;quot;bobskir.com&amp;quot;]&amp;lt;/ref&amp;gt; We&#039;re betting on the latter.}}&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;Universe: Primeval Dawn&#039;&#039;====&lt;br /&gt;
[[Image:Sparkholderprimevaldawn.jpg|left|190px|thumb|&amp;quot;Oh, I also have this in me now, too.&amp;quot;]]&lt;br /&gt;
The Vok took the Matrix of Leadership from an unconscious Optimus Prime, used it to create [[Primal Prime]], then gave the Matrix to their new creation. {{storylink|Primeval Dawn Part 1}}&lt;br /&gt;
&lt;br /&gt;
{{note|In the &#039;&#039;Beast Wars&#039;&#039; cartoon, Prime&#039;s spark was shown to be contained in a Matrix-like vessel. In [[Universe (2003 comic)|Primeval Dawn]], that vessel was shown to be merely a container for his spark, and the actual Matrix was hidden underneath.}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Beast Wars Metals&#039;&#039; comic===&lt;br /&gt;
[[Image:CheetasManga1.jpg|right|100px|thumb|Cheetor, that&#039;s Prime&#039;s Spark, not a toy.]]&lt;br /&gt;
Optimus Prime was blasted into pieces by Dragon Megatron. Fortunately, his spark remained perfectly intact—in the remains of his [[Optimal Situation|Matrix-shaped spark chamber]]. Megatron was going to destroy Prime&#039;s spark, but [[Cheetor (BW)|Cheetor]] (now in his Transmetal body) saved it. Prime&#039;s spark was eventually swallowed by Optimus Primal, who was upgraded into Optimal Optimus by doing so.&lt;br /&gt;
&lt;br /&gt;
After Megatron was killed by Optimal Optimus, Primal and his crew said it would be troublesome to fix Optimus Prime&#039;s body.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===Dreamwave comics continuity===&lt;br /&gt;
{{cleanup|April 2009|Needs general expansion and STORYLINKS TO INDIVIDUAL ISSUES. Links to the series are not acceptable.}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Optronix optimus.jpg|left|180px|thumb|What? OPTRONIX is evolving!]]&lt;br /&gt;
Optimus Prime started life as &#039;&#039;&#039;Optronix&#039;&#039;&#039; (Orion to his friends&amp;lt;ref&amp;gt;The [[Keepers Trilogy]] novels set in Dreamwave continuity&amp;lt;/ref&amp;gt;), a data archivist. After taking note of a battle in which the Autobot leader [[Sentinel Prime (G1)|Sentinel Prime]] had been defeated by Megatron, he was summoned to the council of elders and informed that the Matrix had chosen him to be the next leader of the Autobots. He received the Matrix of Leadership shortly thereafter, gaining a powerful new body in the process, and almost arranged for the Autobot evacuation of Cybertron, intending to leave the Decepticons to their own devices, until a battle with Megatron beneath the planet&#039;s surface, accompanied by visions from the Matrix, stirred him on to fight for the safety of his homeworld. Some time into his role as leader, Prime disappeared in a [[space bridge]] explosion along with Megatron, but returned some time later, having spent a period of time on [[Quintessa]]. {{storylink|The War Within}}&lt;br /&gt;
&lt;br /&gt;
Following the awakening of the Transformers on Earth, the Autobots protected the planet from the Decepticons. Over the next fifteen years, the Autobots befriended the humans, particularly the [[Witwicky|Witwicky family]]. The Autobots finally allied with humankind and eventually defeated the Decepticons at the turn of the century. They planned to return to Cybertron aboard the newly constructed &#039;&#039;[[Ark II]]&#039;&#039;, along with seven humans, including Witwicky patriarch [[Sparkplug Witwicky|Sparkplug]]. Before the ship departed, Prime gave a piece of the Matrix to [[Spike Witwicky (G1)|Spike Witwicky]], Sparkplug&#039;s son and [[Bumblebee (G1)|Bumblebee]]&#039;s closest human friend. But the ship was destroyed as part of a military conspiracy to take control of the Transformers. However, a terrorist organization run by the enigmatic [[Lazarus]] was able to seize control of several of the Transformers that fell back to Earth, while the U.S. military located Prime&#039;s body. Spike was forced by the product chief, General [[Robert Hallo]], to use the piece of the Matrix to reactivate Prime. Functional again, Prime used the Matrix to reactivate more of his fallen comrades, and then faced off against Megatron in [[San Francisco]]. {{storylink|Prime Directive}}&lt;br /&gt;
&lt;br /&gt;
Following this, Prime began to experience subconscious urgings, leading both the Autobots and the Decepticons to the Arctic Circle, where Shockwave arrived to greet them—and arrest them as war criminals. Shockwave had succeeded in ending the war on Cybertron, but Prime soon fell in with a rebel Autobot group that had discovered Shockwave had a greater agenda. Rallying Autobots across Cybertron to the cause, Prime faced Shockwave in battle but was defeated and had the Matrix ripped from him and used to activate Vector Sigma. Before Shockwave could make full use of the mega-computer&#039;s data, however, [[Ultra Magnus (G1)|Ultra Magnus]] arrived and bested him. The injuries Prime took in this conflict necessitated a prolonged restoration period in stasis. {{storylink|War and Peace}}&lt;br /&gt;
&lt;br /&gt;
{{note|...which turned out to be the remainder of Dreamwave&#039;s existence. Bummer.}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;G.I. Joe vs. the Transformers&#039;&#039;===&lt;br /&gt;
[[Image:GIJoevsTFcobraprime.jpg|right|275px|thumb|G.1. Joe—the real universal hero!]]&lt;br /&gt;
&lt;br /&gt;
Several Autobots and Decepticons, including Optimus Prime, were reformatted into will-less war machines under the control of [[Cobra]]. During an initial attack on a human peace conference, Cobra&#039;s remote control of Optimus mysteriously failed. Later at Cobra&#039;s island headquarters in the Caribbean, Cobra scientists pulled Optimus apart to find out what was impeding their commands. As this analysis took place, Optimus reverse hacked into Cobra computers until they shut him down in a panic. Despite this, Prime sent a viral message out to hundreds of email addresses that included the coordinates of Cobra&#039;s base. The message was intercepted by [[G.I. Joe (team)|G.I. Joe]] who teamed up with Wheeljack and Bumblebee. After Wheeljack broke the remote control over the Transformers, Prime went after [[Cobra Commander]]. More than a bit frightened of a giant robot gunning for him, the human released Megatron, who was trapped in gun model. Megatron transformed and fought Prime to a standstill until other Autobots came to back him up. &lt;br /&gt;
&lt;br /&gt;
Although he was weak and low on [[Energon (fuel)|energon]], Prime made a last-ditch effort to save the day when he rammed through the wall of Megatron&#039;s energon-producing lab. After a quick recharge, Optimus single-handedly smashed the Decepticons, pounded Megatron to the ground, and ripped his [[fusion cannon]] off his arm. Prime then teamed up with the Joes and used Megatron&#039;s cannon to shoot down the [[SPS satellite]] that had gone rogue and was destroying the island. &lt;br /&gt;
&lt;br /&gt;
With the battle over, Prime and the Autobots boarded a new &#039;&#039;[[Ark (G1)|Ark]]&#039;&#039; ship built by G.I. Joe and returned to [[Cybertron (planet)|Cybertron]]. {{storylink|G.I. Joe vs. the Transformers}}&lt;br /&gt;
&lt;br /&gt;
[[Image:GIJoevstfIIprime1930s.jpg|left|275px|thumb|Retro Convoy: TRANSFORM!!!]]&lt;br /&gt;
On a Cybertron dominated by [[Shockwave (G1)|Shockwave]] and the Decepticons, Optimus Prime and the Autobots took on the roles of resistance fighters. Cobra experimentation transported a contingent of Cobras and G.I. Joes to Cybertron and destabilized [[Teletran 3]]. The computer then sent several Transformers to [[Earth]] across different time periods. A team made up of Joes and Cobra agents were sent back and found Optimus Prime and the [[Stunticon]]s in 1930s-era Chicago, disguised as period cars and trucks. The Stunticons chased Prime and the Joes around the city until everything was wrapped up with bullets, a collapsed bridge and some dynamite.&lt;br /&gt;
&lt;br /&gt;
After the Transformers and humans were returned to present-day Cybertron and the Decepticons were vanquished by the recently-arrived [[Dinobot (G1)|Dinobots]], Prime made an agreement with the Joes to destroy the technology that started the whole mess in order to protect Earth. {{storylink|G.I. Joe vs. the Transformers II}}&lt;br /&gt;
&lt;br /&gt;
On Cybertron, Optimus Prime kicked back to do a little bit of paperwork and reminisce. With Shockwave defeated, Cybertron was enjoying a new era of peace. He was interrupted by Hot Rod, who reported that a group of &amp;quot;pesky humans with their peashooters&amp;quot; were giving an Autobot team on Earth a hard time. Prime suspected Cobra&#039;s involvement and counseled Hot Rod not to be so dismissive of the humans. &lt;br /&gt;
&lt;br /&gt;
Later, at a peace celebration, Prime was watching a procession of Autobots when Decepticons attacked. Optimus ordered Omega Supreme into action but the huge Autobot was quickly overcome by Menasor, Piranacon and Predaking. Prime hopped into the fray, saved a female Autobot from getting smushed by the falling Omega, rode a flying Decepticon into Piranacon&#039;s face, smashed another Decepticon into the ground, and carried a wounded Autobot out of danger. &lt;br /&gt;
&lt;br /&gt;
[[Image:Primevsserpentor.jpg|right|175px|thumb|Serpent O.R. soon realized that &amp;quot;This I command!&amp;quot; doesn&#039;t work on Optimus Prime.]] &lt;br /&gt;
Menasor cut off Prime&#039;s escape and confronted him with a hologram of [[Serpentor|Serpent O.R.]] The new Decepticon leader carried Megatron&#039;s memories and information downloaded from Soundwave, from which he learned of the Matrix of Leadership. Serpent O.R. offered Optimus a trade: hostages and peace if he handed over the Matrix. Optimus agreed. &lt;br /&gt;
&lt;br /&gt;
In his stronghold, Serpent O.R. questioned Prime about his own worthiness to carry the Matrix, but Optimus broke free of his chains and aggressively ordered him to surrender. A group of Decepticons broke in and nearly took Prime apart, but not before Serpent O.R. took the Matrix for himself and changed into the massive Serpentor Prime. The Matrix showed Serpentor Prime the error of his ways but as he was about to commit suicide Cobra Commander tripped a device and took over Serpentor Prime&#039;s body. Moments before he crushed Arcee, a severely damaged Optimus Prime threw Hawk toward the Matrix but warned the human not to touch the artifact. Hawk did so anyway and through a quasi-mystical transfer of power Serpentor Prime was vanquished. &lt;br /&gt;
&lt;br /&gt;
Later repaired by a female nursebot, Optimus went back to finishing his paperwork. A leader&#039;s job is never done. {{storylink|G.I. Joe vs. the Transformers: The Art of War}}&lt;br /&gt;
&lt;br /&gt;
Sensing a new, yet old, danger to planet Earth, Prime elected to send himself to earth on an investigation, and gave Hot Rod a glare when the young Autobot accused his leader of taking an unnecessary risk to atone for the death of a close friend.&lt;br /&gt;
&lt;br /&gt;
Optimus Prime landed in the Himalayan Mountains with G.I. Joes [[Flint (G.I. Joe)|Flint]] and [[Hawk (G.I. Joe)|Hawk]]. As they searched the area, the trio was attacked by [[Bludgeon (G1)|Bludgeon]] in his [[Pretender]] shell. Prime whacked him with his [[energon-axe]] and in return Bludgeon bearhugged him and coated him in metal-eating slime. Hawk, still carrying power from the Matrix, helped Prime break free. Optimus then shot his way into the hidden kingdom of [[Cobra-La]].&lt;br /&gt;
&lt;br /&gt;
While they wandered through the tunnels, the Joes and Prime found cave paintings that described the last visit to Earth by the planet-eating god [[Unicron]]. They were attacked again by Bludgeon and Cobra-La minions, but were led away by a ragged [[Joe Colton]], prisoner of Cobra-La for the last 25 years. Bludgeon managed to find them again and during a second battle Prime tore open the Pretender&#039;s shell, revealing Bludgeon&#039;s robot form inside. Bludgeon tripped and dangled dangerously over a chasm, but rather than let Optimus Prime save him, Bludgeon forced Prime to drop him to his death laughing all the way down.&lt;br /&gt;
&lt;br /&gt;
The Joes discovered a cavern where the people of Cobra-La were growing metal-eating spores as a last defense against Unicron. Flint and [[Cosmos (G1)|Cosmos]] took a load of the spores into space just as Unicron appeared in Earth orbit. Prime, Hawk and Colton headed deeper into Cobra-La to rescue [[Firewall]] and kick butt. Prime was tackled and pinned by a giant bug creature, but made a dramatic recovery and tossed the bug aside. He then took the machine-hating Cobra-La leader [[Golobulus]] to task with a single punch. Flint and Cosmos released the spores, which devoured Unicron from the inside and defeated the giant Transformer before he could harm [[Earth]].&lt;br /&gt;
&lt;br /&gt;
With the threat of Unicron gone, Prime relaxed with [[Eject]] and Firewall by watching some reality TV, and sighed at the banality. {{storylink|G.I. Joe vs. the Transformers: Black Horizon}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Transformers/G.I. Joe&#039;&#039;===&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
=== IDW comics continuity ===&lt;br /&gt;
{{ongoing}}&lt;br /&gt;
&lt;br /&gt;
{{note|&#039;&#039;[[Megatron Origin]]&#039;&#039; depicted that before the war, a robot that&#039;s a hybrid of the &amp;quot;Orion Pax&amp;quot; and &amp;quot;Optronix&amp;quot; designs appears listening to [[Sentinel Prime (G1)|Sentinel Prime]]&#039;s speech at the funeral of [[Bumper (G1)|Bumper]] and [[Fastback]]. He is standing with [[Elita One]], [[Alpha Trion (G1)|Alpha Trion]], and a white version of himself (presumably [[Ultra Magnus (G1)|Ultra Magnus]], possibly even [[Dion]]). Whether this is truly the [[IDW Generation 1 continuity|IDW continuity]]&#039;s version of pre-Prime Optimus or not remains unrevealed.}}&lt;br /&gt;
&lt;br /&gt;
[[Image:SpotlightBlurr-Optimus.jpg|left|thumb|200px|There&#039;s something missing...]]&lt;br /&gt;
&lt;br /&gt;
Galvanized by the death of Sentinel Prime, Optimus joined the Autobot forces under Sentinel&#039;s successor, [[Zeta Prime]], and was assigned to a unit commanded by the veteran [[Kup (G1)|Kup]]. During his tour of duty, his unit intercepted a message reporting a planned attempt on the Prime&#039;s life. He approached former racer [[Blurr (G1)|Blurr]] as a reliable means of getting the news to Zeta Prime in a hurry. The former celebrity balked, but ultimately the young soldier helped Blurr find what really drove him to race, and thus recruited him to the Autobot cause. {{storylink|Spotlight: Blurr}}&lt;br /&gt;
&lt;br /&gt;
An undisclosed amount of time later, Optimus became Optimus Prime. While reviewing his new troops, he came upon a defiant old veteran called Ironhide, who thought of Prime as a wet-behind-the-audio-receptors upstart. Optimus was intrigued by this old coot and asked Ironhide to teach him about the ways of war—and Ironhide did just that. Everything he threw at Optimus, Optimus took and learnt. All his hard comments were taken in. But one day, Optimus, having gained much wisdom since meeting Ironhide, decided to go against Ironhide&#039;s counsel, heading east instead of west. This turned out to be a good idea, as [[Trypticon (G1)|Trypticon]] had been waiting in the west to ambush the Autobot forces. Later still, Ironhide and Optimus got a bit unlucky and ended up dangling off a cliff with Ironhide missing a leg. They were eventually rescued. After this, Ironhide developed a respect and awe for his protege. {{storylink|All Hail Megatron issue 13}}&lt;br /&gt;
&lt;br /&gt;
{{note| This story conflicts with previous fiction featuring Optimus and Irohide: In &#039;&#039;Spotlight: Blurr&#039;&#039;, pre-Prime Optimus and Ironhide are in the same unit, which contradicts neither of them recognizing the other when Optimus &#039;&#039;&#039;Prime&#039;&#039;&#039; reviews his troops.}}&lt;br /&gt;
&lt;br /&gt;
[[Image:IDWOptimus.jpg|right|150px|thumb|Freedom is the right of all sentient and heavily-armed beings.]]&lt;br /&gt;
&lt;br /&gt;
A further undisclosed amount of time later, Optimus Prime commanded the Autobot armed forces spread across the galaxy from the [[Autobot Orbital Command Hub]]. He was directly involved in the cataclysm ([[IDW timeline|just under 450 years ago]]) that reduced [[Cybertron (planet)|Cybertron]] to a dead husk, fighting alongside [[Megatron (G1)|Megatron]] in an attempt to stop [[Thunderwing (G1)|Thunderwing]]&#039;s rampage. Their efforts were futile, and they only survived due to Cybertron itself swallowing Thunderwing at [[Thunderhead Pass]]. Megatron was unconvinced that Thunderwing was dead, and he advocated that Cybertron be destroyed to better insure that the mad Decepticon was forever destroyed. Optimus Prime refused and threatened to stop any effort that Megatron attempted. Megatron agreed to spare the planet, but warned Prime that anything which happened afterward was on his head. &lt;br /&gt;
&lt;br /&gt;
In the present, Prime received a pulsewave from [[Ironhide (G1)|Ironhide]], who was stationed under [[Prowl (G1)|Prowl]]&#039;s team on Earth, saying that the Decepticon infiltration cell under [[Starscream (G1)|Starscream]] had broken their infiltration methods and enacted [[Infiltration protocol|siege mode]] prematurely. Soon afterward, the Autobot science vessel &#039;&#039;[[Calabi-Yau]]&#039;&#039; sent a distress signal from above Thunderhead Pass, and he ordered the [[Wrecker]]s to withdraw from [[Varas Centralus]] and meet him on Cybertron. {{storylink|Stormbringer issue 2|Stormbringer #2}} Thunderwing had been restored by [[Bludgeon (G1)|Bludgeon]] and his followers, and though the Wreckers made short work of them, the real fight would be met with Thunderwing. After the Wreckers, [[Predacon (G1)|Predacons]] and [[Centurion droid]]s were unable to destroy the monster, Prime took to the field, firing massive amounts of energy at Thunderwing, forcing it to exhaust its last reserves of [[Ultra-Energon]] and, ultimately, its life. {{storylink|Stormbringer issue 4|Stormbringer #4}}&lt;br /&gt;
&lt;br /&gt;
[[Image:IDWPrime Earth.jpg|left|150px|thumb|Don&#039;t crush the cameraman!]]&lt;br /&gt;
[[Jetfire (G1)|Jetfire]] discovered information in Bludgeon&#039;s files about the mysterious new form of Energon found on [[Earth]]. Linking it to the pulsewave transmission from Ironhide, Prime diverted his spacecraft to Earth and called [[Nightbeat (G1)|Nightbeat]] in to assist him. {{storylink|Spotlight: Nightbeat}}. Shortly after arrival, and having undergone alteration so that he could disguise himself as an Earth truck, he slowly began to realize how unusual the situation Prowl&#039;s unit had found itself in was. {{storylink|Infiltration issue 6|Infiltration #6}} Not only had the Decepticons broken their own infiltration protocols over what Starscream had dubbed [[Ultra-Energon|Ore-13]], but after attempting to recover what appeared to be [[Sunstreaker (G1)|Sunstreaker]]&#039;s remains, it was also evident that some of the planet&#039;s native sentient lifeforms—[[human]]s—posed a threat possibly equal to that of their old enemies. {{storylink|Escalation issue 2|Escalation #2}}&lt;br /&gt;
&lt;br /&gt;
Optimus Prime, now fully filled-in on Earth&#039;s happenings, decided that they needed reinforcements. He called Nightbeat, [[Hot Rod (G1)|Hot Rod]], and [[Hardhead (G1)|Hardhead]] to come when they could. When Prowl pointed out that Megatron, in his new gun-based Earth mode, was in the breakaway Soviet state of [[Brasnya]] stirring up trouble, Prime ordered them into action.&lt;br /&gt;
&lt;br /&gt;
[[Blitzwing (G1)|Blitzwing]] almost got the drop on Prime, but [[Roller]] was right behind him and took out Blitzwing with a single shot. Megatron returned to his full-size robot mode and disagreed with the quality of Prime&#039;s tea and crumpets. At last, the two rivals were going to go at it.&lt;br /&gt;
&lt;br /&gt;
[[Image:Escalation5 Primedies enlightning.jpg|right|300px|thumb|Rule of thumb, Megs—if he don&#039;t turn gray, he&#039;s A-OK.]]&lt;br /&gt;
The fight went well at first, with Prime blowing Megatron&#039;s [[fusion cannon]] clean off. Megatron, however, tireless thanks to Ore-13, prevailed, almost beating Prime into [[stasis lock]]. {{storylink|Escalation issue 5|Escalation #5}}&lt;br /&gt;
&lt;br /&gt;
However, Prime transferred his consciousness into his trailer, leading Megatron to believe him dead. Realizing that Ore-13 was the same as Ultra-Energon, Prime returned to his body in time to save his forces from the relentless Megatron, blasting him point blank in the face and dealing enough damage to the Decepticon leader to drain his power reserves, just as he did against Thunderwing. The victory was narrow, however, leaving Optimus with the daunting task of fending off an increasing enemy force without his last ace in the hole. {{storylink|Escalation issue 6|Escalation #6}}&lt;br /&gt;
&lt;br /&gt;
This near-death experience had left Prime somewhat unsettled. While his consciousness was in [[infraspace]] downloading to his trailer, he sensed a presence of dread—the visage of his long-missing predecessor, [[Nova Prime]]. Looking for answers, Optimus Prime left Earth temporarily to seek an audience with [[Omega Supreme (G1)|Omega Supreme]] for answers. Once there, he found out about Nova&#039;s beliefs of how Transformers were a superior race and should remake the universe in their image, and he faced down the rampaging [[Monstructor]], a legacy of Nova&#039;s tenure locked away by Omega Supreme. Then he gave his &amp;quot;you shouldn&#039;t have done that&amp;quot; speech to Omega, handed Monstructor&#039;s limbs over to Jetfire&#039;s team, and went on to have angst-ridden introspection about himself and the tarnished legacy of the [[Prime (rank)|Prime lineage]]. {{storylink|Spotlight: Optimus Prime}}&lt;br /&gt;
&lt;br /&gt;
After returning to Earth, Nightbeat discovered that a human group was aware of the base&#039;s location and recommended to Prime that they move the &#039;&#039;[[Ark-19]]&#039;&#039;. As preparations were underway, Prime received a message from [[Hound (G1)|Hound]] saying that Thunderwing had been stolen. [[Sideswipe (G1)|Sideswipe]], eager to search for Sunstreaker, suggested that they be reassigned to Earth, and Prime agreed. However, the thrashing that Prime gave Megatron had so embarrassed the Decepticon leader that he ordered in the Decepticons&#039; living weapon, [[Sixshot]]. While moving the &#039;&#039;Ark-19&#039;&#039;, Prime and the others came under fire by Sixshot, who severely damaged their ship. {{storylink|Devastation issue 1|Devastation #1}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Devastation4 PrimeSixshot hyperbole.jpg|left|180px|thumb|&amp;quot;And THAT&#039;S for killing my brother in another timeline!&amp;quot;]]&lt;br /&gt;
Ordering [[Ratchet (G1)|Ratchet]] to get [[Jimmy Pink]] and [[Verity Carlo]] to safety, Optimus then instructed Nightbeat to upload all of &#039;&#039;Ark-19&#039;&#039;&amp;lt;nowiki&amp;gt;&#039;&amp;lt;/nowiki&amp;gt;s data to &#039;&#039;[[Ark-32]]&#039;&#039; and for Prowl to activate the self-destruct sequence. {{storylink|Devastation issue 2|Devastation #2}} When &#039;&#039;Ark-19&#039;&#039; exploded, it was assumed that Optimus was on board, but all was good at the end when he appeared with [[Bumblebee (G1)|Bumblebee]] and the others, ready to take on Sixshot. {{storylink|Devastation issue 3|Devastation #3}} Optimus and the Autobots held Sixshot at bay, but the U.S. military ordered an air strike to destroy the alien robots. The battle was a stalemate, as Sixshot had to return to the Decepticons while the Autobots [[orbital jump]]ed just in time to avoid destruction. {{storylink|Devastation issue 4|Devastation #4}} On &#039;&#039;Ark-32&#039;&#039;, after a conversation with Jetfire, Prime informed Prowl that they needed to retrieve [[Wheeljack (G1)|Wheeljack]], Hot Rod and Ironhide, and leave Earth to see to another crisis. The secure facility on [[Garrus-9]] had been breached, and Prime and company needed to make sure that some of the &amp;quot;recent inmates&amp;quot; there didn&#039;t end up &amp;quot;in enemy hands&amp;quot;. {{storylink|Devastation issue 5|Devastation #5}} Before leaving Earth, Optimus Prime redirected Hound&#039;s unit to rendezvous with &#039;&#039;Ark-32&#039;&#039; at Garrus-9, and he told Hound to impress upon Sideswipe the importance of their mission and how he didn&#039;t leave Earth or Sunstreaker behind lightly. {{storylink|Devastation issue 6|Devastation #6}}&lt;br /&gt;
&lt;br /&gt;
[[Image:DarknessPrimes.jpg|right|250px|thumb|Think he can go one series without having a near-death experience?]]&lt;br /&gt;
Optimus Prime and Prowl met with [[Fortress Maximus (G1)|Fortress Maximus]] and Jetfire on Garrus-9 and discussed the prisoners&#039; breakout and how a surviving Decepticon had been tortured. Maximus and Jetfire gave each other a guilty glance. Prime left Maximus in charge and returned with Prowl to the &#039;&#039;Ark-32&#039;&#039;. Meanwhile, [[Dead Universe]] resident [[Cyclonus (G1)|Cyclonus]] attacked Hound&#039;s crew, but they received help from Ultra Magnus and drove Cyclonus to escape to [[Corata-Vaz]]. There, he activated the [[Nega-Core]] and fought with Magnus and Hound&#039;s crew, who had followed him. In desperation, Cyclonus activated the Nega-Core&#039;s guardian—Thunderwing. Using the distraction, Cyclonus escaped, but Magnus sent another tracker after him. All this was reported to Optimus Prime on the &#039;&#039;Ark-32&#039;&#039;, who recognized that this had something to do with his infraspace encounter in Brasnya. Prime ordered Jetfire to summon the Wreckers to find out what Thunderwing was guarding. {{storylink|Spotlight: Cyclonus}}&lt;br /&gt;
&lt;br /&gt;
The prison soon came under attack from Nova Prime. Rather then watch his soldiers be slaughtered by the undead monster, Optimus Prime ordered a retreat and faced Nova alone. Announcing his new title of Nemesis Prime, Optimus&#039;s predecessor explained the nature of the [[Darkness (G1)|Darkness]] before unleashing a portion on the Autobot leader. Shattered, Prime collapsed onto his hands and knees as Nemesis loomed. {{storylink|Spotlight: Doubledealer}}&lt;br /&gt;
&lt;br /&gt;
[[Image:OptimusdeadNemesis.jpg|left|200px|thumb|&amp;quot;Optimus! I&#039;ve come to help y—oh. Sorted, then?&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
Unexpectedly for Nemesis Prime, the Darkness seemed to be more interested in the younger Prime and sought to be passed onto Optimus. Nemesis wasn&#039;t about to let go of the power he commanded, and he savagely attacked Optimus Prime, whose attempts at reason fell on deaf ears. Just as Nemesis Prime seemed victorious, [[Galvatron (G1)|Galvatron]] attacked the fallen Prime from behind, killing him. Nemesis&#039;s death allowed the Darkness finally to enter Optimus, who tried to fight against its evil to no avail. Galvatron offered the Autobot a choice: kill himself by plunging into the [[Solar pool]], or pass on the Darkness to Galvatron, who had coveted it for so long. Optimus seemed to do so willingly, but just as he passed on the Darkness, he threw the surprised Galvatron into the solar pool. As Optimus gazed upon the dead body of Nemesis, he told himself he could not mourn the elder Prime&#039;s death, as Nova had truly died long ago. {{storylink|Spotlight: Sideswipe}}&lt;br /&gt;
&lt;br /&gt;
[[Image:AHMPrimecritical.jpg|right|250px|thumb|So he&#039;s dying. [[The many deaths of Optimus Prime|This shouldn&#039;t be a problem by now]].]]&lt;br /&gt;
A year later, Optimus Prime combined his Autobot squad with another squad. Having received word of a supposed Decepticon power struggle, Prime led the Autobots to a location where Starscream&#039;s &amp;quot;group&amp;quot; was, only to be ambushed by a unified Decepticon force. Though they managed to turn the tide briefly, Devastator&#039;s appearance made the difference, enabling Megatron to rip the Matrix of Leadership from Prime&#039;s chest. Prime was dealt another blow (mentally) when the Autobots were told that they&#039;d been sold out by a traitor in their ranks (who was later revealed to be [[Sunstreaker (G1)|Sunstreaker]]). {{storylink|All Hail Megatron issue 8|All Hail Megatron #8}} The Autobots were led to a space bridge, where Prime, who was the last to go, used his remaining energy to destroy the machine. Unfortunately, this heroic act left Prime in critical condition. {{storylink|All Hail Megatron issue 7|All Hail Megatron #7}} With this defeat, the Autobots were forced to leave Earth to the Decepticons. {{storylink|All Hail Megatron issue 1|All Hail Megatron #1}}&lt;br /&gt;
&lt;br /&gt;
After Prime&#039;s unit met up with Kup&#039;s unit, and after dealing with the Swarm and Sideswipe&#039;s sacrifice to save them, Ratchet and Wheeljack managed to use energon from the &#039;&#039;Trion&#039;&#039; to bring Prime back online in time to smooth over an Autobot argument. As the others excitedly welcomed him back, Prime made a speech about how he was proud of them and that he wanted to win the war. {{storylink|All Hail Megatron issue 9|All Hail Megatron #9}}. After the Autobots recovered and prepared for a final stand against the Swarm, Prime had a brief chat with Ironhide (during which Ironhide admitted to hating him secretly at first sight at the start of the Great War), then prepared for the Swarm&#039;s onslaught. When they came, the Autobots fought back, but they were quickly outnumbered by the thousands. Thankfully, Omega Supreme arrived and saved them from certain doom. After Omega briefly told them about his arrival, Prime ordersed him to transform and transport the Autobots back to Earth. {{storylink|All Hail Megatron issue 10|All Hail Megatron #10}}&lt;br /&gt;
&lt;br /&gt;
Arriving at [[New York City]] while the Decepticons were fending off attacks by a European air squad, Optimus and the Autobots began to engage the Decepticons again. After a bit of fighting, and with the threat of Devasator, Optimus ordered Omega Supreme to take Devastator away from the city and fight him elsewhere. Optimus Prime encountered Megatron, and the two engaged in a bit of viewpoint bantering, mostly about the way their war was now changing and the fact that the humans Prime had &amp;quot;sworn to protect&amp;quot; were about to drop a nuclear bomb on the city. {{storylink|All Hail Megatron issue 11|All Hail Megatron #11}}&lt;br /&gt;
&lt;br /&gt;
[[Image:AHM-13 Prime mouth.jpg|thumb|left|Optimus will overenergize on this stuff, then wake up the next morning in a CR chamber full of ice with his robo-kidneys missing.]]&lt;br /&gt;
&lt;br /&gt;
After that, they engaged in a fierce battle while trading more banter. At first, Megatron took the advantage, but just as he was about to leave with the Decepticons and take the Matrix with him, a shot from [[Shockwave (G1)|an experimental weapon made from a Transformer]] fired by [[Spike Witwicky (G1)|a brave human]] hit him it the face. Seizing the opportunity, Optimus grabbed Megatron&#039;s fusion cannon and slammed it against Megatron&#039;s head, bringing him down in defeat. Before Optimus could truly finish him off, however, Starscream intervened and, after exchanging words, took off with Megatron and the Matrix. Prime&#039;s decision to go after them or save New York from nuclear devastation was rendered moot when Thundercracker, who had grown disenchanted with the way the Decepticons went after the humans, blew up the bomb at the cost of his own life (thanks to an angry Skywarp). The war over for the moment, Prime met with Spike Witwicky, thanked him for helping the Autobots out, and asked if there was some way to help the humans in return. However, Spike responded that they had brought their war to Earth, so any chance of human-Transformer relations was now long gone. {{storylink|All Hail Megatron issue 12|All Hail Megatron #12}}&lt;br /&gt;
&lt;br /&gt;
Later, in an abandoned cave supposedly somewhere within NY&#039;s ruins, Optimus heard Iromhide&#039;s resignation from the Autobot forces. Respecting Ironhide too much, he did not argue, but after some energon and a little flashback, Optimus convinced Ironhide to stay. {{storylink|All Hail Megatron issue 13}}&lt;br /&gt;
&lt;br /&gt;
{{note|The events of &#039;&#039;Spotlight: Mirage&#039;&#039; possibly take place in an alternate/unknown continuity.}}&lt;br /&gt;
&lt;br /&gt;
Optimus Prime commanded one of the last remaining pockets of Autobot resistance, hiding out in the [[Pegasus Star Cluster]]. While awaiting the arrival of Bumblebee&#039;s team, he and Hound tried to work out how to convert the [[Zodiac Energy]] for their consumption. &amp;quot;Bumblebee&#039;s&amp;quot; arrival proved to be their downfall, as it was really the self-serving mercenary [[Mirage (G1)|Mirage]], who destroyed the bunker security systems, allowing the Decepticons inside. Optimus Prime refused to surrender during the ensuing struggle, until Mirage used the critically injured Jetfire as a hostage, forcing Prime to back down. When Megatron betrayed Mirage&#039;s word and ordered the execution of the Autobots, Optimus Prime tried to reason with the mercenary, appealing to his former friendship with Hound...until Mirage killed Hound in defiance. Furious, Optimus Prime broke free of his captors and tackled Mirage into the Zodiac Energy chamber. {{storylink|Spotlight: Mirage}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Hearts of Steel&#039;&#039;===&lt;br /&gt;
[[Image:HeartsofSteel_1_Prime_Bumblebee.jpg|thumb|left|200px|]]&lt;br /&gt;
&lt;br /&gt;
The Autobots and the Decepticons came to [[Earth|a distant world]] in the grip of an ice age. Assuming alternate modes based upon the [[Dinosaur|dominant (though doomed) indigenous creatures]] of this planet, they continued their ancient, unending war. However, the Autobots, with their energy levels dangerously low, withdrew from combat as the world grew colder. They sought refuge in a deep cavern and entered [[stasis lock]], awaiting the day when surface conditions changed to better suit their operation. Millions of years later, Bumblebee was awoken by the hammering of humans working on a rail line. He briefly considered awakening Optimus Prime, but thought better of it. After discovering the world had changed significantly, Ratchet thought there was no reason to awaken Prime. {{storylink|Hearts of Steel issue 1}} When Bumblebee discovered the Decepticons were once again active on this world, Ratchet and Prowl agreed that the Autobots must intervene, but again decided out of rousing Optimus from his slumber. {{Storylink|Hearts of Steel issue 2|Hearts of Steel #2}}&lt;br /&gt;
&lt;br /&gt;
{{Note|Optimus Prime appears very briefly in the first few pages, in his &amp;quot;Ice Age Wars&amp;quot; body (we only see him in robot mode, but his altmode is a brachiosaurus&amp;lt;ref&amp;gt;[http://www.allspark.com/forums/index.php?s=d5d311674e796c81d010d26ac751389b&amp;amp;showtopic=10074&amp;amp;st=20&amp;amp;p=266183&amp;amp;#entry266183 Allspark forums post] by [[Guido Guidi]], August 15th, 2006&amp;lt;/ref&amp;gt;. He spends most of the story in stasis lock. [[:Image:Opthos.jpg|Unused concept art]] depicts him as transforming into a locomotive engine.}}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Henkei! Henkei!&#039;&#039; pack-in comics===&lt;br /&gt;
&lt;br /&gt;
{{storylink|Henkei! Henkei! volume 1}} {{storylink|Henkei! Henkei! volume 2}} {{storylink|Henkei! Henkei! volume 7}}&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Henkei! Henkei!&#039;&#039; Bun Bun manga===&lt;br /&gt;
&lt;br /&gt;
{{storylink|Enter! The Transformers}} {{storylink|Enter the Emperor of Destruction!}} {{storylink|Kingdom of Giants}} {{storylink|The Enemy from the Arctic}} {{storylink|Wataru&#039;s Power}} {{storylink|Optimus Prime&#039;s Secret}} {{storylink|Time of Resurrection}} {{storylink|Creation! The New Emperor of Destruction!!}} {{storylink|The Threat of Galvatron}}&lt;br /&gt;
&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
&lt;br /&gt;
===Alternity===&lt;br /&gt;
&lt;br /&gt;
In 2007, the Optimus Prime of [[universal stream]] Primax 109.0 Beta encountered a mysterious messenger from another world: another incarnation of himself from the multiverse, who left him with a warning. Two years hence, Megatron would bring the terrifying super-dimensional lifeform known as the &amp;quot;Beast of Time&amp;quot;, [[Hytherion]], into their dimension to destroy Earth. The only thing that could battle Hytherion was the power of the super-evolved multi-dimensional race of Cybertronians known as the [[Alternity (species)|Alternity]]. Prime agreed that when the danger appeared, he would join the Alternity in the fight.&lt;br /&gt;
&lt;br /&gt;
Sure enough, in 2009, when Hytherion&#039;s colossal claw-marks appeared on planets throughout the solar system, Prime&#039;s other-dimensional incarnation returned, bringing with him an [[Auto-avatar]] with which Prime fused. In that instant, he was reborn as part of the Alternity, a manifold being who encompassed all the different incarnations of Optimus Prime through the multiverse at once. Prime reached his hands heaveanward and peeled back the layers of reality, exposing the gargantuan fanged maw of Hytherion looming above the Autobots. {{storylink|From Here to Alternity}}&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;Robot Heroes&#039;&#039; comic===&lt;br /&gt;
{{comingsoon}}&lt;br /&gt;
{{storylink|I Am Optimus Prime (Robot Heroes)|I Am Optimus Prime}}&lt;br /&gt;
&lt;br /&gt;
==Commercial appearances==&lt;br /&gt;
Optimus Prime has appeared in more [[Commercial|television commercials]] than any other Transformer... just as with everything else. He has been voiced by Peter Cullen in every animation segment in which he&#039;s had a speaking role.&lt;br /&gt;
&lt;br /&gt;
[[Image:Toycommercial-firstPrime.jpg|right|thumb|My wheels don&#039;t disappear!]]&lt;br /&gt;
&lt;br /&gt;
* He was one of the featured characters in the first ever appearance of the Transformers anywhere, an advertisement for the first issue of [[The Transformers (Marvel comic)|the Generation 1 comic]]. He arrives in the midst of a desert battle as the Decepticons attacked a power plant on Earth, driving to back up his troops in defending it. He strikes a rather iconic pose as he transforms and fires, which would be replicated and copied numerous times in the early years of the franchise. This first commercial used nonfinal versions of the characters&#039; [[character model]]s; Optimus Prime, for example, still had wheels on his legs. [http://www.youtube.com/watch?v=b9-7RjhFzpM]&lt;br /&gt;
&lt;br /&gt;
* In a commercial for the [[Triple Changer]]s, Optimus confronts Astrotrain on a desert battlefield, but the Triple-Changer escapes under fire from other Autobots. Shortly afterward, Prime uses Perceptor&#039;s microscope mode to examine a fragment of Decepticon battle armor. [http://www.youtube.com/watch?v=9WssZjIsUIU]&lt;br /&gt;
&lt;br /&gt;
* Prime and Jazz are shown fighting Megatron in the desert in an ad for the 1985 cars, whom he summons to help out with the battle. [http://www.youtube.com/watch?v=9WssZjIsUIU]&lt;br /&gt;
&lt;br /&gt;
* Prime narrates two commercials around the time of &#039;&#039;[[The Transformers: The Movie]]&#039;&#039;, describing the action as [[Springer (G1)|Springer]] battles [[Wreck-Gar (G1)|Wreck-Gar]], and [[Hot Rod (G1)|Hot Rod]] and [[Kup (G1)|Kup]] take on the [[Sharkticon (G1)|Sharkticons]]. [http://www.youtube.com/watch?v=5X-10pud7DY] &lt;br /&gt;
&lt;br /&gt;
[[Image:Toycommercial-PowermasterOptimusPrime.jpg|right|thumb|An integral part of Powermaster Prime&#039;s transformation is Joyride shooting lightning bolts through his pointed finger.]]&lt;br /&gt;
&lt;br /&gt;
* Prime was prominently featured in the ad for the first comic issue featuring the [[Powermaster]]s. On the rocky plains where practically every Transformer battle ever seems to happen, Prime arrives in his Powermaster body to back up three of his troops against Dreadwind and Darkwing. He&#039;s shown combining with [[Hi-Q]] and transforming, attacking with his trailer&#039;s battle station mode, then combining with the trailer to continue the attack. Who wins? Find out in [[People Power!|Marvel Comics]]! [http://www.youtube.com/watch?v=voX_KNNxNCI]&lt;br /&gt;
&lt;br /&gt;
[[Image:OptimusQuickswitchCommercial.jpg|right|thumb|Optimus Prime is so giving, he even gives other Transformers time in his commercials.]]&lt;br /&gt;
&lt;br /&gt;
* Prime also features briefly in [[Quickswitch]]&#039;s ad; in a battle on the moon, Quickswitch transforms to gun mode and is wielded by Powermaster Optimus Prime.&lt;br /&gt;
&lt;br /&gt;
* An abbreviated ad for Powermaster Prime uses footage from both the Marvel Comic and Quickswitch commercials.&lt;br /&gt;
&lt;br /&gt;
* Prime&#039;s Powermaster body shows up yet again in the [[Classic Pretender|Pretender Classic]]s ad. He comes under attack in the darkened streets of the city, prompting the narrator to explain that he needs the greatest Transformers ever! Prime then welcomes back Bumblebee and Jazz in their Pretender forms. [http://www.youtube.com/watch?v=mahbq-FnSPY]&lt;br /&gt;
&lt;br /&gt;
* Powermaster Prime and [[Piranacon]] are the representatives from each faction that [[Doubledealer]] doublecrosses! Everyone wonders who that guy is that Prime&#039;s talking to... He looks kinda suspicious!&lt;br /&gt;
&lt;br /&gt;
* Optimus features prominently in the first [[Action Master]] commercial; he&#039;s shown surrounded by a circle of his troops, and challenges them to give up their transforming powers to become faster, stronger, more alive! [http://www.youtube.com/watch?v=KeNf3jQ1zdw]&lt;br /&gt;
&lt;br /&gt;
* A stock intro was used for several Micromaster commercials, with Optimus opening his fist to reveal a Micromaster city within.&lt;br /&gt;
&lt;br /&gt;
[[Image:Hotrodpatrolcommercial.jpg|right|thumb|Prime wants to know if they can transform, because he sure can&#039;t!]]&lt;br /&gt;
&lt;br /&gt;
* A similar sequence in another Micromaster has Prime opening his fist to find the [[Hot Rod Patrol]] inside. He and Jazz check them out, and Optimus wonders if they can transform. &lt;br /&gt;
&lt;br /&gt;
* In an ad for the Micromaster micro bases, a battle rages outside an Autobot base, and Prime watches impassively as Bumblebee and Jazz pull two [[Interstellar shuttle|captured]] [[Attack Copter|vehicles]] into the base. Prime is the first to notice that the vehicles are transforming and shooting things. &lt;br /&gt;
&lt;br /&gt;
* Prime and [[Ramjet (G1)|Ramjet]] are the stars of the first &#039;&#039;[[Generation 2 (franchise)|Generation 2]]&#039;&#039; commercial, animated with [[Computer-generated imagery|CGI]]. Prime is shown driving down a road in his &#039;&#039;Generation 2&#039;&#039; colored truck mode. He rocket-launches up into the air to transform, then has a brutal fight with Ramjet. Despite getting a hole blasted in his chest, he wins the fight and fires his gun into the air in triumph. Non-speaking.&lt;br /&gt;
&lt;br /&gt;
* Prime also is shown briefly in a commercial for the new Megatron tank toy. He transforms and finds his head in a target crosshairs. In the subsequent toy segment, Prime&#039;s toy is shown getting completely trashed by that of Megatron. Non-speaking.&lt;br /&gt;
&lt;br /&gt;
* And finally, Prime got his own rap segment. He&#039;s shown in his Combat toy body, waiting for Megatron as he attacks a human subdivision. Prime converts to robot form, blows up Megatron&#039;s weapon at point blank range, and slugs it out with him. Apparently emerging victorious, is next shown sitting next to an identical truck, which the live-action kid mistakes for the real thing. The real Prime then transforms and picks up the kid, inspecting the human with his cold, lifeless, flashing red optics. Prime is once again voiced by Peter Cullen in this commercial.&lt;br /&gt;
&lt;br /&gt;
Prime also appeared in commercials for &#039;&#039;Transformers&#039;&#039; products other than the toys themselves...&lt;br /&gt;
&lt;br /&gt;
* In the ad for [[Coleco]]&#039;s [[Power Cycle]], Optimus Prime shoots &#039;&#039;at&#039;&#039; a child riding the titular cycle, but misses. This footage is recycled from the advertisement for the comic.&lt;br /&gt;
&lt;br /&gt;
* Prime delivers a load of shoes to schoolchildren in a South American ad for [[Bata]]&#039;s licensed &#039;&#039;Transformers&#039;&#039; footwear.&lt;br /&gt;
&lt;br /&gt;
==Games==&lt;br /&gt;
===&#039;&#039;Revenge of the Fallen&#039;&#039;: The Game===&lt;br /&gt;
:&#039;&#039;Voice actor:&#039;&#039;&lt;br /&gt;
{{charstubfiction}}&lt;br /&gt;
{{storylink|Revenge of the Fallen (Xbox 360/PS3/PC)|Revenge of the Fallen}}&lt;br /&gt;
==Toys==&lt;br /&gt;
{{main|Optimus Prime (G1)/toys}}&lt;br /&gt;
&lt;br /&gt;
==Merchandise==&lt;br /&gt;
:&#039;&#039;Main article: [[Optimus Prime (G1)/toys#Merchandise|Merchandise]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
* According to [[Bob Budiansky]], longtime comics writer [[Denny O&#039;Neil]] named Optimus Prime prior to Budiansky being brought on to the &#039;&#039;Transformers&#039;&#039; project.&lt;br /&gt;
&lt;br /&gt;
* Optimus Prime&#039;s Japanese name is &amp;quot;Convoy&amp;quot;, which is named after his original name &amp;quot;Battle Convoy&amp;quot; in the [[Diaclone]] toyline, because the name &amp;quot;Optimus Prime&amp;quot; is difficult for Japanese kids to remember and pronounce. &amp;lt;ref&amp;gt;&#039;&#039;&#039;Figure-Oh&#039;&#039;&#039; No. 114&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*According to an early &#039;&#039;[[Transformers Universe (Marvel comic)|Universe]]&#039;&#039;-style profile published in &#039;&#039;[[The Transformers Comics Magazine]]&#039;&#039;, Optimus Prime&#039;s &amp;quot;official&amp;quot; nicknames were at one point considered to be &amp;quot;Autobot Commander&amp;quot;, &amp;quot;Chief&amp;quot;, &amp;quot;Big Boss&amp;quot; and &amp;quot;Roller&amp;quot;. As far as it is known, no piece of fiction has ever purposely addressed him using these nicknames, though it&#039;s a fair bet he&#039;s been called &amp;quot;chief&amp;quot; at least once or twice anyway.&lt;br /&gt;
&lt;br /&gt;
* He [[Letters page (Marvel UK)|allegedly]] hates the music of [[wikipedia:Mötley_Crüe|Mötley Crüe]].&lt;br /&gt;
&lt;br /&gt;
* According to the staff of &#039;&#039;[[Beast Wars (cartoon)|Beast Wars]]&#039;&#039;, Optimus Prime became a space explorer in the [[Beast Era]].&amp;lt;ref&amp;gt;[[Beast Wars Universe]] ISBN 978-4766938005&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Optimusprime-mom.jpg|right|125px|thumb|Prime&#039;s mom knows how to write in cursive.]]&lt;br /&gt;
* By the time Optimus Prime appeared in &#039;&#039;[[Beast Machines (cartoon)|Beast Machines]]&#039;&#039;, his 3D model from &#039;&#039;Beast Wars&#039;&#039; had apparently been lost, leading the animators to use a faceplated Optimus Primal head as a quick replacement to save time and budget.&lt;br /&gt;
&lt;br /&gt;
* Aside from occasionally having Alpha Trion as a father figure, Optimus Prime may have a mother! In an advertisement for [[Pepsi Convoy]] that shows him in a refrigerator (along with [[Destron Pizza]]), a note attached to a nearby piece of Tupperware reads:&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Dear Convoy&#039;&#039;&lt;br /&gt;
:&#039;&#039;Warm it before you eat&#039;&#039;&lt;br /&gt;
:&#039;&#039;Mom&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:Although the ad itself is for Pepsi Convoy, he is a separate character, and it can be assumed that the note was left for Convoy/Optimus Prime himself.&lt;br /&gt;
&lt;br /&gt;
* The first wave of Dreamwave posters in 2001 identified Optimus Prime as [http://www.comicden.com/merch/posters.htm &amp;quot;Captimus Primus&amp;quot;], which is tantalizingly close to making some sort of sense.&lt;br /&gt;
&lt;br /&gt;
* According to EJ Su, Optimus Prime&#039;s [[Holomatter|Holomatter avatar]] is modeled after [[wikipedia:Ulysses_S._Grant|Ulysses S. Grant]].&amp;lt;ref&amp;gt;[http://www.protodepot.com/archive/2007_11_01_archive.html Idea: Holomatter Projection]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* As of [[All Hail Megatron issue 13|All Hail Megatron #13]], Optimus has a mouth underneath that [[faceplate]] of his.&lt;br /&gt;
&lt;br /&gt;
* This Optimus Prime, along with the original [[Ultra Magnus (G1)|Ultra Magnus]], [[Hot Rod (G1)|Rodimus Prime]], and [[Jazz (G1)|Jazz]] makes a cameo appearance as one of the four elders who began the [[Space Bridge]] project in the &#039;&#039;[[Cybertron (cartoon)|Cybertron]]&#039;&#039; episode [[Balance]].&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.ntfa.net/universe/english/index.php?act=view&amp;amp;char=Optimus_Prime Optimus Prime&#039;s Universe profile at NTFA.net]&lt;br /&gt;
&lt;br /&gt;
* [http://www.ntfa.net/universe/english/index.php?act=view&amp;amp;char=Optimus_Prime_PM Powermaster Optimus Prime&#039;s Universe profile at NTFA.net]&lt;br /&gt;
&lt;br /&gt;
== Footnotes ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Action Masters]]&lt;br /&gt;
[[Category:Alternators]]&lt;br /&gt;
[[Category:Alternity characters]]&lt;br /&gt;
[[Category:Attacktix]]&lt;br /&gt;
[[Category:Autobots]]&lt;br /&gt;
[[Category:Autobot leaders]]&lt;br /&gt;
[[Category:Beast Wars characters]]&lt;br /&gt;
[[Category:Classics characters]]&lt;br /&gt;
[[Category:Combiners]]&lt;br /&gt;
[[Category:Convention exclusives]]&lt;br /&gt;
[[Category:E-Hobby]]&lt;br /&gt;
[[Category:Generation 1 characters]]&lt;br /&gt;
[[Category:Generation 2 characters]]&lt;br /&gt;
[[Category:Ghosts]]&lt;br /&gt;
[[Category:Go-Bots]]&lt;br /&gt;
[[Category:Headmasters characters]]&lt;br /&gt;
[[Category:Henkei! Henkei! characters]]&lt;br /&gt;
[[Category:Kiss Players characters]]&lt;br /&gt;
[[Category:Machine Wars characters]]&lt;br /&gt;
[[Category:Revenge of the Fallen characters]]&lt;br /&gt;
[[Category:Mail order exclusives]]&lt;br /&gt;
[[Category:Matrix bearers]]&lt;br /&gt;
[[Category:Multi-component Transformers]]&lt;br /&gt;
[[Category:Non-Triple Changer third mode]]&lt;br /&gt;
[[Category:Powermasters]]&lt;br /&gt;
[[Category:Return of Convoy characters]]&lt;br /&gt;
[[Category:Robot Heroes]]&lt;br /&gt;
[[Category:Robot Masters characters]]&lt;br /&gt;
[[Category:Rulers of Cybertron]]&lt;br /&gt;
[[Category:Titanium Series]]&lt;br /&gt;
[[Category:Toys &amp;quot;R&amp;quot; Us exclusives]]&lt;br /&gt;
[[Category:Zombies]]&lt;/div&gt;</summary>
		<author><name>McFly</name></author>
	</entry>
</feed>