From d9b7886ef953584b9e5ce2dbfdb05c257a17942c Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Thu, 28 Feb 2013 18:47:38 +0100 Subject: [PATCH 01/57] Fix: try to fix regression, stored the last id created in a session variable in order to be used to find out information in the "ref_ext" in order to differentiate automatic actions. --- .../core/triggers/interface_50_modAgenda_ActionsAuto.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/core/triggers/interface_50_modAgenda_ActionsAuto.class.php b/htdocs/core/triggers/interface_50_modAgenda_ActionsAuto.class.php index 600f09468ab..19fc4a618ff 100755 --- a/htdocs/core/triggers/interface_50_modAgenda_ActionsAuto.class.php +++ b/htdocs/core/triggers/interface_50_modAgenda_ActionsAuto.class.php @@ -583,6 +583,7 @@ class InterfaceActionsAuto $ret=$actioncomm->add($user); // User qui saisit l'action if ($ret > 0) { + $_SESSION['LAST_ACTION_CREATED'] = $ret; return 1; } else From 16ad99f8c5f4fecf855e38b7c32dbb694a86b9c9 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Thu, 28 Feb 2013 19:41:44 +0100 Subject: [PATCH 02/57] Fix: to force id field name --- htdocs/core/class/commonobject.class.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index 34a68f58fc4..1b1466a664c 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -722,9 +722,10 @@ abstract class CommonObject * @param string $table To force other table element or element line * @param int $id To force other object id * @param string $format Data format ('text' by default, 'date') + * @param string $id_field To force rowid field name * @return int <0 if KO, >0 if OK */ - function setValueFrom($field, $value, $table='', $id='', $format='text') + function setValueFrom($field, $value, $table='', $id='', $format='text', $id_field='rowid') { global $conf; @@ -736,7 +737,7 @@ abstract class CommonObject $sql = "UPDATE ".MAIN_DB_PREFIX.$table." SET "; if ($format == 'text') $sql.= $field." = '".$this->db->escape($value)."'"; else if ($format == 'date') $sql.= $field." = '".$this->db->idate($value)."'"; - $sql.= " WHERE rowid = ".$id; + $sql.= " WHERE ".$id_field." = ".$id; dol_syslog(get_class($this)."::setValueFrom sql=".$sql, LOG_DEBUG); $resql = $this->db->query($sql); From dcf76d7bcb3c0d155fa93af3b2fbc55348ed6ae7 Mon Sep 17 00:00:00 2001 From: fhenry Date: Thu, 28 Feb 2013 21:13:25 +0100 Subject: [PATCH 03/57] Fix [ bug #736 ] --- htdocs/install/mysql/migration/3.2.0-3.3.0.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql index dacb7519f28..7f23d8e2509 100755 --- a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql +++ b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql @@ -925,3 +925,5 @@ UPDATE llx_c_action_trigger SET code='FICHINTER_VALIDATE' WHERE code='FICHEINTER UPDATE llx_c_departements SET ncc='ALAVA', nom='Álava' WHERE code_departement='01' AND fk_region=419; ALTER TABLE llx_product_fournisseur_price DROP FOREIGN KEY fk_product_fournisseur; + +ALTER TABLE llx_c_chargesociales ADD COLUMN accountancy_code varchar(15) AFTER code; From 7952a1f1a50452af57d3e80e192eb4a1804b7ff9 Mon Sep 17 00:00:00 2001 From: fhenry Date: Thu, 28 Feb 2013 21:15:45 +0100 Subject: [PATCH 04/57] rool back changes --- htdocs/install/mysql/migration/3.2.0-3.3.0.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql index 7f23d8e2509..dacb7519f28 100755 --- a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql +++ b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql @@ -925,5 +925,3 @@ UPDATE llx_c_action_trigger SET code='FICHINTER_VALIDATE' WHERE code='FICHEINTER UPDATE llx_c_departements SET ncc='ALAVA', nom='Álava' WHERE code_departement='01' AND fk_region=419; ALTER TABLE llx_product_fournisseur_price DROP FOREIGN KEY fk_product_fournisseur; - -ALTER TABLE llx_c_chargesociales ADD COLUMN accountancy_code varchar(15) AFTER code; From 0d0c1e8c148545049ac3d150da781a2c7b2ccf3f Mon Sep 17 00:00:00 2001 From: fhenry Date: Thu, 28 Feb 2013 21:18:52 +0100 Subject: [PATCH 05/57] Fix [ bug #736 ] --- htdocs/install/mysql/migration/3.2.0-3.3.0.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql index dacb7519f28..7053bd6e4ef 100755 --- a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql +++ b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql @@ -311,7 +311,7 @@ UPDATE llx_c_tva set localtax1 = 1, localtax1_type = '4', localtax2 = 0.4, local ALTER TABLE llx_c_tva DROP COLUMN accountancy_code; ALTER TABLE llx_c_tva ADD COLUMN accountancy_code_sell varchar(15) DEFAULT NULL AFTER active; ALTER TABLE llx_c_tva ADD COLUMN accountancy_code_buy varchar(15) DEFAULT NULL AFTER accountancy_code_sell; -ALTER TABLE llx_c_chargessociales ADD COLUMN accountancy_code varchar(15) DEFAULT NULL AFTER code; +ALTER TABLE llx_c_chargesociales ADD COLUMN accountancy_code varchar(15) DEFAULT NULL AFTER code; -- Tables for accountancy expert DROP TABLE llx_accountingaccount; From 5ad98a865254b194d96b1fdf672abd3dffa51d10 Mon Sep 17 00:00:00 2001 From: BENKE Charles Date: Fri, 1 Mar 2013 00:56:29 +0100 Subject: [PATCH 06/57] Update index.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rename search_product by search_project (the real search thing) --- htdocs/projet/tasks/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/projet/tasks/index.php b/htdocs/projet/tasks/index.php index e3dac2b2e85..d61198c8183 100644 --- a/htdocs/projet/tasks/index.php +++ b/htdocs/projet/tasks/index.php @@ -33,7 +33,7 @@ $langs->load('projects'); $langs->load('users'); $id=GETPOST('id','int'); -$search_product=GETPOST('search_product'); +$search_project=GETPOST('search_project'); // Security check @@ -85,7 +85,7 @@ $projectsListId = $projectstatic->getProjectsAuthorizedForUser($user,$mine,1,$so // Get list of tasks in tasksarray and taskarrayfiltered // We need all tasks (even not limited to a user because a task to user can have a parent that is not affected to him). -$tasksarray=$taskstatic->getTasksArray(0, 0, $projectstatic->id, $socid, 0, $search_product); +$tasksarray=$taskstatic->getTasksArray(0, 0, $projectstatic->id, $socid, 0, $search_project); // We load also tasks limited to a particular user $tasksrole=($mine ? $taskstatic->getUserRolesForProjectsOrTasks(0,$user,$projectstatic->id,0) : ''); @@ -106,7 +106,7 @@ print "\n"; print ''; print ''; -print ''; +print ''; print ''; print ''; print ' '; From 9106a74426975fb37aa698721b25f33286805fec Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 1 Mar 2013 09:48:03 +0100 Subject: [PATCH 07/57] Fix: Package for launchpad --- build/debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/debian/changelog b/build/debian/changelog index 3e7f7fa5e91..f2a3f5ac417 100644 --- a/build/debian/changelog +++ b/build/debian/changelog @@ -4,6 +4,6 @@ dolibarr (3.3.0+nmu1) unstable; urgency=low * New upstream release. closes: bug#634783 - -- Dolibarr team Mon, 10 Aug 2011 12:00:00 +0100 + -- Dolibarr team Wed, 27 Feb 2013 12:00:00 +0100 -# For a changelog file dedicated to end users, see /usr/share/doc/dolibarr/ChangeLog.gz \ No newline at end of file +# For a changelog file dedicated to end users, see /usr/share/doc/dolibarr/ChangeLog.gz \ No newline at end of file From 5075e9c716e781f7462ece9f2a8c7b571e947553 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 1 Mar 2013 09:55:04 +0100 Subject: [PATCH 08/57] Update to 3.4 --- build/debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/debian/changelog b/build/debian/changelog index 1b4daf52782..4380b0a6b50 100644 --- a/build/debian/changelog +++ b/build/debian/changelog @@ -4,6 +4,6 @@ dolibarr (3.4.0+nmu1) unstable; urgency=low * New upstream release. closes: bug#634783 - -- Dolibarr team Mon, 14 Jan 2013 12:00:00 +0100 + -- Dolibarr team Thu, 28 Feb 2013 12:00:00 +0100 # For a changelog file dedicated to end users, see /usr/share/doc/dolibarr/ChangeLog.gz \ No newline at end of file From bf0e4d73d0c28fb4f25dc18015244a6bea2574db Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 1 Mar 2013 10:04:50 +0100 Subject: [PATCH 09/57] Fix launchpad conflicts --- build/launchpad/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/launchpad/README b/build/launchpad/README index 489712e91f8..2334b01f1d7 100644 --- a/build/launchpad/README +++ b/build/launchpad/README @@ -96,11 +96,11 @@ https://launchpad.net/dolibarr/stable lp:dolibarr merge packaging lp:~yourlogin/+junk/debian-dev For beta: - # bzr-builder format 0.3 deb-version {debupstream}-0~{revno} + # bzr-builder format 0.3 deb-version {debupstream}-1~{revno} lp:dolibarr/beta merge packaging lp:~yourlogin/+junk/debian-beta For stable: - # bzr-builder format 0.3 deb-version {debupstream}-0~{revno} + # bzr-builder format 0.3 deb-version {debupstream}-2~{revno} lp:dolibarr/stable merge packaging lp:~yourlogin/+junk/debian-stable - Run command From 2d3642331070d725adea140362399e664629f723 Mon Sep 17 00:00:00 2001 From: Alexis Algoud Date: Fri, 1 Mar 2013 10:42:05 +0100 Subject: [PATCH 10/57] =?UTF-8?q?Ajout=20de=20la=20gestion=20des=20Hooks?= =?UTF-8?q?=20(doActions=20&=20=20sur=20la=20page=20d'ajout=20des=20commer?= =?UTF-8?q?ciaux=20=C3=A0=20une=20soci=C3=A9t=C3=A9,=20/societe/commerciau?= =?UTF-8?q?x.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/societe/commerciaux.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/htdocs/societe/commerciaux.php b/htdocs/societe/commerciaux.php index 141e76a892b..43d01d4c662 100644 --- a/htdocs/societe/commerciaux.php +++ b/htdocs/societe/commerciaux.php @@ -37,6 +37,7 @@ $socid = isset($_GET["socid"])?$_GET["socid"]:''; if ($user->societe_id) $socid=$user->societe_id; $result = restrictedArea($user, 'societe','',''); +$hookmanager->initHooks(array('salesrepresentativescard')); /* * Actions @@ -44,11 +45,21 @@ $result = restrictedArea($user, 'societe','',''); if($_GET["socid"] && $_GET["commid"]) { + $action = 'add'; + if ($user->rights->societe->creer) { + $soc = new Societe($db); $soc->id = $_GET["socid"]; $soc->fetch($_GET["socid"]); + + + $parameters=array('id'=>$_GET["commid"]); + $reshook=$hookmanager->executeHooks('doActions',$parameters,$soc,$action); // Note that $action and $object may have been modified by some hooks + $error=$hookmanager->error; $errors=array_merge($errors, (array) $hookmanager->errors); + + $soc->add_commercial($user, $_GET["commid"]); header("Location: commerciaux.php?socid=".$soc->id); @@ -63,11 +74,19 @@ if($_GET["socid"] && $_GET["commid"]) if($_GET["socid"] && $_GET["delcommid"]) { + $action = 'delete'; + if ($user->rights->societe->creer) { $soc = new Societe($db); $soc->id = $_GET["socid"]; $soc->fetch($_GET["socid"]); + + $parameters=array('id'=>$_GET["delcommid"]); + $reshook=$hookmanager->executeHooks('doActions',$parameters,$soc,$action); // Note that $action and $object may have been modified by some hooks + $error=$hookmanager->error; $errors=array_merge($errors, (array) $hookmanager->errors); + + $soc->del_commercial($user, $_GET["delcommid"]); header("Location: commerciaux.php?socid=".$soc->id); @@ -96,6 +115,8 @@ if ($_GET["socid"]) $soc->id = $_GET["socid"]; $result=$soc->fetch($_GET["socid"]); + $action='view'; + $head=societe_prepare_head2($soc); dol_fiche_head($head, 'salesrepresentative', $langs->trans("ThirdParty"),0,'company'); @@ -158,6 +179,10 @@ if ($_GET["socid"]) { $obj = $db->fetch_object($resql); + $parameters=array('socid'=>$soc->id); + $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$obj,$action); // Note that $action and $object may have been modified by hook + + print ''; print img_object($langs->trans("ShowUser"),"user").' '; print $obj->firstname." " .$obj->name."\n"; From 49f712546fdd73346002307372f7a86ad1d57541 Mon Sep 17 00:00:00 2001 From: Alexis Algoud Date: Fri, 1 Mar 2013 11:38:24 +0100 Subject: [PATCH 11/57] Add condition for normal traitment on empty hook result. Note : The normal case on 'formObjectOptions' is currently nothing more (no extrafields,...). --- htdocs/societe/commerciaux.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/htdocs/societe/commerciaux.php b/htdocs/societe/commerciaux.php index 43d01d4c662..5f0f7af2410 100644 --- a/htdocs/societe/commerciaux.php +++ b/htdocs/societe/commerciaux.php @@ -60,7 +60,7 @@ if($_GET["socid"] && $_GET["commid"]) $error=$hookmanager->error; $errors=array_merge($errors, (array) $hookmanager->errors); - $soc->add_commercial($user, $_GET["commid"]); + if (empty($reshook)) $soc->add_commercial($user, $_GET["commid"]); header("Location: commerciaux.php?socid=".$soc->id); exit; @@ -87,7 +87,7 @@ if($_GET["socid"] && $_GET["delcommid"]) $error=$hookmanager->error; $errors=array_merge($errors, (array) $hookmanager->errors); - $soc->del_commercial($user, $_GET["delcommid"]); + if (empty($reshook)) $soc->del_commercial($user, $_GET["delcommid"]); header("Location: commerciaux.php?socid=".$soc->id); exit; @@ -181,7 +181,10 @@ if ($_GET["socid"]) $parameters=array('socid'=>$soc->id); $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$obj,$action); // Note that $action and $object may have been modified by hook - + if (empty($reshook)) { + + null; // actions in normal case + } print ''; print img_object($langs->trans("ShowUser"),"user").' '; From e76ffca9ba158d6eae8ebe734f17fc39e9ff0ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= Date: Fri, 1 Mar 2013 14:11:42 +0100 Subject: [PATCH 12/57] Removed UTF-8 BOM --- doc/images/README | 2 +- htdocs/langs/nl_BE/main.lang | 2 +- htdocs/langs/nl_BE/trips.lang | 2 +- htdocs/langs/pt_PT/agenda.lang | 2 +- htdocs/langs/pt_PT/banks.lang | 2 +- htdocs/langs/pt_PT/bills.lang | 2 +- htdocs/langs/pt_PT/bookmarks.lang | 2 +- htdocs/langs/pt_PT/boxes.lang | 2 +- htdocs/langs/pt_PT/categories.lang | 2 +- htdocs/langs/pt_PT/commercial.lang | 2 +- htdocs/langs/pt_PT/companies.lang | 2 +- htdocs/langs/pt_PT/compta.lang | 2 +- htdocs/langs/pt_PT/contracts.lang | 2 +- htdocs/langs/pt_PT/deliveries.lang | 2 +- htdocs/langs/pt_PT/donations.lang | 2 +- htdocs/langs/pt_PT/ecm.lang | 2 +- htdocs/langs/pt_PT/errors.lang | 2 +- htdocs/langs/pt_PT/exports.lang | 2 +- htdocs/langs/pt_PT/interventions.lang | 2 +- htdocs/langs/pt_PT/mails.lang | 2 +- htdocs/langs/pt_PT/main.lang | 2 +- htdocs/langs/pt_PT/members.lang | 2 +- htdocs/langs/pt_PT/orders.lang | 2 +- htdocs/langs/pt_PT/other.lang | 2 +- htdocs/langs/pt_PT/products.lang | 2 +- htdocs/langs/pt_PT/projects.lang | 2 +- htdocs/langs/pt_PT/propal.lang | 2 +- htdocs/langs/pt_PT/sendings.lang | 2 +- htdocs/langs/pt_PT/suppliers.lang | 2 +- htdocs/langs/pt_PT/users.lang | 2 +- htdocs/langs/pt_PT/withdrawals.lang | 2 +- htdocs/langs/tr_TR/agenda.lang | 2 +- htdocs/langs/tr_TR/banks.lang | 2 +- htdocs/langs/tr_TR/bills.lang | 2 +- htdocs/langs/tr_TR/bookmarks.lang | 2 +- htdocs/langs/tr_TR/boxes.lang | 2 +- htdocs/langs/tr_TR/cashdesk.lang | 2 +- htdocs/langs/tr_TR/categories.lang | 2 +- htdocs/langs/tr_TR/commercial.lang | 2 +- htdocs/langs/tr_TR/companies.lang | 2 +- htdocs/langs/tr_TR/compta.lang | 2 +- htdocs/langs/tr_TR/contracts.lang | 2 +- htdocs/langs/tr_TR/deliveries.lang | 2 +- htdocs/langs/tr_TR/dict.lang | 2 +- htdocs/langs/tr_TR/donations.lang | 2 +- htdocs/langs/tr_TR/ecm.lang | 2 +- htdocs/langs/tr_TR/errors.lang | 2 +- htdocs/langs/tr_TR/exports.lang | 2 +- htdocs/langs/tr_TR/externalsite.lang | 2 +- htdocs/langs/tr_TR/ftp.lang | 2 +- htdocs/langs/tr_TR/help.lang | 2 +- htdocs/langs/tr_TR/install.lang | 2 +- htdocs/langs/tr_TR/interventions.lang | 2 +- htdocs/langs/tr_TR/languages.lang | 2 +- htdocs/langs/tr_TR/ldap.lang | 2 +- htdocs/langs/tr_TR/mails.lang | 2 +- htdocs/langs/tr_TR/members.lang | 2 +- htdocs/langs/tr_TR/orders.lang | 2 +- htdocs/langs/tr_TR/oscommerce.lang | 2 +- htdocs/langs/tr_TR/paybox.lang | 2 +- htdocs/langs/tr_TR/paypal.lang | 2 +- htdocs/langs/tr_TR/projects.lang | 2 +- htdocs/langs/tr_TR/propal.lang | 2 +- htdocs/langs/tr_TR/sendings.lang | 2 +- htdocs/langs/tr_TR/shop.lang | 2 +- htdocs/langs/tr_TR/sms.lang | 2 +- htdocs/langs/tr_TR/suppliers.lang | 2 +- htdocs/langs/tr_TR/trips.lang | 2 +- htdocs/langs/tr_TR/users.lang | 2 +- htdocs/langs/tr_TR/withdrawals.lang | 2 +- htdocs/langs/tr_TR/workflow.lang | 2 +- htdocs/theme/amarok/ckeditor/config.js | 2 +- 72 files changed, 72 insertions(+), 72 deletions(-) diff --git a/doc/images/README b/doc/images/README index 1b33a1d490b..7b6a051aada 100644 --- a/doc/images/README +++ b/doc/images/README @@ -1,4 +1,4 @@ -README (English) +README (English) -------------------------------- * Most screen captures and icons are Dolibarr contributions, however, diff --git a/htdocs/langs/nl_BE/main.lang b/htdocs/langs/nl_BE/main.lang index bdcaca462a8..3d16e786aed 100644 --- a/htdocs/langs/nl_BE/main.lang +++ b/htdocs/langs/nl_BE/main.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - nl_BE - main +# Dolibarr language file - nl_BE - main CHARSET=UTF-8 SeparatorDecimal=, SeparatorThousand= diff --git a/htdocs/langs/nl_BE/trips.lang b/htdocs/langs/nl_BE/trips.lang index 904b9be4a27..17d52a15fc8 100644 --- a/htdocs/langs/nl_BE/trips.lang +++ b/htdocs/langs/nl_BE/trips.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - nl_BE - trips +# Dolibarr language file - nl_BE - trips CHARSET=UTF-8 Trip=Verplaatsing Trips=Verplaatsingen diff --git a/htdocs/langs/pt_PT/agenda.lang b/htdocs/langs/pt_PT/agenda.lang index 4efbb1fa975..1ab38139343 100644 --- a/htdocs/langs/pt_PT/agenda.lang +++ b/htdocs/langs/pt_PT/agenda.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - agenda +# Dolibarr language file - pt_PT - agenda CHARSET=UTF-8 Actions=Acções ActionsArea=Área de Acções diff --git a/htdocs/langs/pt_PT/banks.lang b/htdocs/langs/pt_PT/banks.lang index 2b9f4dc78f1..afb17250760 100644 --- a/htdocs/langs/pt_PT/banks.lang +++ b/htdocs/langs/pt_PT/banks.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - banks +# Dolibarr language file - pt_PT - banks CHARSET=UTF-8 Bank=Banco Banks=Bancos diff --git a/htdocs/langs/pt_PT/bills.lang b/htdocs/langs/pt_PT/bills.lang index 0e91c45dda4..c66d917847e 100644 --- a/htdocs/langs/pt_PT/bills.lang +++ b/htdocs/langs/pt_PT/bills.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - bills +# Dolibarr language file - pt_PT - bills CHARSET=UTF-8 Bill=Factura Bills=Facturas diff --git a/htdocs/langs/pt_PT/bookmarks.lang b/htdocs/langs/pt_PT/bookmarks.lang index 5bc362bc0b8..33d6b43df6e 100644 --- a/htdocs/langs/pt_PT/bookmarks.lang +++ b/htdocs/langs/pt_PT/bookmarks.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - marque pages +# Dolibarr language file - pt_PT - marque pages CHARSET=UTF-8 AddThisPageToBookmarks=Adicionar esta página aos Favoritos diff --git a/htdocs/langs/pt_PT/boxes.lang b/htdocs/langs/pt_PT/boxes.lang index 428edb78514..14f3cec7541 100644 --- a/htdocs/langs/pt_PT/boxes.lang +++ b/htdocs/langs/pt_PT/boxes.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - boxes +# Dolibarr language file - pt_PT - boxes CHARSET=UTF-8 BoxLastRssInfos=Links de informação RSS BoxLastProducts=Últimos produtos/serviços diff --git a/htdocs/langs/pt_PT/categories.lang b/htdocs/langs/pt_PT/categories.lang index a66197521c1..ea0a43b99fb 100644 --- a/htdocs/langs/pt_PT/categories.lang +++ b/htdocs/langs/pt_PT/categories.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - categories +# Dolibarr language file - pt_PT - categories CHARSET=UTF-8 Category=Categoria Categories=Categorias diff --git a/htdocs/langs/pt_PT/commercial.lang b/htdocs/langs/pt_PT/commercial.lang index b632d0f78a5..4d03c49d139 100644 --- a/htdocs/langs/pt_PT/commercial.lang +++ b/htdocs/langs/pt_PT/commercial.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - commercial +# Dolibarr language file - pt_PT - commercial CHARSET=UTF-8 Commercial=Comercial CommercialArea=Área comercial diff --git a/htdocs/langs/pt_PT/companies.lang b/htdocs/langs/pt_PT/companies.lang index 81f1c4cfdc3..929c5b2b2ef 100644 --- a/htdocs/langs/pt_PT/companies.lang +++ b/htdocs/langs/pt_PT/companies.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - companies +# Dolibarr language file - pt_PT - companies CHARSET=UTF-8 ErrorBadEMail=e-mail %s não está correcto ErrorCompanyNameAlreadyExists=O nome da empresa %s já existe. Indique outro. diff --git a/htdocs/langs/pt_PT/compta.lang b/htdocs/langs/pt_PT/compta.lang index 5d3bb7c024a..637bd98bfc2 100644 --- a/htdocs/langs/pt_PT/compta.lang +++ b/htdocs/langs/pt_PT/compta.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - compta +# Dolibarr language file - pt_PT - compta CHARSET=UTF-8 Accountancy=Contabilidade AccountancyCard=Ficha Contabilidade diff --git a/htdocs/langs/pt_PT/contracts.lang b/htdocs/langs/pt_PT/contracts.lang index 6d21d038cd4..8682ff04cf5 100644 --- a/htdocs/langs/pt_PT/contracts.lang +++ b/htdocs/langs/pt_PT/contracts.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - contracts +# Dolibarr language file - pt_PT - contracts CHARSET=UTF-8 ContractsArea=Área contractos ListOfContracts=Lista de contractos diff --git a/htdocs/langs/pt_PT/deliveries.lang b/htdocs/langs/pt_PT/deliveries.lang index b98781deb35..99712da45e7 100644 --- a/htdocs/langs/pt_PT/deliveries.lang +++ b/htdocs/langs/pt_PT/deliveries.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - deliveries +# Dolibarr language file - pt_PT - deliveries CHARSET=UTF-8 Delivery=Envio Deliveries=Envios diff --git a/htdocs/langs/pt_PT/donations.lang b/htdocs/langs/pt_PT/donations.lang index 8fb8e010c79..a9cba42c7ed 100644 --- a/htdocs/langs/pt_PT/donations.lang +++ b/htdocs/langs/pt_PT/donations.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - donations +# Dolibarr language file - pt_PT - donations CHARSET=UTF-8 Donation=Doação Donationss=Doações diff --git a/htdocs/langs/pt_PT/ecm.lang b/htdocs/langs/pt_PT/ecm.lang index c08f3293c90..70f7c8dbea8 100644 --- a/htdocs/langs/pt_PT/ecm.lang +++ b/htdocs/langs/pt_PT/ecm.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - ecm +# Dolibarr language file - pt_PT - ecm CHARSET=UTF-8 MenuECM=Documentos DocsMine=Os Meus Documentos diff --git a/htdocs/langs/pt_PT/errors.lang b/htdocs/langs/pt_PT/errors.lang index 885eb064467..336746b0f70 100644 --- a/htdocs/langs/pt_PT/errors.lang +++ b/htdocs/langs/pt_PT/errors.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - errors +# Dolibarr language file - pt_PT - errors CHARSET=UTF-8 ErrorLoginAlreadyExists=O login %s já existe. ErrorGroupAlreadyExists=O grupo %s já existe. diff --git a/htdocs/langs/pt_PT/exports.lang b/htdocs/langs/pt_PT/exports.lang index 49f4f20bea9..8f95b1107d5 100644 --- a/htdocs/langs/pt_PT/exports.lang +++ b/htdocs/langs/pt_PT/exports.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - exports +# Dolibarr language file - pt_PT - exports CHARSET=UTF-8 ExportsArea=Área de Exportação ImportArea=Área de Importação diff --git a/htdocs/langs/pt_PT/interventions.lang b/htdocs/langs/pt_PT/interventions.lang index f14f0dd0840..33abfd5e2bf 100644 --- a/htdocs/langs/pt_PT/interventions.lang +++ b/htdocs/langs/pt_PT/interventions.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - interventions +# Dolibarr language file - pt_PT - interventions CHARSET=UTF-8 Intervention=Intervenção Interventions=Intervenções diff --git a/htdocs/langs/pt_PT/mails.lang b/htdocs/langs/pt_PT/mails.lang index c4e1f1fb5ba..288da4e03d5 100644 --- a/htdocs/langs/pt_PT/mails.lang +++ b/htdocs/langs/pt_PT/mails.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - mails +# Dolibarr language file - pt_PT - mails CHARSET=UTF-8 Mailing=Mailing EMailing=Mailing diff --git a/htdocs/langs/pt_PT/main.lang b/htdocs/langs/pt_PT/main.lang index 9e57a03f72b..86d60b9b037 100644 --- a/htdocs/langs/pt_PT/main.lang +++ b/htdocs/langs/pt_PT/main.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - main +# Dolibarr language file - pt_PT - main CHARSET=UTF-8 SeparatorDecimal=, SeparatorThousand= diff --git a/htdocs/langs/pt_PT/members.lang b/htdocs/langs/pt_PT/members.lang index 48f2ee0a65b..0c42a9c3295 100644 --- a/htdocs/langs/pt_PT/members.lang +++ b/htdocs/langs/pt_PT/members.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - members +# Dolibarr language file - pt_PT - members CHARSET=UTF-8 MembersArea=Área Membros PublicMembersArea=Área pública dos Membros diff --git a/htdocs/langs/pt_PT/orders.lang b/htdocs/langs/pt_PT/orders.lang index a43ca2b2706..6bc03b6c877 100644 --- a/htdocs/langs/pt_PT/orders.lang +++ b/htdocs/langs/pt_PT/orders.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - orders +# Dolibarr language file - pt_PT - orders CHARSET=UTF-8 OrdersArea=Area de Pedidos de clientes SuppliersOrdersArea=Área de Pedidos a Fornecedores diff --git a/htdocs/langs/pt_PT/other.lang b/htdocs/langs/pt_PT/other.lang index 848f808c628..6123038bc5a 100644 --- a/htdocs/langs/pt_PT/other.lang +++ b/htdocs/langs/pt_PT/other.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - other +# Dolibarr language file - pt_PT - other CHARSET=UTF-8 SecurityCode=Código segurança Calendar=Calendario diff --git a/htdocs/langs/pt_PT/products.lang b/htdocs/langs/pt_PT/products.lang index 77e0d866e2b..231d9a1f65d 100644 --- a/htdocs/langs/pt_PT/products.lang +++ b/htdocs/langs/pt_PT/products.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - products +# Dolibarr language file - pt_PT - products CHARSET=UTF-8 ProductServiceCard=Ficha Produto/Serviço Products=Produtos diff --git a/htdocs/langs/pt_PT/projects.lang b/htdocs/langs/pt_PT/projects.lang index b2a7ff63711..3b7d0e5a629 100644 --- a/htdocs/langs/pt_PT/projects.lang +++ b/htdocs/langs/pt_PT/projects.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - projects +# Dolibarr language file - pt_PT - projects CHARSET=UTF-8 Project=Projeto Projects=Projetos diff --git a/htdocs/langs/pt_PT/propal.lang b/htdocs/langs/pt_PT/propal.lang index 8aa01321aa3..3af8afdb5d3 100644 --- a/htdocs/langs/pt_PT/propal.lang +++ b/htdocs/langs/pt_PT/propal.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - propal +# Dolibarr language file - pt_PT - propal CHARSET=UTF-8 Proposals=Orçamentos Proposal=Orçamento diff --git a/htdocs/langs/pt_PT/sendings.lang b/htdocs/langs/pt_PT/sendings.lang index 6d5d05c2516..9b7cb56eaa7 100644 --- a/htdocs/langs/pt_PT/sendings.lang +++ b/htdocs/langs/pt_PT/sendings.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - sendings +# Dolibarr language file - pt_PT - sendings CHARSET=UTF-8 RefSending=Ref. de Envio Sending=Envio diff --git a/htdocs/langs/pt_PT/suppliers.lang b/htdocs/langs/pt_PT/suppliers.lang index 85dfde74227..cea0cdef033 100644 --- a/htdocs/langs/pt_PT/suppliers.lang +++ b/htdocs/langs/pt_PT/suppliers.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - suppliers +# Dolibarr language file - pt_PT - suppliers CHARSET=UTF-8 Suppliers=Fornecedores Supplier=Fornecedor diff --git a/htdocs/langs/pt_PT/users.lang b/htdocs/langs/pt_PT/users.lang index 378ea614d6d..57c8fbff1de 100644 --- a/htdocs/langs/pt_PT/users.lang +++ b/htdocs/langs/pt_PT/users.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - users +# Dolibarr language file - pt_PT - users CHARSET=UTF-8 UserCard=Ficha de Utilizador ContactCard=Ficha de Contacto diff --git a/htdocs/langs/pt_PT/withdrawals.lang b/htdocs/langs/pt_PT/withdrawals.lang index 0e9b2348640..69dd7b13d01 100644 --- a/htdocs/langs/pt_PT/withdrawals.lang +++ b/htdocs/langs/pt_PT/withdrawals.lang @@ -1,4 +1,4 @@ -# Dolibarr language file - pt_PT - withdrawals +# Dolibarr language file - pt_PT - withdrawals CHARSET=UTF-8 StandingOrdersArea=Área de Débitos Directos CustomersStandingOrdersArea=Área de Débitos Directos de Clientes diff --git a/htdocs/langs/tr_TR/agenda.lang b/htdocs/langs/tr_TR/agenda.lang index cb87e1de6d8..b8515b1d945 100755 --- a/htdocs/langs/tr_TR/agenda.lang +++ b/htdocs/langs/tr_TR/agenda.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-24-06 23:50:00 diff --git a/htdocs/langs/tr_TR/banks.lang b/htdocs/langs/tr_TR/banks.lang index 20f2db22185..f9ac6535b09 100755 --- a/htdocs/langs/tr_TR/banks.lang +++ b/htdocs/langs/tr_TR/banks.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-24-06 23:50:00 diff --git a/htdocs/langs/tr_TR/bills.lang b/htdocs/langs/tr_TR/bills.lang index f4b2a87558a..4099494a3df 100755 --- a/htdocs/langs/tr_TR/bills.lang +++ b/htdocs/langs/tr_TR/bills.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-03 23:50:00 diff --git a/htdocs/langs/tr_TR/bookmarks.lang b/htdocs/langs/tr_TR/bookmarks.lang index 216ea8f55b7..d7abad6e7a3 100755 --- a/htdocs/langs/tr_TR/bookmarks.lang +++ b/htdocs/langs/tr_TR/bookmarks.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-03 23:50:00 diff --git a/htdocs/langs/tr_TR/boxes.lang b/htdocs/langs/tr_TR/boxes.lang index d65727838ae..a4bdc0c3658 100755 --- a/htdocs/langs/tr_TR/boxes.lang +++ b/htdocs/langs/tr_TR/boxes.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-03 23:50:00 diff --git a/htdocs/langs/tr_TR/cashdesk.lang b/htdocs/langs/tr_TR/cashdesk.lang index 2d671401938..38dfac17825 100644 --- a/htdocs/langs/tr_TR/cashdesk.lang +++ b/htdocs/langs/tr_TR/cashdesk.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually translated * Generation date 2012-07-05 22:52:49 diff --git a/htdocs/langs/tr_TR/categories.lang b/htdocs/langs/tr_TR/categories.lang index 5002137120b..890d20f0730 100644 --- a/htdocs/langs/tr_TR/categories.lang +++ b/htdocs/langs/tr_TR/categories.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-07 09:51:00 diff --git a/htdocs/langs/tr_TR/commercial.lang b/htdocs/langs/tr_TR/commercial.lang index 252917ab391..2972f9abbb4 100644 --- a/htdocs/langs/tr_TR/commercial.lang +++ b/htdocs/langs/tr_TR/commercial.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-05 10:49:00 diff --git a/htdocs/langs/tr_TR/companies.lang b/htdocs/langs/tr_TR/companies.lang index 0672fd4073e..df5a1ee9cf5 100644 --- a/htdocs/langs/tr_TR/companies.lang +++ b/htdocs/langs/tr_TR/companies.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually translated * Generation date 2012-07-07 20:22:49 diff --git a/htdocs/langs/tr_TR/compta.lang b/htdocs/langs/tr_TR/compta.lang index abb8362f1b4..b7d8653a5fb 100644 --- a/htdocs/langs/tr_TR/compta.lang +++ b/htdocs/langs/tr_TR/compta.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-07 10:30:00 diff --git a/htdocs/langs/tr_TR/contracts.lang b/htdocs/langs/tr_TR/contracts.lang index c525edbe223..2bb1d72f748 100644 --- a/htdocs/langs/tr_TR/contracts.lang +++ b/htdocs/langs/tr_TR/contracts.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-07 10:30:00 diff --git a/htdocs/langs/tr_TR/deliveries.lang b/htdocs/langs/tr_TR/deliveries.lang index 8db56172646..60c53fe262f 100644 --- a/htdocs/langs/tr_TR/deliveries.lang +++ b/htdocs/langs/tr_TR/deliveries.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-07 13:45:00 diff --git a/htdocs/langs/tr_TR/dict.lang b/htdocs/langs/tr_TR/dict.lang index 9eed48bbe71..7723f7070b1 100644 --- a/htdocs/langs/tr_TR/dict.lang +++ b/htdocs/langs/tr_TR/dict.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-07 20:41:26 diff --git a/htdocs/langs/tr_TR/donations.lang b/htdocs/langs/tr_TR/donations.lang index d9199d8165b..d20cdb1d0d5 100644 --- a/htdocs/langs/tr_TR/donations.lang +++ b/htdocs/langs/tr_TR/donations.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-17 19:54:26 // START - Lines manually generated (2012-07-17 19:54:26). diff --git a/htdocs/langs/tr_TR/ecm.lang b/htdocs/langs/tr_TR/ecm.lang index 611e0448804..1c926ab1120 100644 --- a/htdocs/langs/tr_TR/ecm.lang +++ b/htdocs/langs/tr_TR/ecm.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-08 16:55:26 diff --git a/htdocs/langs/tr_TR/errors.lang b/htdocs/langs/tr_TR/errors.lang index 51328ab6ffe..1bbf464abfc 100644 --- a/htdocs/langs/tr_TR/errors.lang +++ b/htdocs/langs/tr_TR/errors.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-18 00:22:26 // START - Lines manually generated (2012-07-18 00:22:26). diff --git a/htdocs/langs/tr_TR/exports.lang b/htdocs/langs/tr_TR/exports.lang index a40c51d215f..64bf493f517 100644 --- a/htdocs/langs/tr_TR/exports.lang +++ b/htdocs/langs/tr_TR/exports.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-23 21:32:26 // START - Lines manually generated (2012-07-23 21:32:26). diff --git a/htdocs/langs/tr_TR/externalsite.lang b/htdocs/langs/tr_TR/externalsite.lang index 5aafe1495ef..efce4f5f881 100644 --- a/htdocs/langs/tr_TR/externalsite.lang +++ b/htdocs/langs/tr_TR/externalsite.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually translated * Generation date 2011-07-05 16:52:49 diff --git a/htdocs/langs/tr_TR/ftp.lang b/htdocs/langs/tr_TR/ftp.lang index ebadccb7fa7..ddf9ccd82fb 100644 --- a/htdocs/langs/tr_TR/ftp.lang +++ b/htdocs/langs/tr_TR/ftp.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-23 22:28:26 diff --git a/htdocs/langs/tr_TR/help.lang b/htdocs/langs/tr_TR/help.lang index 73aac51d33c..b4c21b8f802 100644 --- a/htdocs/langs/tr_TR/help.lang +++ b/htdocs/langs/tr_TR/help.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Automatic generated via autotranslator.php tool * Generation date 2010-03-15 19:05:26 diff --git a/htdocs/langs/tr_TR/install.lang b/htdocs/langs/tr_TR/install.lang index 7967446d570..c4ea75fcb4b 100755 --- a/htdocs/langs/tr_TR/install.lang +++ b/htdocs/langs/tr_TR/install.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-04 20:01:00 diff --git a/htdocs/langs/tr_TR/interventions.lang b/htdocs/langs/tr_TR/interventions.lang index 80d57def0b9..e9ef469e507 100644 --- a/htdocs/langs/tr_TR/interventions.lang +++ b/htdocs/langs/tr_TR/interventions.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-08 20:16:26 // START - Lines manually generated (2012-07-08 20:16:26). diff --git a/htdocs/langs/tr_TR/languages.lang b/htdocs/langs/tr_TR/languages.lang index c301117019a..1da862d74d9 100644 --- a/htdocs/langs/tr_TR/languages.lang +++ b/htdocs/langs/tr_TR/languages.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-08 14:18:26 diff --git a/htdocs/langs/tr_TR/ldap.lang b/htdocs/langs/tr_TR/ldap.lang index b1bc969c5aa..8f79749dabd 100644 --- a/htdocs/langs/tr_TR/ldap.lang +++ b/htdocs/langs/tr_TR/ldap.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-24 00:13:26 diff --git a/htdocs/langs/tr_TR/mails.lang b/htdocs/langs/tr_TR/mails.lang index 53f532d9357..ce18e998dd5 100644 --- a/htdocs/langs/tr_TR/mails.lang +++ b/htdocs/langs/tr_TR/mails.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Automatic generated via autotranslator.php tool * Generation date 2010-03-15 19:05:26 diff --git a/htdocs/langs/tr_TR/members.lang b/htdocs/langs/tr_TR/members.lang index fc201e9e829..cef9b7f6b15 100644 --- a/htdocs/langs/tr_TR/members.lang +++ b/htdocs/langs/tr_TR/members.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-24 12:07:26 diff --git a/htdocs/langs/tr_TR/orders.lang b/htdocs/langs/tr_TR/orders.lang index de91b89e703..2cd5e8556a5 100644 --- a/htdocs/langs/tr_TR/orders.lang +++ b/htdocs/langs/tr_TR/orders.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-07 21:26:26 diff --git a/htdocs/langs/tr_TR/oscommerce.lang b/htdocs/langs/tr_TR/oscommerce.lang index 3d56e76891c..ae91673545b 100644 --- a/htdocs/langs/tr_TR/oscommerce.lang +++ b/htdocs/langs/tr_TR/oscommerce.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-23 22:30:26 diff --git a/htdocs/langs/tr_TR/paybox.lang b/htdocs/langs/tr_TR/paybox.lang index 3cad0605db2..1c861e6d7c4 100644 --- a/htdocs/langs/tr_TR/paybox.lang +++ b/htdocs/langs/tr_TR/paybox.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-23 23:43:26 diff --git a/htdocs/langs/tr_TR/paypal.lang b/htdocs/langs/tr_TR/paypal.lang index 146435bf87c..564b68d5220 100644 --- a/htdocs/langs/tr_TR/paypal.lang +++ b/htdocs/langs/tr_TR/paypal.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-23 23:40:49 diff --git a/htdocs/langs/tr_TR/projects.lang b/htdocs/langs/tr_TR/projects.lang index e17897b45ba..0dc73e79aa5 100644 --- a/htdocs/langs/tr_TR/projects.lang +++ b/htdocs/langs/tr_TR/projects.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-08 14:42:26 diff --git a/htdocs/langs/tr_TR/propal.lang b/htdocs/langs/tr_TR/propal.lang index 27a9667afce..517827ce9ca 100644 --- a/htdocs/langs/tr_TR/propal.lang +++ b/htdocs/langs/tr_TR/propal.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-05 10:49:00 diff --git a/htdocs/langs/tr_TR/sendings.lang b/htdocs/langs/tr_TR/sendings.lang index 6df5fabbbb2..1d7ce3a85a7 100644 --- a/htdocs/langs/tr_TR/sendings.lang +++ b/htdocs/langs/tr_TR/sendings.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-15 11:38:26 diff --git a/htdocs/langs/tr_TR/shop.lang b/htdocs/langs/tr_TR/shop.lang index 57117de8bc9..1bc2ca813f8 100644 --- a/htdocs/langs/tr_TR/shop.lang +++ b/htdocs/langs/tr_TR/shop.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-06-10 22:05:26 diff --git a/htdocs/langs/tr_TR/sms.lang b/htdocs/langs/tr_TR/sms.lang index 2e4d352b758..ba194e2692b 100644 --- a/htdocs/langs/tr_TR/sms.lang +++ b/htdocs/langs/tr_TR/sms.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-17 10:05:49 diff --git a/htdocs/langs/tr_TR/suppliers.lang b/htdocs/langs/tr_TR/suppliers.lang index fb3f2aa2945..4129859a84c 100644 --- a/htdocs/langs/tr_TR/suppliers.lang +++ b/htdocs/langs/tr_TR/suppliers.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-07-08 00:26:26 diff --git a/htdocs/langs/tr_TR/trips.lang b/htdocs/langs/tr_TR/trips.lang index 25cbd96245b..309f1a8b208 100644 --- a/htdocs/langs/tr_TR/trips.lang +++ b/htdocs/langs/tr_TR/trips.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-08 17:42:26 diff --git a/htdocs/langs/tr_TR/users.lang b/htdocs/langs/tr_TR/users.lang index 7326318255a..dec399268cb 100755 --- a/htdocs/langs/tr_TR/users.lang +++ b/htdocs/langs/tr_TR/users.lang @@ -1,4 +1,4 @@ -/* +/* * Language code: tr_TR * Manually generated * Generation date 2012-06-28 23:08:00 diff --git a/htdocs/langs/tr_TR/withdrawals.lang b/htdocs/langs/tr_TR/withdrawals.lang index 8bed802645b..22a4a445851 100644 --- a/htdocs/langs/tr_TR/withdrawals.lang +++ b/htdocs/langs/tr_TR/withdrawals.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-16 23:51:26 // START - Lines manually generated (2012-07-16 23:51:26). diff --git a/htdocs/langs/tr_TR/workflow.lang b/htdocs/langs/tr_TR/workflow.lang index 820fa813096..f9b807ca0f0 100644 --- a/htdocs/langs/tr_TR/workflow.lang +++ b/htdocs/langs/tr_TR/workflow.lang @@ -1,4 +1,4 @@ -* Manually generated +* Manually generated * Generation date 2012-07-08 21:43:26 // START - Lines manually generated (2012-07-08 21:43:26). diff --git a/htdocs/theme/amarok/ckeditor/config.js b/htdocs/theme/amarok/ckeditor/config.js index 699f7d61ec7..0f3a3eb60d3 100755 --- a/htdocs/theme/amarok/ckeditor/config.js +++ b/htdocs/theme/amarok/ckeditor/config.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ From a6407a364204aaa2842182d8437bf935f0cf9019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= Date: Fri, 1 Mar 2013 14:14:20 +0100 Subject: [PATCH 13/57] Removed UTF-8 BOM from included libraries --- htdocs/includes/ckeditor/adapters/jquery.js | 2 +- htdocs/includes/ckeditor/ckeditor.asp | 2 +- htdocs/includes/ckeditor/ckeditor.js | 2 +- htdocs/includes/ckeditor/ckeditor_basic.js | 2 +- htdocs/includes/ckeditor/ckeditor_basic_source.js | 2 +- htdocs/includes/ckeditor/ckeditor_source.js | 2 +- htdocs/includes/ckeditor/config.js | 2 +- htdocs/includes/ckeditor/lang/_languages.js | 2 +- htdocs/includes/ckeditor/lang/af.js | 2 +- htdocs/includes/ckeditor/lang/ar.js | 2 +- htdocs/includes/ckeditor/lang/bg.js | 2 +- htdocs/includes/ckeditor/lang/bn.js | 2 +- htdocs/includes/ckeditor/lang/bs.js | 2 +- htdocs/includes/ckeditor/lang/ca.js | 2 +- htdocs/includes/ckeditor/lang/cs.js | 2 +- htdocs/includes/ckeditor/lang/cy.js | 2 +- htdocs/includes/ckeditor/lang/da.js | 2 +- htdocs/includes/ckeditor/lang/de.js | 2 +- htdocs/includes/ckeditor/lang/el.js | 2 +- htdocs/includes/ckeditor/lang/en-au.js | 2 +- htdocs/includes/ckeditor/lang/en-ca.js | 2 +- htdocs/includes/ckeditor/lang/en-gb.js | 2 +- htdocs/includes/ckeditor/lang/en.js | 2 +- htdocs/includes/ckeditor/lang/eo.js | 2 +- htdocs/includes/ckeditor/lang/es.js | 2 +- htdocs/includes/ckeditor/lang/et.js | 2 +- htdocs/includes/ckeditor/lang/eu.js | 2 +- htdocs/includes/ckeditor/lang/fa.js | 2 +- htdocs/includes/ckeditor/lang/fi.js | 2 +- htdocs/includes/ckeditor/lang/fo.js | 2 +- htdocs/includes/ckeditor/lang/fr-ca.js | 2 +- htdocs/includes/ckeditor/lang/fr.js | 2 +- htdocs/includes/ckeditor/lang/gl.js | 2 +- htdocs/includes/ckeditor/lang/gu.js | 2 +- htdocs/includes/ckeditor/lang/he.js | 2 +- htdocs/includes/ckeditor/lang/hi.js | 2 +- htdocs/includes/ckeditor/lang/hr.js | 2 +- htdocs/includes/ckeditor/lang/hu.js | 2 +- htdocs/includes/ckeditor/lang/id.js | 2 +- htdocs/includes/ckeditor/lang/is.js | 2 +- htdocs/includes/ckeditor/lang/it.js | 2 +- htdocs/includes/ckeditor/lang/ja.js | 2 +- htdocs/includes/ckeditor/lang/ka.js | 2 +- htdocs/includes/ckeditor/lang/km.js | 2 +- htdocs/includes/ckeditor/lang/ko.js | 2 +- htdocs/includes/ckeditor/lang/lt.js | 2 +- htdocs/includes/ckeditor/lang/lv.js | 2 +- htdocs/includes/ckeditor/lang/mk.js | 2 +- htdocs/includes/ckeditor/lang/mn.js | 2 +- htdocs/includes/ckeditor/lang/ms.js | 2 +- htdocs/includes/ckeditor/lang/nb.js | 2 +- htdocs/includes/ckeditor/lang/nl.js | 2 +- htdocs/includes/ckeditor/lang/no.js | 2 +- htdocs/includes/ckeditor/lang/pl.js | 2 +- htdocs/includes/ckeditor/lang/pt-br.js | 2 +- htdocs/includes/ckeditor/lang/pt.js | 2 +- htdocs/includes/ckeditor/lang/ro.js | 2 +- htdocs/includes/ckeditor/lang/ru.js | 2 +- htdocs/includes/ckeditor/lang/sk.js | 2 +- htdocs/includes/ckeditor/lang/sl.js | 2 +- htdocs/includes/ckeditor/lang/sr-latn.js | 2 +- htdocs/includes/ckeditor/lang/sr.js | 2 +- htdocs/includes/ckeditor/lang/sv.js | 2 +- htdocs/includes/ckeditor/lang/th.js | 2 +- htdocs/includes/ckeditor/lang/tr.js | 2 +- htdocs/includes/ckeditor/lang/ug.js | 2 +- htdocs/includes/ckeditor/lang/uk.js | 2 +- htdocs/includes/ckeditor/lang/vi.js | 2 +- htdocs/includes/ckeditor/lang/zh-cn.js | 2 +- htdocs/includes/ckeditor/lang/zh.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/cs.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/cy.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/da.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/de.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/el.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/en.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/eo.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/fa.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/fi.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/fr.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/gu.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/he.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/it.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/mk.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/nb.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/nl.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/no.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/pt-br.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/ro.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/tr.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/ug.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/vi.js | 2 +- htdocs/includes/ckeditor/plugins/a11yhelp/lang/zh-cn.js | 2 +- htdocs/includes/ckeditor/plugins/about/dialogs/about.js | 2 +- htdocs/includes/ckeditor/plugins/adobeair/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/ajax/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/autogrow/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/bbcode/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/clipboard/dialogs/paste.js | 2 +- .../ckeditor/plugins/colordialog/dialogs/colordialog.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/bg.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/cs.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/cy.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/da.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/de.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/el.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/en.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/eo.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/et.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/fa.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/fi.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/fr.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/gu.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/he.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/hr.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/it.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/nb.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/nl.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/no.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/pl.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/pt-br.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/tr.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/ug.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/uk.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/vi.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/lang/zh-cn.js | 2 +- htdocs/includes/ckeditor/plugins/devtools/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/dialog/dialogDefinition.js | 2 +- htdocs/includes/ckeditor/plugins/div/dialogs/div.js | 2 +- htdocs/includes/ckeditor/plugins/docprops/dialogs/docprops.js | 2 +- htdocs/includes/ckeditor/plugins/docprops/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/find/dialogs/find.js | 2 +- htdocs/includes/ckeditor/plugins/flash/dialogs/flash.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/button.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/checkbox.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/form.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/hiddenfield.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/radio.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/select.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/textarea.js | 2 +- htdocs/includes/ckeditor/plugins/forms/dialogs/textfield.js | 2 +- htdocs/includes/ckeditor/plugins/iframe/dialogs/iframe.js | 2 +- htdocs/includes/ckeditor/plugins/iframedialog/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/image/dialogs/image.js | 2 +- htdocs/includes/ckeditor/plugins/link/dialogs/anchor.js | 2 +- htdocs/includes/ckeditor/plugins/link/dialogs/link.js | 2 +- htdocs/includes/ckeditor/plugins/liststyle/dialogs/liststyle.js | 2 +- .../includes/ckeditor/plugins/pastefromword/filter/default.js | 2 +- htdocs/includes/ckeditor/plugins/pastetext/dialogs/pastetext.js | 2 +- .../ckeditor/plugins/placeholder/dialogs/placeholder.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/bg.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/cs.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/cy.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/da.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/de.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/el.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/en.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/eo.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/et.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/fa.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/fi.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/fr.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/he.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/hr.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/it.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/nb.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/nl.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/no.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/pl.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/pt-br.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/tr.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/ug.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/uk.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/vi.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/lang/zh-cn.js | 2 +- htdocs/includes/ckeditor/plugins/placeholder/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/scayt/dialogs/options.js | 2 +- htdocs/includes/ckeditor/plugins/smiley/dialogs/smiley.js | 2 +- .../ckeditor/plugins/specialchar/dialogs/specialchar.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/cs.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/cy.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/de.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/el.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/en.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/eo.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/et.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/fa.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/fi.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/fr.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/he.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/hr.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/it.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/nb.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/nl.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/no.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/pt-br.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/tr.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/ug.js | 2 +- htdocs/includes/ckeditor/plugins/specialchar/lang/zh-cn.js | 2 +- htdocs/includes/ckeditor/plugins/styles/styles/default.js | 2 +- htdocs/includes/ckeditor/plugins/stylesheetparser/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/table/dialogs/table.js | 2 +- htdocs/includes/ckeditor/plugins/tableresize/plugin.js | 2 +- .../includes/ckeditor/plugins/tabletools/dialogs/tableCell.js | 2 +- htdocs/includes/ckeditor/plugins/templates/dialogs/templates.js | 2 +- htdocs/includes/ckeditor/plugins/templates/templates/default.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/dialogs/uicolor.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/bg.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/cs.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/cy.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/da.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/de.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/el.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/en.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/eo.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/et.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/fa.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/fi.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/fr.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/he.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/hr.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/it.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/mk.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/nb.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/nl.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/no.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/pl.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/pt-br.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/tr.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/ug.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/uk.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/vi.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/lang/zh-cn.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/plugin.js | 2 +- htdocs/includes/ckeditor/plugins/uicolor/yui/yui.js | 2 +- htdocs/includes/ckeditor/plugins/wsc/dialogs/wsc.js | 2 +- htdocs/includes/ckeditor/plugins/xml/plugin.js | 2 +- htdocs/includes/ckeditor/skins/kama/skin.js | 2 +- htdocs/includes/ckeditor/skins/office2003/skin.js | 2 +- htdocs/includes/ckeditor/skins/v2/skin.js | 2 +- htdocs/includes/ckeditor/themes/default/theme.js | 2 +- 242 files changed, 242 insertions(+), 242 deletions(-) diff --git a/htdocs/includes/ckeditor/adapters/jquery.js b/htdocs/includes/ckeditor/adapters/jquery.js index 04f8c94dcbc..f3deeb1a510 100644 --- a/htdocs/includes/ckeditor/adapters/jquery.js +++ b/htdocs/includes/ckeditor/adapters/jquery.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/ckeditor.asp b/htdocs/includes/ckeditor/ckeditor.asp index 094e7273156..60e8a0340c2 100644 --- a/htdocs/includes/ckeditor/ckeditor.asp +++ b/htdocs/includes/ckeditor/ckeditor.asp @@ -1,4 +1,4 @@ -<% +<% ' ' Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. ' For licensing, see LICENSE.html or http://ckeditor.com/license diff --git a/htdocs/includes/ckeditor/ckeditor.js b/htdocs/includes/ckeditor/ckeditor.js index f3758ea29dd..44b4b2fcb93 100644 --- a/htdocs/includes/ckeditor/ckeditor.js +++ b/htdocs/includes/ckeditor/ckeditor.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/ckeditor_basic.js b/htdocs/includes/ckeditor/ckeditor_basic.js index 7a5b1fef27f..2ffa3a129c1 100644 --- a/htdocs/includes/ckeditor/ckeditor_basic.js +++ b/htdocs/includes/ckeditor/ckeditor_basic.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/ckeditor_basic_source.js b/htdocs/includes/ckeditor/ckeditor_basic_source.js index 13c0d6cb74e..2a49dd7fe29 100644 --- a/htdocs/includes/ckeditor/ckeditor_basic_source.js +++ b/htdocs/includes/ckeditor/ckeditor_basic_source.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/ckeditor_source.js b/htdocs/includes/ckeditor/ckeditor_source.js index 52d432cb529..f77c003d3b3 100644 --- a/htdocs/includes/ckeditor/ckeditor_source.js +++ b/htdocs/includes/ckeditor/ckeditor_source.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/config.js b/htdocs/includes/ckeditor/config.js index 44dd1e41bd9..47fd53e1753 100644 --- a/htdocs/includes/ckeditor/config.js +++ b/htdocs/includes/ckeditor/config.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/_languages.js b/htdocs/includes/ckeditor/lang/_languages.js index b7385837bce..e119ad9aba3 100644 --- a/htdocs/includes/ckeditor/lang/_languages.js +++ b/htdocs/includes/ckeditor/lang/_languages.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/af.js b/htdocs/includes/ckeditor/lang/af.js index 8cc3c7c4570..860204faf1e 100644 --- a/htdocs/includes/ckeditor/lang/af.js +++ b/htdocs/includes/ckeditor/lang/af.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ar.js b/htdocs/includes/ckeditor/lang/ar.js index 0e0a8926ef5..f12db24acf5 100644 --- a/htdocs/includes/ckeditor/lang/ar.js +++ b/htdocs/includes/ckeditor/lang/ar.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/bg.js b/htdocs/includes/ckeditor/lang/bg.js index e8b8b92ec7c..5d956e6b074 100644 --- a/htdocs/includes/ckeditor/lang/bg.js +++ b/htdocs/includes/ckeditor/lang/bg.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/bn.js b/htdocs/includes/ckeditor/lang/bn.js index beb38f677fb..feed2af2868 100644 --- a/htdocs/includes/ckeditor/lang/bn.js +++ b/htdocs/includes/ckeditor/lang/bn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/bs.js b/htdocs/includes/ckeditor/lang/bs.js index ba59d3b32bc..18ccbd22ee0 100644 --- a/htdocs/includes/ckeditor/lang/bs.js +++ b/htdocs/includes/ckeditor/lang/bs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ca.js b/htdocs/includes/ckeditor/lang/ca.js index bcecf8a8d90..9ae3ba9d11a 100644 --- a/htdocs/includes/ckeditor/lang/ca.js +++ b/htdocs/includes/ckeditor/lang/ca.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/cs.js b/htdocs/includes/ckeditor/lang/cs.js index 74709c7cc4f..78181646857 100644 --- a/htdocs/includes/ckeditor/lang/cs.js +++ b/htdocs/includes/ckeditor/lang/cs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/cy.js b/htdocs/includes/ckeditor/lang/cy.js index 94b49c1b7eb..3ca55dd9e7d 100644 --- a/htdocs/includes/ckeditor/lang/cy.js +++ b/htdocs/includes/ckeditor/lang/cy.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/da.js b/htdocs/includes/ckeditor/lang/da.js index 819da5073d9..ae5c782cc6d 100644 --- a/htdocs/includes/ckeditor/lang/da.js +++ b/htdocs/includes/ckeditor/lang/da.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/de.js b/htdocs/includes/ckeditor/lang/de.js index 5ec37fded32..5428feb8fe3 100644 --- a/htdocs/includes/ckeditor/lang/de.js +++ b/htdocs/includes/ckeditor/lang/de.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/el.js b/htdocs/includes/ckeditor/lang/el.js index d25d42ae916..362423d04f4 100644 --- a/htdocs/includes/ckeditor/lang/el.js +++ b/htdocs/includes/ckeditor/lang/el.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/en-au.js b/htdocs/includes/ckeditor/lang/en-au.js index 4461727cb7f..bdbeefea2d5 100644 --- a/htdocs/includes/ckeditor/lang/en-au.js +++ b/htdocs/includes/ckeditor/lang/en-au.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/en-ca.js b/htdocs/includes/ckeditor/lang/en-ca.js index 470209bd0e4..2618709ee00 100644 --- a/htdocs/includes/ckeditor/lang/en-ca.js +++ b/htdocs/includes/ckeditor/lang/en-ca.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/en-gb.js b/htdocs/includes/ckeditor/lang/en-gb.js index 6d3b0737b5e..02cd9b1eaeb 100644 --- a/htdocs/includes/ckeditor/lang/en-gb.js +++ b/htdocs/includes/ckeditor/lang/en-gb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/en.js b/htdocs/includes/ckeditor/lang/en.js index 5c5fcf3979f..a4938f6ff35 100644 --- a/htdocs/includes/ckeditor/lang/en.js +++ b/htdocs/includes/ckeditor/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/eo.js b/htdocs/includes/ckeditor/lang/eo.js index a4160b74ae6..60132f2f348 100644 --- a/htdocs/includes/ckeditor/lang/eo.js +++ b/htdocs/includes/ckeditor/lang/eo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/es.js b/htdocs/includes/ckeditor/lang/es.js index e48c5805390..e56f392c932 100644 --- a/htdocs/includes/ckeditor/lang/es.js +++ b/htdocs/includes/ckeditor/lang/es.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/et.js b/htdocs/includes/ckeditor/lang/et.js index 4369767aa0a..152ec89485c 100644 --- a/htdocs/includes/ckeditor/lang/et.js +++ b/htdocs/includes/ckeditor/lang/et.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/eu.js b/htdocs/includes/ckeditor/lang/eu.js index 5826bcf4a87..ea1a06aee10 100644 --- a/htdocs/includes/ckeditor/lang/eu.js +++ b/htdocs/includes/ckeditor/lang/eu.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/fa.js b/htdocs/includes/ckeditor/lang/fa.js index e20714d3805..7ac5efa2cc0 100644 --- a/htdocs/includes/ckeditor/lang/fa.js +++ b/htdocs/includes/ckeditor/lang/fa.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/fi.js b/htdocs/includes/ckeditor/lang/fi.js index 12cc26dafbe..bd87b92e3f3 100644 --- a/htdocs/includes/ckeditor/lang/fi.js +++ b/htdocs/includes/ckeditor/lang/fi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/fo.js b/htdocs/includes/ckeditor/lang/fo.js index 0f4c0d5abe2..5b620c61432 100644 --- a/htdocs/includes/ckeditor/lang/fo.js +++ b/htdocs/includes/ckeditor/lang/fo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/fr-ca.js b/htdocs/includes/ckeditor/lang/fr-ca.js index 09e9922f352..3f06fecb194 100644 --- a/htdocs/includes/ckeditor/lang/fr-ca.js +++ b/htdocs/includes/ckeditor/lang/fr-ca.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/fr.js b/htdocs/includes/ckeditor/lang/fr.js index f1b3ce416df..24e0803d6f5 100644 --- a/htdocs/includes/ckeditor/lang/fr.js +++ b/htdocs/includes/ckeditor/lang/fr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/gl.js b/htdocs/includes/ckeditor/lang/gl.js index fce85479d32..b3695fbc562 100644 --- a/htdocs/includes/ckeditor/lang/gl.js +++ b/htdocs/includes/ckeditor/lang/gl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/gu.js b/htdocs/includes/ckeditor/lang/gu.js index 0cb6076b7fe..89cdd660cf9 100644 --- a/htdocs/includes/ckeditor/lang/gu.js +++ b/htdocs/includes/ckeditor/lang/gu.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/he.js b/htdocs/includes/ckeditor/lang/he.js index 93ffb370d08..a859c879d22 100644 --- a/htdocs/includes/ckeditor/lang/he.js +++ b/htdocs/includes/ckeditor/lang/he.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/hi.js b/htdocs/includes/ckeditor/lang/hi.js index 158d9c4411d..6e36e1b966e 100644 --- a/htdocs/includes/ckeditor/lang/hi.js +++ b/htdocs/includes/ckeditor/lang/hi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/hr.js b/htdocs/includes/ckeditor/lang/hr.js index 56167cfa031..0a6222a4d11 100644 --- a/htdocs/includes/ckeditor/lang/hr.js +++ b/htdocs/includes/ckeditor/lang/hr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/hu.js b/htdocs/includes/ckeditor/lang/hu.js index 4a338998bee..e5c99b4b926 100644 --- a/htdocs/includes/ckeditor/lang/hu.js +++ b/htdocs/includes/ckeditor/lang/hu.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/id.js b/htdocs/includes/ckeditor/lang/id.js index 7ac08a3c4d7..bef1853001d 100644 --- a/htdocs/includes/ckeditor/lang/id.js +++ b/htdocs/includes/ckeditor/lang/id.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/is.js b/htdocs/includes/ckeditor/lang/is.js index 6b1829d4bad..5e0498d444f 100644 --- a/htdocs/includes/ckeditor/lang/is.js +++ b/htdocs/includes/ckeditor/lang/is.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/it.js b/htdocs/includes/ckeditor/lang/it.js index 67eb31f3cb8..385e19a8885 100644 --- a/htdocs/includes/ckeditor/lang/it.js +++ b/htdocs/includes/ckeditor/lang/it.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ja.js b/htdocs/includes/ckeditor/lang/ja.js index 48cdb540952..39358851bc1 100644 --- a/htdocs/includes/ckeditor/lang/ja.js +++ b/htdocs/includes/ckeditor/lang/ja.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ka.js b/htdocs/includes/ckeditor/lang/ka.js index 6d671bd7074..326d5e2e4a3 100755 --- a/htdocs/includes/ckeditor/lang/ka.js +++ b/htdocs/includes/ckeditor/lang/ka.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/km.js b/htdocs/includes/ckeditor/lang/km.js index b24faeaca71..e5b8e352a83 100644 --- a/htdocs/includes/ckeditor/lang/km.js +++ b/htdocs/includes/ckeditor/lang/km.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ko.js b/htdocs/includes/ckeditor/lang/ko.js index ab4be577f32..98729ead50a 100644 --- a/htdocs/includes/ckeditor/lang/ko.js +++ b/htdocs/includes/ckeditor/lang/ko.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/lt.js b/htdocs/includes/ckeditor/lang/lt.js index 1f870c13f12..29ffd9cc025 100644 --- a/htdocs/includes/ckeditor/lang/lt.js +++ b/htdocs/includes/ckeditor/lang/lt.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/lv.js b/htdocs/includes/ckeditor/lang/lv.js index f81fd19c535..8cab8985205 100644 --- a/htdocs/includes/ckeditor/lang/lv.js +++ b/htdocs/includes/ckeditor/lang/lv.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/mk.js b/htdocs/includes/ckeditor/lang/mk.js index e390d4810e0..18dfd066346 100644 --- a/htdocs/includes/ckeditor/lang/mk.js +++ b/htdocs/includes/ckeditor/lang/mk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/mn.js b/htdocs/includes/ckeditor/lang/mn.js index 197cef36ecc..b055391a565 100644 --- a/htdocs/includes/ckeditor/lang/mn.js +++ b/htdocs/includes/ckeditor/lang/mn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ms.js b/htdocs/includes/ckeditor/lang/ms.js index 90ab943adf8..6e2a9644e58 100644 --- a/htdocs/includes/ckeditor/lang/ms.js +++ b/htdocs/includes/ckeditor/lang/ms.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/nb.js b/htdocs/includes/ckeditor/lang/nb.js index 0c335ffe1a1..1a52bebc3b3 100644 --- a/htdocs/includes/ckeditor/lang/nb.js +++ b/htdocs/includes/ckeditor/lang/nb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/nl.js b/htdocs/includes/ckeditor/lang/nl.js index 582310a372f..d8c1bb68ac9 100644 --- a/htdocs/includes/ckeditor/lang/nl.js +++ b/htdocs/includes/ckeditor/lang/nl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/no.js b/htdocs/includes/ckeditor/lang/no.js index 368b1e702b1..3d16eda2f8e 100644 --- a/htdocs/includes/ckeditor/lang/no.js +++ b/htdocs/includes/ckeditor/lang/no.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/pl.js b/htdocs/includes/ckeditor/lang/pl.js index 5cf7cd9b710..680c7ae710b 100644 --- a/htdocs/includes/ckeditor/lang/pl.js +++ b/htdocs/includes/ckeditor/lang/pl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/pt-br.js b/htdocs/includes/ckeditor/lang/pt-br.js index 1a09d40f8bf..0d82f7528ce 100644 --- a/htdocs/includes/ckeditor/lang/pt-br.js +++ b/htdocs/includes/ckeditor/lang/pt-br.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/pt.js b/htdocs/includes/ckeditor/lang/pt.js index 1956677c0ea..ddb0d79e659 100644 --- a/htdocs/includes/ckeditor/lang/pt.js +++ b/htdocs/includes/ckeditor/lang/pt.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ro.js b/htdocs/includes/ckeditor/lang/ro.js index 9d29578d5a1..557a73c6936 100644 --- a/htdocs/includes/ckeditor/lang/ro.js +++ b/htdocs/includes/ckeditor/lang/ro.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ru.js b/htdocs/includes/ckeditor/lang/ru.js index c1299b3813f..de982d197de 100644 --- a/htdocs/includes/ckeditor/lang/ru.js +++ b/htdocs/includes/ckeditor/lang/ru.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/sk.js b/htdocs/includes/ckeditor/lang/sk.js index 3e8a02e086e..6c3a313212d 100644 --- a/htdocs/includes/ckeditor/lang/sk.js +++ b/htdocs/includes/ckeditor/lang/sk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/sl.js b/htdocs/includes/ckeditor/lang/sl.js index 5d7f491941f..4d6b9d70a7e 100644 --- a/htdocs/includes/ckeditor/lang/sl.js +++ b/htdocs/includes/ckeditor/lang/sl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/sr-latn.js b/htdocs/includes/ckeditor/lang/sr-latn.js index a20361cb399..7d7731d8000 100644 --- a/htdocs/includes/ckeditor/lang/sr-latn.js +++ b/htdocs/includes/ckeditor/lang/sr-latn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/sr.js b/htdocs/includes/ckeditor/lang/sr.js index 963a233aaa6..eea71ed2e07 100644 --- a/htdocs/includes/ckeditor/lang/sr.js +++ b/htdocs/includes/ckeditor/lang/sr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/sv.js b/htdocs/includes/ckeditor/lang/sv.js index a9caecd1577..8ed815352f5 100644 --- a/htdocs/includes/ckeditor/lang/sv.js +++ b/htdocs/includes/ckeditor/lang/sv.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/th.js b/htdocs/includes/ckeditor/lang/th.js index a6718db6276..86f15162454 100644 --- a/htdocs/includes/ckeditor/lang/th.js +++ b/htdocs/includes/ckeditor/lang/th.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/tr.js b/htdocs/includes/ckeditor/lang/tr.js index 6cc8491bc41..1774ccf9821 100644 --- a/htdocs/includes/ckeditor/lang/tr.js +++ b/htdocs/includes/ckeditor/lang/tr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/ug.js b/htdocs/includes/ckeditor/lang/ug.js index 03e87a43f70..12dd92aff1b 100644 --- a/htdocs/includes/ckeditor/lang/ug.js +++ b/htdocs/includes/ckeditor/lang/ug.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/uk.js b/htdocs/includes/ckeditor/lang/uk.js index 0541f858d6e..e401441d37b 100644 --- a/htdocs/includes/ckeditor/lang/uk.js +++ b/htdocs/includes/ckeditor/lang/uk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/vi.js b/htdocs/includes/ckeditor/lang/vi.js index 6c597af668d..fb0cdc1f6d9 100644 --- a/htdocs/includes/ckeditor/lang/vi.js +++ b/htdocs/includes/ckeditor/lang/vi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/zh-cn.js b/htdocs/includes/ckeditor/lang/zh-cn.js index e0f7badd926..b340cbfaef0 100644 --- a/htdocs/includes/ckeditor/lang/zh-cn.js +++ b/htdocs/includes/ckeditor/lang/zh-cn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/lang/zh.js b/htdocs/includes/ckeditor/lang/zh.js index 4779130da4a..3e07627ee38 100644 --- a/htdocs/includes/ckeditor/lang/zh.js +++ b/htdocs/includes/ckeditor/lang/zh.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/htdocs/includes/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js index e4bd208bf59..5e6a37a08fe 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cs.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cs.js index a8de6d6929a..90fc3b1cefa 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cs.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cy.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cy.js index ffc4bc52949..310935e113d 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cy.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/cy.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/da.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/da.js index 0fca0cfdeb5..6835a19fbdc 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/da.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/da.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/de.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/de.js index 9a648bd0a10..69b9b52b09f 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/de.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/de.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/el.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/el.js index acbde0072d6..66f5bf7a727 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/el.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/el.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/en.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/en.js index 073f43aae33..62119d723c7 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/en.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/eo.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/eo.js index af457964def..d24290f729a 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/eo.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/eo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fa.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fa.js index 61bb10ca714..91522b4110c 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fa.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fa.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fi.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fi.js index af5f894a54a..f365194e273 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fi.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fr.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fr.js index e2f20a03182..edfae4a5ceb 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fr.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/fr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/gu.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/gu.js index ae09189d3a0..7b207209499 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/gu.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/gu.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/he.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/he.js index 5d938055e4e..74d2dd14224 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/he.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/he.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/it.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/it.js index 07e6f47b19c..2bcc030eaf2 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/it.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/it.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/mk.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/mk.js index 16296701622..5cdb425d97f 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/mk.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/mk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nb.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nb.js index 030962af838..b03b345df4e 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nb.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nl.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nl.js index 9dd84015726..b55dfdba0c4 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nl.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/nl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/no.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/no.js index 6208999c96a..11e559a3a9b 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/no.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/no.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/pt-br.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/pt-br.js index 8e6e28f09e9..2f6d8c923be 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/pt-br.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/pt-br.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ro.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ro.js index c68e1286ce3..d1f06eac72b 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ro.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ro.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/tr.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/tr.js index a7338889bbf..9909daedc5a 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/tr.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/tr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ug.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ug.js index e37e8d28065..6e4f2ef2c59 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ug.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/ug.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/vi.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/vi.js index 94b3381052f..4c1d6adac1b 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/vi.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/vi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/zh-cn.js b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/zh-cn.js index 29cec26a7ea..136a404c80a 100644 --- a/htdocs/includes/ckeditor/plugins/a11yhelp/lang/zh-cn.js +++ b/htdocs/includes/ckeditor/plugins/a11yhelp/lang/zh-cn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/about/dialogs/about.js b/htdocs/includes/ckeditor/plugins/about/dialogs/about.js index 77c133441c1..30426daa5e3 100644 --- a/htdocs/includes/ckeditor/plugins/about/dialogs/about.js +++ b/htdocs/includes/ckeditor/plugins/about/dialogs/about.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/adobeair/plugin.js b/htdocs/includes/ckeditor/plugins/adobeair/plugin.js index b312e93a4c4..c8590e0da3b 100644 --- a/htdocs/includes/ckeditor/plugins/adobeair/plugin.js +++ b/htdocs/includes/ckeditor/plugins/adobeair/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/ajax/plugin.js b/htdocs/includes/ckeditor/plugins/ajax/plugin.js index 1c205f011d9..ccfc9428c1e 100644 --- a/htdocs/includes/ckeditor/plugins/ajax/plugin.js +++ b/htdocs/includes/ckeditor/plugins/ajax/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/autogrow/plugin.js b/htdocs/includes/ckeditor/plugins/autogrow/plugin.js index e40289b323d..2fde5b6b479 100644 --- a/htdocs/includes/ckeditor/plugins/autogrow/plugin.js +++ b/htdocs/includes/ckeditor/plugins/autogrow/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/bbcode/plugin.js b/htdocs/includes/ckeditor/plugins/bbcode/plugin.js index 598a4bb4563..b7da0db0835 100755 --- a/htdocs/includes/ckeditor/plugins/bbcode/plugin.js +++ b/htdocs/includes/ckeditor/plugins/bbcode/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/clipboard/dialogs/paste.js b/htdocs/includes/ckeditor/plugins/clipboard/dialogs/paste.js index ed1a423bf16..c470491d6a4 100644 --- a/htdocs/includes/ckeditor/plugins/clipboard/dialogs/paste.js +++ b/htdocs/includes/ckeditor/plugins/clipboard/dialogs/paste.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/colordialog/dialogs/colordialog.js b/htdocs/includes/ckeditor/plugins/colordialog/dialogs/colordialog.js index e9082698186..1df62f53561 100644 --- a/htdocs/includes/ckeditor/plugins/colordialog/dialogs/colordialog.js +++ b/htdocs/includes/ckeditor/plugins/colordialog/dialogs/colordialog.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/bg.js b/htdocs/includes/ckeditor/plugins/devtools/lang/bg.js index c8713d0b8fe..caa9a3bca2e 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/bg.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/bg.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/cs.js b/htdocs/includes/ckeditor/plugins/devtools/lang/cs.js index 10c96999497..65a5f9b1ee8 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/cs.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/cs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/cy.js b/htdocs/includes/ckeditor/plugins/devtools/lang/cy.js index 3514ec648ba..63b81d29fd8 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/cy.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/cy.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/da.js b/htdocs/includes/ckeditor/plugins/devtools/lang/da.js index d882612e7ee..101dd2778d2 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/da.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/da.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/de.js b/htdocs/includes/ckeditor/plugins/devtools/lang/de.js index 953bf97a7d0..67ffd383b05 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/de.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/de.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/el.js b/htdocs/includes/ckeditor/plugins/devtools/lang/el.js index 32168b7130a..5842d7d7c0b 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/el.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/el.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/en.js b/htdocs/includes/ckeditor/plugins/devtools/lang/en.js index 467126d1d97..8ed61ab03dc 100755 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/en.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/eo.js b/htdocs/includes/ckeditor/plugins/devtools/lang/eo.js index 70ae814eba9..2ca9295835e 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/eo.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/eo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/et.js b/htdocs/includes/ckeditor/plugins/devtools/lang/et.js index 3d731642f26..44a6fc89433 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/et.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/et.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/fa.js b/htdocs/includes/ckeditor/plugins/devtools/lang/fa.js index e6133b219bf..ff471fd7e73 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/fa.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/fa.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/fi.js b/htdocs/includes/ckeditor/plugins/devtools/lang/fi.js index 37884d3adb6..7cc99eb479e 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/fi.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/fi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/fr.js b/htdocs/includes/ckeditor/plugins/devtools/lang/fr.js index c44813fde3e..22570d9e2b6 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/fr.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/fr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/gu.js b/htdocs/includes/ckeditor/plugins/devtools/lang/gu.js index 553e7a0fdae..370615104d2 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/gu.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/gu.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/he.js b/htdocs/includes/ckeditor/plugins/devtools/lang/he.js index 52a36b9b5ec..f6b6826765e 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/he.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/he.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/hr.js b/htdocs/includes/ckeditor/plugins/devtools/lang/hr.js index 31126253c0c..246f16807f7 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/hr.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/hr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/it.js b/htdocs/includes/ckeditor/plugins/devtools/lang/it.js index 8410af08ef7..d82598e5d6d 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/it.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/it.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/nb.js b/htdocs/includes/ckeditor/plugins/devtools/lang/nb.js index fd561a70e66..bbba0a1e56c 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/nb.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/nb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/nl.js b/htdocs/includes/ckeditor/plugins/devtools/lang/nl.js index affe32a5bcc..3a5b708fb40 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/nl.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/nl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/no.js b/htdocs/includes/ckeditor/plugins/devtools/lang/no.js index e93f861e406..99d8f458d46 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/no.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/no.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/pl.js b/htdocs/includes/ckeditor/plugins/devtools/lang/pl.js index 886a9412182..27958695faf 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/pl.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/pl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/pt-br.js b/htdocs/includes/ckeditor/plugins/devtools/lang/pt-br.js index 32e1e2e117a..b2706e28110 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/pt-br.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/pt-br.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/tr.js b/htdocs/includes/ckeditor/plugins/devtools/lang/tr.js index 7982d17dd33..df260a208b5 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/tr.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/tr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/ug.js b/htdocs/includes/ckeditor/plugins/devtools/lang/ug.js index 6cfb9913521..a841ae90eb1 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/ug.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/ug.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/uk.js b/htdocs/includes/ckeditor/plugins/devtools/lang/uk.js index 4d80d6d3824..a4e93936e0f 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/uk.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/uk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/vi.js b/htdocs/includes/ckeditor/plugins/devtools/lang/vi.js index 4be84373f46..ae921df4f88 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/vi.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/vi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/lang/zh-cn.js b/htdocs/includes/ckeditor/plugins/devtools/lang/zh-cn.js index 3f599beffe2..22fd004454d 100644 --- a/htdocs/includes/ckeditor/plugins/devtools/lang/zh-cn.js +++ b/htdocs/includes/ckeditor/plugins/devtools/lang/zh-cn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/devtools/plugin.js b/htdocs/includes/ckeditor/plugins/devtools/plugin.js index efc4e227938..41fa5bebfcc 100755 --- a/htdocs/includes/ckeditor/plugins/devtools/plugin.js +++ b/htdocs/includes/ckeditor/plugins/devtools/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/dialog/dialogDefinition.js b/htdocs/includes/ckeditor/plugins/dialog/dialogDefinition.js index a2c9d6dd0f4..ff644ae1685 100644 --- a/htdocs/includes/ckeditor/plugins/dialog/dialogDefinition.js +++ b/htdocs/includes/ckeditor/plugins/dialog/dialogDefinition.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/div/dialogs/div.js b/htdocs/includes/ckeditor/plugins/div/dialogs/div.js index e9cae67b796..c7db38912e6 100644 --- a/htdocs/includes/ckeditor/plugins/div/dialogs/div.js +++ b/htdocs/includes/ckeditor/plugins/div/dialogs/div.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/docprops/dialogs/docprops.js b/htdocs/includes/ckeditor/plugins/docprops/dialogs/docprops.js index 80029ec9f46..3f5eff37465 100755 --- a/htdocs/includes/ckeditor/plugins/docprops/dialogs/docprops.js +++ b/htdocs/includes/ckeditor/plugins/docprops/dialogs/docprops.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/docprops/plugin.js b/htdocs/includes/ckeditor/plugins/docprops/plugin.js index 807d2e9ea2a..58b2bb3c95f 100755 --- a/htdocs/includes/ckeditor/plugins/docprops/plugin.js +++ b/htdocs/includes/ckeditor/plugins/docprops/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/find/dialogs/find.js b/htdocs/includes/ckeditor/plugins/find/dialogs/find.js index f95a13ad629..f3eb0ceb3db 100644 --- a/htdocs/includes/ckeditor/plugins/find/dialogs/find.js +++ b/htdocs/includes/ckeditor/plugins/find/dialogs/find.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/flash/dialogs/flash.js b/htdocs/includes/ckeditor/plugins/flash/dialogs/flash.js index 604c346b62a..e280b9def45 100644 --- a/htdocs/includes/ckeditor/plugins/flash/dialogs/flash.js +++ b/htdocs/includes/ckeditor/plugins/flash/dialogs/flash.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/button.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/button.js index 6030fd44302..b9762f3e4e4 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/button.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/button.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/checkbox.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/checkbox.js index 45c8760d332..e3fd551e73b 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/checkbox.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/checkbox.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/form.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/form.js index 8b4e90fdc5f..ca21e83033f 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/form.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/form.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/hiddenfield.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/hiddenfield.js index 0bce0cfdf96..4fa703cf822 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/hiddenfield.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/hiddenfield.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/radio.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/radio.js index 4a05d9b0746..6d9aa86e8d9 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/radio.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/radio.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/select.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/select.js index 37ec6d488b3..b9ed844b795 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/select.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/select.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/textarea.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/textarea.js index 0ea4e726d5a..0d10d4ea0dd 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/textarea.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/textarea.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/forms/dialogs/textfield.js b/htdocs/includes/ckeditor/plugins/forms/dialogs/textfield.js index 23ee8669d4b..6938951ff3f 100644 --- a/htdocs/includes/ckeditor/plugins/forms/dialogs/textfield.js +++ b/htdocs/includes/ckeditor/plugins/forms/dialogs/textfield.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/iframe/dialogs/iframe.js b/htdocs/includes/ckeditor/plugins/iframe/dialogs/iframe.js index 06ac17a73ca..88556e8bc33 100644 --- a/htdocs/includes/ckeditor/plugins/iframe/dialogs/iframe.js +++ b/htdocs/includes/ckeditor/plugins/iframe/dialogs/iframe.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/iframedialog/plugin.js b/htdocs/includes/ckeditor/plugins/iframedialog/plugin.js index 52edc083580..593ddd90658 100644 --- a/htdocs/includes/ckeditor/plugins/iframedialog/plugin.js +++ b/htdocs/includes/ckeditor/plugins/iframedialog/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/image/dialogs/image.js b/htdocs/includes/ckeditor/plugins/image/dialogs/image.js index 0410b9505ce..fc308ce8a84 100644 --- a/htdocs/includes/ckeditor/plugins/image/dialogs/image.js +++ b/htdocs/includes/ckeditor/plugins/image/dialogs/image.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/link/dialogs/anchor.js b/htdocs/includes/ckeditor/plugins/link/dialogs/anchor.js index 716dc7f3dbc..66dd518b1eb 100644 --- a/htdocs/includes/ckeditor/plugins/link/dialogs/anchor.js +++ b/htdocs/includes/ckeditor/plugins/link/dialogs/anchor.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/link/dialogs/link.js b/htdocs/includes/ckeditor/plugins/link/dialogs/link.js index c0d32c8a3a1..a4acbd2345e 100644 --- a/htdocs/includes/ckeditor/plugins/link/dialogs/link.js +++ b/htdocs/includes/ckeditor/plugins/link/dialogs/link.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/liststyle/dialogs/liststyle.js b/htdocs/includes/ckeditor/plugins/liststyle/dialogs/liststyle.js index 5bf1c7fc711..d0b3d731021 100644 --- a/htdocs/includes/ckeditor/plugins/liststyle/dialogs/liststyle.js +++ b/htdocs/includes/ckeditor/plugins/liststyle/dialogs/liststyle.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/pastefromword/filter/default.js b/htdocs/includes/ckeditor/plugins/pastefromword/filter/default.js index e4240345ef9..970ee0092e4 100644 --- a/htdocs/includes/ckeditor/plugins/pastefromword/filter/default.js +++ b/htdocs/includes/ckeditor/plugins/pastefromword/filter/default.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/pastetext/dialogs/pastetext.js b/htdocs/includes/ckeditor/plugins/pastetext/dialogs/pastetext.js index 6d87d473064..f9f70289296 100644 --- a/htdocs/includes/ckeditor/plugins/pastetext/dialogs/pastetext.js +++ b/htdocs/includes/ckeditor/plugins/pastetext/dialogs/pastetext.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/dialogs/placeholder.js b/htdocs/includes/ckeditor/plugins/placeholder/dialogs/placeholder.js index 650aaa444a1..75712bc600c 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/dialogs/placeholder.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/dialogs/placeholder.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/bg.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/bg.js index 2101055c10a..c80fe5c9758 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/bg.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/bg.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/cs.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/cs.js index ec9d50aab84..53dd515bf38 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/cs.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/cs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/cy.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/cy.js index 67ea9814177..632b13ce702 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/cy.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/cy.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/da.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/da.js index 41b97297d5f..9bea608f980 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/da.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/da.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/de.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/de.js index c95c3035f6c..57ddeb49bee 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/de.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/de.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/el.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/el.js index 74a40bac950..357bc564399 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/el.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/el.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/en.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/en.js index 83e64f996c9..b2971943dbe 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/en.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/eo.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/eo.js index 228fbe8ebeb..435199d7e2d 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/eo.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/eo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/et.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/et.js index b527e1db5f8..f406449e926 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/et.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/et.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/fa.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/fa.js index e4ca06262b8..b31f95f92cd 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/fa.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/fa.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/fi.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/fi.js index 90eafeae48b..ec59b14372c 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/fi.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/fi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/fr.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/fr.js index a1774608176..1fd6d58c4ff 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/fr.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/fr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/he.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/he.js index fadfcbd6fc4..c9054962100 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/he.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/he.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/hr.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/hr.js index 8c195ce741c..e110d3cb7df 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/hr.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/hr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/it.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/it.js index 86346ebc9bb..2acd31ced02 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/it.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/it.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/nb.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/nb.js index 27f84107947..32d6fc9d21e 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/nb.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/nb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/nl.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/nl.js index 89b9a3e474c..1cc5475eec3 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/nl.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/nl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/no.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/no.js index 5aa1c5c4eac..725b38cc4ef 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/no.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/no.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/pl.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/pl.js index f859f095196..c41cc10dc30 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/pl.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/pl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/pt-br.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/pt-br.js index c395d95c919..3afb3ab7b95 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/pt-br.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/pt-br.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/tr.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/tr.js index 328092c77ee..d8d881573b8 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/tr.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/tr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/ug.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/ug.js index 25a30494e9d..15a7bff7656 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/ug.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/ug.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/uk.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/uk.js index aefe4ab5118..590c27825a5 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/uk.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/uk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/vi.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/vi.js index efcd578ffbd..09ec5d4d238 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/vi.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/vi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/lang/zh-cn.js b/htdocs/includes/ckeditor/plugins/placeholder/lang/zh-cn.js index a6dcfca5760..69f524025a3 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/lang/zh-cn.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/lang/zh-cn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/placeholder/plugin.js b/htdocs/includes/ckeditor/plugins/placeholder/plugin.js index 30879931a86..58c884332ef 100644 --- a/htdocs/includes/ckeditor/plugins/placeholder/plugin.js +++ b/htdocs/includes/ckeditor/plugins/placeholder/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/scayt/dialogs/options.js b/htdocs/includes/ckeditor/plugins/scayt/dialogs/options.js index d428963b76a..c9c1f0b9cac 100644 --- a/htdocs/includes/ckeditor/plugins/scayt/dialogs/options.js +++ b/htdocs/includes/ckeditor/plugins/scayt/dialogs/options.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/smiley/dialogs/smiley.js b/htdocs/includes/ckeditor/plugins/smiley/dialogs/smiley.js index a1a19689686..1ed9a07e8b2 100644 --- a/htdocs/includes/ckeditor/plugins/smiley/dialogs/smiley.js +++ b/htdocs/includes/ckeditor/plugins/smiley/dialogs/smiley.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/dialogs/specialchar.js b/htdocs/includes/ckeditor/plugins/specialchar/dialogs/specialchar.js index ac19d18554a..f61730eed02 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/dialogs/specialchar.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/dialogs/specialchar.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/cs.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/cs.js index 9617ea486f5..a1d0acb86c3 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/cs.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/cs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/cy.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/cy.js index 8dbafae83a4..ad68e49287f 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/cy.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/cy.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/de.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/de.js index ee03cb89f3f..99d308a1d8a 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/de.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/de.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/el.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/el.js index 4e9df1e793b..55ac1977fd4 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/el.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/el.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/en.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/en.js index 575001fb626..78ad897a758 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/en.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/eo.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/eo.js index e9cdb39e244..c448cd0f49c 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/eo.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/eo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/et.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/et.js index b0f71c4e507..10b62318994 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/et.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/et.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/fa.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/fa.js index 25c8792faaa..a918e473f70 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/fa.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/fa.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/fi.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/fi.js index f710025649a..d8d6f8eba03 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/fi.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/fi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/fr.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/fr.js index b1281132f96..4d69cd5dbef 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/fr.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/fr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/he.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/he.js index a2899fecdb9..ffb9fc0743b 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/he.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/he.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/hr.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/hr.js index bd5629f2c95..75ac5b50b6f 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/hr.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/hr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/it.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/it.js index 735a91f9592..1918e4cd5f3 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/it.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/it.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/nb.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/nb.js index 86910bff2fe..28a9290ec3a 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/nb.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/nb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/nl.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/nl.js index 56876fb3a69..1f9b0470463 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/nl.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/nl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/no.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/no.js index 2ced8875b22..4a54b161414 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/no.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/no.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/pt-br.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/pt-br.js index 119f3971d11..b7560a9e4dd 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/pt-br.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/pt-br.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/tr.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/tr.js index 83842413760..1c0822373a1 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/tr.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/tr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/ug.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/ug.js index f42a167c372..c4fe1027e41 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/ug.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/ug.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/specialchar/lang/zh-cn.js b/htdocs/includes/ckeditor/plugins/specialchar/lang/zh-cn.js index 3848cbfc99e..ad7ceab105e 100644 --- a/htdocs/includes/ckeditor/plugins/specialchar/lang/zh-cn.js +++ b/htdocs/includes/ckeditor/plugins/specialchar/lang/zh-cn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/styles/styles/default.js b/htdocs/includes/ckeditor/plugins/styles/styles/default.js index 6aa58f30815..8bcfa355cfa 100644 --- a/htdocs/includes/ckeditor/plugins/styles/styles/default.js +++ b/htdocs/includes/ckeditor/plugins/styles/styles/default.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/stylesheetparser/plugin.js b/htdocs/includes/ckeditor/plugins/stylesheetparser/plugin.js index e773bf6ea7e..92723cfb5f6 100755 --- a/htdocs/includes/ckeditor/plugins/stylesheetparser/plugin.js +++ b/htdocs/includes/ckeditor/plugins/stylesheetparser/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/table/dialogs/table.js b/htdocs/includes/ckeditor/plugins/table/dialogs/table.js index 6c48c20388c..e2169b5d424 100644 --- a/htdocs/includes/ckeditor/plugins/table/dialogs/table.js +++ b/htdocs/includes/ckeditor/plugins/table/dialogs/table.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/tableresize/plugin.js b/htdocs/includes/ckeditor/plugins/tableresize/plugin.js index a787b46937c..1a3cceff9ad 100644 --- a/htdocs/includes/ckeditor/plugins/tableresize/plugin.js +++ b/htdocs/includes/ckeditor/plugins/tableresize/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/tabletools/dialogs/tableCell.js b/htdocs/includes/ckeditor/plugins/tabletools/dialogs/tableCell.js index 7ea200450aa..1a4d63fdd09 100644 --- a/htdocs/includes/ckeditor/plugins/tabletools/dialogs/tableCell.js +++ b/htdocs/includes/ckeditor/plugins/tabletools/dialogs/tableCell.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/templates/dialogs/templates.js b/htdocs/includes/ckeditor/plugins/templates/dialogs/templates.js index 6e761e045f2..c5b1cd0372c 100644 --- a/htdocs/includes/ckeditor/plugins/templates/dialogs/templates.js +++ b/htdocs/includes/ckeditor/plugins/templates/dialogs/templates.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/templates/templates/default.js b/htdocs/includes/ckeditor/plugins/templates/templates/default.js index f1bb5315ada..580861c85a5 100644 --- a/htdocs/includes/ckeditor/plugins/templates/templates/default.js +++ b/htdocs/includes/ckeditor/plugins/templates/templates/default.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/dialogs/uicolor.js b/htdocs/includes/ckeditor/plugins/uicolor/dialogs/uicolor.js index aad14fb8519..bbe081858f8 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/dialogs/uicolor.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/dialogs/uicolor.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/bg.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/bg.js index 104d66403b4..9776a475610 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/bg.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/bg.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/cs.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/cs.js index 6e680753a99..75abc563561 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/cs.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/cs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/cy.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/cy.js index c7ede5af088..bc51c3eb284 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/cy.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/cy.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/da.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/da.js index eb3832cfeb4..a24f64bc6f5 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/da.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/da.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/de.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/de.js index 0cd76975def..1bd161ff3e3 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/de.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/de.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/el.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/el.js index b3ed514faa3..3ba69f86014 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/el.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/el.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/en.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/en.js index 604123a30b3..83135b65c36 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/en.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/eo.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/eo.js index 4651525bbd6..378c8fd5a21 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/eo.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/eo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/et.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/et.js index dcbf18f91bd..22413821aef 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/et.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/et.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/fa.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/fa.js index 764ef4a1164..a6f3eb0998d 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/fa.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/fa.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/fi.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/fi.js index db2caeed361..db7927a813f 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/fi.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/fi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/fr.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/fr.js index bccd2a26a0b..7ca58a45e51 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/fr.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/fr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/he.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/he.js index acfc3449da4..ec00902f59c 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/he.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/he.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/hr.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/hr.js index 84c87a30620..b61b92e256e 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/hr.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/hr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/it.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/it.js index 567a301a539..207b19c41a5 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/it.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/it.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/mk.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/mk.js index d8eec0728f2..18b78ef1370 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/mk.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/mk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/nb.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/nb.js index 2fd70024cc5..b376c739348 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/nb.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/nb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/nl.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/nl.js index bd9b7e986b4..b603e4f7cbd 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/nl.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/nl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/no.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/no.js index 09b2140659f..ad83283aedf 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/no.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/no.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/pl.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/pl.js index 4620b9c7966..f562e35edbf 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/pl.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/pl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/pt-br.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/pt-br.js index e1a5689f57d..88c5a9a8e48 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/pt-br.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/pt-br.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/tr.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/tr.js index 2ee697c066f..a7606134241 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/tr.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/tr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/ug.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/ug.js index e1652ff5788..66638cffb42 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/ug.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/ug.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/uk.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/uk.js index a6ba80fbf99..b6ccc27c4ac 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/uk.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/uk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/vi.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/vi.js index eff2da576ca..69686a50d45 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/vi.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/vi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/lang/zh-cn.js b/htdocs/includes/ckeditor/plugins/uicolor/lang/zh-cn.js index 1ab773a7a10..54a74d864a8 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/lang/zh-cn.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/lang/zh-cn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/plugin.js b/htdocs/includes/ckeditor/plugins/uicolor/plugin.js index 9dc67dceb35..727b572e189 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/plugin.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/uicolor/yui/yui.js b/htdocs/includes/ckeditor/plugins/uicolor/yui/yui.js index 86f5484f48f..9bd1a7a3898 100644 --- a/htdocs/includes/ckeditor/plugins/uicolor/yui/yui.js +++ b/htdocs/includes/ckeditor/plugins/uicolor/yui/yui.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/wsc/dialogs/wsc.js b/htdocs/includes/ckeditor/plugins/wsc/dialogs/wsc.js index 8ca567b91e8..4e06a0ea323 100644 --- a/htdocs/includes/ckeditor/plugins/wsc/dialogs/wsc.js +++ b/htdocs/includes/ckeditor/plugins/wsc/dialogs/wsc.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/plugins/xml/plugin.js b/htdocs/includes/ckeditor/plugins/xml/plugin.js index d1dc6a2090f..bad2b0a0d11 100644 --- a/htdocs/includes/ckeditor/plugins/xml/plugin.js +++ b/htdocs/includes/ckeditor/plugins/xml/plugin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/skins/kama/skin.js b/htdocs/includes/ckeditor/skins/kama/skin.js index b67509414dd..abf8a55800d 100644 --- a/htdocs/includes/ckeditor/skins/kama/skin.js +++ b/htdocs/includes/ckeditor/skins/kama/skin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/skins/office2003/skin.js b/htdocs/includes/ckeditor/skins/office2003/skin.js index 89a944d089e..bfb2af78e56 100644 --- a/htdocs/includes/ckeditor/skins/office2003/skin.js +++ b/htdocs/includes/ckeditor/skins/office2003/skin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/skins/v2/skin.js b/htdocs/includes/ckeditor/skins/v2/skin.js index 9421e2f4649..0da22ad8c7b 100644 --- a/htdocs/includes/ckeditor/skins/v2/skin.js +++ b/htdocs/includes/ckeditor/skins/v2/skin.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/htdocs/includes/ckeditor/themes/default/theme.js b/htdocs/includes/ckeditor/themes/default/theme.js index e508b4caafc..f5dc6c87d41 100644 --- a/htdocs/includes/ckeditor/themes/default/theme.js +++ b/htdocs/includes/ckeditor/themes/default/theme.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ From 72576a26ce54a3fbf8223056587c5b9b419adb2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= Date: Fri, 1 Mar 2013 16:55:07 +0100 Subject: [PATCH 14/57] =?UTF-8?q?Added=20UTF-8=20BOM=C2=A0detection=20and?= =?UTF-8?q?=20removal=20maintenance=20scripts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/findutf8bom.sh | 10 ++++++++++ dev/findutf8bomincludes.sh | 10 ++++++++++ dev/removeutf8bom.sh | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100755 dev/findutf8bom.sh create mode 100755 dev/findutf8bomincludes.sh create mode 100755 dev/removeutf8bom.sh diff --git a/dev/findutf8bom.sh b/dev/findutf8bom.sh new file mode 100755 index 00000000000..b7e290fec84 --- /dev/null +++ b/dev/findutf8bom.sh @@ -0,0 +1,10 @@ +#!/bin/sh +# +# Checks if files contains UTF-8 BOM +# in dolibarr source tree excluding +# git repository, custom modules and incuded libraries +# +# Raphaël Doursenaud - rdoursenaud@gpcsolutions.fr +grep -rlI \ +--exclude-dir='.git' --exclude-dir='includes' --exclude-dir='custom' \ +$'\xEF\xBB\xBF' . diff --git a/dev/findutf8bomincludes.sh b/dev/findutf8bomincludes.sh new file mode 100755 index 00000000000..4a9458654d2 --- /dev/null +++ b/dev/findutf8bomincludes.sh @@ -0,0 +1,10 @@ +#!/bin/sh +# +# Checks if files contains UTF-8 BOM +# in dolibarr includes tree excluding +# git repository +# +# Raphaël Doursenaud - rdoursenaud@gpcsolutions.fr +grep -rlI \ +--exclude-dir='.git' \ +$'\xEF\xBB\xBF' htdocs/includes diff --git a/dev/removeutf8bom.sh b/dev/removeutf8bom.sh new file mode 100755 index 00000000000..83ae6e68671 --- /dev/null +++ b/dev/removeutf8bom.sh @@ -0,0 +1,10 @@ +#!/bin/sh +# +# Removes UTF-8 BOM from a file list on STDIN +# Use by piping the output of a findutf8bom script +# +# Raphaël Doursenaud - rdoursenaud@gpcsolutions.fr +while read f; do + echo "Fixing $f" + sed -i '1s/^\xEF\xBB\xBF//' $f +done From 562ea22304bdea20e78261a0290ddd67bb353b1b Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 1 Mar 2013 18:10:19 +0100 Subject: [PATCH 15/57] Qual: Better error management --- htdocs/admin/agenda_extsites.php | 59 +++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 20 deletions(-) diff --git a/htdocs/admin/agenda_extsites.php b/htdocs/admin/agenda_extsites.php index 2427b7941f7..52a77de8eae 100644 --- a/htdocs/admin/agenda_extsites.php +++ b/htdocs/admin/agenda_extsites.php @@ -57,30 +57,44 @@ if ($actionsave) if ($disableext) $disableext=0; else $disableext=1; $res=dolibarr_set_const($db,'AGENDA_DISABLE_EXT',$disableext,'chaine',0); - $i=1; + $i=1; $errorsaved=0; $error=0; // Save agendas while ($i <= $MAXAGENDA) { - $color=trim(GETPOST('agenda_ext_color'.$i,'alpha')); - if ($color=='-1') $color=''; - + $name=trim(GETPOST('agenda_ext_name'.$i),'alpha'); + $src=trim(GETPOST('agenda_ext_src'.$i,'alpha')); + $color=trim(GETPOST('agenda_ext_color'.$i,'alpha')); + if ($color=='-1') $color=''; + + if (! empty($src) && ! preg_match('/^(http\s*|ftp\s*):/', $src)) + { + setEventMessage($langs->trans("ErrorParamMustBeAnUrl"),'errors'); + $error++; + $errorsaved++; + break; + } + //print 'color='.$color; - $res=dolibarr_set_const($db,'AGENDA_EXT_NAME'.$i,trim(GETPOST('agenda_ext_name'.$i),'alpha'),'chaine',0); + $res=dolibarr_set_const($db,'AGENDA_EXT_NAME'.$i,$name,'chaine',0); if (! $res > 0) $error++; - $res=dolibarr_set_const($db,'AGENDA_EXT_SRC'.$i,trim(GETPOST('agenda_ext_src'.$i,'alpha')),'chaine',0); + $res=dolibarr_set_const($db,'AGENDA_EXT_SRC'.$i,$src,'chaine',0); if (! $res > 0) $error++; $res=dolibarr_set_const($db,'AGENDA_EXT_COLOR'.$i,$color,'chaine',0); if (! $res > 0) $error++; $i++; } + // Save nb of agenda - $res=dolibarr_set_const($db,'AGENDA_EXT_NB',trim(GETPOST('AGENDA_EXT_NB','alpha')),'chaine',0); - if (! $res > 0) $error++; - if (empty($conf->global->AGENDA_EXT_NB)) $conf->global->AGENDA_EXT_NB=5; - $MAXAGENDA=empty($conf->global->AGENDA_EXT_NB)?5:$conf->global->AGENDA_EXT_NB; - + if (! $error) + { + $res=dolibarr_set_const($db,'AGENDA_EXT_NB',trim(GETPOST('AGENDA_EXT_NB','alpha')),'chaine',0); + if (! $res > 0) $error++; + if (empty($conf->global->AGENDA_EXT_NB)) $conf->global->AGENDA_EXT_NB=5; + $MAXAGENDA=empty($conf->global->AGENDA_EXT_NB)?5:$conf->global->AGENDA_EXT_NB; + } + if (! $error) { $db->commit(); @@ -89,7 +103,7 @@ if ($actionsave) else { $db->rollback(); - $mesg = "".$langs->trans("Error").""; + if (empty($errorsaved)) $mesg = "".$langs->trans("Error").""; } } @@ -156,18 +170,22 @@ $var=true; while ($i <= $MAXAGENDA) { $key=$i; - $var=!$var; - print ""; - print ''.$langs->trans("AgendaExtNb",$key).""; $name='AGENDA_EXT_NAME'.$key; $src='AGENDA_EXT_SRC'.$key; $color='AGENDA_EXT_COLOR'.$key; - print "global->$name . "\" size=\"28\">"; - print "global->$src . "\" size=\"60\">"; + + $var=!$var; + print ""; + // Nb + print ''.$langs->trans("AgendaExtNb",$key).""; + // Name + print ''; + // URL + print ''; + // Color (Possible colors are limited by Google) print ''; - // Possible colors are limited by Google //print $formadmin->select_colors($conf->global->$color, "google_agenda_color".$key, $colorlist); - print $formother->select_color($conf->global->$color, "agenda_ext_color".$key, 'extsitesconfig', 1, ''); + print $formother->select_color((GETPOST("agenda_ext_color".$key)?GETPOST("agenda_ext_color".$key):$conf->global->$color), "agenda_ext_color".$key, 'extsitesconfig', 1, ''); print ''; print ""; $i++; @@ -187,7 +205,8 @@ dol_fiche_end(); dol_htmloutput_mesg($mesg); -$db->close(); llxFooter(); + +$db->close(); ?> \ No newline at end of file From 881b3bc9361f825de0328fa044b1ec76af54beac Mon Sep 17 00:00:00 2001 From: Maxime Kohlhaas Date: Fri, 1 Mar 2013 18:11:34 +0100 Subject: [PATCH 16/57] Bug fix on contact list due to name column renamed --- htdocs/contact/list.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/contact/list.php b/htdocs/contact/list.php index 950244c5b45..99c55c3fe65 100755 --- a/htdocs/contact/list.php +++ b/htdocs/contact/list.php @@ -58,7 +58,7 @@ $userid=GETPOST('userid','int'); $begin=GETPOST('begin'); if (! $sortorder) $sortorder="ASC"; -if (! $sortfield) $sortfield="p.name"; +if (! $sortfield) $sortfield="p.lastname"; if ($page < 0) { $page = 0; } $limit = $conf->liste_limit; $offset = $limit * $page; @@ -114,7 +114,7 @@ llxHeader('',$title,'EN:Module_Third_Parties|FR:Module_Tiers|ES:Módulo_Em $form=new Form($db); $sql = "SELECT s.rowid as socid, s.nom as name,"; -$sql.= " p.rowid as cidp, p.name as lastname, p.firstname, p.poste, p.email,"; +$sql.= " p.rowid as cidp, p.lastname as lastname, p.firstname, p.poste, p.email,"; $sql.= " p.phone, p.phone_mobile, p.fax, p.fk_pays, p.priv, p.tms,"; $sql.= " cp.code as country_code"; $sql.= " FROM ".MAIN_DB_PREFIX."socpeople as p"; @@ -144,7 +144,7 @@ else if ($search_lastname) // filtre sur le nom { - $sql .= " AND p.name LIKE '%".$db->escape($search_lastname)."%'"; + $sql .= " AND p.lastname LIKE '%".$db->escape($search_lastname)."%'"; } if ($search_firstname) // filtre sur le prenom { @@ -200,7 +200,7 @@ else if ($type == "p") // filtre sur type } if ($sall) { - $sql .= " AND (p.name LIKE '%".$db->escape($sall)."%' OR p.firstname LIKE '%".$db->escape($sall)."%' OR p.email LIKE '%".$db->escape($sall)."%')"; + $sql .= " AND (p.lastname LIKE '%".$db->escape($sall)."%' OR p.firstname LIKE '%".$db->escape($sall)."%' OR p.email LIKE '%".$db->escape($sall)."%')"; } if (! empty($socid)) { @@ -256,7 +256,7 @@ if ($result) // Ligne des titres print ''; - print_liste_field_titre($langs->trans("Lastname"),$_SERVER["PHP_SELF"],"p.name", $begin, $param, '', $sortfield,$sortorder); + print_liste_field_titre($langs->trans("Lastname"),$_SERVER["PHP_SELF"],"p.lastname", $begin, $param, '', $sortfield,$sortorder); print_liste_field_titre($langs->trans("Firstname"),$_SERVER["PHP_SELF"],"p.firstname", $begin, $param, '', $sortfield,$sortorder); print_liste_field_titre($langs->trans("PostOrFunction"),$_SERVER["PHP_SELF"],"p.poste", $begin, $param, '', $sortfield,$sortorder); if (empty($conf->global->SOCIETE_DISABLE_CONTACTS)) print_liste_field_titre($langs->trans("Company"),$_SERVER["PHP_SELF"],"s.nom", $begin, $param, '', $sortfield,$sortorder); From 803bee076c638e42a8d27883d526836f51bb0159 Mon Sep 17 00:00:00 2001 From: Maxime Kohlhaas Date: Fri, 1 Mar 2013 18:20:42 +0100 Subject: [PATCH 17/57] Engish standardization correction + search by idprof1 possible --- htdocs/societe/soc.php | 2 +- htdocs/societe/societe.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/societe/soc.php b/htdocs/societe/soc.php index 1908e145b2e..b45bf5a8e59 100644 --- a/htdocs/societe/soc.php +++ b/htdocs/societe/soc.php @@ -1253,7 +1253,7 @@ else print ''; // Address - print ''.$langs->trans('Address').''; diff --git a/htdocs/societe/societe.php b/htdocs/societe/societe.php index 9147d550242..5792661dd5e 100644 --- a/htdocs/societe/societe.php +++ b/htdocs/societe/societe.php @@ -85,6 +85,7 @@ if ($mode == 'search') $sql.= " OR s.code_client LIKE '%".$db->escape($socname)."%'"; $sql.= " OR s.email LIKE '%".$db->escape($socname)."%'"; $sql.= " OR s.url LIKE '%".$db->escape($socname)."%'"; + $sql.= " OR s.siren LIKE '%".$db->escape($socname)."%'"; if (!empty($conf->barcode->enabled)) { From da878282007e8b5cefe4240c0879e5bc6a2a42d3 Mon Sep 17 00:00:00 2001 From: Maxime Kohlhaas Date: Fri, 1 Mar 2013 18:41:41 +0100 Subject: [PATCH 18/57] Fix bug # 740 : address copy --- htdocs/contact/fiche.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/contact/fiche.php b/htdocs/contact/fiche.php index 80277c904ad..ac8ab1d2e58 100644 --- a/htdocs/contact/fiche.php +++ b/htdocs/contact/fiche.php @@ -605,11 +605,11 @@ else }); $("#copyaddressfromsoc").click(function() { - $(\'textarea[name="address"]\').text("'.addslashes($objsoc->address).'"); - $(\'input[name="zipcode"]\').val("'.addslashes($objsoc->zip).'"); - $(\'input[name="town"]\').val("'.addslashes($objsoc->town).'"); - $(\'select[name="country_id"]\').val("'.addslashes($objsoc->country_id).'"); - $(\'select[name="state_id"]\').val("'.addslashes($objsoc->state_id).'"); + $(\'textarea[name="address"]\').text("'.dol_escape_js($objsoc->address).'"); + $(\'input[name="zipcode"]\').val("'.dol_escape_js($objsoc->zip).'"); + $(\'input[name="town"]\').val("'.dol_escape_js($objsoc->town).'"); + $(\'select[name="country_id"]\').val("'.dol_escape_js($objsoc->country_id).'"); + $(\'select[name="state_id"]\').val("'.dol_escape_js($objsoc->state_id).'"); }); })'."\n"; print ''."\n"; From 911c25c3fd4b66e6be4371ec44a0a8b0353992e5 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 1 Mar 2013 19:25:49 +0100 Subject: [PATCH 19/57] Qual: Better error management --- htdocs/comm/action/class/ical.class.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/htdocs/comm/action/class/ical.class.php b/htdocs/comm/action/class/ical.class.php index 3e79d7ada4c..4dc47cdc395 100644 --- a/htdocs/comm/action/class/ical.class.php +++ b/htdocs/comm/action/class/ical.class.php @@ -1,7 +1,7 @@ * Copyright (C) 2011 Juanjo Menent - * Copyright (C) 2012 Laurent Destailleur + * Copyright (C) 2013 Laurent Destailleur * Copyright (C) 2012 Regis Houssin * * This program is free software; you can redistribute it and/or modify @@ -55,9 +55,15 @@ class ICal function read_file($file) { $this->file = $file; - $file_text = join("", file($file)); //load file - $file_text = preg_replace("/[\r\n]{1,} ([:;])/","\\1",$file_text); - + $file_text=''; + + $tmparray=file($file); + if (is_array($tmparray)) + { + $file_text = join("", $tmparray); //load file + $file_text = preg_replace("/[\r\n]{1,} ([:;])/","\\1",$file_text); + } + return $file_text; // return all text } From e6afcd328c16d515180aef1d13f118cda647925c Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 1 Mar 2013 19:39:54 +0100 Subject: [PATCH 20/57] Look: Minor fix in CSS for IE. --- htdocs/theme/amarok/style.css.php | 2 ++ htdocs/theme/auguria/style.css.php | 1 + htdocs/theme/bureau2crea/style.css.php | 2 ++ htdocs/theme/cameleo/style.css.php | 2 +- htdocs/theme/eldy/style.css.php | 1 + 5 files changed, 7 insertions(+), 1 deletion(-) diff --git a/htdocs/theme/amarok/style.css.php b/htdocs/theme/amarok/style.css.php index db971ab0799..110c372cb3a 100755 --- a/htdocs/theme/amarok/style.css.php +++ b/htdocs/theme/amarok/style.css.php @@ -145,6 +145,8 @@ input.flat { input:disabled {background:#b6b6b6;} +input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } + textarea.flat { font-size:px; font-family:; diff --git a/htdocs/theme/auguria/style.css.php b/htdocs/theme/auguria/style.css.php index 745fa89d7d9..2b61bd0fb70 100644 --- a/htdocs/theme/auguria/style.css.php +++ b/htdocs/theme/auguria/style.css.php @@ -126,6 +126,7 @@ input:disabled { textarea:disabled { background:#ddd; } +input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } .button { font-family: ; border: 1px solid #ACBCBB; diff --git a/htdocs/theme/bureau2crea/style.css.php b/htdocs/theme/bureau2crea/style.css.php index 1a2cd4fdcff..eeb7eada5aa 100644 --- a/htdocs/theme/bureau2crea/style.css.php +++ b/htdocs/theme/bureau2crea/style.css.php @@ -154,6 +154,8 @@ input.button[type=submit] { display: inline; } +input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } + .button { font-family: ; border: 0px; diff --git a/htdocs/theme/cameleo/style.css.php b/htdocs/theme/cameleo/style.css.php index 2e2f03920c5..b669506b4e8 100644 --- a/htdocs/theme/cameleo/style.css.php +++ b/htdocs/theme/cameleo/style.css.php @@ -108,7 +108,7 @@ input:disabled { textarea:disabled { background:#ddd; } - +input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } input.button[type=submit] { background: #A51B00; -moz-border-radius:8px; diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index e0abb1e71fc..e42077100c5 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -246,6 +246,7 @@ input.removedfile { textarea:disabled { background:#ddd; } +input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } .button { font-family: ; background-image: url(); From 0cb5b3f50c9d6ccda1e9cf9ce80dc2f2140bb5f3 Mon Sep 17 00:00:00 2001 From: simnandez Date: Fri, 1 Mar 2013 20:32:49 +0100 Subject: [PATCH 21/57] Fix: Localtax2 for Spain must be based into buyer --- htdocs/core/lib/functions.lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 32615202cc1..300db957b16 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -2687,10 +2687,10 @@ function get_localtax($tva, $local, $thirdparty_buyer="", $thirdparty_seller="") dol_syslog("get_localtax tva=".$tva." local=".$local." thirdparty_buyer id=".(is_object($thirdparty_buyer)?$thirdparty_buyer->id:'')." thirdparty_seller id=".$thirdparty_seller->id); // Some test to guess with no need to make database access - if ($mysoc->country_code == 'ES') // For spain and localtaxes 1, tax is qualified if buyer use local taxe + if ($mysoc->country_code == 'ES') // For spain localtaxes 1 and 2, tax is qualified if buyer use local taxe { if ($local == 1 && ! $thirdparty_buyer->localtax1_assuj) return 0; - if ($local == 2 && ! $thirdparty_seller->localtax2_assuj) return 0; + if ($local == 2 && ! $thirdparty_buyer->localtax2_assuj) return 0; } else { From b2763bab15f971c03bd1ea50bf8b02f8800a74ea Mon Sep 17 00:00:00 2001 From: simnandez Date: Fri, 1 Mar 2013 20:38:08 +0100 Subject: [PATCH 22/57] Fix: Localtax2 for Spain must be based into buyer --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index d5b181f8990..57774b2ece4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,12 @@ English Dolibarr ChangeLog -------------------------------------------------------------- + +***** ChangeLog for 3.3.1 compared to 3.3 ***** +- Fix: Localtax2 for Spain must be based into buyer + + + ***** ChangeLog for 3.3 compared to 3.2.3 ***** For users: - New: Add holiday module, to declare and follow holidays of your employees. From b16b8f9ff3d64ed48787753bc3494fb77b296464 Mon Sep 17 00:00:00 2001 From: simnandez Date: Fri, 1 Mar 2013 22:13:38 +0100 Subject: [PATCH 23/57] Update ChangeLog for 3.3.1 --- ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 57774b2ece4..3e0961118f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ English Dolibarr ChangeLog ***** ChangeLog for 3.3.1 compared to 3.3 ***** + +- Fix: [ bug #733 ] Mass emailing tools do not support