diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2011-10-06 20:25:55 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-10-06 20:25:55 +0000 | 
| commit | 53f9d690ee2f49545d63788be6c1fe80d9ec6e58 (patch) | |
| tree | b9b51d06c214396d6ca4b79c380d26ce13f53a92 /h-source/Application/Controllers | |
| parent | 99a6ba9947839d62a3f09f48a0ba962c23794491 (diff) | |
added the entry "does it adopt any techniques to track users?" for printers - part 1
Diffstat (limited to 'h-source/Application/Controllers')
| -rw-r--r-- | h-source/Application/Controllers/DownloadController.php | 5 | ||||
| -rw-r--r-- | h-source/Application/Controllers/PrintersController.php | 24 | 
2 files changed, 9 insertions, 20 deletions
diff --git a/h-source/Application/Controllers/DownloadController.php b/h-source/Application/Controllers/DownloadController.php index 1e4f94e..bc433c4 100644 --- a/h-source/Application/Controllers/DownloadController.php +++ b/h-source/Application/Controllers/DownloadController.php @@ -96,6 +96,11 @@ class DownloadController extends BaseController  				$xml .= "\t\t<compatibility>".$row['hardware']['compatibility']."</compatibility>\n";  			} +			if ($type === 'printer') +			{ +				$xml .= "\t\t<it_tracks_users>".$row['hardware']['it_tracks_users']."</it_tracks_users>\n"; +			} +			  			if ($type === 'notebook')  			{  				$xml .= "\t\t<wifi_card>".$row['hardware']['wifi_type']."</wifi_card>\n"; diff --git a/h-source/Application/Controllers/PrintersController.php b/h-source/Application/Controllers/PrintersController.php index 06a0f93..d8cfe38 100644 --- a/h-source/Application/Controllers/PrintersController.php +++ b/h-source/Application/Controllers/PrintersController.php @@ -52,19 +52,10 @@ class PrintersController extends GenericController  			"++checkIsStrings|".Printer::$commYear	=> 	"comm_year",  			"+++checkIsStrings|".Printer::$interface	=> 	"interface",  			"++++checkIsStrings|".Printer::$subtype	=> 	"subtype", +			"+++++checkIsStrings|".Printer::$trackSelect	=> 	"it_tracks_users",  		); -		$this->m['HardwareModel']->strongConditions['insert'] = array( -			"checkNotEmpty"								=>	"model|you have to fill the <i>model name</i> entry", -			"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/"		=>	"model|characters not allowed in the <i>model name</i> entry", -			"+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/"		=>	"pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}", -			"checkLength|99"	=>						"model", -			"+checkLength|299"							=>	"distribution", -			"+checkIsStrings|".Printer::compatibilityList() 	=> 	"compatibility", -			"++checkIsStrings|".Printer::$commYear	=> 	"comm_year", -			"+++checkIsStrings|".Printer::$interface	=> 	"interface", -			"++++checkIsStrings|".Printer::$subtype	=> 	"subtype", -		); +		$this->m['HardwareModel']->strongConditions['insert'] = $this->m['HardwareModel']->strongConditions['update'];  		$this->m['HardwareModel']->softConditions['update'] = array(  			"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/"			=>	"kernel|characters not allowed in the <i>kernel</i> entry", @@ -75,16 +66,9 @@ class PrintersController extends GenericController  			"+++checkLength|1000"							=>	"other_names|the <i>other names</i> entry exceeds the value of 1000 characters",  		); -		$this->m['HardwareModel']->softConditions['insert'] = array( -			"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/"		=>	"kernel|characters not allowed in the <i>kernel</i> entry", -			"checkLength|20000"							=>	"description", -			"+checkLength|49"							=>	"driver", -			"++checkLength|49"							=>	"kernel", -			"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/"	=>	"driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]", -			"+++checkLength|1000"							=>	"other_names|the <i>other names</i> entry exceeds the value of 1000 characters", -		); +		$this->m['HardwareModel']->softConditions['insert'] = $this->m['HardwareModel']->softConditions['update']; -		$this->m['HardwareModel']->setFields('model,kernel,description,compatibility,distribution,comm_year,pci_id,driver,interface,subtype,other_names','sanitizeAll'); +		$this->m['HardwareModel']->setFields('model,kernel,description,compatibility,distribution,comm_year,pci_id,driver,interface,subtype,other_names,it_tracks_users','sanitizeAll');  		$argKeys = array(  			'page:forceNat'					=>	1,  | 
