From: vincent@cubedesigners.com Date: Wed, 5 Jun 2013 09:06:40 +0000 (+0000) Subject: (no commit message) X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=17c018c5622c8aa031a12a741e9c61887ae127b9;p=cubeextranet.git --- diff --git a/fluidbook/fonts/gill/gill.ttf b/fluidbook/fonts/gill/gill.ttf new file mode 100644 index 000000000..bb58254ba Binary files /dev/null and b/fluidbook/fonts/gill/gill.ttf differ diff --git a/fluidbook/icones/10/mobile/nav-friend.svg b/fluidbook/icones/10/mobile/nav-friend.svg new file mode 100644 index 000000000..366e105d7 --- /dev/null +++ b/fluidbook/icones/10/mobile/nav-friend.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/fluidbook/icones/10/mobile/nav-help.svg b/fluidbook/icones/10/mobile/nav-help.svg new file mode 100644 index 000000000..5b8d36cf9 --- /dev/null +++ b/fluidbook/icones/10/mobile/nav-help.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/fluidbook/icones/10/mobile/nav-print.svg b/fluidbook/icones/10/mobile/nav-print.svg new file mode 100644 index 000000000..f0438d935 --- /dev/null +++ b/fluidbook/icones/10/mobile/nav-print.svg @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/fluidbook/icones/10/mobile/nav-sommaire.svg b/fluidbook/icones/10/mobile/nav-sommaire.svg new file mode 100644 index 000000000..2655f2aa5 --- /dev/null +++ b/fluidbook/icones/10/mobile/nav-sommaire.svg @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/fluidbook/icones/10/nav-friend.png b/fluidbook/icones/10/nav-friend.png new file mode 100644 index 000000000..104cf74f9 Binary files /dev/null and b/fluidbook/icones/10/nav-friend.png differ diff --git a/fluidbook/icones/10/nav-help.png b/fluidbook/icones/10/nav-help.png new file mode 100644 index 000000000..ad9755cf3 Binary files /dev/null and b/fluidbook/icones/10/nav-help.png differ diff --git a/fluidbook/icones/10/nav-index.png b/fluidbook/icones/10/nav-index.png new file mode 100644 index 000000000..f2c04630e Binary files /dev/null and b/fluidbook/icones/10/nav-index.png differ diff --git a/fluidbook/icones/10/nav-normal.png b/fluidbook/icones/10/nav-normal.png new file mode 100644 index 000000000..87ef889cd Binary files /dev/null and b/fluidbook/icones/10/nav-normal.png differ diff --git a/fluidbook/icones/10/nav-print.png b/fluidbook/icones/10/nav-print.png new file mode 100644 index 000000000..3a3ec7b52 Binary files /dev/null and b/fluidbook/icones/10/nav-print.png differ diff --git a/fluidbook/icones/10/nav-save.png b/fluidbook/icones/10/nav-save.png new file mode 100644 index 000000000..e9761c1a1 Binary files /dev/null and b/fluidbook/icones/10/nav-save.png differ diff --git a/inc/ws/DAO/class.ws.dao.book.php b/inc/ws/DAO/class.ws.dao.book.php index 8dbbec798..b18a74af7 100644 --- a/inc/ws/DAO/class.ws.dao.book.php +++ b/inc/ws/DAO/class.ws.dao.book.php @@ -1323,6 +1323,11 @@ class wsDAOBook extends commonDAO { $flex->addFont(FONT_PATH . '/vagrounded/VAGRoundedStd-Light.otf', 'GeneralFont', $lang->charset); $flex->addFont(FONT_PATH . '/FluidbookCredits.ttf', 'CreditsFont', 'ASCII'); $flexLight->addFont(FONT_PATH . '/vagrounded/VAGRoundedStd-Bold.otf', 'LoaderFont', 'Numerals'); + }else if($theme->parametres->fontKit=='gill'){ + $flex->addFont(FONT_PATH . '/gill/gill.ttf', 'BoldFont', $lang->charset); + $flex->addFont(FONT_PATH . '/gill/gill.ttf', 'GeneralFont', $lang->charset); + $flex->addFont(FONT_PATH . '/FluidbookCredits.ttf', 'CreditsFont', 'ASCII'); + $flexLight->addFont(FONT_PATH . '/gill/gill.ttf', 'LoaderFont', 'Numerals'); } $flexLight->addVariable('checksum', $hash, false, true, 'String'); diff --git a/inc/ws/Metier/class.ws.theme.parametres.php b/inc/ws/Metier/class.ws.theme.parametres.php index 2eb782e06..913b15b36 100644 --- a/inc/ws/Metier/class.ws.theme.parametres.php +++ b/inc/ws/Metier/class.ws.theme.parametres.php @@ -82,7 +82,8 @@ class wsThemeParametres extends wsParametres { $this->fields['fontKit'] = array('type' => 'combo', 'default' => 'auto', 'editable' => true, 'label' => __('Police de caractères'), 'datas' => array(__('Automatique') => 'auto', - 'VAG Rounded' => 'vagrounded')); + 'VAG Rounded' => 'vagrounded', + 'Gill'=>'gill')); $this->forms['icones'] = array('label' => __('Personnalisation des icônes'), 'fieldsnames' => array('iconSet', 'iconShadeColor', '|', 'iconsHMargin', '|', 'colorizeIcons', 'couleurI', '|', 'fontKit'));