From 50dbd0da7c6c363c3e7ed0b8697987e968becad7 Mon Sep 17 00:00:00 2001
From: Bram Goffings <bramgoffings@gmail.com>
Date: Mon, 11 Jun 2012 21:25:44 +0200
Subject: [PATCH] rename classes

---
 core/lib/Drupal/Core/FileTransfer/FTP.php          |    4 ++--
 core/lib/Drupal/Core/FileTransfer/FTPExtension.php |    4 ++--
 core/lib/Drupal/Core/FileTransfer/SSH.php          |    4 ++--
 .../dblog/lib/Drupal/dblog/Tests/DBLogTest.php     |    4 ++--
 .../Tests/LanguageUILanguageNegotiationTest.php    |    4 ++--
 .../lib/Drupal/node/Tests/NodeRSSContentTest.php   |    4 ++--
 .../lib/Drupal/node/Tests/NodeTitleXSSTest.php     |    4 ++--
 .../Drupal/openid/Tests/OpenIDFunctionalTest.php   |    4 ++--
 .../Drupal/openid/Tests/OpenIDRegistrationTest.php |    4 ++--
 .../openid/lib/Drupal/openid/Tests/OpenIDTest.php  |    4 ++--
 10 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/core/lib/Drupal/Core/FileTransfer/FTP.php b/core/lib/Drupal/Core/FileTransfer/FTP.php
index 342660a..24aa402 100644
--- a/core/lib/Drupal/Core/FileTransfer/FTP.php
+++ b/core/lib/Drupal/Core/FileTransfer/FTP.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\FTP.
+ * Definition of Drupal\Core\FileTransfer\Ftp.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -10,7 +10,7 @@ namespace Drupal\Core\FileTransfer;
 /**
  * Defines the base class for FTP implementations.
  */
