From 0721f5e55bf8ae501e15880f9ae243a58eadd00b Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Mon, 22 Aug 2011 06:13:52 +0000 Subject: chenged label for architecture --- h-source/Application/Controllers/DownloadController.php | 4 ++-- h-source/Application/Controllers/NotebooksController.php | 4 ++-- h-source/Application/Include/hardware.php | 14 ++++++++++++-- h-source/Application/Views/header.php | 4 ++-- 4 files changed, 18 insertions(+), 8 deletions(-) (limited to 'h-source') diff --git a/h-source/Application/Controllers/DownloadController.php b/h-source/Application/Controllers/DownloadController.php index 99fb06a..20d00a3 100644 --- a/h-source/Application/Controllers/DownloadController.php +++ b/h-source/Application/Controllers/DownloadController.php @@ -48,12 +48,12 @@ class DownloadController extends BaseController $xml = null; $xml = "\n"; $xml .= "\n"; - $xml .= "\t\n"; + $xml .= "\t\n"; $xml .= "\t\th-node project\n"; $xml .= "\t\twww.h-node.com\n"; $xml .= "\t\t".date("Y-m-d H:i:s")."\n"; $xml .= "\t\t".License::getInsideXml()."\n"; - $xml .= "\t\n"; + $xml .= "\t\n"; foreach ($res as $row) { diff --git a/h-source/Application/Controllers/NotebooksController.php b/h-source/Application/Controllers/NotebooksController.php index 470edc2..103ac05 100644 --- a/h-source/Application/Controllers/NotebooksController.php +++ b/h-source/Application/Controllers/NotebooksController.php @@ -55,7 +55,7 @@ class NotebooksController extends GenericController "+++++checkIsStrings|".Notebooks::videoList() => "video_card_works", "++++++checkIsStrings|".Notebooks::$biosSelect => "bios", "+++++++checkIsStrings|".Notebooks::webcamList() => "webcam_works", - "++++++++checkIsStrings|".Notebooks::$architectureSelect => "architecture", + "++++++++checkIsStrings|".Notebooks::architectureList() => "architecture", ); $this->m['HardwareModel']->strongConditions['insert'] = array( @@ -71,7 +71,7 @@ class NotebooksController extends GenericController "+++++checkIsStrings|".Notebooks::videoList() => "video_card_works", "++++++checkIsStrings|".Notebooks::$biosSelect => "bios", "+++++++checkIsStrings|".Notebooks::webcamList() => "webcam_works", - "++++++++checkIsStrings|".Notebooks::$architectureSelect => "architecture", + "++++++++checkIsStrings|".Notebooks::architectureList() => "architecture", ); $this->m['HardwareModel']->softConditions['update'] = array( diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php index 999a540..8306417 100644 --- a/h-source/Application/Include/hardware.php +++ b/h-source/Application/Include/hardware.php @@ -249,7 +249,13 @@ class Notebooks extends Hardware public static $subtypeSelect = 'notebook,netbook,not-specified'; - public static $architectureSelect = 'not-specified,x86,amd64,MIPS,ARM'; + public static $architectureSelect = array( + "not specified" => 'not-specified', + "x86" => 'x86', + "x86-64/amd64" => 'amd64', + "MIPS" => 'MIPS', + "ARM" => 'ARM', + ); public static $biosSelect = 'not-specified,no,yes'; @@ -321,7 +327,11 @@ class Notebooks extends Hardware { return implode(',',array_values(self::$compatibility)); } - + + public static function architectureList() + { + return implode(',',array_values(self::$architectureSelect)); + } } class ThreeGcards extends Wifi diff --git a/h-source/Application/Views/header.php b/h-source/Application/Views/header.php index 96f1a8c..c70ba59 100644 --- a/h-source/Application/Views/header.php +++ b/h-source/Application/Views/header.php @@ -31,8 +31,8 @@ $currPos = $querySanitized ? $this->controller."/".$this->action : 'home/index'; <?php echo $title;?> - - + + -- cgit v1.2.3