Index: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.hooks.php |
— | — | @@ -0,0 +1,48 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Hooks for WebFonts extension |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +// WebFonts hooks |
| 11 | +class WebFontsHooks { |
| 12 | + |
| 13 | + /** |
| 14 | + * BeforePageDisplay hook handler. |
| 15 | + */ |
| 16 | + public static function addModules( $out, $skin ) { |
| 17 | + |
| 18 | + if ( $out->getUser()->getOption( 'webfontsEnable' ) ) { |
| 19 | + $out->addModules( 'ext.webfonts.init' ); |
| 20 | + } |
| 21 | + |
| 22 | + return true; |
| 23 | + } |
| 24 | + |
| 25 | + /** |
| 26 | + * GetPreferences hook handler. |
| 27 | + */ |
| 28 | + public static function addPreference( $user, &$preferences ) { |
| 29 | + // A checkbox in preferences to enable WebFonts |
| 30 | + $preferences['webfontsEnable'] = array( |
| 31 | + 'type' => 'toggle', |
| 32 | + 'label-message' => 'webfonts-enable-preference', // a system message |
| 33 | + 'section' => 'rendering/advancedrendering', // under 'Advanced options' section of 'Editing' tab |
| 34 | + 'default' => $user->getOption( 'webfontsEnable' ) |
| 35 | + ); |
| 36 | + |
| 37 | + return true; |
| 38 | + } |
| 39 | + |
| 40 | + /** |
| 41 | + * UserGetDefaultOptions hook handler. |
| 42 | + */ |
| 43 | + public static function addDefaultOptions( &$defaultOptions ) { |
| 44 | + global $wgWebFontsEnabledByDefault; |
| 45 | + // By default, the preference page option to enable webfonts is set to wgWebFontsEnabledByDefault value. |
| 46 | + $defaultOptions['webfontsEnable'] = $wgWebFontsEnabledByDefault; |
| 47 | + return true; |
| 48 | + } |
| 49 | +} |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.hooks.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 50 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.woff |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 51 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan_license.txt |
— | — | @@ -0,0 +1,16 @@ |
| 2 | +Open Type rules and Nepali glyphsets developed at Madan Puraskar Pustakalaya and released under GPL. |
| 3 | + |
| 4 | +Contacts: |
| 5 | +Madan Puraskar Pustakalaya |
| 6 | +Yalamaya Kendra, Patan, NEPAL |
| 7 | +GPO Box. 42 |
| 8 | +www.mpp.org.np |
| 9 | +info@mpp.org.np |
| 10 | + |
| 11 | +Font Developers: |
| 12 | +Gaurav Shrestha | gaurav@mpp.org.np |
| 13 | +Anjan Ale | anjan@mpp.org.np |
| 14 | + |
| 15 | + |
| 16 | +Copyright (c) 2007 by Madan Puraskar Pustakalaya. All rights reserved. |
| 17 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan_license.txt |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 18 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 19 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.eot |
___________________________________________________________________ |
Added: svn:mime-type |
3 | 20 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.eot |
___________________________________________________________________ |
Added: svn:mime-type |
4 | 21 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.woff |
___________________________________________________________________ |
Added: svn:mime-type |
5 | 22 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
6 | 23 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
7 | 24 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.eot |
___________________________________________________________________ |
Added: svn:mime-type |
8 | 25 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.woff |
___________________________________________________________________ |
Added: svn:mime-type |
9 | 26 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.woff |
___________________________________________________________________ |
Added: svn:mime-type |
10 | 27 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.eot |
___________________________________________________________________ |
Added: svn:mime-type |
11 | 28 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.eot |
___________________________________________________________________ |
Added: svn:mime-type |
12 | 29 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
13 | 30 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
14 | 31 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.woff |
___________________________________________________________________ |
Added: svn:mime-type |
15 | 32 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
16 | 33 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
17 | 34 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.woff |
___________________________________________________________________ |
Added: svn:mime-type |
18 | 35 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.woff |
___________________________________________________________________ |
Added: svn:mime-type |
19 | 36 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.eot |
___________________________________________________________________ |
Added: svn:mime-type |
20 | 37 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.eot |
___________________________________________________________________ |
Added: svn:mime-type |
21 | 38 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
22 | 39 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.eot |
___________________________________________________________________ |
Added: svn:mime-type |
23 | 40 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.svg |
___________________________________________________________________ |
Added: svn:mime-type |
24 | 41 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.woff |
___________________________________________________________________ |
Added: svn:mime-type |
25 | 42 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.eot |
___________________________________________________________________ |
Added: svn:mime-type |
26 | 43 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
27 | 44 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-book.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-book.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
28 | 45 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.eot |
___________________________________________________________________ |
Added: svn:mime-type |
29 | 46 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.svg |
___________________________________________________________________ |
Added: svn:mime-type |
30 | 47 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.woff |
___________________________________________________________________ |
Added: svn:mime-type |
31 | 48 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
32 | 49 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Parabaik_UTN11-3.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Parabaik_UTN11-3.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
33 | 50 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.svg |
___________________________________________________________________ |
Added: svn:mime-type |
34 | 51 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
35 | 52 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
36 | 53 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.svg |
___________________________________________________________________ |
Added: svn:mime-type |
37 | 54 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.woff |
___________________________________________________________________ |
Added: svn:mime-type |
38 | 55 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.woff |
___________________________________________________________________ |
Added: svn:mime-type |
39 | 56 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.eot |
___________________________________________________________________ |
Added: svn:mime-type |
40 | 57 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.eot |
___________________________________________________________________ |
Added: svn:mime-type |
41 | 58 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
42 | 59 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.woff |
___________________________________________________________________ |
Added: svn:mime-type |
43 | 60 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
44 | 61 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.TTF |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.TTF |
___________________________________________________________________ |
Added: svn:mime-type |
45 | 62 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.woff |
___________________________________________________________________ |
Added: svn:mime-type |
46 | 63 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.eot |
___________________________________________________________________ |
Added: svn:mime-type |
47 | 64 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.woff |
___________________________________________________________________ |
Added: svn:mime-type |
48 | 65 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.eot |
___________________________________________________________________ |
Added: svn:mime-type |
49 | 66 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
50 | 67 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.eot |
___________________________________________________________________ |
Added: svn:mime-type |
51 | 68 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.woff |
___________________________________________________________________ |
Added: svn:mime-type |
52 | 69 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
53 | 70 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.woff |
___________________________________________________________________ |
Added: svn:mime-type |
54 | 71 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.woff |
___________________________________________________________________ |
Added: svn:mime-type |
55 | 72 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.svg |
___________________________________________________________________ |
Added: svn:mime-type |
56 | 73 | + image/svg+xml |
Added: svn:eol-style |
57 | 74 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.woff |
___________________________________________________________________ |
Added: svn:mime-type |
58 | 75 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.woff |
___________________________________________________________________ |
Added: svn:mime-type |
59 | 76 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.eot |
___________________________________________________________________ |
Added: svn:mime-type |
60 | 77 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.eot |
___________________________________________________________________ |
Added: svn:mime-type |
61 | 78 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.eot |
___________________________________________________________________ |
Added: svn:mime-type |
62 | 79 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
63 | 80 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
64 | 81 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
65 | 82 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.svg |
___________________________________________________________________ |
Added: svn:mime-type |
66 | 83 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.woff |
___________________________________________________________________ |
Added: svn:mime-type |
67 | 84 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
68 | 85 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmetalchrieng.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmetalchrieng.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
69 | 86 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.svg |
___________________________________________________________________ |
Added: svn:mime-type |
70 | 87 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
71 | 88 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.woff |
___________________________________________________________________ |
Added: svn:mime-type |
72 | 89 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
73 | 90 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.svg |
___________________________________________________________________ |
Added: svn:mime-type |
74 | 91 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.eot |
___________________________________________________________________ |
Added: svn:mime-type |
75 | 92 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.svg |
___________________________________________________________________ |
Added: svn:mime-type |
76 | 93 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.woff |
___________________________________________________________________ |
Added: svn:mime-type |
77 | 94 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.eot |
___________________________________________________________________ |
Added: svn:mime-type |
78 | 95 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
79 | 96 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.eot |
___________________________________________________________________ |
Added: svn:mime-type |
80 | 97 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.svg |
___________________________________________________________________ |
Added: svn:mime-type |
81 | 98 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
82 | 99 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
83 | 100 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.woff |
___________________________________________________________________ |
Added: svn:mime-type |
84 | 101 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.svg |
___________________________________________________________________ |
Added: svn:mime-type |
85 | 102 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.svg |
___________________________________________________________________ |
Added: svn:mime-type |
86 | 103 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
87 | 104 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.woff |
___________________________________________________________________ |
Added: svn:mime-type |
88 | 105 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.woff |
___________________________________________________________________ |
Added: svn:mime-type |
89 | 106 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.svg |
___________________________________________________________________ |
Added: svn:mime-type |
90 | 107 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.eot |
___________________________________________________________________ |
Added: svn:mime-type |
91 | 108 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.eot |
___________________________________________________________________ |
Added: svn:mime-type |
92 | 109 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.eot |
___________________________________________________________________ |
Added: svn:mime-type |
93 | 110 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.eot |
___________________________________________________________________ |
Added: svn:mime-type |
94 | 111 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.eot |
___________________________________________________________________ |
Added: svn:mime-type |
95 | 112 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.eot |
___________________________________________________________________ |
Added: svn:mime-type |
96 | 113 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.eot |
___________________________________________________________________ |
Added: svn:mime-type |
97 | 114 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.woff |
___________________________________________________________________ |
Added: svn:mime-type |
98 | 115 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
99 | 116 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.svg |
___________________________________________________________________ |
Added: svn:mime-type |
100 | 117 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
101 | 118 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.woff |
___________________________________________________________________ |
Added: svn:mime-type |
102 | 119 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.svg |
___________________________________________________________________ |
Added: svn:mime-type |
103 | 120 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
104 | 121 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.woff |
___________________________________________________________________ |
Added: svn:mime-type |
105 | 122 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.woff |
___________________________________________________________________ |
Added: svn:mime-type |
106 | 123 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.svg |
___________________________________________________________________ |
Added: svn:mime-type |
107 | 124 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.woff |
___________________________________________________________________ |
Added: svn:mime-type |
108 | 125 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
109 | 126 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
110 | 127 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.woff |
___________________________________________________________________ |
Added: svn:mime-type |
111 | 128 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSansLicense.txt |
— | — | @@ -0,0 +1,59 @@ |
| 2 | +======================================================================= |
| 3 | +THIS PACKAGE IS FREE SOFTWARE BUT IS NOT GPL. PLEASE READ THE FOLLOWING |
| 4 | +LICENSE FOR DETAILS OF YOUR RIGHTS: |
| 5 | +======================================================================= |
| 6 | + |
| 7 | +Arabic Script Glyphs, OpenType Layout and TrueType Instructions (c) 2007 by Iranian National Initiative for Free and Open Source Software (www.foss.ir) See license details in section one. |
| 8 | + |
| 9 | +Latin Glyph Outlines Copyright (c) 2003 by Bitstream, Inc. See license details in section two. |
| 10 | + |
| 11 | + |
| 12 | +----------------------------------------------------------------------- |
| 13 | + |
| 14 | + |
| 15 | +SECTION ONE - Iranian National Initiative for Free and Open Source Software Font License |
| 16 | + |
| 17 | + |
| 18 | +Copyright (c) 2007 by Iranian National Initiative for Free and Open Source Software, |
| 19 | +All Rights Reserved. |
| 20 | + |
| 21 | +"Iranian Sans" is a service mark of Iranian National Initiative for Free and Open Source Software |
| 22 | + |
| 23 | +Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: |
| 24 | + |
| 25 | +The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. |
| 26 | + |
| 27 | +The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word "Iranian". |
| 28 | + |
| 29 | +This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed either under the "Iranian" names or claimed to be endorsed or associated with Iranian National Initiative for Free and Open Source Software. |
| 30 | + |
| 31 | +The Font Software may be sold as part of a larger software package provided that: a) No copy of one or more of the Font Software typefaces may be sold by itself or as part of a package that only consists of a collection of fonts and associated supplementary documentation and utilities. b) No price is charged or associated with any of the Font Software typefaces themselves. So, the price of the package with or without the Font Software typefaces should be the same. |
| 32 | + |
| 33 | +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL "IRANIAN NATIONAL INITIATIVE FOR FREE AND OPEN SOURCE SOFTWARE" BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. |
| 34 | + |
| 35 | +Except as contained in this notice, the names of "Iranian", "Iranian Sans", "Iranian National Initiative for Free and Open Source Software" or "www.foss.ir" shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Iranian National Initiative for Free and Open Source Software. For further information, contact: fonts (at) foss (dot) ir. |
| 36 | + |
| 37 | + |
| 38 | +----------------------------------------------------------------------- |
| 39 | + |
| 40 | + |
| 41 | +SECTION TWO - Bitstream, Inc. License |
| 42 | + |
| 43 | + |
| 44 | +Copyright (c) 2003 by Bitstream, Inc. |
| 45 | +All Rights Reserved. |
| 46 | +Bitstream Vera is a trademark of Bitstream, Inc. |
| 47 | + |
| 48 | +Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: |
| 49 | + |
| 50 | +The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. |
| 51 | + |
| 52 | +The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". |
| 53 | + |
| 54 | +This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. |
| 55 | + |
| 56 | +The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. |
| 57 | + |
| 58 | +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. |
| 59 | + |
| 60 | +Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSansLicense.txt |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 61 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.eot |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 62 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
3 | 63 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.eot |
___________________________________________________________________ |
Added: svn:mime-type |
4 | 64 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.woff |
___________________________________________________________________ |
Added: svn:mime-type |
5 | 65 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
6 | 66 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.eot |
___________________________________________________________________ |
Added: svn:mime-type |
7 | 67 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.woff |
___________________________________________________________________ |
Added: svn:mime-type |
8 | 68 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.woff |
___________________________________________________________________ |
Added: svn:mime-type |
9 | 69 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.eot |
___________________________________________________________________ |
Added: svn:mime-type |
10 | 70 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
11 | 71 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana.woff |
___________________________________________________________________ |
Added: svn:mime-type |
12 | 72 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.eot |
___________________________________________________________________ |
Added: svn:mime-type |
13 | 73 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
14 | 74 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.woff |
___________________________________________________________________ |
Added: svn:mime-type |
15 | 75 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana.eot |
___________________________________________________________________ |
Added: svn:mime-type |
16 | 76 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
17 | 77 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.woff |
___________________________________________________________________ |
Added: svn:mime-type |
18 | 78 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.woff |
___________________________________________________________________ |
Added: svn:mime-type |
19 | 79 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.eot |
___________________________________________________________________ |
Added: svn:mime-type |
20 | 80 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.eot |
___________________________________________________________________ |
Added: svn:mime-type |
21 | 81 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
22 | 82 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
23 | 83 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
24 | 84 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.woff |
___________________________________________________________________ |
Added: svn:mime-type |
25 | 85 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.eot |
___________________________________________________________________ |
Added: svn:mime-type |
26 | 86 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.eot |
___________________________________________________________________ |
Added: svn:mime-type |
27 | 87 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.eot |
___________________________________________________________________ |
Added: svn:mime-type |
28 | 88 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
29 | 89 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
30 | 90 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.woff |
___________________________________________________________________ |
Added: svn:mime-type |
31 | 91 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.woff |
___________________________________________________________________ |
Added: svn:mime-type |
32 | 92 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.woff |
___________________________________________________________________ |
Added: svn:mime-type |
33 | 93 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.eot |
___________________________________________________________________ |
Added: svn:mime-type |
34 | 94 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.eot |
___________________________________________________________________ |
Added: svn:mime-type |
35 | 95 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
36 | 96 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.woff |
___________________________________________________________________ |
Added: svn:mime-type |
37 | 97 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
38 | 98 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.eot |
___________________________________________________________________ |
Added: svn:mime-type |
39 | 99 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.eot |
___________________________________________________________________ |
Added: svn:mime-type |
40 | 100 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
41 | 101 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
42 | 102 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.woff |
___________________________________________________________________ |
Added: svn:mime-type |
43 | 103 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
44 | 104 | + application/octet-stream |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.woff |
___________________________________________________________________ |
Added: svn:mime-type |
45 | 105 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.woff |
___________________________________________________________________ |
Added: svn:mime-type |
46 | 106 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.eot |
___________________________________________________________________ |
Added: svn:mime-type |
47 | 107 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.monobook.css |
— | — | @@ -0,0 +1,4 @@ |
| 2 | +div#webfonts-menu ul { |
| 3 | + font-size: 1.2em; |
| 4 | +} |
| 5 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.monobook.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 6 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.modern.css |
— | — | @@ -0,0 +1,34 @@ |
| 2 | +#p-personal { |
| 3 | + /* #p-personal has overflow:hidden. That makes a dropdown menu appearing hidden. |
| 4 | + * overriding it this way may not be the best way. |
| 5 | + */ |
| 6 | + overflow: visible!important; |
| 7 | +} |
| 8 | + |
| 9 | +div.webfontMenu div.menu { |
| 10 | + top: 0px; |
| 11 | +} |
| 12 | + |
| 13 | +div#webfonts-menu li { |
| 14 | + background-color: #FFFFFF; |
| 15 | + font-weight: normal; |
| 16 | + white-space: nowrap; |
| 17 | + text-transform: none; |
| 18 | + font-variant: normal; |
| 19 | +} |
| 20 | + |
| 21 | +div#webfonts-menu ul { |
| 22 | + border: solid 1px silver; |
| 23 | + background-color: #FFFFFF; |
| 24 | + height: auto; |
| 25 | + font-size: 1.2em; |
| 26 | +} |
| 27 | + |
| 28 | +div#webfonts-menu li a:hover{ |
| 29 | + color: #0645AD; |
| 30 | +} |
| 31 | + |
| 32 | +div#webfonts-menu li:hover { |
| 33 | + background-color: #FFFFFF; |
| 34 | +} |
| 35 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.modern.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 36 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.js |
— | — | @@ -0,0 +1,358 @@ |
| 2 | +( function( $ ) { |
| 3 | + |
| 4 | + function fontID( font ) { |
| 5 | + if ( typeof font !== 'string' ) { |
| 6 | + return font; |
| 7 | + } |
| 8 | + return 'webfont-' + font.toLowerCase().replace(/[_ ]/g, '-' ).replace(/[^-a-z]/g, '' ); |
| 9 | + } |
| 10 | + |
| 11 | + mw.webfonts = { |
| 12 | + |
| 13 | + oldconfig: false, |
| 14 | + config: { fonts: {}, languages: {} }, |
| 15 | + version: '0.1.2', |
| 16 | + fonts : [], |
| 17 | + set: function( font ) { |
| 18 | + if ( !font || font === 'none' ) { |
| 19 | + mw.webfonts.reset(); |
| 20 | + return; |
| 21 | + } |
| 22 | + |
| 23 | + if ( !( font in mw.webfonts.config.fonts ) ) { |
| 24 | + mw.log( 'Requested unknown font', font ); |
| 25 | + return; |
| 26 | + } |
| 27 | + var config = mw.webfonts.config.fonts[font]; |
| 28 | + |
| 29 | + // Load the style sheet for the font |
| 30 | + mw.webfonts.addFont( font ); |
| 31 | + |
| 32 | + // Save the current font and its size. Used for reset. |
| 33 | + if ( !mw.webfonts.oldconfig ) { |
| 34 | + var $body = $( 'body' ); |
| 35 | + mw.webfonts.oldconfig = { |
| 36 | + fontFamily: $body.css( 'font-family' ), |
| 37 | + fontSize: $body.css( 'font-size' ) |
| 38 | + }; |
| 39 | + } |
| 40 | + |
| 41 | + // Set the font, fallback fonts.Need to change the fonts of Input Select and Textarea explicitly. |
| 42 | + $( 'body, input, select, textarea' ).css( 'font-family', '"' + font + '", Helvetica, Arial, sans-serif' ); |
| 43 | + |
| 44 | + if ( 'normalization' in config ) { |
| 45 | + $( document ).ready( function() { |
| 46 | + mw.webfonts.normalize( config.normalization ); |
| 47 | + } ); |
| 48 | + } |
| 49 | + // Store the font choise in cookie |
| 50 | + $.cookie( 'webfonts-font', font, { 'path': '/', 'expires': 30 } ); |
| 51 | + |
| 52 | + // If we had reset the fonts for tags with lang attribute, apply the fonts again. |
| 53 | + mw.webfonts.loadFontsForLangAttr(); |
| 54 | + }, |
| 55 | + |
| 56 | + /** |
| 57 | + * Reset the font with old configuration |
| 58 | + */ |
| 59 | + reset: function() { |
| 60 | + $( 'body' ).css( { |
| 61 | + fontFamily: mw.webfonts.oldconfig.fontFamily, |
| 62 | + fontSize: mw.webfonts.oldconfig.fontSize |
| 63 | + }); |
| 64 | + // We need to reset the font family of Input and Select explicitly. |
| 65 | + $( 'input, select' ).css( 'font-family', mw.webfonts.oldconfig.fontFamily ); |
| 66 | + |
| 67 | + // Reset the fonts applied for tags with lang attribute. |
| 68 | + $( '.webfonts-lang-attr' ).css( 'font-family', '' ).removeClass( 'webfonts-lang-attr' ); |
| 69 | + |
| 70 | + // Remove the cookie |
| 71 | + $.cookie( 'webfonts-font', 'none', { 'path': '/', 'expires': 30 } ); |
| 72 | + }, |
| 73 | + |
| 74 | + /** |
| 75 | + * Does a find replace of string on the page. |
| 76 | + * @param normalization_rules hashmap of replacement rules. |
| 77 | + */ |
| 78 | + normalize: function( normalizationRules ) { |
| 79 | + $.each( normalizationRules, function( search, replace ) { |
| 80 | + var searchPattern = new RegExp( search, 'g' ); |
| 81 | + return $( '*' ).each( function() { |
| 82 | + var node = this.firstChild, |
| 83 | + val, newVal; |
| 84 | + if ( node ) { |
| 85 | + do { |
| 86 | + if ( node.nodeType === 3 ) { |
| 87 | + val = node.nodeValue; |
| 88 | + newVal = val.replace( searchPattern, replace ); |
| 89 | + if ( newVal !== val ) { |
| 90 | + node.nodeValue = newVal; |
| 91 | + } |
| 92 | + } |
| 93 | + } while ( node = node.nextSibling ); |
| 94 | + } |
| 95 | + } ); |
| 96 | + } ); |
| 97 | + }, |
| 98 | + |
| 99 | + /** |
| 100 | + * Construct the CSS required for the font-family, inject it to the head of the body |
| 101 | + * so that it gets loaded. |
| 102 | + * @param fontFamily The font-family name |
| 103 | + */ |
| 104 | + loadCSS: function( fontFamily ) { |
| 105 | + var fontconfig = mw.webfonts.config.fonts[fontFamily]; |
| 106 | + var base = mw.config.get( 'wgExtensionAssetsPath' ) + '/WebFonts/fonts/'; |
| 107 | + var fontFormats = []; |
| 108 | + var version = "0.0"; |
| 109 | + if ( 'version' in fontconfig ) { |
| 110 | + version = fontconfig.version; |
| 111 | + } |
| 112 | + var versionSuffix = "?version=" + version; |
| 113 | + var styleString = |
| 114 | + "<style type='text/css'>\n@font-face {\n" |
| 115 | + + "\tfont-family: '"+fontFamily+"';\n"; |
| 116 | + |
| 117 | + if ( 'eot' in fontconfig ) { |
| 118 | + styleString += "\tsrc: url('" + base+ fontconfig.eot + versionSuffix+ "');\n"; |
| 119 | + } |
| 120 | + |
| 121 | + styleString += "\tsrc: "; |
| 122 | + // If the font is present locally, use it. |
| 123 | + var ua = navigator.userAgent; |
| 124 | + if( ua.match( /Android 2\.3/ ) == null ) { |
| 125 | + // Android 2.3.x does not respect local() syntax. |
| 126 | + // http://code.google.com/p/android/issues/detail?id=10609 |
| 127 | + styleString += "local('"+fontFamily+"'),"; |
| 128 | + } |
| 129 | + |
| 130 | + if ( 'woff' in fontconfig ) { |
| 131 | + fontFormats.push( "\t\turl('" + base + fontconfig.woff + versionSuffix + "') format('woff')" ); |
| 132 | + } |
| 133 | + |
| 134 | + if ( 'svg' in fontconfig ) { |
| 135 | + fontFormats.push( "\t\turl('" + base + fontconfig.svg + versionSuffix + "#" + fontFamily + "') format('svg')" ); |
| 136 | + } |
| 137 | + |
| 138 | + if ( 'ttf' in fontconfig ) { |
| 139 | + fontFormats.push( "\t\turl('" + base + fontconfig.ttf + versionSuffix + "') format('truetype')" ); |
| 140 | + } |
| 141 | + |
| 142 | + styleString += fontFormats.join() + ";\n" |
| 143 | + styleString += "\tfont-weight: normal;\n}\n</style>\n"; |
| 144 | + |
| 145 | + //inject the css to the head of the page. |
| 146 | + $( styleString ).appendTo( 'head' ); |
| 147 | + }, |
| 148 | + |
| 149 | + /** |
| 150 | + * Add a font to the page. |
| 151 | + * This method ensures that css are not duplicated and |
| 152 | + * keep track of added fonts. |
| 153 | + * @param fontFamilyName {String} The font-family name |
| 154 | + */ |
| 155 | + addFont: function( fontFamilyName ) { |
| 156 | + // Avoid duplicate loading |
| 157 | + if ( $.inArray( fontFamilyName, mw.webfonts.fonts ) === -1 ) { |
| 158 | + // Check whether the requested font is available. |
| 159 | + if ( fontFamilyName in mw.webfonts.config.fonts ) { |
| 160 | + mw.webfonts.loadCSS( fontFamilyName ); |
| 161 | + mw.webfonts.fonts.push( fontFamilyName ); |
| 162 | + } |
| 163 | + } |
| 164 | + }, |
| 165 | + |
| 166 | + /** |
| 167 | + * Setup the font selection menu. |
| 168 | + * It also apply the font from cookie, if any. |
| 169 | + */ |
| 170 | + setup: function() { |
| 171 | + var config = []; |
| 172 | + var languages = mw.webfonts.config.languages; |
| 173 | + var requested = [mw.config.get( 'wgUserVariant' ), mw.config.get( 'wgContentLanguage' ), mw.config.get( 'wgUserLanguage' )]; |
| 174 | + |
| 175 | + for ( var i = 0; i < requested.length; i++ ) { |
| 176 | + if ( requested[i] in languages ) { |
| 177 | + var fonts = languages[requested[i]]; |
| 178 | + for ( var j = 0; j < fonts.length; j++ ) { |
| 179 | + if ( $.inArray( fonts[j], config ) === -1 ) { |
| 180 | + config.push( fonts[j] ); |
| 181 | + } |
| 182 | + } |
| 183 | + } |
| 184 | + } |
| 185 | + |
| 186 | + // Build font dropdown |
| 187 | + mw.webfonts.buildMenu( config ); |
| 188 | + // See if there is a font in cookie if not first font is default font. |
| 189 | + var cookieFont = $.cookie( 'webfonts-font' ); |
| 190 | + var selectedFont = null; |
| 191 | + // check whether this font is for the current userlang/contentlang |
| 192 | + if ( $.inArray( cookieFont, config ) !== -1 || cookieFont === 'none' ) { |
| 193 | + selectedFont = cookieFont; |
| 194 | + } |
| 195 | + else{ |
| 196 | + // We cannot use cookie font since it is not one of the fonts suitable |
| 197 | + // for current language. |
| 198 | + selectedFont = config[0]; |
| 199 | + } |
| 200 | + if ( selectedFont ) { |
| 201 | + mw.webfonts.set( selectedFont ); |
| 202 | + // Mark it as checked |
| 203 | + $( '#'+fontID( selectedFont ) ).prop( 'checked', true ); |
| 204 | + } |
| 205 | + |
| 206 | + mw.webfonts.loadFontsForFontFamilyStyle(); |
| 207 | + mw.webfonts.loadFontsForLangAttr(); |
| 208 | + |
| 209 | + if ( $( '.webfonts-lang-attr' ).length && !$( '#webfonts-fontsmenu' ).length ) { |
| 210 | + // We need to show the reset option even if there is no font to show |
| 211 | + // for the language, if there is lang attr based font embedding. |
| 212 | + mw.webfonts.buildMenu( config ); |
| 213 | + } |
| 214 | + }, |
| 215 | + |
| 216 | + /** |
| 217 | + * Scan the page for tags with lang attr and load the default font |
| 218 | + * for that language if available. |
| 219 | + */ |
| 220 | + loadFontsForLangAttr: function() { |
| 221 | + var languages = mw.webfonts.config.languages; |
| 222 | + // If there are tags with lang attribute, |
| 223 | + $( 'body' ).find( '*[lang]' ).each( function( index ) { |
| 224 | + // .. check the availability of font, add a font-family style if it does not have any |
| 225 | + if( languages[this.lang] && ( !this.style.fontFamily || this.style.fontFamily === 'none' ) ) { |
| 226 | + fontFamily = languages[this.lang][0]; |
| 227 | + mw.webfonts.addFont( fontFamily ); |
| 228 | + $(this).css( 'font-family', fontFamily ).addClass( 'webfonts-lang-attr' ); |
| 229 | + } |
| 230 | + }); |
| 231 | + |
| 232 | + }, |
| 233 | + |
| 234 | + /** |
| 235 | + * Scan the page for tags with font-family style declarations |
| 236 | + * If that font is available, embed it. |
| 237 | + */ |
| 238 | + loadFontsForFontFamilyStyle: function() { |
| 239 | + var languages = mw.webfonts.config.languages; |
| 240 | + // If there are tags with font-family style definition, get a list of fonts to be loaded |
| 241 | + $( 'body' ).find( '*[style]' ).each( function( index ) { |
| 242 | + if( this.style.fontFamily ) { |
| 243 | + var fontFamilyItems = this.style.fontFamily.split( ',' ); |
| 244 | + $.each( fontFamilyItems, function( index, fontFamily ) { |
| 245 | + // Remove the ' characters if any. |
| 246 | + fontFamily = fontFamily.replace( /'/g, '' ); |
| 247 | + mw.webfonts.addFont( fontFamily ); |
| 248 | + }); |
| 249 | + } |
| 250 | + }); |
| 251 | + |
| 252 | + }, |
| 253 | + |
| 254 | + /** |
| 255 | + * Prepare the div containing menu items. |
| 256 | + * @param config The webfont configuration. |
| 257 | + */ |
| 258 | + buildMenuItems: function ( config ){ |
| 259 | + var haveSchemes = false; |
| 260 | + // Build font dropdown |
| 261 | + var $fontsMenu = $( '<ul>' ).attr( 'id', 'webfonts-fontsmenu' ); |
| 262 | + $fontsMenu.delegate( 'input:radio', 'change', function( e ) { |
| 263 | + mw.webfonts.set( $(this).val() ); |
| 264 | + } ); |
| 265 | + for ( var scheme in config ) { |
| 266 | + var $fontLink = $( '<input type="radio" />' ) |
| 267 | + .attr( 'name', 'font' ) |
| 268 | + .attr( 'id', fontID( config[scheme] ) ) |
| 269 | + .val( config[scheme] ); |
| 270 | + |
| 271 | + var $fontLabel = $( '<label>' ) |
| 272 | + .attr( 'for',fontID(config[scheme] ) ) |
| 273 | + .append( $fontLink ) |
| 274 | + .append( config[scheme] ); |
| 275 | + |
| 276 | + var $fontMenuItem = $( '<li>' ) |
| 277 | + .val( config[scheme] ) |
| 278 | + .append( $fontLabel ); |
| 279 | + |
| 280 | + haveSchemes = true; |
| 281 | + |
| 282 | + $fontsMenu.append( $fontMenuItem ); |
| 283 | + |
| 284 | + } |
| 285 | + |
| 286 | + if ( !haveSchemes && !$( '.webfonts-lang-attr' ).length ) { |
| 287 | + // No schemes available, and no tags with lang attr |
| 288 | + // with fonts loaded. Don't show the menu. |
| 289 | + return null; |
| 290 | + } |
| 291 | + |
| 292 | + var $resetLink = $( '<input type="radio" />' ) |
| 293 | + .attr( 'name', 'font' ) |
| 294 | + .attr( 'value', 'webfont-none' ) |
| 295 | + .attr( 'id', 'webfont-none' ) |
| 296 | + .click( function( e ) { |
| 297 | + mw.webfonts.set( 'none' ); |
| 298 | + }); |
| 299 | + |
| 300 | + var $resetLabel = $( '<label>' ) |
| 301 | + .attr( 'for', 'webfont-none' ) |
| 302 | + .append( $resetLink ) |
| 303 | + .append( mw.message( 'webfonts-reset' ).escaped() ); |
| 304 | + |
| 305 | + var $resetLinkItem = $( '<li>' ) |
| 306 | + .val( 'none' ) |
| 307 | + .append( $resetLabel ); |
| 308 | + |
| 309 | + $fontsMenu.append( $resetLinkItem ); |
| 310 | + |
| 311 | + var $menuDiv = $( '<div>' ) |
| 312 | + .attr( 'id', 'webfonts-fonts' ) |
| 313 | + .addClass( 'menu' ) |
| 314 | + .append( $fontsMenu ) |
| 315 | + .append(); |
| 316 | + return $menuDiv; |
| 317 | + }, |
| 318 | + /** |
| 319 | + * Prepare the menu for the webfonts. |
| 320 | + * @param config The webfont configuration. |
| 321 | + */ |
| 322 | + buildMenu: function(config) { |
| 323 | + var $menuItemsDiv = mw.webfonts.buildMenuItems( config ); |
| 324 | + if( $menuItemsDiv == null ) { |
| 325 | + return; |
| 326 | + } |
| 327 | + var $menu = $( '<div>' ) |
| 328 | + .attr( 'id', 'webfonts-menu' ) |
| 329 | + .addClass( 'webfontMenu' ) |
| 330 | + .append( $menuItemsDiv ); |
| 331 | + var $link = $( '<a>' ).prop( 'href', '#' ).text( mw.message( 'webfonts-load' ).escaped() ); |
| 332 | + // This is the fonts link |
| 333 | + var $li = $( '<li>' ).attr( 'id', 'pt-webfont' ).append( $link ); |
| 334 | + // If RTL, add to the right of top personal links. Else, to the left |
| 335 | + var fn = $( 'body' ).hasClass( 'rtl' ) ? 'append' : 'prepend'; |
| 336 | + $( '#p-personal ul:first' )[fn]( $li ); |
| 337 | + $( 'body' ).prepend( $menu ); |
| 338 | + $menu.hide(); |
| 339 | + $li.hover( function() { |
| 340 | + $menuItemsDiv.css( 'left', $li.offset().left ); |
| 341 | + $menu.show(); |
| 342 | + }); |
| 343 | + $menu.hover( function() { |
| 344 | + }, function() { |
| 345 | + $menu.hide(); |
| 346 | + }); |
| 347 | + // Workaround for IE bug - ActiveX components like input fields coming on top of everything. |
| 348 | + // @todo Is there a better solution other than hiding it on hover? |
| 349 | + if ( $.browser.msie ) { |
| 350 | + $( '#webfonts-menu' ).hover( function() { |
| 351 | + $( '#searchform' ).css({ visibility: 'hidden' } ); |
| 352 | + }, function( ) { |
| 353 | + $( '#searchform' ).css( { visibility: 'visible' } ); |
| 354 | + } ); |
| 355 | + } |
| 356 | + } |
| 357 | + }; |
| 358 | + |
| 359 | +} ) ( jQuery ); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 360 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.fontlist.js |
— | — | @@ -0,0 +1,386 @@ |
| 2 | +/** |
| 3 | + * Configuration file for webfonts |
| 4 | + * First font is the default font for the language |
| 5 | + */ |
| 6 | + |
| 7 | +( function ( $ ) { |
| 8 | + |
| 9 | + var config = { |
| 10 | + fonts: { |
| 11 | + "Iranian Sans": { |
| 12 | + eot: "Arab/IranianSans.eot", |
| 13 | + ttf: "Arab/IranianSans.ttf", |
| 14 | + woff: "Arab/IranianSans.woff", |
| 15 | + version: "1.0" |
| 16 | + }, |
| 17 | + |
| 18 | + "Lohit Bengali": { |
| 19 | + eot: "Beng/Lohit-Bengali.eot", |
| 20 | + ttf: "Beng/Lohit-Bengali.ttf", |
| 21 | + woff: "Beng/Lohit-Bengali.woff", |
| 22 | + version: "2.5.0" |
| 23 | + }, |
| 24 | + |
| 25 | + "Lohit Assamese": { |
| 26 | + eot: "Beng/Lohit-Assamese.eot", |
| 27 | + ttf: "Beng/Lohit-Assamese.ttf", |
| 28 | + woff: "Beng/Lohit-Assamese.woff", |
| 29 | + version: "2.5.0" |
| 30 | + }, |
| 31 | + |
| 32 | + "Lohit Devanagari": { |
| 33 | + eot: "Deva/Lohit-Devanagari.eot", |
| 34 | + ttf: "Deva/Lohit-Devanagari.ttf", |
| 35 | + woff: "Deva/Lohit-Devanagari.woff", |
| 36 | + version: "2.5.0" |
| 37 | + }, |
| 38 | + |
| 39 | + "Samyak Devanagari": { |
| 40 | + eot: "Deva/SamyakDevanagari.eot", |
| 41 | + ttf: "Deva/SamyakDevanagari.ttf", |
| 42 | + woff: "Deva/SamyakDevanagari.woff", |
| 43 | + version: "1.0" |
| 44 | + }, |
| 45 | + |
| 46 | + "Madan": { |
| 47 | + eot: "Deva/madan.eot", |
| 48 | + ttf: "Deva/madan.ttf", |
| 49 | + woff: "Deva/madan.woff", |
| 50 | + version: "2.0" |
| 51 | + }, |
| 52 | + |
| 53 | + AbyssinicaSIL: { |
| 54 | + eot: "Ethi/AbyssinicaSIL-R.eot", |
| 55 | + ttf: "Ethi/AbyssinicaSIL-R.ttf", |
| 56 | + woff: "Ethi/AbyssinicaSIL-R.woff", |
| 57 | + version: "1.2" |
| 58 | + }, |
| 59 | + |
| 60 | + "Lohit Gujarati": { |
| 61 | + eot: "Gujr/Lohit-Gujarati.eot", |
| 62 | + ttf: "Gujr/Lohit-Gujarati.ttf", |
| 63 | + woff: "Gujr/Lohit-Gujarati.woff", |
| 64 | + version: "2.5.0" |
| 65 | + }, |
| 66 | + |
| 67 | + "Samyak Gujarati": { |
| 68 | + eot: "Gujr/SamyakGujarati.eot", |
| 69 | + ttf: "Gujr/SamyakGujarati.ttf", |
| 70 | + woff: "Gujr/SamyakGujarati.woff", |
| 71 | + version: "1.0" |
| 72 | + }, |
| 73 | + |
| 74 | + "Miriam CLM": { |
| 75 | + eot: "Hebr/MiriamCLM-Book.eot", |
| 76 | + ttf: "Hebr/MiriamCLM-Book.ttf", |
| 77 | + woff: "Hebr/MiriamCLM-Book.woff", |
| 78 | + version: "0.105" |
| 79 | + }, |
| 80 | + |
| 81 | + "Taamey Frank CLM": { |
| 82 | + eot: "Hebr/TaameyFrankCLM.eot", |
| 83 | + ttf: "Hebr/TaameyFrankCLM.ttf", |
| 84 | + woff: "Hebr/TaameyFrankCLM.woff", |
| 85 | + svg: "Hebr/TaameyFrankCLM.svg", |
| 86 | + version: "0.110" |
| 87 | + }, |
| 88 | + |
| 89 | + KhmerOS: { |
| 90 | + eot: "Khmr/KhmerOS.eot", |
| 91 | + ttf: "Khmr/KhmerOS.ttf", |
| 92 | + woff: "Khmr/KhmerOS.woff", |
| 93 | + svg: "Khmr/KhmerOS.svg", |
| 94 | + version: "1.10" |
| 95 | + }, |
| 96 | + |
| 97 | + KhmerOSbattambang: { |
| 98 | + eot: "Khmr/KhmerOSbattambang.eot", |
| 99 | + ttf: "Khmr/KhmerOSbattambang.ttf", |
| 100 | + woff: "Khmr/KhmerOSbattambang.woff", |
| 101 | + svg: "Khmr/KhmerOSbattambang.svg", |
| 102 | + version: "1.10" |
| 103 | + }, |
| 104 | + |
| 105 | + KhmerOSbokor: { |
| 106 | + eot: "Khmr/KhmerOSbokor.eot", |
| 107 | + ttf: "Khmr/KhmerOSbokor.ttf", |
| 108 | + woff: "Khmr/KhmerOSbokor.woff", |
| 109 | + svg: "Khmr/KhmerOSbokor.svg", |
| 110 | + version: "1.10" |
| 111 | + }, |
| 112 | + |
| 113 | + KhmerOSfreehand: { |
| 114 | + eot: "Khmr/KhmerOSfreehand.eot", |
| 115 | + ttf: "Khmr/KhmerOSfreehand.ttf", |
| 116 | + woff: "Khmr/KhmerOSfreehand.woff", |
| 117 | + svg: "Khmr/KhmerOSfreehand.svg", |
| 118 | + version: "1.10" |
| 119 | + }, |
| 120 | + |
| 121 | + KhmerOSfasthand: { |
| 122 | + eot: "Khmr/KhmerOSfasthand.eot", |
| 123 | + ttf: "Khmr/KhmerOSfasthand.ttf", |
| 124 | + woff: "Khmr/KhmerOSfasthand.woff", |
| 125 | + svg: "Khmr/KhmerOSfasthand.svg", |
| 126 | + version: "1.10" |
| 127 | + }, |
| 128 | + |
| 129 | + KhmerOSmuol: { |
| 130 | + eot: "Khmr/KhmerOSmuol.eot", |
| 131 | + ttf: "Khmr/KhmerOSmuol.ttf", |
| 132 | + woff: "Khmr/KhmerOSmuol.woff", |
| 133 | + svg: "Khmr/KhmerOSmuol.svg", |
| 134 | + version: "1.10" |
| 135 | + }, |
| 136 | + |
| 137 | + KhmerOSmuollight: { |
| 138 | + eot: "Khmr/KhmerOSmuollight.eot", |
| 139 | + ttf: "Khmr/KhmerOSmuollight.ttf", |
| 140 | + woff: "Khmr/KhmerOSmuollight.woff", |
| 141 | + svg: "Khmr/KhmerOSmuollight.svg", |
| 142 | + version: "1.10" |
| 143 | + }, |
| 144 | + |
| 145 | + KhmerOSmuolpali: { |
| 146 | + eot: "Khmr/KhmerOSmuolpali.eot", |
| 147 | + ttf: "Khmr/KhmerOSmuolpali.ttf", |
| 148 | + woff: "Khmr/KhmerOSmuolpali.woff", |
| 149 | + svg: "Khmr/KhmerOSmuolpali.svg", |
| 150 | + version: "1.10" |
| 151 | + }, |
| 152 | + |
| 153 | + KhmerOSsiemreap: { |
| 154 | + eot: "Khmr/KhmerOSsiemreap.eot", |
| 155 | + ttf: "Khmr/KhmerOSsiemreap.ttf", |
| 156 | + woff: "Khmr/KhmerOSsiemreap.woff", |
| 157 | + svg: "Khmr/KhmerOSsiemreap.svg", |
| 158 | + version: "1.10" |
| 159 | + }, |
| 160 | + |
| 161 | + Kedage: { |
| 162 | + eot: "Knda/Kedage.eot", |
| 163 | + ttf: "Knda/Kedage.ttf", |
| 164 | + woff: "Knda/Kedage.woff", |
| 165 | + version: "1.06" |
| 166 | + }, |
| 167 | + |
| 168 | + "Lohit Kannada": { |
| 169 | + eot: "Knda/Lohit-Kannada.eot", |
| 170 | + ttf: "Knda/Lohit-Kannada.ttf", |
| 171 | + woff: "Knda/Lohit-Kannada.woff", |
| 172 | + version: "2.5.0" |
| 173 | + }, |
| 174 | + |
| 175 | + "Charis SIL": { |
| 176 | + eot: "Latn/CharisSIL-R.eot", |
| 177 | + ttf: "Latn/CharisSIL-R.ttf", |
| 178 | + woff: "Latn/CharisSIL-R.woff", |
| 179 | + version: "4.011" |
| 180 | + }, |
| 181 | + |
| 182 | + Perizia: { |
| 183 | + eot: "Latn/Perizia.eot", |
| 184 | + ttf: "Latn/Perizia.ttf", |
| 185 | + woff: "Latn/Perizia.woff", |
| 186 | + version: "0.1" |
| 187 | + }, |
| 188 | + |
| 189 | + RufScript: { |
| 190 | + eot: "Latn/Rufscript.eot", |
| 191 | + ttf: "Latn/Rufscript.ttf", |
| 192 | + woff: "Latn/Rufscript.woff", |
| 193 | + version: "0.1" |
| 194 | + }, |
| 195 | + |
| 196 | + Ubuntu: { |
| 197 | + eot: "Latn/ubuntu-r-webfont.eot", |
| 198 | + ttf: "Latn/ubuntu-r.ttf", |
| 199 | + woff: "Latn/ubuntu-r-webfont.woff", |
| 200 | + svg: "Latn/ubuntu-r-webfont.svg", |
| 201 | + version: "0.69" |
| 202 | + }, |
| 203 | + |
| 204 | + AnjaliOldLipi: { |
| 205 | + eot: "Mlym/AnjaliOldLipi.eot", |
| 206 | + ttf: "Mlym/AnjaliOldLipi.ttf", |
| 207 | + woff: "Mlym/AnjaliOldLipi.woff", |
| 208 | + version: "0.730" |
| 209 | + }, |
| 210 | + |
| 211 | + Meera: { |
| 212 | + eot: "Mlym/Meera.eot", |
| 213 | + ttf: "Mlym/Meera.ttf", |
| 214 | + woff: "Mlym/Meera.woff", |
| 215 | + normalization: { |
| 216 | + "ൾ": "ള്", |
| 217 | + "ൻ": "ന്", |
| 218 | + "ർ": "ര്", |
| 219 | + "ൺ ": "ണ്", |
| 220 | + "ൽ": "ല്", |
| 221 | + "ൿ": "ക് " |
| 222 | + }, |
| 223 | + version: "5.01" |
| 224 | + }, |
| 225 | + |
| 226 | + RaghuMalayalam: { |
| 227 | + eot: "Mlym/RaghuMalayalam.eot", |
| 228 | + ttf: "Mlym/RaghuMalayalam.ttf", |
| 229 | + woff: "Mlym/RaghuMalayalam.woff", |
| 230 | + normalization: { |
| 231 | + "ൾ": "ള്", |
| 232 | + "ൻ": "ന്", |
| 233 | + "ർ": "ര്", |
| 234 | + "ൺ ": "ണ്", |
| 235 | + "ൽ": "ല്", |
| 236 | + "ൿ": "ക് " |
| 237 | + }, |
| 238 | + version: "2.0" |
| 239 | + }, |
| 240 | + |
| 241 | + "Masterpiece Uni Sans": { |
| 242 | + eot: "Mymr/MasterpieceUniSans.eot", |
| 243 | + ttf: "Mymr/MasterpieceUniSans.ttf", |
| 244 | + woff: "Mymr/MasterpieceUniSans.woff", |
| 245 | + svg: "Mymr/MasterpieceUniSans.svg", |
| 246 | + version: "0.5" |
| 247 | + }, |
| 248 | + |
| 249 | + Myanmar3: { |
| 250 | + eot: "Mymr/Myanmar3.eot", |
| 251 | + ttf: "Mymr/Myanmar3.ttf", |
| 252 | + woff: "Mymr/Myanmar3.woff", |
| 253 | + svg: "Mymr/Myanmar3.svg", |
| 254 | + version: "3.0" |
| 255 | + }, |
| 256 | + |
| 257 | + "Padauk-Regular": { |
| 258 | + eot: "Mymr/Padauk-Regular.eot", |
| 259 | + ttf: "Mymr/Padauk-Regular.ttf", |
| 260 | + woff: "Mymr/Padauk-Regular.woff", |
| 261 | + svg: "Mymr/Padauk-Regular.svg", |
| 262 | + version: "2.8" |
| 263 | + }, |
| 264 | + |
| 265 | + Yunghkio: { |
| 266 | + eot: "Mymr/Yunghkio.eot", |
| 267 | + ttf: "Mymr/Yunghkio.ttf", |
| 268 | + woff: "Mymr/Yunghkio.woff", |
| 269 | + svg: "Mymr/Yunghkio.svg", |
| 270 | + version: "1.0" |
| 271 | + }, |
| 272 | + |
| 273 | + "Lohit Oriya": { |
| 274 | + eot: "Orya/Lohit-Oriya.eot", |
| 275 | + ttf: "Orya/Lohit-Oriya.ttf", |
| 276 | + woff: "Orya/Lohit-Oriya.woff", |
| 277 | + version: "2.5.0" |
| 278 | + }, |
| 279 | + |
| 280 | + Utkal: { |
| 281 | + eot: "Orya/utkal.eot", |
| 282 | + ttf: "Orya/utkal.ttf", |
| 283 | + woff: "Orya/utkal.woff", |
| 284 | + version: "0.13" |
| 285 | + }, |
| 286 | + |
| 287 | + Pagul: { |
| 288 | + eot: "Saur/Pagul.eot", |
| 289 | + ttf: "Saur/Pagul.ttf", |
| 290 | + woff: "Saur/Pagul.woff", |
| 291 | + version: "1.0" |
| 292 | + }, |
| 293 | + |
| 294 | + "Lohit Tamil": { |
| 295 | + eot: "Taml/Lohit-Tamil.eot", |
| 296 | + ttf: "Taml/Lohit-Tamil.ttf", |
| 297 | + woff: "Taml/Lohit-Tamil.woff", |
| 298 | + version: "2.5.0" |
| 299 | + }, |
| 300 | + |
| 301 | + Thendral: { |
| 302 | + eot: "Taml/ThendralUni.eot", |
| 303 | + ttf: "Taml/ThendralUni.ttf", |
| 304 | + woff: "Taml/ThendralUni.woff", |
| 305 | + version: "1.0" |
| 306 | + }, |
| 307 | + |
| 308 | + Thenee: { |
| 309 | + eot: "Taml/TheneeUni.eot", |
| 310 | + ttf: "Taml/TheneeUni.ttf", |
| 311 | + woff: "Taml/TheneeUni.woff", |
| 312 | + version: "1.0" |
| 313 | + }, |
| 314 | + |
| 315 | + "Lohit Telugu": { |
| 316 | + eot: "Telu/Lohit-Telugu.eot", |
| 317 | + ttf: "Telu/Lohit-Telugu.ttf", |
| 318 | + woff: "Telu/Lohit-Telugu.woff", |
| 319 | + version: "2.5.0" |
| 320 | + }, |
| 321 | + |
| 322 | + "Pothana2000": { |
| 323 | + eot: "Telu/Pothana2000.eot", |
| 324 | + ttf: "Telu/Pothana2000.ttf", |
| 325 | + woff: "Telu/Pothana2000.woff", |
| 326 | + version: "1.3" |
| 327 | + }, |
| 328 | + |
| 329 | + "Vemana2000": { |
| 330 | + eot: "Telu/Vemana2000.eot", |
| 331 | + ttf: "Telu/Vemana2000.ttf", |
| 332 | + woff: "Telu/Vemana2000.woff", |
| 333 | + version: "1.3" |
| 334 | + }, |
| 335 | + |
| 336 | + "Lohit Punjabi": { |
| 337 | + eot: "Guru/Lohit-Punjabi.eot", |
| 338 | + ttf: "Guru/Lohit-Punjabi.ttf", |
| 339 | + woff: "Guru/Lohit-Punjabi.woff", |
| 340 | + version: "2.5.0" |
| 341 | + }, |
| 342 | + |
| 343 | + "Saab": { |
| 344 | + eot: "Guru/Saab.eot", |
| 345 | + ttf: "Guru/Saab.ttf", |
| 346 | + woff: "Guru/Saab.woff", |
| 347 | + version: "0.91" |
| 348 | + } |
| 349 | + |
| 350 | + }, |
| 351 | + |
| 352 | + languages: { |
| 353 | + // en: [ "RufScript", "Perizia", "Ubuntu" ], |
| 354 | + am: [ "AbyssinicaSIL" ], |
| 355 | + as: [ "Lohit Assamese" ], |
| 356 | + bh: [ "Lohit Devanagari" ], |
| 357 | + bho: [ "Lohit Devanagari" ], |
| 358 | + bn: [ "Lohit Bengali" ], |
| 359 | + bpy: [ "Lohit Bengali" ], |
| 360 | + cdo: [ "Charis SIL" ], |
| 361 | + fa: [ "Iranian Sans" ], |
| 362 | + gu: [ "Lohit Gujarati", "Samyak Gujarati" ], |
| 363 | + hbo: [ "Taamey Frank CLM" ], |
| 364 | + he: [ "Miriam CLM", "Taamey Frank CLM" ], |
| 365 | + hi: [ "Lohit Devanagari", "Samyak Devanagari" ], |
| 366 | + km: [ "KhmerOSbattambang", "KhmerOSsiemreap", "KhmerOS", "KhmerOSbokor", |
| 367 | + "KhmerOSmuollight", "KhmerOSmuol", "KhmerOSmuolpali", |
| 368 | + "KhmerOSfreehand", "KhmerOSfasthand" ], |
| 369 | + kn: [ "Lohit Kannada", "Kedage"], |
| 370 | + kok: [ "Lohit Devanagari" ], |
| 371 | + gom: [ "Lohit Devanagari" ], |
| 372 | + mai: [ "Lohit Devanagari" ], |
| 373 | + ml: [ "AnjaliOldLipi", "Meera", "RaghuMalayalam" ], |
| 374 | + mr: [ "Lohit Devanagari", "Samyak Devanagari" ], |
| 375 | + my: [ "Masterpiece Uni Sans", "Padauk-Regular", "Myanmar3", "Yunghkio" ], |
| 376 | + ne: [ "Lohit Devanagari", "Madan" ], |
| 377 | + or: [ "Lohit Oriya" , "Utkal" ], |
| 378 | + pa: [ "Lohit Punjabi", "Saab" ], |
| 379 | + sa: [ "Lohit Devanagari", "Samyak Devanagari" ], |
| 380 | + saz: [ "Pagul" ], |
| 381 | + ta: [ "Lohit Tamil", "Thendral", "Thenee" ], |
| 382 | + te: [ "Lohit Telugu", "Pothana2000", "Vemana2000" ], |
| 383 | + ti: [ "AbyssinicaSIL" ] |
| 384 | + } |
| 385 | + }; |
| 386 | + $.extend( mw.webfonts.config, config); |
| 387 | +} ) ( jQuery ); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.fontlist.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 388 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.init.js |
— | — | @@ -0,0 +1,8 @@ |
| 2 | +/** |
| 3 | + * WebFonts startup script |
| 4 | + */ |
| 5 | +( function( $ ) { |
| 6 | + $( document ).ready( function() { |
| 7 | + mw.webfonts.setup(); |
| 8 | + } ); |
| 9 | +} )( jQuery ); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.init.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 10 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/images/font-icon.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/images/font-icon.png |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 11 | + image/png |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.css |
— | — | @@ -0,0 +1,117 @@ |
| 2 | +li#pt-webfont { |
| 3 | + /* @embed */ |
| 4 | + background: url(images/font-icon.png) no-repeat scroll left top transparent; |
| 5 | + padding-left: 15px !important; |
| 6 | +} |
| 7 | + |
| 8 | +div#webfonts-menu { |
| 9 | + font-size: 100%; |
| 10 | + z-index: 99999; |
| 11 | +} |
| 12 | + |
| 13 | +div#webfonts-fonts { |
| 14 | + font-size: 100%; |
| 15 | + z-index: 99999; |
| 16 | +} |
| 17 | + |
| 18 | + |
| 19 | +div#webfonts-menu .menu ul { |
| 20 | + padding-left: 5px!important; |
| 21 | +} |
| 22 | + |
| 23 | + |
| 24 | +div#webfonts-fonts li { |
| 25 | + margin: 0; |
| 26 | + padding: 5px; |
| 27 | + font-size: 100%; |
| 28 | + float: none; |
| 29 | +} |
| 30 | + |
| 31 | +/* Variants and Actions */ |
| 32 | +/* @noflip */ |
| 33 | +div.webfontMenu { |
| 34 | + direction: ltr; |
| 35 | + float: left; |
| 36 | +} |
| 37 | + |
| 38 | +/* @noflip */ |
| 39 | +body.rtl div.webfontMenu ul li { |
| 40 | + direction: rtl; |
| 41 | +} |
| 42 | + |
| 43 | +div.webfontMenu div.menu { |
| 44 | + position: relative; |
| 45 | + display: block; |
| 46 | + clear: both; |
| 47 | + text-align: left; |
| 48 | + top: 20px; |
| 49 | + width: 200px; |
| 50 | +} |
| 51 | + |
| 52 | +/* OVERRIDDEN BY COMPLIANT BROWSERS */ |
| 53 | +/* @noflip */ |
| 54 | +body.rtl div.webfontMenu div.menu { |
| 55 | + margin-left: 24px; |
| 56 | +} |
| 57 | +/* IGNORED BY IE6 */ |
| 58 | +/* @noflip */ |
| 59 | +body.rtl div.webfontMenu > div.menu { |
| 60 | + margin-left: auto; |
| 61 | +} |
| 62 | +/* IGNORED BY IE6 */ |
| 63 | +/* Also fixes old versions of FireFox */ |
| 64 | +/* @noflip */ |
| 65 | +body.rtl div.webfontMenu > div.menu, |
| 66 | +x:-moz-any-link { |
| 67 | + margin-left: 23px; |
| 68 | +} |
| 69 | + |
| 70 | +div.webfontMenu ul { |
| 71 | + position: absolute; |
| 72 | + background-color: white; |
| 73 | + border: solid 1px silver; |
| 74 | + -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 75 | + -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 76 | + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 77 | + border-top-width: 0; |
| 78 | + list-style: none; |
| 79 | + list-style-image: none; |
| 80 | + list-style-type: none; |
| 81 | + padding: 0; |
| 82 | + margin: 0; |
| 83 | + margin-left: -1px; |
| 84 | + text-align: left; |
| 85 | + font-size: 0.8em; |
| 86 | +} |
| 87 | + |
| 88 | +div.webfontMenu li { |
| 89 | + padding: 0; |
| 90 | + margin: 0; |
| 91 | + text-align: left; |
| 92 | + line-height: 1em; |
| 93 | +} |
| 94 | +/* OVERRIDDEN BY COMPLIANT BROWSERS */ |
| 95 | +div.webfontMenu li a { |
| 96 | + display: inline-block; |
| 97 | + padding: 0.5em; |
| 98 | + white-space: nowrap; |
| 99 | + color: #0645ad; |
| 100 | +} |
| 101 | +/* IGNORED BY IE6 */ |
| 102 | +div.webfontMenu li > a { |
| 103 | + display: block; |
| 104 | +} |
| 105 | +div.webfontMenu li.selected a, |
| 106 | +div.webfontMenu li.selected a:visited { |
| 107 | + color: #333333; |
| 108 | + text-decoration: none; |
| 109 | +} |
| 110 | +div.webfontMenu a { |
| 111 | + display: block; |
| 112 | + padding-left: 5px; |
| 113 | + padding-right: 5px; |
| 114 | +} |
| 115 | + |
| 116 | +div.webfontMenu label:hover, input:hover { |
| 117 | + cursor: pointer; |
| 118 | +} |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 119 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.i18n.php |
— | — | @@ -0,0 +1,525 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for extension webfonts. |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +$messages = array(); |
| 11 | + |
| 12 | +/** English |
| 13 | + * @author santhosh |
| 14 | +*/ |
| 15 | +$messages['en'] = array( |
| 16 | + 'webfonts' => 'WebFonts', |
| 17 | + 'webfonts-desc' => 'Embed fonts in pages', |
| 18 | + 'webfonts-load' => 'Select font', |
| 19 | + 'webfonts-reset' => 'Reset', |
| 20 | + 'webfonts-enable-preference' => 'Enable font embedding (WebFonts)', |
| 21 | +); |
| 22 | + |
| 23 | +/** Message documentation (Message documentation) |
| 24 | + * @author EugeneZelenko |
| 25 | + */ |
| 26 | +$messages['qqq'] = array( |
| 27 | + 'webfonts-reset' => '{{Identical|Reset}}', |
| 28 | +); |
| 29 | + |
| 30 | +/** Arabic (العربية) |
| 31 | + * @author روخو |
| 32 | + */ |
| 33 | +$messages['ar'] = array( |
| 34 | + 'webfonts-load' => 'أختر الخط', |
| 35 | + 'webfonts-reset' => 'أعد الضبط', |
| 36 | +); |
| 37 | + |
| 38 | +/** Asturian (Asturianu) |
| 39 | + * @author Xuacu |
| 40 | + */ |
| 41 | +$messages['ast'] = array( |
| 42 | + 'webfonts' => 'WebFonts', |
| 43 | + 'webfonts-desc' => 'Incorporar fontes nes páxines', |
| 44 | + 'webfonts-load' => 'Seleiciona la fonte', |
| 45 | + 'webfonts-reset' => 'Reaniciar', |
| 46 | + 'webfonts-enable-preference' => 'Activar la incorporación de fontes (WebFonts)', |
| 47 | +); |
| 48 | + |
| 49 | +/** Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца)) |
| 50 | + * @author EugeneZelenko |
| 51 | + * @author Wizardist |
| 52 | + */ |
| 53 | +$messages['be-tarask'] = array( |
| 54 | + 'webfonts' => 'WebFonts', |
| 55 | + 'webfonts-desc' => 'Дазваляе ўбудоўваць шрыфты на старонкі', |
| 56 | + 'webfonts-load' => 'Выбраць шрыфт', |
| 57 | + 'webfonts-reset' => 'Скінуць', |
| 58 | +); |
| 59 | + |
| 60 | +/** Bengali (বাংলা) |
| 61 | + * @author Bellayet |
| 62 | + */ |
| 63 | +$messages['bn'] = array( |
| 64 | + 'webfonts' => 'ওয়েবফন্টস', |
| 65 | + 'webfonts-desc' => 'পাতায় ফন্ট সন্নিবেশ', |
| 66 | + 'webfonts-load' => 'ফন্ট নির্বাচন', |
| 67 | + 'webfonts-reset' => 'পুনরায় আরম্ভ', |
| 68 | +); |
| 69 | + |
| 70 | +/** Breton (Brezhoneg) |
| 71 | + * @author Fulup |
| 72 | + * @author Y-M D |
| 73 | + */ |
| 74 | +$messages['br'] = array( |
| 75 | + 'webfonts' => 'Fontoù Kenrouedad', |
| 76 | + 'webfonts-desc' => "Ensoc'hañ a ra ar fontoù er pajennoù", |
| 77 | + 'webfonts-load' => 'Diuzañ ar font', |
| 78 | + 'webfonts-reset' => 'Adderaouekaat', |
| 79 | +); |
| 80 | + |
| 81 | +/** Bosnian (Bosanski) |
| 82 | + * @author CERminator |
| 83 | + */ |
| 84 | +$messages['bs'] = array( |
| 85 | + 'webfonts' => 'WebFonts', |
| 86 | + 'webfonts-desc' => 'Ugradnja fontova na stranice', |
| 87 | + 'webfonts-load' => 'Odaberi font', |
| 88 | +); |
| 89 | + |
| 90 | +/** Danish (Dansk) |
| 91 | + * @author Peter Alberti |
| 92 | + */ |
| 93 | +$messages['da'] = array( |
| 94 | + 'webfonts' => 'WebFonts', |
| 95 | + 'webfonts-desc' => 'Integrer skrifttyper i siderne', |
| 96 | + 'webfonts-load' => 'Vælg skrifttype', |
| 97 | + 'webfonts-reset' => 'Nulstil', |
| 98 | + 'webfonts-enable-preference' => 'Aktiver integrering af skrifttyper (WebFonts)', |
| 99 | +); |
| 100 | + |
| 101 | +/** German (Deutsch) |
| 102 | + * @author Kghbln |
| 103 | + */ |
| 104 | +$messages['de'] = array( |
| 105 | + 'webfonts' => 'WebSchriftarten', |
| 106 | + 'webfonts-desc' => 'Ermöglicht die Schriftarteneinbettung in Seiten', |
| 107 | + 'webfonts-load' => 'Schriftart auswählen', |
| 108 | + 'webfonts-reset' => 'Zurücksetzen', |
| 109 | + 'webfonts-enable-preference' => 'Schriftarteneinbettung aktivieren', |
| 110 | +); |
| 111 | + |
| 112 | +/** Spanish (Español) |
| 113 | + * @author Fitoschido |
| 114 | + */ |
| 115 | +$messages['es'] = array( |
| 116 | + 'webfonts' => 'WebFonts', |
| 117 | + 'webfonts-desc' => 'Incrustar tipografías en las páginas', |
| 118 | + 'webfonts-load' => 'Seleccionar tipografía', |
| 119 | + 'webfonts-reset' => 'Restablecer', |
| 120 | +); |
| 121 | + |
| 122 | +/** Persian (فارسی) |
| 123 | + * @author Ebraminio |
| 124 | + * @author Huji |
| 125 | + * @author ZxxZxxZ |
| 126 | + */ |
| 127 | +$messages['fa'] = array( |
| 128 | + 'webfonts' => 'وبقلم', |
| 129 | + 'webfonts-desc' => 'جاسازی قلمها در صفحهها', |
| 130 | + 'webfonts-load' => 'انتخاب قلم', |
| 131 | + 'webfonts-reset' => 'بازنشانی', |
| 132 | + 'webfonts-enable-preference' => 'فعالکردن جاسازی قلم (وبقلم)', |
| 133 | +); |
| 134 | + |
| 135 | +/** French (Français) |
| 136 | + * @author Gomoko |
| 137 | + * @author IAlex |
| 138 | + * @author Sherbrooke |
| 139 | + */ |
| 140 | +$messages['fr'] = array( |
| 141 | + 'webfonts' => 'Polices web', |
| 142 | + 'webfonts-desc' => 'Incorpore les polices dans les pages', |
| 143 | + 'webfonts-load' => 'Sélectionnez une police', |
| 144 | + 'webfonts-reset' => 'Réinitialiser', |
| 145 | + 'webfonts-enable-preference' => "Active l'incorporation des fontes (WebFonts)", |
| 146 | +); |
| 147 | + |
| 148 | +/** Franco-Provençal (Arpetan) |
| 149 | + * @author ChrisPtDe |
| 150 | + */ |
| 151 | +$messages['frp'] = array( |
| 152 | + 'webfonts' => 'Polices vouèbe', |
| 153 | + 'webfonts-desc' => 'Apond les polices a les pâges.', |
| 154 | + 'webfonts-load' => 'Chouèsésséd una police', |
| 155 | + 'webfonts-reset' => 'Tornar inicialisar', |
| 156 | +); |
| 157 | + |
| 158 | +/** Galician (Galego) |
| 159 | + * @author Toliño |
| 160 | + */ |
| 161 | +$messages['gl'] = array( |
| 162 | + 'webfonts' => 'WebFonts', |
| 163 | + 'webfonts-desc' => 'Incorporar fontes nas páxinas', |
| 164 | + 'webfonts-load' => 'Seleccione a fonte', |
| 165 | + 'webfonts-reset' => 'Restablecer', |
| 166 | + 'webfonts-enable-preference' => 'Activar a incorporación de fontes (WebFonts)', |
| 167 | +); |
| 168 | + |
| 169 | +/** Swiss German (Alemannisch) |
| 170 | + * @author Als-Chlämens |
| 171 | + */ |
| 172 | +$messages['gsw'] = array( |
| 173 | + 'webfonts' => 'WebSchriftarte', |
| 174 | + 'webfonts-desc' => 'Schriftarte in Syte yybette', |
| 175 | + 'webfonts-load' => 'Schriftart usswääle', |
| 176 | + 'webfonts-reset' => 'Zruggsetze', |
| 177 | + 'webfonts-enable-preference' => 'D Yybettig vo Schriftarte aktiviere', |
| 178 | +); |
| 179 | + |
| 180 | +/** Gujarati (ગુજરાતી) |
| 181 | + * @author Ankit |
| 182 | + */ |
| 183 | +$messages['gu'] = array( |
| 184 | + 'webfonts-load' => 'ફોન્ટ પસંદ કરો', |
| 185 | + 'webfonts-reset' => 'ફરી ગોઠવો', |
| 186 | +); |
| 187 | + |
| 188 | +/** Hebrew (עברית) |
| 189 | + * @author Amire80 |
| 190 | + */ |
| 191 | +$messages['he'] = array( |
| 192 | + 'webfonts' => 'גופני רשת', |
| 193 | + 'webfonts-desc' => 'הטמעת גופנים בדפים', |
| 194 | + 'webfonts-load' => 'בחירת גופן', |
| 195 | + 'webfonts-reset' => 'ביטול גופן רשת', |
| 196 | + 'webfonts-enable-preference' => 'הפעלה של הטמעת גופנים (גופני רשת)', |
| 197 | +); |
| 198 | + |
| 199 | +/** Hindi (हिन्दी) |
| 200 | + * @author Bhawani Gautam |
| 201 | + */ |
| 202 | +$messages['hi'] = array( |
| 203 | + 'webfonts' => 'वेब फॉण्ट्स', |
| 204 | + 'webfonts-desc' => 'पृष्ठों में फॉन्ट्सका जड़ान करें', |
| 205 | + 'webfonts-load' => 'फ़ॉन्ट का चयन करें', |
| 206 | + 'webfonts-reset' => 'पुनर्स्थापित करें', |
| 207 | + 'webfonts-enable-preference' => 'फ़ॉन्ट एम्बेडिंग (WebFonts) को सक्षम करें', |
| 208 | +); |
| 209 | + |
| 210 | +/** Upper Sorbian (Hornjoserbsce) |
| 211 | + * @author Michawiki |
| 212 | + */ |
| 213 | +$messages['hsb'] = array( |
| 214 | + 'webfonts' => 'WebFonts', |
| 215 | + 'webfonts-desc' => 'Pisma do stronow zasadźić', |
| 216 | + 'webfonts-load' => 'Pismo wubrać', |
| 217 | + 'webfonts-reset' => 'Wróćo stajić', |
| 218 | + 'webfonts-enable-preference' => 'Zasadźenje pismow zmóžnić (WebFonts)', |
| 219 | +); |
| 220 | + |
| 221 | +/** Interlingua (Interlingua) |
| 222 | + * @author McDutchie |
| 223 | + */ |
| 224 | +$messages['ia'] = array( |
| 225 | + 'webfonts' => 'WebFonts', |
| 226 | + 'webfonts-desc' => 'Incorporar typos de litteras in paginas', |
| 227 | + 'webfonts-load' => 'Selige un typo de litteras', |
| 228 | + 'webfonts-reset' => 'Reinitialisar', |
| 229 | + 'webfonts-enable-preference' => 'Activar le incorporation de typos de litteras (WebFonts)', |
| 230 | +); |
| 231 | + |
| 232 | +/** Indonesian (Bahasa Indonesia) |
| 233 | + * @author IvanLanin |
| 234 | + */ |
| 235 | +$messages['id'] = array( |
| 236 | + 'webfonts' => 'WebFonts', |
| 237 | + 'webfonts-desc' => 'Menyertakan fon (huruf) dalam halaman', |
| 238 | + 'webfonts-load' => 'Pilih fon', |
| 239 | + 'webfonts-reset' => 'Setel ulang', |
| 240 | +); |
| 241 | + |
| 242 | +/** Iloko (Ilokano) |
| 243 | + * @author Lam-ang |
| 244 | + */ |
| 245 | +$messages['ilo'] = array( |
| 246 | + 'webfonts' => 'WebFonts', |
| 247 | + 'webfonts-desc' => 'Ikabil dagiti kita ti letra kadagiti panid', |
| 248 | + 'webfonts-load' => 'Agpili ti kita ti letra', |
| 249 | + 'webfonts-reset' => 'Isubli', |
| 250 | + 'webfonts-enable-preference' => 'Ipabalin ti pinagikabil ti kita ti letra (WebFonts)', |
| 251 | +); |
| 252 | + |
| 253 | +/** Italian (Italiano) |
| 254 | + * @author Beta16 |
| 255 | + */ |
| 256 | +$messages['it'] = array( |
| 257 | + 'webfonts' => 'WebFonts', |
| 258 | + 'webfonts-desc' => 'Incorpora caratteri nelle pagine', |
| 259 | + 'webfonts-load' => 'Seleziona il tipo di carattere', |
| 260 | +); |
| 261 | + |
| 262 | +/** Japanese (日本語) |
| 263 | + * @author Fryed-peach |
| 264 | + * @author Schu |
| 265 | + */ |
| 266 | +$messages['ja'] = array( |
| 267 | + 'webfonts' => 'Web フォント', |
| 268 | + 'webfonts-desc' => 'ページにフォントを埋め込みます。', |
| 269 | + 'webfonts-load' => 'フォントを選択', |
| 270 | + 'webfonts-reset' => 'リセット', |
| 271 | +); |
| 272 | + |
| 273 | +/** Khmer (ភាសាខ្មែរ) |
| 274 | + * @author Lovekhmer |
| 275 | + * @author វ័ណថារិទ្ធ |
| 276 | + */ |
| 277 | +$messages['km'] = array( |
| 278 | + 'webfonts' => 'ពុម្ពអក្សរ WebFonts', |
| 279 | + 'webfonts-desc' => 'បង្កប់ពុម្ពអក្សរក្នុងទំព័រនេះ', |
| 280 | + 'webfonts-load' => 'ជ្រើសរើសពុម្ពអក្សរ', |
| 281 | + 'webfonts-reset' => 'កំណត់ឡើងវិញ', |
| 282 | + 'webfonts-enable-preference' => 'ដាក់ពុម្ពអក្សរបង្កប់ចូល (WebFonts)', |
| 283 | +); |
| 284 | + |
| 285 | +/** Colognian (Ripoarisch) |
| 286 | + * @author Purodha |
| 287 | + */ |
| 288 | +$messages['ksh'] = array( |
| 289 | + 'webfonts' => 'Schreff_Aate em Web', |
| 290 | + 'webfonts-desc' => 'Schreff_Aate en Sigge enboue', |
| 291 | + 'webfonts-load' => 'Schreff_Aat ußsöke', |
| 292 | + 'webfonts-reset' => 'Zeröksäze', |
| 293 | + 'webfonts-enable-preference' => 'Et Schreff_Aate en de Sigge enboue aanschallde ({{int:webfonts}})', |
| 294 | +); |
| 295 | + |
| 296 | +/** Luxembourgish (Lëtzebuergesch) |
| 297 | + * @author Robby |
| 298 | + */ |
| 299 | +$messages['lb'] = array( |
| 300 | + 'webfonts-load' => 'Buschtawen-Typ (Font) eraussichen', |
| 301 | + 'webfonts-reset' => 'Zrécksetzen', |
| 302 | +); |
| 303 | + |
| 304 | +/** Macedonian (Македонски) |
| 305 | + * @author Bjankuloski06 |
| 306 | + */ |
| 307 | +$messages['mk'] = array( |
| 308 | + 'webfonts' => 'WebFonts', |
| 309 | + 'webfonts-desc' => 'Вградување на фонтови во страници', |
| 310 | + 'webfonts-load' => 'Изберете фонт', |
| 311 | + 'webfonts-reset' => 'Врати', |
| 312 | + 'webfonts-enable-preference' => 'Овозможи на вметнување на фонтови (WebFonts)', |
| 313 | +); |
| 314 | + |
| 315 | +/** Malayalam (മലയാളം) |
| 316 | + * @author Praveenp |
| 317 | + * @author Santhosh |
| 318 | + */ |
| 319 | +$messages['ml'] = array( |
| 320 | + 'webfonts' => 'വെബ്ഫോണ്ടുകള്', |
| 321 | + 'webfonts-desc' => 'മീഡിയവിക്കി താളുകളില് ഫോണ്ടുകള് എംബെഡ് ചെയ്യുക', |
| 322 | + 'webfonts-load' => 'ഫോണ്ടുകള്', |
| 323 | + 'webfonts-reset' => 'പഴയപടിയാക്കുക', |
| 324 | + 'webfonts-enable-preference' => 'ഫോണ്ട് എംബെഡ് ചെയ്യുക.(വെബ്ഫോണ്ട്സ്)', |
| 325 | +); |
| 326 | + |
| 327 | +/** Marathi (मराठी) |
| 328 | + * @author Htt |
| 329 | + */ |
| 330 | +$messages['mr'] = array( |
| 331 | + 'webfonts' => 'जालटंक', |
| 332 | + 'webfonts-load' => 'टंक', |
| 333 | + 'webfonts-reset' => 'पूर्ववत करा', |
| 334 | +); |
| 335 | + |
| 336 | +/** Malay (Bahasa Melayu) |
| 337 | + * @author Anakmalaysia |
| 338 | + */ |
| 339 | +$messages['ms'] = array( |
| 340 | + 'webfonts' => 'WebFonts', |
| 341 | + 'webfonts-desc' => 'Gunakan fon dalam laman', |
| 342 | + 'webfonts-load' => 'Pilih fon', |
| 343 | + 'webfonts-reset' => 'Set semula', |
| 344 | + 'webfonts-enable-preference' => 'Hidupkan pembenaman fon (WebFonts)', |
| 345 | +); |
| 346 | + |
| 347 | +/** Nepali (नेपाली) |
| 348 | + * @author Bhawani Gautam |
| 349 | + */ |
| 350 | +$messages['ne'] = array( |
| 351 | + 'webfonts' => 'वेब फण्ट्स', |
| 352 | + 'webfonts-desc' => 'पृष्ठहरुमा लिपि जड़ान(fonts embed) गर्ने', |
| 353 | + 'webfonts-load' => 'लिपि(font) चुन्ने', |
| 354 | + 'webfonts-reset' => 'पुनर्स्थापित गर्ने', |
| 355 | + 'webfonts-enable-preference' => 'लिपि जडान कार्य (वेब फण्ट्स) सक्रिय गर्ने', |
| 356 | +); |
| 357 | + |
| 358 | +/** Dutch (Nederlands) |
| 359 | + * @author SPQRobin |
| 360 | + * @author Siebrand |
| 361 | + */ |
| 362 | +$messages['nl'] = array( |
| 363 | + 'webfonts' => 'WebFonts', |
| 364 | + 'webfonts-desc' => "Lettertypen op pagina's insluiten", |
| 365 | + 'webfonts-load' => 'Lettertype selecteren', |
| 366 | + 'webfonts-reset' => 'Opnieuw instellen', |
| 367 | + 'webfonts-enable-preference' => 'Lettertypen insluiten inschakelen (WebFonts)', |
| 368 | +); |
| 369 | + |
| 370 | +/** Norwegian (bokmål) (Norsk (bokmål)) |
| 371 | + * @author Nghtwlkr |
| 372 | + */ |
| 373 | +$messages['no'] = array( |
| 374 | + 'webfonts' => 'WebFonts', |
| 375 | + 'webfonts-desc' => 'Bygg inn fonter i sider', |
| 376 | + 'webfonts-load' => 'Velg font', |
| 377 | +); |
| 378 | + |
| 379 | +/** Oriya (ଓଡ଼ିଆ) |
| 380 | + * @author Odisha1 |
| 381 | + */ |
| 382 | +$messages['or'] = array( |
| 383 | + 'webfonts-reset' => 'ପୁନଃ ସ୍ଥାପନ', |
| 384 | +); |
| 385 | + |
| 386 | +/** Polish (Polski) |
| 387 | + * @author Woytecr |
| 388 | + */ |
| 389 | +$messages['pl'] = array( |
| 390 | + 'webfonts-load' => 'Wybierz czcionkę', |
| 391 | +); |
| 392 | + |
| 393 | +/** Piedmontese (Piemontèis) |
| 394 | + * @author Borichèt |
| 395 | + * @author Dragonòt |
| 396 | + */ |
| 397 | +$messages['pms'] = array( |
| 398 | + 'webfonts' => "Caràter dl'aragnà", |
| 399 | + 'webfonts-desc' => 'Anserì ij caràter ant le pàgine', |
| 400 | + 'webfonts-load' => "Ch'a selession-a un tipo ëd caràter", |
| 401 | + 'webfonts-reset' => 'Spian-a', |
| 402 | + 'webfonts-enable-preference' => "Abilité l'anseriment ëd tipo ëd caràter (Caràter dl'aragnà)", |
| 403 | +); |
| 404 | + |
| 405 | +/** Pashto (پښتو) |
| 406 | + * @author Ahmed-Najib-Biabani-Ibrahimkhel |
| 407 | + */ |
| 408 | +$messages['ps'] = array( |
| 409 | + 'webfonts-load' => 'ليکبڼه ټاکل', |
| 410 | +); |
| 411 | + |
| 412 | +/** Portuguese (Português) |
| 413 | + * @author Hamilton Abreu |
| 414 | + */ |
| 415 | +$messages['pt'] = array( |
| 416 | + 'webfonts' => 'TiposDeLetraIncorporados', |
| 417 | + 'webfonts-desc' => 'Tipos de letra incorporados nas páginas', |
| 418 | + 'webfonts-load' => 'Seleccione o tipo', |
| 419 | + 'webfonts-reset' => 'Reiniciar', |
| 420 | +); |
| 421 | + |
| 422 | +/** Romanian (Română) |
| 423 | + * @author Minisarm |
| 424 | + */ |
| 425 | +$messages['ro'] = array( |
| 426 | + 'webfonts-enable-preference' => 'Activează încorporarea fonturilor (WebFonts)', |
| 427 | +); |
| 428 | + |
| 429 | +/** Russian (Русский) |
| 430 | + * @author Lockal |
| 431 | + * @author Александр Сигачёв |
| 432 | + */ |
| 433 | +$messages['ru'] = array( |
| 434 | + 'webfonts' => 'WebFonts', |
| 435 | + 'webfonts-desc' => 'Позволяет встраивать шрифты на страницы', |
| 436 | + 'webfonts-load' => 'Выбрать шрифт', |
| 437 | + 'webfonts-reset' => 'Сбросить', |
| 438 | +); |
| 439 | + |
| 440 | +/** Sanskrit (संस्कृतम्) |
| 441 | + * @author Bhawani Gautam |
| 442 | + */ |
| 443 | +$messages['sa'] = array( |
| 444 | + 'webfonts' => 'वेब फॉण्ट्स', |
| 445 | + 'webfonts-desc' => 'पृष्ठेषु वर्णानि (fonts) स्थापयतु', |
| 446 | + 'webfonts-load' => 'वर्णानि चयनं करोतु', |
| 447 | + 'webfonts-reset' => 'पुनर्स्थापयतु', |
| 448 | + 'webfonts-enable-preference' => 'वर्णस्थापना (वेबफ़ॉन्ट) सक्रियं करोतु', |
| 449 | +); |
| 450 | + |
| 451 | +/** Slovenian (Slovenščina) |
| 452 | + * @author Dbc334 |
| 453 | + */ |
| 454 | +$messages['sl'] = array( |
| 455 | + 'webfonts' => 'SpletnePisave', |
| 456 | + 'webfonts-desc' => 'Vdelaj pisave na strani', |
| 457 | + 'webfonts-load' => 'Izberite pisavo', |
| 458 | + 'webfonts-reset' => 'Ponastavi', |
| 459 | + 'webfonts-enable-preference' => 'Omogoči vdelavo pisav (SpletnePisave)', |
| 460 | +); |
| 461 | + |
| 462 | +/** Serbian (Cyrillic script) (Српски (ћирилица)) |
| 463 | + * @author Rancher |
| 464 | + */ |
| 465 | +$messages['sr-ec'] = array( |
| 466 | + 'webfonts' => 'Веб фонтови', |
| 467 | + 'webfonts-desc' => 'Угради фонтове на страницама', |
| 468 | + 'webfonts-load' => 'Изабери фонт', |
| 469 | +); |
| 470 | + |
| 471 | +/** Swedish (Svenska) |
| 472 | + * @author WikiPhoenix |
| 473 | + */ |
| 474 | +$messages['sv'] = array( |
| 475 | + 'webfonts' => 'WebFonts', |
| 476 | + 'webfonts-desc' => 'Bäddar in typsnitt i sidor', |
| 477 | + 'webfonts-load' => 'Välj typsnitt', |
| 478 | + 'webfonts-reset' => 'Återställ', |
| 479 | +); |
| 480 | + |
| 481 | +/** Tamil (தமிழ்) |
| 482 | + * @author Logicwiki |
| 483 | + * @author Sodabottle |
| 484 | + */ |
| 485 | +$messages['ta'] = array( |
| 486 | + 'webfonts' => 'இணைய எழுத்துருக்கள்', |
| 487 | + 'webfonts-desc' => 'பக்கங்களில் எழுத்துருக்களை செயலாக்க', |
| 488 | + 'webfonts-load' => 'எழுத்துரு மாற்ற', |
| 489 | + 'webfonts-reset' => 'இயல்பு எழுத்துரு', |
| 490 | + 'webfonts-enable-preference' => 'எழுத்துரு புதைத்தல் (இணைய எழுத்துருக்களை) பயன்படுத்துக', |
| 491 | +); |
| 492 | + |
| 493 | +/** Tagalog (Tagalog) |
| 494 | + * @author AnakngAraw |
| 495 | + */ |
| 496 | +$messages['tl'] = array( |
| 497 | + 'webfonts' => 'WebFonts', |
| 498 | + 'webfonts-desc' => 'Magbaon ng mga estilo ng titik sa mga pahina', |
| 499 | + 'webfonts-load' => 'Pumili ng estilo ng titik', |
| 500 | +); |
| 501 | + |
| 502 | +/** Turkish (Türkçe) |
| 503 | + * @author Emperyan |
| 504 | + */ |
| 505 | +$messages['tr'] = array( |
| 506 | + 'webfonts-load' => 'Yazı tipi seçin', |
| 507 | + 'webfonts-reset' => 'Sıfırla', |
| 508 | +); |
| 509 | + |
| 510 | +/** Ukrainian (Українська) |
| 511 | + * @author Microcell |
| 512 | + */ |
| 513 | +$messages['uk'] = array( |
| 514 | + 'webfonts-load' => 'Обрати шрифт', |
| 515 | +); |
| 516 | + |
| 517 | +/** Vietnamese (Tiếng Việt) |
| 518 | + * @author Minh Nguyen |
| 519 | + */ |
| 520 | +$messages['vi'] = array( |
| 521 | + 'webfonts' => 'Phông chữ Web', |
| 522 | + 'webfonts-desc' => 'Nhúng phông chữ vào các trang', |
| 523 | + 'webfonts-load' => 'Chọn phông chữ', |
| 524 | + 'webfonts-reset' => 'Mặc định lại', |
| 525 | +); |
| 526 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 527 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.php |
— | — | @@ -0,0 +1,63 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Dynamic Font Embedding MediaWiki extension |
| 5 | + * |
| 6 | + * To install it put this file in the extensions directory |
| 7 | + * To activate the extension, include it from your LocalSettings.php |
| 8 | + * with: require("$IP/extensions/WebFonts.php"); |
| 9 | + * |
| 10 | + * @file |
| 11 | + * @ingroup Extensions |
| 12 | + * @author Santhosh Thottingal, <santhosh.thottingal@gmail.com> |
| 13 | + * @copyright © 2011 Santhosh Thottingal http://thottingal.in |
| 14 | + * @licence GNU General Public Licence 3.0 or later |
| 15 | + */ |
| 16 | + |
| 17 | +if ( !defined( 'MEDIAWIKI' ) ) { |
| 18 | + echo( "This file is an extension to the MediaWiki software and cannot be used standalone.\n" ); |
| 19 | + die( -1 ); |
| 20 | +} |
| 21 | + |
| 22 | +$wgExtensionCredits['parserhook'][] = array( |
| 23 | + 'path' => __FILE__, |
| 24 | + 'name' => 'WebFonts', |
| 25 | + 'author' => array( 'Santhosh Thottingal', 'Niklas Laxström' ), |
| 26 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:WebFonts', |
| 27 | + 'descriptionmsg' => 'webfonts-desc', |
| 28 | +); |
| 29 | + |
| 30 | +$dir = dirname( __FILE__ ); |
| 31 | + |
| 32 | +// Internationalization |
| 33 | +$wgExtensionMessagesFiles['WebFonts'] = "$dir/WebFonts.i18n.php"; |
| 34 | + |
| 35 | +// Register auto load for the page class |
| 36 | +$wgAutoloadClasses['WebFontsHooks'] = "$dir/WebFonts.hooks.php"; |
| 37 | + |
| 38 | +$wgHooks['BeforePageDisplay'][] = 'WebFontsHooks::addModules'; |
| 39 | +$wgHooks['GetPreferences'][] = 'WebFontsHooks::addPreference'; |
| 40 | +$wgHooks['UserGetDefaultOptions'][] = 'WebFontsHooks::addDefaultOptions'; |
| 41 | + |
| 42 | +$wgWebFontsEnabledByDefault = true; |
| 43 | + |
| 44 | +$wgResourceModules['ext.webfonts.init'] = array( |
| 45 | + 'scripts' => 'resources/ext.webfonts.init.js', |
| 46 | + 'localBasePath' => $dir, |
| 47 | + 'remoteExtPath' => 'WebFonts', |
| 48 | + 'dependencies' => 'ext.webfonts.core', |
| 49 | + 'position' => 'top', |
| 50 | +); |
| 51 | + |
| 52 | +$wgResourceModules['ext.webfonts.core'] = array( |
| 53 | + 'scripts' => array( 'resources/ext.webfonts.js', 'resources/ext.webfonts.fontlist.js' ), |
| 54 | + 'styles' => 'resources/ext.webfonts.css', |
| 55 | + 'skinStyles' => array( |
| 56 | + 'modern' => 'resources/ext.webfonts.modern.css', |
| 57 | + 'monobook' => 'resources/ext.webfonts.monobook.css', |
| 58 | + ), |
| 59 | + 'localBasePath' => $dir, |
| 60 | + 'remoteExtPath' => 'WebFonts', |
| 61 | + 'messages' => array( 'webfonts-load', 'webfonts-reset' ), |
| 62 | + 'dependencies' => 'jquery.cookie' , |
| 63 | + 'position' => 'top', |
| 64 | +); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 65 | + native |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts |
___________________________________________________________________ |
Added: svn:ignore |
2 | 66 | + .buildpath |
.settings |
.project |