-abstract class FTP extends FileTransfer {
+abstract class Ftp extends FileTransfer {
 
   /**
    * Overrides Drupal\Core\FileTransfer\FileTransfer::__construct().
diff --git a/core/lib/Drupal/Core/FileTransfer/FTPExtension.php b/core/lib/Drupal/Core/FileTransfer/FTPExtension.php
index 39465ba..75f810a 100644
--- a/core/lib/Drupal/Core/FileTransfer/FTPExtension.php
+++ b/core/lib/Drupal/Core/FileTransfer/FTPExtension.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\FTPExtension.
+ * Definition of Drupal\Core\FileTransfer\FtpExtension.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -10,7 +10,7 @@ namespace Drupal\Core\FileTransfer;
 /**
  * Defines a file transfer class using the PHP FTP extension.
  */
-class FTPExtension extends FTP implements ChmodInterface {
+class FtpExtension extends FTP implements ChmodInterface {
 
   /**
    * Implements Drupal\Core\FileTransfer\FileTransfer::connect().
diff --git a/core/lib/Drupal/Core/FileTransfer/SSH.php b/core/lib/Drupal/Core/FileTransfer/SSH.php
index c1bf991..d7103e9 100644
--- a/core/lib/Drupal/Core/FileTransfer/SSH.php
+++ b/core/lib/Drupal/Core/FileTransfer/SSH.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\SSH.
+ * Definition of Drupal\Core\FileTransfer\Ssh.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -10,7 +10,7 @@ namespace Drupal\Core\FileTransfer;
 /**
  * The SSH connection class for the update module.
  */
-class SSH extends FileTransfer implements ChmodInterface {
+class Ssh extends FileTransfer implements ChmodInterface {
 
   /**
    * Overrides Drupal\Core\FileTransfer\FileTransfer::__construct().
diff --git a/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php b/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php
index ce02b0a..3887d48 100644
--- a/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php
+++ b/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\dblog\Tests\DBLogTest.
+ * Definition of Drupal\dblog\Tests\DbLogTest.
  */
 
 namespace Drupal\dblog\Tests;
@@ -10,7 +10,7 @@ namespace Drupal\dblog\Tests;
 use Drupal\simpletest\WebTestBase;
 use SimpleXMLElement;
 
-class DBLogTest extends WebTestBase {
+class DbLogTest extends WebTestBase {
   protected $profile = 'standard';
 
   protected $big_user;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php
index 3495548..f580aef 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageUILanguageNegotiationTest.
+ * Definition of Drupal\language\Tests\LanguageUiLanguageNegotiationTest.
  */
 
 namespace Drupal\language\Tests;
@@ -35,7 +35,7 @@ use Drupal\simpletest\WebTestBase;
  *        http://example.cn/admin/config
  *          UI language in Chinese
  */
-class LanguageUILanguageNegotiationTest extends WebTestBase {
+class LanguageUiLanguageNegotiationTest extends WebTestBase {
   public static function getInfo() {
     return array(
       'name' => 'UI language negotiation',
diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeRSSContentTest.php b/core/modules/node/lib/Drupal/node/Tests/NodeRSSContentTest.php
index 8577b2b..b2a9a5e 100644
--- a/core/modules/node/lib/Drupal/node/Tests/NodeRSSContentTest.php
+++ b/core/modules/node/lib/Drupal/node/Tests/NodeRSSContentTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\node\Tests\NodeRSSContentTest.
+ * Definition of Drupal\node\Tests\NodeRssContentTest.
  */
 
 namespace Drupal\node\Tests;
@@ -14,7 +14,7 @@ namespace Drupal\node\Tests;
  * added to the node->content array, then verify that the data appears on the
  * sitewide RSS feed at rss.xml.
  */
-class NodeRSSContentTest extends NodeTestBase {
+class NodeRssContentTest extends NodeTestBase {
   public static function getInfo() {
     return array(
       'name' => 'Node RSS Content',
diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTitleXSSTest.php b/core/modules/node/lib/Drupal/node/Tests/NodeTitleXSSTest.php
index 610c41f..4c5c93c 100644
--- a/core/modules/node/lib/Drupal/node/Tests/NodeTitleXSSTest.php
+++ b/core/modules/node/lib/Drupal/node/Tests/NodeTitleXSSTest.php
@@ -2,12 +2,12 @@
 
 /**
  * @file
- * Definition of Drupal\node\Tests\NodeTitleXSSTest.
+ * Definition of Drupal\node\Tests\NodeTitleXssTest.
  */
 
 namespace Drupal\node\Tests;
 
-class NodeTitleXSSTest extends NodeTestBase {
+class NodeTitleXssTest extends NodeTestBase {
   public static function getInfo() {
     return array(
       'name' => 'Node title XSS filtering',
diff --git a/core/modules/openid/lib/Drupal/openid/Tests/OpenIDFunctionalTest.php b/core/modules/openid/lib/Drupal/openid/Tests/OpenIDFunctionalTest.php
index edf7fd8..407937d 100644
--- a/core/modules/openid/lib/Drupal/openid/Tests/OpenIDFunctionalTest.php
+++ b/core/modules/openid/lib/Drupal/openid/Tests/OpenIDFunctionalTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\openid\Tests\OpenIDFunctionalTest.
+ * Definition of Drupal\openid\Tests\OpenIdFunctionalTest.
  */
 
 namespace Drupal\openid\Tests;
@@ -12,7 +12,7 @@ use stdClass;
 /**
  * Test discovery and login using OpenID
  */
-class OpenIDFunctionalTest extends OpenIDTestBase {
+class OpenIdFunctionalTest extends OpenIDTestBase {
   protected $web_user;
 
   public static function getInfo() {
diff --git a/core/modules/openid/lib/Drupal/openid/Tests/OpenIDRegistrationTest.php b/core/modules/openid/lib/Drupal/openid/Tests/OpenIDRegistrationTest.php
index a143d34..7d479a0 100644
--- a/core/modules/openid/lib/Drupal/openid/Tests/OpenIDRegistrationTest.php
+++ b/core/modules/openid/lib/Drupal/openid/Tests/OpenIDRegistrationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\openid\Tests\OpenIDRegistrationTest.
+ * Definition of Drupal\openid\Tests\OpenIdRegistrationTest.
  */
 
 namespace Drupal\openid\Tests;
@@ -10,7 +10,7 @@ namespace Drupal\openid\Tests;
 /**
  * Test account registration using Simple Registration and Attribute Exchange.
  */
-class OpenIDRegistrationTest extends OpenIDTestBase {
+class OpenIdRegistrationTest extends OpenIDTestBase {
   public static function getInfo() {
     return array(
       'name' => 'OpenID account registration',
diff --git a/core/modules/openid/lib/Drupal/openid/Tests/OpenIDTest.php b/core/modules/openid/lib/Drupal/openid/Tests/OpenIDTest.php
index 595dca4..c1338da 100644
--- a/core/modules/openid/lib/Drupal/openid/Tests/OpenIDTest.php
+++ b/core/modules/openid/lib/Drupal/openid/Tests/OpenIDTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\openid\Tests\OpenIDTest.
+ * Definition of Drupal\openid\Tests\OpenIdTest.
  */
 
 namespace Drupal\openid\Tests;
@@ -13,7 +13,7 @@ use stdClass;
 /**
  * Test internal helper functions.
  */
-class OpenIDTest extends WebTestBase {
+class OpenIdTest extends WebTestBase {
   public static function getInfo() {
     return array(
       'name' => 'OpenID helper functions',
-- 
1.7.4.msysgit.0

