diff options
| -rw-r--r-- | h-source/Application/Controllers/BaseController.php | 16 | ||||
| -rw-r--r-- | h-source/Application/Include/params.php | 7 | ||||
| -rw-r--r-- | h-source/README.txt | 14 | ||||
| -rw-r--r-- | h-source/config.xml | 719 | 
4 files changed, 753 insertions, 3 deletions
diff --git a/h-source/Application/Controllers/BaseController.php b/h-source/Application/Controllers/BaseController.php index 9287cee..4a3bb65 100644 --- a/h-source/Application/Controllers/BaseController.php +++ b/h-source/Application/Controllers/BaseController.php @@ -131,9 +131,21 @@ class BaseController extends Controller  		if (count($xmlRes)>0)  		{  			$configXml = htmlspecialchars_decode($xmlRes[0],ENT_QUOTES); -			if (@simplexml_load_string($configXml)) +			 +			if (Website::$useXmlConfigFile) +			{ +				$xmlConfigFile = rtrim(Website::$xmlConfigFileFolder,'/') . '/config.xml'; +				if (@simplexml_load_file($xmlConfigFile)) +				{ +					$this->_configXml = simplexml_load_file($xmlConfigFile); +				} +			} +			else  			{ -				$this->_configXml = simplexml_load_string($configXml); +				if (@simplexml_load_string($configXml)) +				{ +					$this->_configXml = simplexml_load_string($configXml); +				}  			}  		} diff --git a/h-source/Application/Include/params.php b/h-source/Application/Include/params.php index f09d647..3f905db 100644 --- a/h-source/Application/Include/params.php +++ b/h-source/Application/Include/params.php @@ -39,6 +39,13 @@ class Website  	static public $statusnetGroupText = "";  	static public $useSMTP = true; +	 +	//use a xml file the modules of the website? +	static public $useXmlConfigFile = true; +	 +	//folder of the xml configuration file +	//the constant ROOT contains the path to the root folder of your installaton of h-source +	static public $xmlConfigFileFolder = ROOT;  }  class Account diff --git a/h-source/README.txt b/h-source/README.txt index 6aa1419..1c8d821 100644 --- a/h-source/README.txt +++ b/h-source/README.txt @@ -59,7 +59,7 @@ where DOMAIN_NAME is the domain name you have previously set (perhaps localhost)  == Account issues == -If you want that the system can send e-mails you have to specify the name of the SMTP server that has to be used. Open the file Application/Include/params.php and set the following constants: +If you want that the system can send e-mails you have to specify the name of the SMTP server that has to be used. Open the file Application/Include/params.php and set the following static attributes of the Website class:  	$mailServer = "";  //set the mail server (only useful if $useSMTP = true) @@ -67,6 +67,8 @@ If you want that the system can send e-mails you have to specify the name of the  	$mailPassword = "";  //set the password of your mail account (only useful if $useSMTP = true) +	$fromEmail = "noreply@h-node.org"; //this is the "from address e-mail" used inside the mails sent by h-source (example: confirmation requesta e-mail, change password e-mail, ...) +  	$useSMTP = true;  //if you want to use a SMTP account. It can be true or false. Set $useSMTP to false if you want that the software rely on the mail() PHP function  You can also set these constants: @@ -74,7 +76,17 @@ You can also set these constants:  	$generalName = "";  //the string that you want to use inside the <title> tag of your website  	$projectName = "";  //the name of your project  + + +== Change the configuration of some parts of the template (right column, top notices, top menu, ...) == + +Modify the file config.xml inside the ROOT folder of your h-source installation. + +If you want to change the position of the config.xml file change the following static attribute of the Website class inside the  +Application/Include/params.php file: +	static public $xmlConfigFileFolder = ROOT; //the constant ROOT contains the path to the root folder of your installaton of h-source +  == Change the homepage == diff --git a/h-source/config.xml b/h-source/config.xml new file mode 100644 index 0000000..3af30da --- /dev/null +++ b/h-source/config.xml @@ -0,0 +1,719 @@ +<config> +	<top_news> +		<en> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FDF5E6;margin:0.5em;border-top:1px solid #BA55D3;border-bottom:1px solid #BA55D3;color:#BA55D3;font-size:16px;">Notice 1 EN +				</div> + +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FFA07A;margin:0.5em;border-top:1px solid #FF4500;border-bottom:1px solid #FF4500;color:#DC143C;font-size:16px;">Notice 2 EN +				</div> + +				]]></text> +			</mod> +		</en> +		<it> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FDF5E6;margin:0.5em;border-top:1px solid #BA55D3;border-bottom:1px solid #BA55D3;color:#BA55D3;font-size:16px;">Notice 1 IT +				</div> + +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FFA07A;margin:0.5em;border-top:1px solid #FF4500;border-bottom:1px solid #FF4500;color:#DC143C;font-size:16px;">Notice 2 IT +				</div> + +				]]></text> +			</mod> +		</it> +		<es> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FDF5E6;margin:0.5em;border-top:1px solid #BA55D3;border-bottom:1px solid #BA55D3;color:#BA55D3;font-size:16px;">Notice 1 ES +				</div> + +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FFA07A;margin:0.5em;border-top:1px solid #FF4500;border-bottom:1px solid #FF4500;color:#DC143C;font-size:16px;">Notice 2 ES +				</div> + +				]]></text> +			</mod> +		</es> +		<fr> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FDF5E6;margin:0.5em;border-top:1px solid #BA55D3;border-bottom:1px solid #BA55D3;color:#BA55D3;font-size:16px;">Notice 1 FR +				</div> + +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ + +				<div style="padding:0.5em;background:#FFA07A;margin:0.5em;border-top:1px solid #FF4500;border-bottom:1px solid #FF4500;color:#DC143C;font-size:16px;">Notice 2 FR +				</div> + +				]]></text> +			</mod> +		</fr> +	</top_news> +	<right_column> +		<en> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +					<div style="text-align:center;"><a href="http://www.fsf.org/associate/support_freedom/join_fsf?referrer=2442"> +						<img title="Help protect your freedom, join the Free Software Foundation" alt="Support freedom" src="https://static.fsf.org/nosvn/appeal2010/widget-thin.png"> +					</a></div> +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">supported by</div> +				<div style="padding:5px 10px;text-align:left;border-top:2px solid #000;margin-bottom:2.5em;"> +				<a href="http://www.fsf.org"><img style="margin-left:-5px;margin-top:3px;" width="175px" align="left" src="http://www.gnu.org/graphics/logo-fsf.org-tiny.png"></a> +				</div> + +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">subscribe to our</div> +				<div style="background:#B7F18C;padding:5px 10px;text-align:left;border-top:2px solid #015512;"> +				<a href="http://www.h-node.org/wiki/page/en/mailing-lists"><img height="50px" align="middle" src="http://www.h-node.org/Public/Img/mailing.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">client for h-node</div> +				<div style="text-align:left;border-top:2px solid #1E90FF;padding:4px 4px 4px 8px;background:#E0FFFF;font:normal 12px/1.5 sans-serif,arial,Verdana;">Please help in the development of the client for h-node (h-client project). See <a href="http://www.h-node.org/wiki/page/en/client-for-h-node-com">here</a> and <a href="http://savannah.nongnu.org/projects/h-client/">here</a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">related projects</div> +				<div style="text-align:left;border-top:2px solid #1E90FF;padding:4px 4px 4px 8px;background:#E0FFFF;font:normal 12px/1.5 sans-serif,arial,Verdana;">Please help in the development of the <a href="http://www.h-node.org/source/ht/ismyhwok_25thSep2010-1.tar.gz">IsMyHWOK</a> software, a different h-node client +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">download the source code</div> +				<div style="text-align:left;border-top:2px solid #FF4500;padding:4px 4px 0px 4px;"> +				<a href="http://www.h-node.org/source/notes_0.2.html"><img width="180px" src="http://www.h-node.org/Public/Img/download_code_gpl3.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:12px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">join us at</div> +				<div style="background:#B7F18C;padding:5px 10px;text-align:left;border-top:2px solid #015512;"> +				<a href="http://identi.ca/group/hnode"><img height="70px" align="middle" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Identi.ca_logo_svg.svg/200px-Identi.ca_logo_svg.svg.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ + +				<div class="statistics_int_title" style="margin-top:30px;"> +				useful links: +				</div> + +				<div class="useful_links_ext"> + +				<div> +				<a href="http://www.gnu.org/">GNU Operating System</a> +				</div> + +				<div> +				<a href="http://www.fsf.org/">Free Software Foundation</a> +				</div> + +				<div> +				<a href="http://www.fsfla.org/svnwiki/">FSF Latin America</a> +				</div> + +				<div> +				<a href="http://www.fsfe.org/">FSF Europe</a> +				</div> + +				<div> +				<a href="http://www.blagblagblag.org/">BLAG</a> +				</div> + +				<div> +				<a href="http://www.dragora.org">Dragora</a> +				</div> + +				<div> +				<a href="http://dynebolic.org/">Dynebolic</a> +				</div> + +				<div> +				<a href="http://www.gnewsense.org/">gNewSense</a> +				</div> + +				<div> +				<a href="http://www.musix.org.ar/">Musix GNU+Linux</a> +				</div> + +				<div> +				<a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a> +				</div> + +				<div> +				<a href="http://trisquel.info/en">Trisquel GNU/Linux</a> +				</div> + +				<div> +				<a href="http://www.ututo.org/">Ututo</a> +				</div> + +				<div> +				<a href="http://venenux.org/">Venenux</a> +				</div> + +				</div> + +				]]></text> + +			</mod> +		</en> +		<it> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +					<div style="text-align:center;"><a href="http://www.fsf.org/associate/support_freedom/join_fsf?referrer=2442"> +						<img title="Help protect your freedom, join the Free Software Foundation" alt="Support freedom" src="https://static.fsf.org/nosvn/appeal2010/widget-thin.png"> +					</a></div> +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">supportato da</div> +				<div style="padding:5px 10px;text-align:left;border-top:2px solid #000;margin-bottom:2.5em;"> +				<a href="http://www.fsf.org"><img style="margin-left:-5px;margin-top:3px;" width="175px" align="left" src="http://www.gnu.org/graphics/logo-fsf.org-tiny.png"></a> +				</div> + +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">iscriviti alla nostra</div> +				<div style="background:#B7F18C;padding:5px 10px;text-align:left;border-top:2px solid #015512;"> +				<a href="http://www.h-node.org/wiki/page/en/mailing-lists"><img height="50px" align="middle" src="http://www.h-node.org/Public/Img/mailing.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">client per h-node</div> +				<div style="text-align:left;border-top:2px solid #1E90FF;padding:4px 4px 4px 8px;background:#E0FFFF;font:normal 12px/1.5 sans-serif,arial,Verdana;">Puoi aiutare nello sviluppo del client per h-node (progetto h-client). Leggi <a href="http://www.h-node.org/wiki/page/en/client-for-h-node-com">qui</a> e <a href="http://savannah.nongnu.org/projects/h-client/">qui</a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">progetti correlati</div> +				<div style="text-align:left;border-top:2px solid #1E90FF;padding:4px 4px 4px 8px;background:#E0FFFF;font:normal 12px/1.5 sans-serif,arial,Verdana;">Puoi aiutare nello sviluppo del software <a href="http://www.h-node.org/source/ht/ismyhwok_25thSep2010-1.tar.gz">IsMyHWOK</a>, un diverso client per h-node +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">scarica il codice sorgente</div> +				<div style="text-align:left;border-top:2px solid #FF4500;padding:4px 4px 0px 4px;"> +				<a href="http://www.h-node.org/source/notes_0.2.html"><img width="180px" src="http://www.h-node.org/Public/Img/download_code_gpl3.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:12px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">unisciti a noi</div> +				<div style="background:#B7F18C;padding:5px 10px;text-align:left;border-top:2px solid #015512;"> +				<a href="http://identi.ca/group/hnode"><img height="70px" align="middle" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Identi.ca_logo_svg.svg/200px-Identi.ca_logo_svg.svg.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ + +				<div class="statistics_int_title" style="margin-top:30px;"> +				link utili: +				</div> + +				<div class="useful_links_ext"> + +				<div> +				<a href="http://www.gnu.org/">GNU Operating System</a> +				</div> + +				<div> +				<a href="http://www.fsf.org/">Free Software Foundation</a> +				</div> + +				<div> +				<a href="http://www.fsfla.org/svnwiki/">FSF Latin America</a> +				</div> + +				<div> +				<a href="http://www.fsfe.org/">FSF Europe</a> +				</div> + +				<div> +				<a href="http://www.blagblagblag.org/">BLAG</a> +				</div> + +				<div> +				<a href="http://www.dragora.org">Dragora</a> +				</div> + +				<div> +				<a href="http://dynebolic.org/">Dynebolic</a> +				</div> + +				<div> +				<a href="http://www.gnewsense.org/">gNewSense</a> +				</div> + +				<div> +				<a href="http://www.musix.org.ar/">Musix GNU+Linux</a> +				</div> + +				<div> +				<a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a> +				</div> + +				<div> +				<a href="http://trisquel.info/en">Trisquel GNU/Linux</a> +				</div> + +				<div> +				<a href="http://www.ututo.org/">Ututo</a> +				</div> + +				<div> +				<a href="http://venenux.org/">Venenux</a> +				</div> + +				</div> + +				]]></text> + +			</mod> +		</it> +		<es> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +					<div style="text-align:center;"><a href="http://www.fsf.org/associate/support_freedom/join_fsf?referrer=2442"> +						<img title="Help protect your freedom, join the Free Software Foundation" alt="Support freedom" src="https://static.fsf.org/nosvn/appeal2010/widget-thin.png"> +					</a></div> +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">con el apoyo de</div> +				<div style="padding:5px 10px;text-align:left;border-top:2px solid #000;margin-bottom:2.5em;"> +				<a href="http://www.fsf.org"><img style="margin-left:-5px;margin-top:3px;" width="175px" align="left" src="http://www.gnu.org/graphics/logo-fsf.org-tiny.png"></a> +				</div> + +				]]></text> +			</mod> +			<mod> +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">suscríbase a nuestra</div> +				<div style="background:#B7F18C;padding:5px 10px;text-align:left;border-top:2px solid #015512;"> +				<a href="http://www.h-node.org/wiki/page/en/mailing-lists"><img height="50px" align="middle" src="http://www.h-node.org/Public/Img/mailing.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">cliente para h-node</div> +				<div style="text-align:left;border-top:2px solid #1E90FF;padding:4px 4px 4px 8px;background:#E0FFFF;font:normal 12px/1.5 sans-serif,arial,Verdana;">Por favor ayude en el desarrollo del cliente de h-node (proyecto h-client). Vea <a href="http://www.h-node.org/wiki/page/en/client-for-h-node-com">aquí</a> y <a href="http://savannah.nongnu.org/projects/h-client/">aquí</a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">proyectos relacionados</div> +				<div style="text-align:left;border-top:2px solid #1E90FF;padding:4px 4px 4px 8px;background:#E0FFFF;font:normal 12px/1.5 sans-serif,arial,Verdana;">Por favor ayuda en el desarrollo del programa <a href="http://www.h-node.org/source/ht/ismyhwok_25thSep2010-1.tar.gz">IsMyHWOK</a>, un cliente diferente para h-node +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:16px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">descargue el código fuente</div> +				<div style="text-align:left;border-top:2px solid #FF4500;padding:4px 4px 0px 4px;"> +				<a href="http://www.h-node.org/source/notes_0.2.html"><img width="180px" src="http://www.h-node.org/Public/Img/download_code_gpl3.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ +				<div style="margin:12px 0px 3px 0px;text-align:left;font:normal 14px/1 sans-serif,arial,Verdana;">únase a nosotros en</div> +				<div style="background:#B7F18C;padding:5px 10px;text-align:left;border-top:2px solid #015512;"> +				<a href="http://identi.ca/group/hnode"><img height="70px" align="middle" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Identi.ca_logo_svg.svg/200px-Identi.ca_logo_svg.svg.png"></a> +				</div> + +				]]></text> + +			</mod> +			<mod> + +				<type>raw</type> +				<text><![CDATA[ + +				<div class="statistics_int_title" style="margin-top:30px;"> +				link utili: +				</div> + +				<div class="useful_links_ext"> + +				<div> +				<a href="http://www.gnu.org/">GNU Operating System</a> +				</div> + +				<div> +				<a href="http://www.fsf.org/">Free Software Foundation</a> +				</div> + +				<div> +				<a href="http://www.fsfla.org/svnwiki/">FSF Latin America</a> +				</div> + +				<div> +				<a href="http://www.fsfe.org/">FSF Europe</a> +				</div> + +				<div> +				<a href="http://www.blagblagblag.org/">BLAG</a> +				</div> + +				<div> +				<a href="http://www.dragora.org">Dragora</a> +				</div> + +				<div> +				<a href="http://dynebolic.org/">Dynebolic</a> +				</div> + +				<div> +				<a href="http://www.gnewsense.org/">gNewSense</a> +				</div> + +				<div> +				<a href="http://www.musix.org.ar/">Musix GNU+Linux</a> +				</div> + +				<div> +				<a href="https://parabolagnulinux.org/">Parabola GNU/Linux</a> +				</div> + +				<div> +				<a href="http://trisquel.info/en">Trisquel GNU/Linux</a> +				</div> + +				<div> +				<a href="http://www.ututo.org/">Ututo</a> +				</div> + +				<div> +				<a href="http://venenux.org/">Venenux</a> +				</div> + +				</div> + +				]]></text> + +			</mod> +		</es> +	</right_column> +	<devices> +		<all> +			<form> +				<how_to_compile> +					<en> +						<mod> +							<type>raw</type> +							<text><![CDATA[ please read the <a href="http://www.h-node.org/wiki/page/en/guidelines-on-how-to-compile-a-hardware-device-page">guidelines on how to compile a hardware device page</a> ]]></text> +						</mod> +					</en> +					<it> +						<mod> +							<type>raw</type> +							<text><![CDATA[ per favore leggi la <a href="http://www.h-node.org/wiki/page/en/guidelines-on-how-to-compile-a-hardware-device-page">guida su come compilare una pagina di hardware</a> ]]></text> +						</mod> +					</it> +				</how_to_compile> +				<model_name_entry_help_label> +					<en> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/wiki/page/en/discover-your-hardware#The%20model%20name%20of%20your%20notebook" target="_blank">learn how to find it</a> ]]></text> +						</mod> +					</en> +					<it> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/wiki/page/en/Scopri-il-tuo-hardware#Il%20modello%20del%20tuo%20notebook" target="_blank">scopri come individuarlo</a> ]]></text> +						</mod> +					</it> +					<es> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/wiki/page/en/Descubra-su-hardware#El%20modelo%20de%20su%20computador%20port%C3%A1til" target="_blank">aprenda como encontrarlo</a> ]]></text> +						</mod> +					</es> +					<fr> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/fr#discover-hardware" target="_blank">apprenez à le trouver</a> ]]></text> +						</mod> +					</fr> +					<de> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/de#discover-hardware" target="_blank">Wie kann man das herausfinden?</a> ]]></text> +						</mod> +					</de> +				</model_name_entry_help_label> +				<description_entry_help_label> +					<en> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/en#wiki-syntax">discover all the wiki tags</a> ]]></text> +						</mod> +					</en> +					<it> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/it#wiki-syntax">scopri tutti i tag della wiki</a> ]]></text> +						</mod> +					</it> +					<es> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/es#wiki-syntax">mostrar todas las etiquetas del wiki</a> ]]></text> +						</mod> +					</es> +					<fr> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/fr#wiki-syntax">voir tous les tags wiki</a> ]]></text> +						</mod> +					</fr> +					<de> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/de#wiki-syntax">Wiki-Elemente</a> ]]></text> +						</mod> +					</de> +				</description_entry_help_label> +			</form> +		</all> +		<printers> +			<page> +				<it_tracks_users> +					<en> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <p class="track_alert">Beware +								this device tracks you down! +								<br /> +								<small>See <a href="https://www.eff.org/issues/printers" +								target="_blank">more about it</a></small> +								</p> ]]> +							</text> +						</mod> +					</en> +					<it> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <p class="track_alert">Fai attenzione questo device utilizza delle tecniche per tracciare gli utenti! +							<br /> +							<small><a href="https://www.eff.org/issues/printers" +							target="_blank">più informazioni</a></small> +							</p> ]]> +							</text> +						</mod> +					</it> +				</it_tracks_users> +			</page> +			<form> +				<it_tracks_users> +					<en> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="blank" href="https://www.eff.org/pages/list-printers-which-do-or-do-not-display-tracking-dots">how to understand if, and how, it tracks users</a> ]]></text> +						</mod> +					</en> +					<it> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="blank" href="https://www.eff.org/pages/list-printers-which-do-or-do-not-display-tracking-dots">come capire se e come tiene traccia degli utenti</a> ]]></text> +						</mod> +					</it> +				</it_tracks_users> +			</form> +			<!--<catalogue> +				<en> +					<mod> +						<type>raw</type> +						<text><![CDATA[ ciao ]]></text> +						<div>catalogue_top_notice</div> +					</mod> +				</en> +			</catalogue>--> +		</printers> +		<videocards> +			<catalogue> +				<en> +					<mod> +						<type>raw</type> +						<text><![CDATA[  +						<div style="background-color:#FDC12A;border: 1px solid #E36100;border-top: 1px solid #E36100;margin: 1em;margin-bottom:25px;margin-left:3px;padding: 0.5em;clear:both;"> +							Other resources on the net +							<ul> +								<li><a href="http://dri.freedesktop.org/wiki/ATIRadeon">http://dri.freedesktop.org/wiki/ATIRadeon</a></li> +								<li><a href="http://www.x.org/wiki/radeon">http://www.x.org/wiki/radeon</a></li> +								<li><a href="http://wiki.x.org/wiki/RadeonFeature">http://wiki.x.org/wiki/RadeonFeature</a></li> +							</ul> +						</div> +						]]></text> +					</mod> +				</en> +			</catalogue> +		</videocards> +		<not_notebook> +			<form> +				<vendorid_productid_label> +					<en> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/wiki/page/en/discover-your-hardware#The%20VendorID:ProductID%20code%20of%20your%20device" target="blank">learn how to find it</a> ]]></text> +						</mod> +					</en> +					<it> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/wiki/page/en/Scopri-il-tuo-hardware#Il%20codice%20VendorID:ProductID%20del%20tuo%20dispositivo" target="blank">scopri come individuarlo</a> ]]></text> +						</mod> +					</it> +					<es> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/wiki/page/en/Descubra-su-hardware#El%20c%C3%B3digo%20VendorID:ProductID%20de%20su%20dispositivo" target="blank">aprenda como encontrarlo</a> ]]></text> +						</mod> +					</es> +					<fr> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/fr#vendoridproductid" target="blank">apprenez à le trouver</a> ]]></text> +						</mod> +					</fr> +					<de> +						<mod> +							<type>raw</type> +							<text><![CDATA[ <a target="_blank" href="http://www.h-node.org/help/index/de#vendoridproductid" target="blank">Wie kann man das herausfinden?</a> ]]></text> +						</mod> +					</de> +				</vendorid_productid_label> +			</form> +		</not_notebook> +		<!--<notebook> +			<form> +				 +			</form> +		</notebook>--> +	</devices> +</config>
\ No newline at end of file  | 
