diff options
Diffstat (limited to 'extensions/WikiEditor/modules')
57 files changed, 1123 insertions, 9808 deletions
diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.js b/extensions/WikiEditor/modules/ext.wikiEditor.js index 46087989..7e3baed6 100644 --- a/extensions/WikiEditor/modules/ext.wikiEditor.js +++ b/extensions/WikiEditor/modules/ext.wikiEditor.js @@ -1,7 +1,80 @@ /* * JavaScript for WikiEditor */ -jQuery( document ).ready( function ( $ ) { - // Initialize wikiEditor - $( '#wpTextbox1' ).wikiEditor(); -} ); + +( function ( $, mw ) { + function logEditEvent( action, data ) { + if ( mw.loader.getState( 'schema.Edit' ) === null ) { + return; + } + + mw.loader.using( 'schema.Edit' ).done( function () { + data = $.extend( { + version: 1, + action: action, + editor: 'wikitext', + platform: 'desktop', // FIXME + integration: 'page', + 'page.id': mw.config.get( 'wgArticleId' ), + 'page.title': mw.config.get( 'wgPageName' ), + 'page.ns': mw.config.get( 'wgNamespaceNumber' ), + 'page.revid': mw.config.get( 'wgRevisionId' ), + 'page.length': -1, // FIXME + 'user.id': mw.user.getId(), + 'user.editCount': mw.config.get( 'wgUserEditCount', 0 ), + 'mediawiki.version': mw.config.get( 'wgVersion' ) + }, data ); + + if ( mw.user.isAnon() ) { + data['user.class'] = 'IP'; + } + + data['action.' + action + '.type'] = data.type; + data['action.' + action + '.mechanism'] = data.mechanism; + data['action.' + action + '.timing'] = data.timing === undefined ? + 0 : Math.floor( data.timing ); + // Remove renamed properties + delete data.type; + delete data.mechanism; + delete data.timing; + + mw.eventLog.logEvent( 'Edit', data ); + } ); + } + + $( function () { + var $textarea = $( '#wpTextbox1' ), + editingSessionIdInput = $( '#editingStatsId' ), + editingSessionId, submitting, onUnloadFallback; + + // Initialize wikiEditor + $textarea.wikiEditor(); + + if ( editingSessionIdInput.length ) { + editingSessionId = editingSessionIdInput.val(); + logEditEvent( 'ready', { + editingSessionId: editingSessionId + } ); + $textarea.closest( 'form' ).submit( function () { + submitting = true; + } ); + onUnloadFallback = window.onunload; + window.onunload = function () { + var fallbackResult; + + if ( onUnloadFallback ) { + fallbackResult = onUnloadFallback(); + } + + if ( !submitting ) { + logEditEvent( 'abort', { + editingSessionId: editingSessionId, + // TODO: abort.type + } ); + } + + return fallbackResult; + }; + } + } ); +}( jQuery, mediaWiki ) );
\ No newline at end of file diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.css b/extensions/WikiEditor/modules/ext.wikiEditor.less index 6ea7e631..0163242d 100644 --- a/extensions/WikiEditor/modules/ext.wikiEditor.css +++ b/extensions/WikiEditor/modules/ext.wikiEditor.less @@ -3,7 +3,9 @@ */ /* Hide vanilla MediaWiki's "Editing help" link, as we provide it in the toolbar */ -.editButtons .editHelp, -.editButtons .mw-editButtons-pipe-separator { - display: none; +.editButtons { + .editHelp, + .mw-editButtons-pipe-separator { + display: none; + } } diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.previewDialog.js b/extensions/WikiEditor/modules/ext.wikiEditor.previewDialog.js deleted file mode 100644 index 3b1acd7c..00000000 --- a/extensions/WikiEditor/modules/ext.wikiEditor.previewDialog.js +++ /dev/null @@ -1,7 +0,0 @@ -/* - * JavaScript for WikiEditor Preview Dialog - */ -jQuery( document ).ready( function ( $ ) { - // Add preview module - $( 'textarea#wpTextbox1' ).wikiEditor( 'addModule', 'previewDialog' ); -} ); diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js b/extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js deleted file mode 100644 index 3475284b..00000000 --- a/extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js +++ /dev/null @@ -1,255 +0,0 @@ -/** - * Test set for the edit toolbar - */ -var textareaId = '#wpTextbox1'; -var wikiEditorTests = { - // Add emoticons section - 'add_sections_toolbar': { - call: 'addToToolbar', - data: { - 'sections': { - 'emoticons': { - 'type': 'toolbar', - 'label': 'Emoticons' - } - } - }, - test: '*[rel=emoticons].section', - pre: 0, - post: 1 - }, - // Add faces group to emoticons section - 'add_groups': { - call: 'addToToolbar', - data: { - section: 'emoticons', - 'groups': { - 'faces': { - 'label': 'Faces' - } - } - }, - test: '*[rel=emoticons].section *[rel=faces].group', - pre: 0, - post: 1 - }, - // Add smile tool to faces group of emoticons section - 'add_tools': { - call: 'addToToolbar', - data: { - section: 'emoticons', - 'group': 'faces', - 'tools': { - 'smile': { - label: 'Smile!', - type: 'button', - icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png', - action: { - type: 'encapsulate', - options: { - pre: ':)' - } - } - } - } - }, - test: '*[rel=emoticons].section *[rel=faces].group *[rel=smile].tool', - pre: 0, - post: 1 - }, - // Add info section - 'add_sections_booklet': { - call: 'addToToolbar', - data: { - 'sections': { - 'info': { - 'type': 'booklet', - 'label': 'Info' - } - } - }, - test: '*[rel=info].section', - pre: 0, - post: 1 - }, - // Add info section - 'add_pages_table': { - call: 'addToToolbar', - data: { - section: 'info', - pages: { - 'colors': { - 'layout': 'table', - 'label': 'Colors', - 'headings': [ - { text: 'Name' }, - { text: 'Temperature' }, - { text: 'Swatch' } - ] - } - } - }, - test: '*[rel=info].section *[rel=colors].page', - pre: 0, - post: 1 - }, - // Add colors rows - 'add_rows': { - call: 'addToToolbar', - data: { - section: 'info', - page: 'colors', - 'rows': [ - { - 'name': { text: 'Red' }, - 'temp': { text: 'Warm' }, - 'swatch': { html: '<div style="width: 10px; height: 10px; background-color: red;">' } - }, - { - 'name': { text: 'Blue' }, - 'temp': { text: 'Cold' }, - 'swatch': { html: '<div style="width: 10px; height: 10px; background-color: blue;">' } - }, - { - 'name': { text: 'Silver' }, - 'temp': { text: 'Neutral' }, - 'swatch': { html: '<div style="width: 10px; height: 10px; background-color: silver;">' } - } - ] - }, - test: '*[rel=info].section *[rel=colors].page tr td', - pre: 0, - post: 9 - }, - // Add - 'add_pages_characters': { - call: 'addToToolbar', - data: { - section: 'info', - pages: { - 'emoticons': { - 'layout': 'characters', - 'label': 'Emoticons' - }, - 'removeme': { - 'layout': 'characters', - 'label': 'Remove Me!' - } - } - }, - test: '*[rel=info].section *[rel=emoticons].page', - pre: 0, - post: 1 - }, - // Add - 'add_characters': { - call: 'addToToolbar', - data: { - section: 'info', - page: 'emoticons', - characters: [ ':)', ':))', ':(', '<3', ';)' ] - }, - test: '*[rel=info].section *[rel=emoticons].page *[rel=":)"]', - pre: 0, - post: 1 - }, - // Remove page - 'remove_page': { - call: 'removeFromToolbar', - data: { - section: 'info', - page: 'removeme' - }, - test: '*[rel=info].section *[rel=removeme].page', - pre: 1, - post: 0 - }, - // Remove :)) from emoticon characters - 'remove_character': { - call: 'removeFromToolbar', - data: { - section: 'info', - page: 'emoticons', - 'character': ':))' - }, - test: '*[rel=info].section *[rel=emoticons].page *[rel=":))"]', - pre: 1, - post: 0 - }, - // Remove row from colors table of info section - 'remove_row': { - call: 'removeFromToolbar', - data: { - section: 'info', - page: 'colors', - 'row': 0 - }, - test: '*[rel=info].section *[rel=colors].page tr td', - pre: 9, - post: 6 - } -}; - -jQuery( document ).ready( function ( $ ) { - var $button = $( '<button>Run wikiEditor Tests!</button>' ) - .css( { - position: 'fixed', - bottom: 0, - right: 0, - width: '100%', - backgroundColor: '#333', - opacity: 0.75, - color: '#DDDDDD', - padding: '0.7em', - border: 'none', - display: 'none', - cursor: 'pointer' - } ) - .click( function () { - if ( $( this ).data( 'testDone' ) ) { - $( this ).slideUp( 'fast' ); - return false; - } - - var test, pre, post, i, - messages = [ 'Running tests for wikiEditor API' ], - $target = $( textareaId ), - $ui = $target.data( 'wikiEditor-context' ).$ui, - passes = 0, - tests = 0; - - for ( test in wikiEditorTests ) { - pre = $ui.find( wikiEditorTests[test].test ).length === wikiEditorTests[test].pre; - messages.push ( test + '-pre: ' + ( pre ? 'PASS' : 'FAIL' ) ); - $target.wikiEditor( - wikiEditorTests[test].call, - wikiEditorTests[test].data - ); - post = $ui.find( wikiEditorTests[test].test ).length === wikiEditorTests[test].post; - messages.push ( test + '-post: ' + ( post ? 'PASS' : 'FAIL' ) ); - if ( pre && post ) { - passes++; - } - tests++; - } - - if ( window.console ) { - for ( i = 0; i < messages.length; i++ ) { - window.console.log( messages[i] ); - } - } - - $( this ) - .attr( 'title', messages.join( ' | ' ) ) - .text( passes + ' / ' + tests + ' were successful' ) - .css( 'backgroundColor', passes < tests ? 'red' : 'green' ) - .data( 'testDone', 'true' ) - .blur(); - } ) - .appendTo( $( 'body' ) ); - - setTimeout( function () { - $button.slideDown( 'fast' ); - }, 1500 ); - -} ); diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.toolbar.styles.css b/extensions/WikiEditor/modules/ext.wikiEditor.toolbar.styles.less index cc80c169..67da9329 100644 --- a/extensions/WikiEditor/modules/ext.wikiEditor.toolbar.styles.css +++ b/extensions/WikiEditor/modules/ext.wikiEditor.toolbar.styles.less @@ -7,11 +7,6 @@ form#editform { padding: 0; } -#wpSummary, -#wpSummaryLabel { - margin-bottom: 1em; -} - #wpTextbox1 { line-height: 1.5em; resize: vertical; diff --git a/extensions/WikiEditor/modules/images/toolbar/button-sprite.svg b/extensions/WikiEditor/modules/images/toolbar/button-sprite.svg deleted file mode 100644 index 061ffa38..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/button-sprite.svg +++ /dev/null @@ -1,3038 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - version="1.1" - width="94" - height="2038" - id="svg3752"> - <defs - id="defs3754"> - <filter - color-interpolation-filters="sRGB" - id="filter11735"> - <feGaussianBlur - stdDeviation="0.22248641" - id="feGaussianBlur11737" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter11711"> - <feGaussianBlur - stdDeviation="0.40047554" - id="feGaussianBlur11713" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3837"> - <feGaussianBlur - stdDeviation="0.4021875" - id="feGaussianBlur3839" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3809"> - <feGaussianBlur - stdDeviation="0.30164062" - id="feGaussianBlur3811" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3776"> - <feGaussianBlur - stdDeviation="0.28441406" - id="feGaussianBlur3778" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3772"> - <feGaussianBlur - stdDeviation="0.380625" - id="feGaussianBlur3774" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-3"> - <feGaussianBlur - id="feGaussianBlur5058-1" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-5" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-0" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-6" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3886"> - <feGaussianBlur - stdDeviation="0.3665625" - id="feGaussianBlur3888" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3882"> - <feGaussianBlur - stdDeviation="0.27492187" - id="feGaussianBlur3884" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-4"> - <feGaussianBlur - id="feGaussianBlur5058-8" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-7" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-5" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-4" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3912"> - <feGaussianBlur - stdDeviation="0.28933594" - id="feGaussianBlur3914" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3908"> - <feGaussianBlur - stdDeviation="0.35953125" - id="feGaussianBlur3910" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-6"> - <feGaussianBlur - id="feGaussianBlur5058-6" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-6" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-3" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-40" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3973"> - <feGaussianBlur - stdDeviation="0.41109375" - id="feGaussianBlur3975" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3953"> - <feGaussianBlur - stdDeviation="0.30832031" - id="feGaussianBlur3955" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-0"> - <feGaussianBlur - id="feGaussianBlur5058-4" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-67" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-1" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-1" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4022"> - <feGaussianBlur - stdDeviation="0.36515625" - id="feGaussianBlur4024" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4018"> - <feGaussianBlur - stdDeviation="0.27" - id="feGaussianBlur4020" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-7"> - <feGaussianBlur - id="feGaussianBlur5058-7" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-9" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-02" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-2" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4067"> - <feGaussianBlur - stdDeviation="0.40265625" - id="feGaussianBlur4069" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4063"> - <feGaussianBlur - stdDeviation="0.30199219" - id="feGaussianBlur4065" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-30"> - <feGaussianBlur - id="feGaussianBlur5058-85" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-64" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-58" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-7" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3837-2"> - <feGaussianBlur - stdDeviation="0.4021875" - id="feGaussianBlur3839-1" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter3809-1"> - <feGaussianBlur - stdDeviation="0.30164062" - id="feGaussianBlur3811-8" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-62"> - <feGaussianBlur - id="feGaussianBlur5058-9" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-8" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-54" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-42" /> - </filter> - <linearGradient - x1="1.1049798" - y1="13.152683" - x2="6.6379666" - y2="10.024924" - id="linearGradient3986" - xlink:href="#linearGradient3980" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3195" - xlink:href="#linearGradient9497" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.74596729,0,0,0.94314201,-405.98488,-465.30597)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3192" - xlink:href="#linearGradient9497-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3202618,0,0,0.84666939,-733.334,-423.58754)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3189" - xlink:href="#linearGradient9497-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3098397,0,0,0.848111,-727.30273,-410.25386)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2" - xlink:href="#linearGradient9497-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - id="linearGradient9497-6"> - <stop - id="stop9499-0" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3" - xlink:href="#linearGradient9497-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520" - xlink:href="#linearGradient9497-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - id="linearGradient9497-1"> - <stop - id="stop9499-6" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1" - xlink:href="#linearGradient9497-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503" - xlink:href="#linearGradient9497" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497"> - <stop - id="stop9499" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3980"> - <stop - id="stop3982" - style="stop-color:#fcc273;stop-opacity:1" - offset="0" /> - <stop - id="stop3984" - style="stop-color:#fc916b;stop-opacity:1" - offset="1" /> - </linearGradient> - <filter - color-interpolation-filters="sRGB" - id="filter4112"> - <feGaussianBlur - stdDeviation="0.3909375" - id="feGaussianBlur4114" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4108"> - <feGaussianBlur - stdDeviation="0.29320256" - id="feGaussianBlur4110" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-68"> - <feGaussianBlur - id="feGaussianBlur5058-67" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-1" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-6" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-24" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4184"> - <feGaussianBlur - stdDeviation="0.35995908" - id="feGaussianBlur4186" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4180"> - <feGaussianBlur - stdDeviation="0.28407221" - id="feGaussianBlur4182" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-1"> - <feGaussianBlur - id="feGaussianBlur5058-64" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-0" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-8" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-74" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5879"> - <feGaussianBlur - stdDeviation="0.30769604" - id="feGaussianBlur5881" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5867"> - <feGaussianBlur - stdDeviation="0.23529697" - id="feGaussianBlur5869" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4229"> - <feGaussianBlur - stdDeviation="0.4059375" - id="feGaussianBlur4231" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4225"> - <feGaussianBlur - stdDeviation="0.30445256" - id="feGaussianBlur4227" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-44"> - <feGaussianBlur - id="feGaussianBlur5058-76" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-85" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-52" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-22" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4112-0"> - <feGaussianBlur - stdDeviation="0.3909375" - id="feGaussianBlur4114-3" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter4108-5"> - <feGaussianBlur - stdDeviation="0.29320256" - id="feGaussianBlur4110-7" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter5056-38"> - <feGaussianBlur - id="feGaussianBlur5058-47" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060-4" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062-7" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - in2="SourceGraphic" - operator="arithmetic" - k1="1" - k2="0" - k3="0.6" - k4="0" - in="result5" - result="result4" - id="feComposite5064-420" /> - </filter> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2-9" - xlink:href="#linearGradient9497-6-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - id="linearGradient9497-6-5"> - <stop - id="stop9499-0-5" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1-1" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3-6" - xlink:href="#linearGradient9497-6-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-6" - xlink:href="#linearGradient9497-1-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - id="linearGradient9497-1-0"> - <stop - id="stop9499-6-9" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7-9" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1-8" - xlink:href="#linearGradient9497-1-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-34" - xlink:href="#linearGradient9497-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-9"> - <stop - id="stop9499-3" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-8" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <filter - color-interpolation-filters="sRGB" - id="filter11735-4"> - <feGaussianBlur - stdDeviation="0.22248641" - id="feGaussianBlur11737-9" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter11711-5"> - <feGaussianBlur - stdDeviation="0.40047554" - id="feGaussianBlur11713-9" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter11735-7"> - <feGaussianBlur - stdDeviation="0.22248641" - id="feGaussianBlur11737-4" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter11711-8"> - <feGaussianBlur - stdDeviation="0.40047554" - id="feGaussianBlur11713-1" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter11735-9"> - <feGaussianBlur - stdDeviation="0.22248641" - id="feGaussianBlur11737-48" /> - </filter> - <filter - color-interpolation-filters="sRGB" - id="filter11711-3"> - <feGaussianBlur - stdDeviation="0.40047554" - id="feGaussianBlur11713-7" /> - </filter> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3195-7" - xlink:href="#linearGradient9497-18" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.13325,-446.76257)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3192-9" - xlink:href="#linearGradient9497-1-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.13136,-453.81692)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3189-5" - xlink:href="#linearGradient9497-6-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.04207,-439.75442)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2-6" - xlink:href="#linearGradient9497-6-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - id="linearGradient9497-6-2"> - <stop - id="stop9499-0-0" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1-0" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3-2" - xlink:href="#linearGradient9497-6-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-8" - xlink:href="#linearGradient9497-1-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - id="linearGradient9497-1-4"> - <stop - id="stop9499-6-5" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7-95" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1-5" - xlink:href="#linearGradient9497-1-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-8" - xlink:href="#linearGradient9497-18" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-18"> - <stop - id="stop9499-1" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-5" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="805.19128" - y1="693.05548" - x2="805.19128" - y2="702.22186" - id="linearGradient9194" - xlink:href="#linearGradient9090" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-22.749292,0.238835)" /> - <radialGradient - cx="30.513159" - cy="16.796043" - r="3.140625" - fx="30.513159" - fy="16.796043" - id="radialGradient9190" - xlink:href="#linearGradient9124" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5528787,-1.1867658e-7,7.6106348e-8,0.99584878,732.27147,685.88005)" /> - <radialGradient - cx="31.993927" - cy="9.0202503" - r="6.8660588" - fx="31.993927" - fy="9.0202503" - id="radialGradient9185" - xlink:href="#linearGradient9100" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5459471,-0.89508966,0.42455384,0.72967733,727.79019,718.64005)" /> - <radialGradient - cx="31.993927" - cy="9.0202503" - r="6.8660588" - fx="31.993927" - fy="9.0202503" - id="radialGradient9163" - xlink:href="#linearGradient9100" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5459471,-0.89508966,0.42455384,0.72967733,750.53948,718.40122)" /> - <radialGradient - cx="30.513159" - cy="16.796043" - r="3.140625" - fx="30.513159" - fy="16.796043" - id="radialGradient9161" - xlink:href="#linearGradient9124" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5528787,-1.1867658e-7,7.6106348e-8,0.99584878,755.02076,685.64122)" /> - <linearGradient - x1="805.19128" - y1="693.05548" - x2="805.19128" - y2="702.22186" - id="linearGradient9159" - xlink:href="#linearGradient9090" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient9090"> - <stop - id="stop9092" - style="stop-color:#766649;stop-opacity:1" - offset="0" /> - <stop - id="stop9094" - style="stop-color:#e6a540;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient9100"> - <stop - id="stop9102" - style="stop-color:#f4f5f4;stop-opacity:1" - offset="0" /> - <stop - id="stop9104" - style="stop-color:#f4f5f4;stop-opacity:0" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient9124"> - <stop - id="stop9126" - style="stop-color:#ffedbc;stop-opacity:1" - offset="0" /> - <stop - id="stop9128" - style="stop-color:#f7eca1;stop-opacity:1" - offset="1" /> - </linearGradient> - <filter - color-interpolation-filters="sRGB" - id="filter9873"> - <feGaussianBlur - stdDeviation="0.12340545" - id="feGaussianBlur9875" /> - </filter> - <linearGradient - x1="7.7878532" - y1="12.734541" - x2="17.905109" - y2="8.1800375" - id="linearGradient9784" - xlink:href="#linearGradient9778" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1631645,0,0,1.3512007,858.27422,629.02856)" /> - <radialGradient - cx="8.1702919" - cy="6.458025" - r="5.4584503" - fx="8.1702919" - fy="6.458025" - id="radialGradient9772" - xlink:href="#linearGradient9760" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-1.0337084,0.97885003,-0.83095482,-1.1642322,881.6209,640.19021)" /> - <linearGradient - id="linearGradient9760"> - <stop - id="stop9762" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop9764" - style="stop-color:#ffffff;stop-opacity:0" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient9778"> - <stop - id="stop9780" - style="stop-color:#f0a829;stop-opacity:1" - offset="0" /> - <stop - id="stop9782" - style="stop-color:#f0ad3e;stop-opacity:1" - offset="1" /> - </linearGradient> - <mask - id="mask3773"> - <rect - width="13.657221" - height="13.439366" - x="847.49951" - y="705.51801" - id="rect3775" - style="fill:url(#linearGradient3777);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - </mask> - <linearGradient - x1="843.28571" - y1="721.07123" - x2="865.29926" - y2="721.07123" - id="linearGradient3777" - xlink:href="#linearGradient3759" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.62040131,0,0,3.4971952,324.32395,-1809.4892)" - spreadMethod="pad" /> - <linearGradient - x1="843.28571" - y1="721.07123" - x2="865.29926" - y2="721.07123" - id="linearGradient3765" - xlink:href="#linearGradient3759" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,5.6369887,0,-3352.5089)" - spreadMethod="pad" /> - <linearGradient - id="linearGradient8229"> - <stop - id="stop8231" - style="stop-color:#ececec;stop-opacity:1" - offset="0" /> - <stop - id="stop8233" - style="stop-color:#9da09f;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3759"> - <stop - id="stop3761" - style="stop-color:#000000;stop-opacity:1" - offset="0" /> - <stop - id="stop3767" - style="stop-color:#ffffff;stop-opacity:1" - offset="0.25" /> - <stop - id="stop3769" - style="stop-color:#ffffff;stop-opacity:1" - offset="0.75" /> - <stop - id="stop3763" - style="stop-color:#000000;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient8229-5"> - <stop - id="stop8231-2" - style="stop-color:#ececec;stop-opacity:1" - offset="0" /> - <stop - id="stop8233-6" - style="stop-color:#9da09f;stop-opacity:1" - offset="1" /> - </linearGradient> - <filter - x="-0.13307104" - y="-0.085893638" - width="1.2661421" - height="1.1717873" - color-interpolation-filters="sRGB" - id="filter10491"> - <feGaussianBlur - stdDeviation="0.58045312" - id="feGaussianBlur10493" /> - </filter> - <filter - x="-0.083735459" - y="-0.13860559" - width="1.1674709" - height="1.2772112" - color-interpolation-filters="sRGB" - id="filter10487"> - <feGaussianBlur - stdDeviation="0.58113281" - id="feGaussianBlur10489" /> - </filter> - <radialGradient - cx="921.40735" - cy="698.09576" - r="3.38059" - fx="921.40735" - fy="698.09576" - id="radialGradient3875" - xlink:href="#linearGradient3844" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.32194816,0.22927541,-0.63390316,0.81005546,1060.6407,-75.559535)" /> - <linearGradient - x1="910.96173" - y1="694.78741" - x2="921.80005" - y2="696.93402" - id="linearGradient3873" - xlink:href="#linearGradient8680" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-26.508294,6.8837482)" /> - <radialGradient - cx="921.40735" - cy="698.09576" - r="3.38059" - fx="921.40735" - fy="698.09576" - id="radialGradient3865" - xlink:href="#linearGradient3844" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.32194816,0.22927541,-0.63390316,0.81005546,1060.6407,-75.559535)" /> - <radialGradient - cx="921.40735" - cy="698.09576" - r="3.38059" - fx="921.40735" - fy="698.09576" - id="radialGradient3861" - xlink:href="#linearGradient3844" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.37329045,0.12989255,-0.3815617,0.95521397,839.37118,-91.004306)" /> - <linearGradient - x1="910.96173" - y1="694.78741" - x2="921.80005" - y2="696.93402" - id="linearGradient3859" - xlink:href="#linearGradient8680" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-26.508294,6.8837482)" /> - <radialGradient - cx="921.40735" - cy="698.09576" - r="3.38059" - fx="921.40735" - fy="698.09576" - id="radialGradient3850" - xlink:href="#linearGradient3844" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.37329045,0.12989255,-0.3815617,0.95521397,839.37118,-91.004306)" /> - <mask - id="mask3836"> - <rect - width="21.294643" - height="21.741072" - x="874.80103" - y="689.3111" - id="rect3838" - style="fill:url(#linearGradient3840);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - </mask> - <linearGradient - x1="914.08923" - y1="691.73273" - x2="914.625" - y2="689.00946" - id="linearGradient3840" - xlink:href="#linearGradient3780" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-19.422226,4.7882523)" /> - <linearGradient - x1="910.96173" - y1="694.78741" - x2="921.80005" - y2="696.93402" - id="linearGradient8809" - xlink:href="#linearGradient8680" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-26.508294,6.8837482)" /> - <linearGradient - x1="12.19534" - y1="11.109293" - x2="20.350513" - y2="12.52982" - id="linearGradient8686" - xlink:href="#linearGradient8680" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="16.330652" - y1="8.7101812" - x2="17.635729" - y2="1.9547856" - id="linearGradient8670" - xlink:href="#linearGradient8662" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient7212"> - <stop - id="stop7214" - style="stop-color:#000000;stop-opacity:1" - offset="0" /> - <stop - id="stop7216" - style="stop-color:#000000;stop-opacity:0" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient8656"> - <stop - id="stop8658" - style="stop-color:#000000;stop-opacity:1" - offset="0" /> - </linearGradient> - <linearGradient - id="linearGradient8662"> - <stop - id="stop8664" - style="stop-color:#000000;stop-opacity:1" - offset="0" /> - <stop - id="stop8666" - style="stop-color:#000000;stop-opacity:0" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient8680"> - <stop - id="stop8682" - style="stop-color:#2e366a;stop-opacity:0.99215686" - offset="0" /> - <stop - id="stop8688" - style="stop-color:#3c91de;stop-opacity:1" - offset="0.4154374" /> - <stop - id="stop8684" - style="stop-color:#2e366a;stop-opacity:0.99358976" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3780"> - <stop - id="stop3782" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3784" - style="stop-color:#000000;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3844"> - <stop - id="stop3846" - style="stop-color:#ececec;stop-opacity:1" - offset="0" /> - <stop - id="stop3848" - style="stop-color:#cecece;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="1.9835248" - y1="1.7316169" - x2="-3.7763" - y2="15.516348" - id="linearGradient7130" - xlink:href="#linearGradient7004" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="1.9835248" - y1="1.7316169" - x2="-3.7763" - y2="15.516348" - id="linearGradient7010" - xlink:href="#linearGradient7004" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient7004"> - <stop - id="stop7006" - style="stop-color:#8ea8c5;stop-opacity:1" - offset="0" /> - <stop - id="stop7008" - style="stop-color:#365f96;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="896.22729" - y1="642.37769" - x2="884.73309" - y2="650.4939" - id="linearGradient4379" - xlink:href="#linearGradient4373" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.97557742,0,0,0.97557742,-0.43357327,15.714485)" /> - <linearGradient - id="linearGradient4373"> - <stop - id="stop4375" - style="stop-color:#a1a0a0;stop-opacity:1" - offset="0" /> - <stop - id="stop4377" - style="stop-color:#616363;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="880.47321" - y1="718.15826" - x2="880.47321" - y2="738.3028" - id="linearGradient6454" - xlink:href="#linearGradient6439" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-46,0)" /> - <linearGradient - x1="880.47321" - y1="718.15826" - x2="880.47321" - y2="738.3028" - id="linearGradient6445" - xlink:href="#linearGradient6439" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-46,0)" /> - <linearGradient - id="linearGradient6439"> - <stop - id="stop6441" - style="stop-color:#e5e7e2;stop-opacity:1" - offset="0" /> - <stop - id="stop6443" - style="stop-color:#e5e7e2;stop-opacity:0" - offset="1" /> - </linearGradient> - <radialGradient - cx="6.7155318" - cy="4.395853" - r="5.4276505" - fx="6.7155318" - fy="4.395853" - id="radialGradient11146" - xlink:href="#linearGradient11111" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="814.55927" - y1="726.61975" - x2="813.53076" - y2="725.49475" - id="linearGradient11144" - xlink:href="#linearGradient11103" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(55.60781,8.9693543)" /> - <linearGradient - x1="819.42767" - y1="729.21069" - x2="818.52716" - y2="728.31018" - id="linearGradient11142" - xlink:href="#linearGradient11077" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(66.373514,4.6113592)" /> - <radialGradient - cx="6.7155318" - cy="4.395853" - r="5.4276505" - fx="6.7155318" - fy="4.395853" - id="radialGradient11119" - xlink:href="#linearGradient11111" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="814.55927" - y1="726.61975" - x2="813.53076" - y2="725.49475" - id="linearGradient11109" - xlink:href="#linearGradient11103" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(55.60781,8.9693543)" /> - <linearGradient - x1="819.42767" - y1="729.21069" - x2="818.52716" - y2="728.31018" - id="linearGradient11095" - xlink:href="#linearGradient11077" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(66.373514,4.6113592)" /> - <linearGradient - id="linearGradient11077"> - <stop - id="stop11079" - style="stop-color:#a48757;stop-opacity:1" - offset="0" /> - <stop - id="stop11081" - style="stop-color:#eeeac6;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient11103"> - <stop - id="stop11105" - style="stop-color:#b8b8b7;stop-opacity:1" - offset="0" /> - <stop - id="stop11107" - style="stop-color:#a3a4a3;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient11111"> - <stop - id="stop11113" - style="stop-color:#e6edf5;stop-opacity:1" - offset="0" /> - <stop - id="stop11115" - style="stop-color:#7da2cc;stop-opacity:0.58333331" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3195-9" - xlink:href="#linearGradient9497-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.13325,-446.76257)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3192-4" - xlink:href="#linearGradient9497-1-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.13136,-453.81692)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3189-4" - xlink:href="#linearGradient9497-6-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.04207,-439.75442)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2-2" - xlink:href="#linearGradient9497-6-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - id="linearGradient9497-6-9"> - <stop - id="stop9499-0-7" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1-4" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3-0" - xlink:href="#linearGradient9497-6-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-5" - xlink:href="#linearGradient9497-1-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - id="linearGradient9497-1-9"> - <stop - id="stop9499-6-1" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7-7" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1-53" - xlink:href="#linearGradient9497-1-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-0" - xlink:href="#linearGradient9497-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-2"> - <stop - id="stop9499-9" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-6" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2-7" - xlink:href="#linearGradient9497-6-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - id="linearGradient9497-6-0"> - <stop - id="stop9499-0-9" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1-9" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3-8" - xlink:href="#linearGradient9497-6-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-29" - xlink:href="#linearGradient9497-1-95" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - id="linearGradient9497-1-95"> - <stop - id="stop9499-6-16" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7-0" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1-1" - xlink:href="#linearGradient9497-1-95" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-07" - xlink:href="#linearGradient9497-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-5"> - <stop - id="stop9499-2" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-67" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient4291" - xlink:href="#linearGradient9497-6-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-646.08618,-82.674677)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient4294" - xlink:href="#linearGradient9497-1-95" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-646.17547,-96.737178)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient4297" - xlink:href="#linearGradient9497-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-646.17736,-89.68283)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient4316" - xlink:href="#linearGradient9497-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-646.17736,-89.68283)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient4318" - xlink:href="#linearGradient9497-1-95" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-646.17547,-96.737178)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient4320" - xlink:href="#linearGradient9497-6-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-646.08618,-82.674677)" /> - <linearGradient - x1="1.1049798" - y1="13.152683" - x2="6.6379666" - y2="10.024924" - id="linearGradient3986-8" - xlink:href="#linearGradient3980-1" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3195-1" - xlink:href="#linearGradient9497-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.74596729,0,0,0.94314201,-405.98488,-465.30597)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3192-43" - xlink:href="#linearGradient9497-1-47" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3202618,0,0,0.84666939,-733.334,-423.58754)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient3189-2" - xlink:href="#linearGradient9497-6-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3098397,0,0,0.848111,-727.30273,-410.25386)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2-74" - xlink:href="#linearGradient9497-6-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - id="linearGradient9497-6-1"> - <stop - id="stop9499-0-6" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1-2" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3-67" - xlink:href="#linearGradient9497-6-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-57" - xlink:href="#linearGradient9497-1-47" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - id="linearGradient9497-1-47"> - <stop - id="stop9499-6-14" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7-71" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1-2" - xlink:href="#linearGradient9497-1-47" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-35" - xlink:href="#linearGradient9497-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-0"> - <stop - id="stop9499-26" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-13" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3980-1"> - <stop - id="stop3982-0" - style="stop-color:#fcc273;stop-opacity:1" - offset="0" /> - <stop - id="stop3984-7" - style="stop-color:#fc916b;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="880.47321" - y1="718.15826" - x2="880.47321" - y2="738.3028" - id="linearGradient6454-9" - xlink:href="#linearGradient6439-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-46,0)" /> - <linearGradient - x1="880.47321" - y1="718.15826" - x2="880.47321" - y2="738.3028" - id="linearGradient6445-1" - xlink:href="#linearGradient6439-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-46,0)" /> - <linearGradient - id="linearGradient6439-6"> - <stop - id="stop6441-4" - style="stop-color:#e5e7e2;stop-opacity:1" - offset="0" /> - <stop - id="stop6443-0" - style="stop-color:#e5e7e2;stop-opacity:0" - offset="1" /> - </linearGradient> - </defs> - <metadata - id="metadata3757"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - transform="translate(-823.6913,-707.53376)" - id="layer1-5"> - <text - x="835.85748" - y="718.30353" - id="text11171" - xml:space="preserve" - style="font-size:10.12465572px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.70751727;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="835.85748" - y="718.30353" - id="tspan11173" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.70751727;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">+</tspan></text> - <text - x="825.39417" - y="725.07898" - id="text11693" - xml:space="preserve" - style="font-size:18.1716404px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="825.39417" - y="725.07898" - id="tspan11695" - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif">A</tspan></text> - <path - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11167" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11683" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.69182392;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.14178,-440.08317)" - id="layer1-6"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">A</tspan></text> - <path - d="m 532.75446,516.10773 -4.46875,12.65625 -1,0 0,1.125 0.5,0 0,-0.625 1,0 4.46875,-12.65625 1.625,0 -0.1875,-0.5 -1.9375,0 z m 0.4375,3.96875 -0.15625,0.46875 1.46875,4.28125 -3,0 -0.1875,0.5 3.6875,0 -1.8125,-5.25 z m 1.90625,6.375 0.8125,2.3125 -1.1875,0 0,1.125 0.5,0 0,-0.625 1.1875,0 -1,-2.8125 -0.3125,0 z m -5,2.3125 -0.1875,0.5 0.9375,0 0,-0.5 -0.75,0 z m 9.40625,0 0.1875,0.5 0.625,0 0,-0.5 -0.8125,0 z" - id="text3023" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3809);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 534.37946,516.10773 4.3125,12.15625 0.3125,0 -4.3125,-12.15625 -0.3125,0 z m -2.1875,2.9375 -1.875,5.28125 0.6875,0 1.53125,-4.28125 -0.34375,-1 z m -2.28125,6.40625 -1,2.8125 0.6875,0 0.8125,-2.3125 4.1875,0 -0.1875,-0.5 -4.5,0 z m 0.4375,3.3125 0,0.625 -3.0625,0 0,0.5 3.5625,0 0,-1.125 -0.5,0 z m 9.46875,0 0,0.625 -5.09375,0 0,0.5 5.59375,0 0,-1.125 -0.5,0 z" - id="text3027" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3837);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.22136,-367.94934)" - id="layer1-3"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195-8" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197-4" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">B</tspan></text> - <path - d="m 528.19196,516.7064 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 4.09375,0 0,4.65625 0.5,0 0,-4.15625 1.0625,0 c 0.82594,10e-6 1.44511,0.15919 1.875,0.4375 -0.0892,-0.14324 -0.18651,-0.26897 -0.3125,-0.375 -0.42665,-0.36351 -1.11857,-0.56249 -2.0625,-0.5625 l -1.0625,0 z m 6.28125,0.25 c 0.39409,0.52808 0.59374,1.22535 0.59375,2.0625 -10e-6,0.81947 -0.27463,1.45692 -0.78125,1.9375 -0.50131,0.48059 -1.22683,0.78303 -2.21875,0.90625 0.52107,0.0562 0.95953,0.16568 1.375,0.3125 0.55687,-0.16157 1.00754,-0.39644 1.34375,-0.71875 0.50662,-0.48058 0.78124,-1.11803 0.78125,-1.9375 -10e-6,-1.13984 -0.36315,-1.99564 -1.09375,-2.5625 z m -6.28125,5.5 0,5.8125 0.5,0 0,-5.3125 1.15625,0 c 0.83936,10e-6 1.48442,0.1937 1.96875,0.53125 -0.0691,-0.0954 -0.13581,-0.19985 -0.21875,-0.28125 -0.49597,-0.48674 -1.24208,-0.74999 -2.25,-0.75 l -1.15625,0 z m 6.90625,0.84375 c 0.44148,0.56299 0.68749,1.25448 0.6875,2.09375 -10e-6,1.36783 -0.44782,2.38431 -1.34375,3.03125 -0.89062,0.64694 -2.31489,0.96875 -4.21875,0.96875 l -6.125,0 0,0.5 6.625,0 c 1.90386,0 3.32813,-0.32181 4.21875,-0.96875 0.89593,-0.64694 1.34374,-1.66342 1.34375,-3.03125 -10e-6,-1.01046 -0.32881,-1.79627 -0.96875,-2.40625 -0.067,-0.0638 -0.14565,-0.12894 -0.21875,-0.1875 z" - id="text5199" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3772);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 528.19654,516.11548 0,1.09375 0.5,0 0,-0.59375 7.09375,0 c 1.43448,10e-6 2.51961,0.26222 3.25,0.8125 -0.13699,-0.17753 -0.2861,-0.32704 -0.46875,-0.46875 -0.73063,-0.56683 -1.82536,-0.84374 -3.28125,-0.84375 l -7.09375,0 z m 1.53125,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 6.5,0.4375 c 0.21673,0.34787 0.34374,0.80765 0.34375,1.375 -10e-6,0.79483 -0.24487,1.36184 -0.6875,1.75 -0.44264,0.38201 -1.11399,0.59376 -2.03125,0.59375 l -0.5625,0 0,0.5 1.0625,0 c 0.91726,10e-6 1.58861,-0.21174 2.03125,-0.59375 0.44263,-0.38816 0.68749,-0.95517 0.6875,-1.75 -10e-6,-0.80097 -0.22429,-1.38647 -0.65625,-1.75 -0.0533,-0.0454 -0.12609,-0.0852 -0.1875,-0.125 z m 1.8125,4.53125 c -0.27347,0.0794 -0.54832,0.14692 -0.875,0.1875 1.07435,0.11586 1.90579,0.43638 2.53125,0.9375 -0.0901,-0.11484 -0.17283,-0.20916 -0.28125,-0.3125 -0.36206,-0.34509 -0.83372,-0.62123 -1.375,-0.8125 z m -1.625,1.3125 c 0.34394,0.47485 0.53124,1.0853 0.53125,1.90625 -10e-6,0.97966 -0.22813,1.71924 -0.71875,2.1875 -0.49064,0.46826 -1.26266,0.6875 -2.28125,0.6875 l -0.65625,0 0,0.5 1.15625,0 c 1.01859,0 1.79061,-0.21924 2.28125,-0.6875 0.49062,-0.46826 0.71874,-1.20784 0.71875,-2.1875 -10e-6,-0.98581 -0.25404,-1.70075 -0.75,-2.1875 -0.0829,-0.0814 -0.18398,-0.15096 -0.28125,-0.21875 z" - id="text5217" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3776);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-522.92799,-296.1791)" - id="layer1-7"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195-7" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197-0" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">F</tspan></text> - <path - d="m 538.34821,516.10773 0,2.75 -0.59375,0 0,0.5 1.09375,0 0,-3.25 -0.5,0 z m -10.15625,0.59375 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 4.125,0.15625 0,4.4375 0.5,0 0,-3.9375 4.4375,0 0,-0.5 -4.9375,0 z m 4.125,3.1875 0,4.25 -0.59375,0 0,0.5 1.09375,0 0,-4.75 -0.5,0 z m -4.125,2.5 0,5.71875 0.5,0 0,-5.21875 2.53125,0 0,-0.5 -3.03125,0 z m 1.875,6.21875 0,0.625 -6,0 0,0.5 6.5,0 0,-1.125 -0.5,0 z" - id="text3860" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3886);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 528.19196,516.10773 0,1.09375 0.5,0 0,-0.59375 10.15625,0 0,-0.5 -10.65625,0 z m 1.53125,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 8.03125,0.15625 0,1.5 0.5,0 0,-1.5 -0.5,0 z m -1.90625,2.1875 0,1.75 -2.53125,0 0,0.5 3.03125,0 0,-1.75 0.59375,0 0,-0.5 -1.09375,0 z m 0,3.5 0,1.25 0.5,0 0,-1.25 -0.5,0 z m -2.53125,5.21875 0,0.5 1.375,0 0,-0.5 -1.375,0 z" - id="text3864" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3882);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-524.21316,-223.95587)" - id="layer1-8"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195-6" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197-06" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">G</tspan></text> - <path - d="m 534.62946,516.45148 c -1.23726,1e-5 -2.13746,0.49527 -2.71875,1.46875 -0.57597,0.96735 -0.875,2.50505 -0.875,4.59375 0,2.07022 0.28912,3.58285 0.84375,4.5625 0.20798,0.36506 0.45502,0.67809 0.75,0.90625 -0.0944,-0.12162 -0.16884,-0.26379 -0.25,-0.40625 -0.55463,-0.97965 -0.84375,-2.49228 -0.84375,-4.5625 0,-2.0887 0.29903,-3.6264 0.875,-4.59375 0.58129,-0.97348 1.48149,-1.46874 2.71875,-1.46875 0.86746,1e-5 1.55891,0.2273 2.09375,0.625 -0.076,-0.0954 -0.13567,-0.2008 -0.21875,-0.28125 -0.55997,-0.54835 -1.35641,-0.84374 -2.375,-0.84375 z m 4.59375,0.375 0,3.09375 -0.65625,0 c 0.0425,0.16552 0.0895,0.31967 0.125,0.5 l 1.03125,0 0,-3.375 c -0.16821,-0.0805 -0.33222,-0.1465 -0.5,-0.21875 z m 0.40625,6.625 0,4.78125 c -0.89595,0.48059 -1.79157,0.82837 -2.6875,1.0625 -0.89062,0.23413 -1.81674,0.375 -2.75,0.375 -1.75604,0 -3.19957,-0.46844 -4.3125,-1.40625 1.17325,1.2754 2.76464,1.90625 4.8125,1.90625 0.93326,0 1.85938,-0.14087 2.75,-0.375 0.89593,-0.23413 1.79155,-0.58191 2.6875,-1.0625 l 0,-5.28125 -0.5,0 z m -3.8125,0.59375 0,0.5 0.9375,0 0,-0.5 -0.9375,0 z" - id="text3890" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3908);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 534.69196,515.85773 c -2.04786,1e-5 -3.63925,0.63086 -4.8125,1.90625 -1.16792,1.27541 -1.78125,3.02575 -1.78125,5.25 0,2.2181 0.61333,3.9746 1.78125,5.25 0.12571,0.13665 0.23925,0.25299 0.375,0.375 -1.1007,-1.26488 -1.65625,-2.97168 -1.65625,-5.125 0,-2.22425 0.58208,-3.97459 1.75,-5.25 1.17325,-1.27539 2.79589,-1.90624 4.84375,-1.90625 0.85327,1e-5 1.70463,0.0841 2.53125,0.28125 0.66053,0.15756 1.33264,0.40012 2,0.6875 l 0,-0.28125 c -0.83729,-0.40048 -1.6734,-0.70907 -2.5,-0.90625 -0.82662,-0.19715 -1.67798,-0.28124 -2.53125,-0.28125 z m 3.03125,2.21875 c 0.43644,0.5474 0.76436,1.30482 0.96875,2.34375 l 0.375,0 c -0.24482,-0.95424 -0.58532,-1.66293 -1.0625,-2.125 -0.0831,-0.0814 -0.18807,-0.14946 -0.28125,-0.21875 z m -1.90625,5.375 0,1.09375 0.5,0 0,-0.59375 3.8125,0 0,-0.5 -4.3125,0 z m 1.4375,1.59375 0,3.28125 c -0.31466,0.23413 -0.67854,0.41418 -1.0625,0.53125 -0.38398,0.11707 -0.77079,0.1875 -1.21875,0.1875 -0.71603,0 -1.32688,-0.16866 -1.8125,-0.53125 0.54902,0.6868 1.32703,1.03125 2.3125,1.03125 0.44796,0 0.83477,-0.0704 1.21875,-0.1875 0.38396,-0.11707 0.74784,-0.29712 1.0625,-0.53125 l 0,-3.78125 -0.5,0 z" - id="text3894" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3912);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.54028,-152.07265)" - id="layer1-9"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195-9" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197-1" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">N</tspan></text> - <path - d="m 531.75446,516.10773 6.84375,9.25 0,-0.1875 -6.71875,-9.0625 -0.125,0 z m 9.5,0 0,0.59375 -1.53125,0 0,12.6875 -1.96875,0 0.375,0.5 2.09375,0 0,-12.6875 1.53125,0 0,-1.09375 -0.5,0 z m -13.125,0.59375 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 9.4375,0 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m -7.28125,2.71875 0,8.84375 0.5,0 0,-8.15625 -0.5,-0.6875 z m 1.53125,9.34375 0,0.625 -3.6875,0 0,0.5 4.1875,0 0,-1.125 -0.5,0 z" - id="text3939" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3973);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 528.12946,516.10773 0,1.09375 0.5,0 0,-0.59375 3.625,0 -0.375,-0.5 -3.75,0 z m 9.4375,0 0,1.09375 0.5,0 0,-0.59375 3.6875,0 0,-0.5 -4.1875,0 z m -7.90625,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 9.4375,0 0,7.96875 0.5,0.6875 0,-8.65625 -0.5,0 z m -7.8125,2.71875 0,0.1875 6.84375,9.28125 0.125,0 -6.96875,-9.46875 z m 0,8.34375 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z" - id="text3935" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3953);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.04306,-80.268534)" - id="layer1-54"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195-70" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197-2" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">P</tspan></text> - <path - d="m 528.19196,516.70148 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 4.09375,0 0,5.875 0.5,0 0,-5.375 0.90625,0 c 0.46699,1e-5 0.88043,0.13824 1.21875,0.375 -0.0173,-0.0237 -0.0444,-0.0395 -0.0625,-0.0625 -0.41065,-0.52987 -0.95764,-0.81249 -1.65625,-0.8125 l -0.90625,0 z m 5.625,0.3125 c 0.59493,0.68939 0.93749,1.55688 0.9375,2.625 -10e-6,1.23228 -0.39823,2.19814 -1.1875,2.9375 -0.78396,0.73321 -1.83368,1.09376 -3.15625,1.09375 l -2.21875,0 0,4.59375 0.5,0 0,-4.09375 2.21875,0 c 1.32257,1e-5 2.37229,-0.36054 3.15625,-1.09375 0.78927,-0.73936 1.18749,-1.70522 1.1875,-2.9375 -10e-6,-1.2261 -0.40356,-2.21045 -1.1875,-2.9375 -0.0765,-0.0715 -0.16834,-0.12295 -0.25,-0.1875 z m -3.6875,11.75 0,0.625 -6.03125,0 0,0.5 6.53125,0 0,-1.125 -0.5,0 z" - id="text4000" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4022);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 528.19196,516.10773 0,1.09375 0.5,0 0,-0.59375 6.8125,0 c 1.19835,1e-5 2.15089,0.30914 2.90625,0.90625 -0.088,-0.10197 -0.14899,-0.21882 -0.25,-0.3125 -0.78396,-0.73319 -1.82835,-1.09374 -3.15625,-1.09375 l -6.8125,0 z m 1.53125,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 5.6875,0.375 c 0.37529,0.51597 0.56249,1.21431 0.5625,2.0625 -10e-6,0.89341 -0.20904,1.58897 -0.625,2.125 -0.41065,0.52988 -0.96297,0.81251 -1.65625,0.8125 l -0.40625,0 0,0.5 0.90625,0 c 0.69328,1e-5 1.2456,-0.28262 1.65625,-0.8125 0.41596,-0.53603 0.62499,-1.23159 0.625,-2.125 -10e-6,-0.88723 -0.21437,-1.60127 -0.625,-2.125 -0.13615,-0.17567 -0.2697,-0.32007 -0.4375,-0.4375 z m -2.125,10.6875 0,0.5 1.4375,0 0,-0.5 -1.4375,0 z" - id="text3996" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter4018);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.12118,-7.8312526)" - id="layer1-2"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195-94" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197-07" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">V</tspan></text> - <path - d="m 532.44196,516.10773 0,0.59375 -1.1875,0 3.25,9.15625 0.15625,-0.46875 -2.90625,-8.1875 1.1875,0 0,-1.09375 -0.5,0 z m 7.4375,0 0,0.59375 -1,0 -4.5,12.6875 -1.59375,0 0.1875,0.5 1.875,0 4.53125,-12.6875 1,0 0,-1.09375 -0.5,0 z m -12.5625,0.59375 0,0.5 0.8125,0 -0.1875,-0.5 -0.625,0 z m 9.5,0 0,0.5 0.75,0 0.1875,-0.5 -0.9375,0 z" - id="text4049" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4067);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 527.31696,516.10773 0,1.09375 0.5,0 0,-0.59375 5.125,0 0,-0.5 -5.625,0 z m 9.5,0 0,1.09375 0.5,0 0,-0.59375 3.0625,0 0,-0.5 -3.5625,0 z m -8.1875,1.59375 4.34375,12.1875 0.3125,0 -4.34375,-12.1875 -0.3125,0 z m 9.4375,0 -2.90625,8.1875 0.34375,0.96875 3.25,-9.15625 -0.6875,0 z" - id="text4045" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter4063);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.20924,63.952116)" - id="layer1-25"> - <text - x="566.91028" - y="492.98608" - transform="scale(0.93034878,1.0748657)" - id="text5195-3" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="566.91028" - y="492.98608" - id="tspan5197-01" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">A</tspan></text> - <path - d="m 532.75446,516.10773 -4.46875,12.65625 -1,0 0,1.125 0.5,0 0,-0.625 1,0 4.46875,-12.65625 1.625,0 -0.1875,-0.5 -1.9375,0 z m 0.4375,3.96875 -0.15625,0.46875 1.46875,4.28125 -3,0 -0.1875,0.5 3.6875,0 -1.8125,-5.25 z m 1.90625,6.375 0.8125,2.3125 -1.1875,0 0,1.125 0.5,0 0,-0.625 1.1875,0 -1,-2.8125 -0.3125,0 z m -5,2.3125 -0.1875,0.5 0.9375,0 0,-0.5 -0.75,0 z m 9.40625,0 0.1875,0.5 0.625,0 0,-0.5 -0.8125,0 z" - id="text3023-0" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3809-1);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 534.37946,516.10773 4.3125,12.15625 0.3125,0 -4.3125,-12.15625 -0.3125,0 z m -2.1875,2.9375 -1.875,5.28125 0.6875,0 1.53125,-4.28125 -0.34375,-1 z m -2.28125,6.40625 -1,2.8125 0.6875,0 0.8125,-2.3125 4.1875,0 -0.1875,-0.5 -4.5,0 z m 0.4375,3.3125 0,0.625 -3.0625,0 0,0.5 3.5625,0 0,-1.125 -0.5,0 z m 9.46875,0 0,0.625 -5.09375,0 0,0.5 5.59375,0 0,-1.125 -0.5,0 z" - id="text3027-7" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3837-2);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-0.09178666,648.05602)" - id="g3372"> - <rect - width="9.2080336" - height="2.0841758" - x="9.9951382" - y="10.467622" - id="rect8987" - style="fill:url(#linearGradient3195);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89300001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="16.296982" - height="1.8709884" - x="2.8947093" - y="3.5198629" - id="rect8987-2" - style="fill:url(#linearGradient3192);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89300001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="16.168335" - height="1.874174" - x="3.1143055" - y="17.58077" - id="rect8987-5" - style="fill:url(#linearGradient3189);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89300001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 6.1401918,11.71699 -2.6276419,1.51707 -2.6276417,1.51707 0,-3.03414 0,-3.0341389 2.6276419,1.5170699 z" - transform="matrix(0.90902794,0,0,0.90902794,2.2305609,0.83286798)" - id="path3978" - style="fill:url(#linearGradient3986);fill-opacity:1;fill-rule:nonzero;stroke:#e0926b;stroke-width:0.89300001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - transform="translate(-524.03097,207.77805)" - id="layer1-56"> - <text - x="569.04468" - y="493.06223" - transform="scale(0.93034878,1.0748657)" - id="text5195-65" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="569.04468" - y="493.06223" - id="tspan5197-12" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">A</tspan></text> - <path - d="m 535.78571,516.17023 -6.40625,12.8125 -1.0625,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.0625,0 6.40625,-12.8125 0.9375,0 -0.0937,-0.5 -1.34375,0 z m 0.375,2.75 -0.3125,0.625 0.90625,5.4375 -3.625,0 -0.25,0.5 4.375,0 -1.09375,-6.5625 z m 0.8125,7.53125 0.40625,2.53125 -1.3125,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.3125,0 -0.46875,-3.03125 -0.4375,0 z m -5.84375,2.53125 -0.25,0.5 0.71875,0 0.0937,-0.5 -0.5625,0 z m 8.53125,0 0.0937,0.5 0.59375,0 0.0625,-0.5 -0.75,0 z" - id="text4090" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter4108);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 536.72321,516.17023 2.03125,12.3125 0.40625,0 -2.03125,-12.3125 -0.40625,0 z m -1.5625,1.75 -3.28125,6.5625 0.75,0 2.71875,-5.4375 -0.1875,-1.125 z m -3.78125,7.53125 -1.5,3.03125 0.75,0 1.25,-2.53125 4.59375,0 -0.0625,-0.5 -5.03125,0 z m -0.28125,3.53125 -0.0625,0.5 -2.8125,0 -0.0625,0.5 3.375,0 0.15625,-1 -0.59375,0 z m 8.75,0 -0.0937,0.5 -3.78125,0 -0.0625,0.5 4.34375,0 0.15625,-1 -0.5625,0 z" - id="text4094" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4112);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.77923,280.07755)" - id="layer1-34"> - <text - x="567.37231" - y="493.05362" - transform="scale(0.93034878,1.0748657)" - id="text5195-4" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="567.37231" - y="493.05362" - id="tspan5197-3" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">C</tspan></text> - <path - d="m 534.56696,516.42023 c -1.06685,0.11457 -1.95956,0.64601 -2.6875,1.5625 -0.83195,1.04128 -1.43994,2.56667 -1.78125,4.59375 -0.34131,2.02093 -0.26122,3.54632 0.21875,4.59375 0.20629,0.44755 0.49066,0.80731 0.84375,1.0625 -0.12875,-0.16736 -0.24717,-0.35298 -0.34375,-0.5625 -0.47997,-1.04743 -0.56006,-2.57282 -0.21875,-4.59375 0.34131,-2.02708 0.9493,-3.55247 1.78125,-4.59375 0.83194,-1.04742 1.88166,-1.56249 3.15625,-1.5625 0.85596,1e-5 1.50789,0.15034 2,0.5 -0.0471,-0.0641 -0.10373,-0.13005 -0.15625,-0.1875 -0.50131,-0.54835 -1.27183,-0.81249 -2.34375,-0.8125 -0.15932,0 -0.31634,-0.0164 -0.46875,0 z m 4.96875,0.4375 -0.5,2.9375 -0.40625,0 c 0.0125,0.1636 0.0304,0.32199 0.0312,0.5 l 0.875,0 0.53125,-3.1875 c -0.18373,-0.0945 -0.35168,-0.16682 -0.53125,-0.25 z m -1.4375,9.46875 c -0.53603,1.0345 -1.18715,1.83323 -2,2.40625 -0.93861,0.65927 -2.04326,1 -3.3125,1 -0.77862,0 -1.48046,-0.16068 -2.09375,-0.46875 -0.28043,-0.14086 -0.54208,-0.29859 -0.78125,-0.5 0.36218,0.42621 0.79506,0.75578 1.28125,1 0.61329,0.30807 1.31513,0.46875 2.09375,0.46875 1.26924,0 2.37389,-0.34073 3.3125,-1 0.94393,-0.66543 1.67936,-1.61852 2.25,-2.90625 l -0.75,0 z" - id="text4162" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4184);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 535.81696,515.92023 c -1.75455,1e-5 -3.26659,0.65023 -4.5625,1.96875 -1.29058,1.31238 -2.10611,3.04335 -2.46875,5.1875 -0.18665,1.10905 -0.20649,2.11893 -0.0625,3 0.14399,0.87492 0.45753,1.65368 0.9375,2.34375 0.22577,0.32438 0.4661,0.60468 0.75,0.84375 -0.0947,-0.11143 -0.16379,-0.21989 -0.25,-0.34375 -0.47997,-0.69007 -0.79351,-1.46883 -0.9375,-2.34375 -0.14399,-0.88107 -0.12415,-1.89095 0.0625,-3 0.36264,-2.14415 1.17817,-3.87512 2.46875,-5.1875 1.29591,-1.31852 2.80795,-1.96874 4.5625,-1.96875 0.65061,1e-5 1.33262,0.0841 2.03125,0.28125 0.53784,0.15065 1.10607,0.38692 1.6875,0.65625 l 0.0312,-0.25 c -0.77863,-0.40048 -1.51481,-0.70907 -2.21875,-0.90625 -0.69863,-0.19715 -1.38064,-0.28124 -2.03125,-0.28125 z m 2.21875,2 c 0.40225,0.54813 0.62022,1.33803 0.625,2.375 l 0.4375,0 c -0.0691,-0.9005 -0.29465,-1.59857 -0.71875,-2.0625 -0.101,-0.11048 -0.21959,-0.22428 -0.34375,-0.3125 z m -0.65625,8.40625 c -0.42131,0.9735 -0.96372,1.69459 -1.625,2.1875 -0.65596,0.48675 -1.4219,0.71875 -2.3125,0.71875 -0.72676,0 -1.31284,-0.16146 -1.78125,-0.5 0.51111,0.66438 1.26314,1 2.28125,1 0.8906,0 1.65654,-0.232 2.3125,-0.71875 0.66128,-0.49291 1.20369,-1.214 1.625,-2.1875 l 0.71875,0 c 0.0864,-0.16682 0.17076,-0.32118 0.25,-0.5 l -1.46875,0 z" - id="text4158" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter4180);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-840.97142,171.10277)" - id="layer1-0"> - <g - transform="translate(-19.62505,-0.15625)" - id="g5883"> - <text - x="808.40424" - y="762.1983" - transform="scale(1.0721134,0.93273715)" - id="text5269" - xml:space="preserve" - style="font-size:20.50770187px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#565758;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="808.40424" - y="762.1983" - id="tspan5271" - style="font-style:italic;font-weight:normal;fill:#565758;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">I</tspan></text> - <path - d="m 875.11609,696.97827 -0.0937,0.5 -2.03125,0 -2.6875,11.96875 0.625,0 2.53125,-11.46875 2.0625,0 0.21875,-1 -0.625,0 z m -5.75,0.5 -0.125,0.5 1.4375,0 0.125,-0.5 -1.4375,0 z m 2.84375,12.46875 -0.0937,0.46875 -5.625,0 -0.125,0.5 6.25,0 0.21875,-0.96875 -0.625,0 z" - id="text5273" - style="font-size:20.50770187px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter5879);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 869.49109,696.97827 -0.25,1 0.625,0 0.125,-0.5 5.625,0 0.125,-0.5 -6.25,0 z m 1.6875,1.5 -2.5625,11.46875 -2.03125,0 -0.21875,0.96875 0.625,0 0.0937,-0.46875 2.03125,0 2.6875,-11.96875 -0.625,0 z m 0.25,11.46875 -0.125,0.5 1.40625,0 0.125,-0.5 -1.40625,0 z" - id="text5282" - style="font-size:20.50770187px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.87735847;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5867);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - </g> - <g - transform="translate(-523.96353,423.93775)" - id="layer1-21"> - <text - x="567.41534" - y="493.06223" - transform="scale(0.93034878,1.0748657)" - id="text5195-0" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="567.41534" - y="493.06223" - id="tspan5197-6" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">K</tspan></text> - <path - d="m 529.97321,516.17023 -0.1875,1 0.59375,0 0.0937,-0.5 4.0625,0 0.0937,-0.5 -4.65625,0 z m 6.96875,0 -0.15625,1 0.5625,0 0.0937,-0.5 3.40625,0 0.0625,-0.5 -3.96875,0 z m -5.71875,1.5 -1.90625,11.3125 -1.5,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.5,0 2,-11.8125 -0.59375,0 z m 6.3125,0 -4.78125,4.125 -0.1875,1.09375 6.03125,-5.21875 -1.0625,0 z m -5.15625,6.25 -0.0312,0.1875 4.09375,5.875 0.15625,0 -4.21875,-6.0625 z m -0.84375,5.0625 -0.0937,0.5 0.96875,0 0.0625,-0.5 -0.9375,0 z m 6.65625,0 0.34375,0.5 0.75,0 0.0937,-0.5 -1.1875,0 z" - id="text4207" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter4225);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 534.03571,516.17023 -0.0625,0.5 -1.53125,0 -0.875,5.21875 0.6875,-0.59375 0.6875,-4.125 1.53125,0 0.15625,-1 -0.59375,0 z m 6.3125,0 -0.0937,0.5 -1.34375,0 -6,5.1875 4.625,6.625 0.15625,0 -4.28125,-6.125 6,-5.1875 1.34375,0 0.15625,-1 -0.5625,0 z m -10.46875,0.5 -0.0937,0.5 0.9375,0 0.0937,-0.5 -0.9375,0 z m 6.96875,0 -0.0625,0.5 0.25,0 0.5625,-0.5 -0.75,0 z m -5.46875,6.25 -0.9375,5.5625 0.59375,0 0.8125,-4.875 -0.46875,-0.6875 z m 0.53125,6.0625 -0.0937,0.5 -4.09375,0 -0.0625,0.5 4.65625,0 0.15625,-1 -0.5625,0 z m 6.875,0 -0.0625,0.5 -2.625,0 0.34375,0.5 2.78125,0 0.15625,-1 -0.59375,0 z" - id="text4211" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;filter:url(#filter4229);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-523.9635,495.85605)" - id="layer1-87"> - <text - x="569.04468" - y="493.06223" - transform="scale(0.93034878,1.0748657)" - id="text5195-1" - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="569.04468" - y="493.06223" - id="tspan5197-09" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">A</tspan></text> - <path - d="m 535.78571,516.17023 -6.40625,12.8125 -1.0625,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.0625,0 6.40625,-12.8125 0.9375,0 -0.0937,-0.5 -1.34375,0 z m 0.375,2.75 -0.3125,0.625 0.90625,5.4375 -3.625,0 -0.25,0.5 4.375,0 -1.09375,-6.5625 z m 0.8125,7.53125 0.40625,2.53125 -1.3125,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.3125,0 -0.46875,-3.03125 -0.4375,0 z m -5.84375,2.53125 -0.25,0.5 0.71875,0 0.0937,-0.5 -0.5625,0 z m 8.53125,0 0.0937,0.5 0.59375,0 0.0625,-0.5 -0.75,0 z" - id="text4090-3" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter4108-5);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 536.72321,516.17023 2.03125,12.3125 0.40625,0 -2.03125,-12.3125 -0.40625,0 z m -1.5625,1.75 -3.28125,6.5625 0.75,0 2.71875,-5.4375 -0.1875,-1.125 z m -3.78125,7.53125 -1.5,3.03125 0.75,0 1.25,-2.53125 4.59375,0 -0.0625,-0.5 -5.03125,0 z m -0.28125,3.53125 -0.0625,0.5 -2.8125,0 -0.0625,0.5 3.375,0 0.15625,-1 -0.59375,0 z m 8.75,0 -0.0937,0.5 -3.78125,0 -0.0625,0.5 4.34375,0 0.15625,-1 -0.5625,0 z" - id="text4094-3" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4112-0);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-550.30419,585.78061)" - id="layer1-51"> - <text - x="551.98376" - y="500.20258" - id="text8953" - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan - x="551.98376" - y="500.20258" - id="tspan8955" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">1</tspan></text> - <text - x="552.23047" - y="507.20078" - id="text8953-1" - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan - x="552.23047" - y="507.20078" - id="tspan8955-5" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">2</tspan></text> - <text - x="552.19891" - y="514.17712" - id="text8953-8" - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan - x="552.19891" - y="514.17712" - id="tspan8955-55" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">3</tspan></text> - <rect - width="11.551277" - height="2.0031219" - x="558.13318" - y="504.72748" - id="rect8987-8" - style="fill:url(#linearGradient9503-34);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="558.13507" - y="497.67313" - id="rect8987-2-0" - style="fill:url(#linearGradient9520-6);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="558.22443" - y="511.73563" - id="rect8987-5-2" - style="fill:url(#linearGradient9520-2-9);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - transform="translate(-823.84926,444.77821)" - id="layer1-71"> - <text - x="674.32245" - y="890.06787" - transform="scale(1.2392818,0.80691899)" - id="text11171-0" - xml:space="preserve" - style="font-size:15.80470848px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="674.32245" - y="890.06787" - id="tspan11173-0" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">-</tspan></text> - <text - x="825.39417" - y="725.07898" - id="text11693-2" - xml:space="preserve" - style="font-size:18.1716404px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="825.39417" - y="725.07898" - id="tspan11695-3" - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif">A</tspan></text> - <path - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11167-3" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735-4);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11683-3" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.69182392;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711-5);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-823.58442,516.56157)" - id="layer1-29"> - <text - x="676.90649" - y="897.27142" - transform="scale(1.2392818,0.80691898)" - id="text11171-3" - xml:space="preserve" - style="font-size:5.07652283px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="676.90649" - y="897.27142" - id="tspan11173-3" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">â–¼</tspan></text> - <text - x="825.39417" - y="725.07898" - id="text11693-7" - xml:space="preserve" - style="font-size:18.1716404px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="825.39417" - y="725.07898" - id="tspan11695-2" - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif">A</tspan></text> - <path - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11167-8" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735-7);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11683-2" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.69182392;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711-8);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(-823.85428,588.68226)" - id="layer1-1"> - <text - x="676.90649" - y="884.87854" - transform="scale(1.2392818,0.80691898)" - id="text11171-9" - xml:space="preserve" - style="font-size:5.07652283px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="676.90649" - y="884.87854" - id="tspan11173-30" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">â–²</tspan></text> - <text - x="825.39417" - y="725.07898" - id="text11693-3" - xml:space="preserve" - style="font-size:18.1716404px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="825.39417" - y="725.07898" - id="tspan11695-28" - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif">A</tspan></text> - <path - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11167-7" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735-9);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" - id="text11683-28" - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.69182392;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711-3);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - <g - transform="translate(0.23496604,1367.9407)" - id="g3736"> - <rect - width="11.551277" - height="2.0031219" - x="7.7045889" - y="10.508148" - id="rect8987-0" - style="fill:url(#linearGradient3195-7);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="7.706481" - y="3.4537961" - id="rect8987-2-9" - style="fill:url(#linearGradient3192-9);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="7.7958364" - y="17.516296" - id="rect8987-5-8" - style="fill:url(#linearGradient3189-5);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="2.2180145" - height="2.2927809" - x="2.3276966" - y="3.282562" - id="rect3039" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="2.2180145" - height="2.2927809" - x="2.3276966" - y="10.337555" - id="rect3039-7" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="2.2180145" - height="2.2927809" - x="2.3276966" - y="17.345551" - id="rect3039-6" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - transform="translate(-771.7253,752.90558)" - id="layer1-13"> - <path - d="m 773.33551,690.56085 0,15.03125 15.6875,0 1.6875,-1.6875 1.625,-1.59375 0,-11.75 -19,0 z" - id="rect8568" - style="fill:#f4f5f4;fill-opacity:1;fill-rule:nonzero;stroke:#979995;stroke-width:0.98371369;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="14.78293" - height="10.804496" - x="775.41565" - y="692.71948" - id="rect9088" - style="fill:url(#linearGradient9194);fill-opacity:1;fill-rule:nonzero;stroke:#8a8475;stroke-width:0.98447442;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 784.01425,702.59563 0.0601,-2.9358 -1.26032,-1.93639 -1.8605,-1.24927 1.80048,0.62463 -0.26028,-1.46793 -1.82531,-2.19755 1.32363,0.61702 0.91039,1.03764 0.35492,1.31728 0.18635,0.79469 1.17065,1.79054 2.04124,-1.92043 1.67975,-2.40736 -0.62239,2.53228 -2.32245,2.54612 0,2.97449 z" - id="path9114" - style="fill:#001700;fill-opacity:1;stroke:none" /> - <path - d="m 779.6728,699.1081 c -1.73172,0 -3.125,1.39328 -3.125,3.125 0,0.1736 0.0354,0.33407 0.0625,0.5 l 6.15625,0 c 0.0271,-0.16593 0.0625,-0.3264 0.0625,-0.5 0,-1.73172 -1.42454,-3.125 -3.15625,-3.125 z" - id="path9118" - style="fill:url(#radialGradient9190);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - d="m 775.90453,703.04526 13.73212,0 0,-0.54833 -13.7798,0 z" - id="path9112" - style="fill:#193119;fill-opacity:1;stroke:none" /> - <path - d="m 789.0447,705.53374 3.32589,-3.32589 -3.32589,0 z" - id="path9086" - style="fill:#f4f5f4;fill-opacity:1;stroke:#979995;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 775.9663,700.54201 c 0,0 1.79546,-2.81322 6.35713,-4.86346 4.34963,-1.95492 7.3609,-2.47941 7.3609,-2.47941 l -13.76583,0 z" - id="path9098" - style="opacity:0.31132076;fill:url(#radialGradient9185);fill-opacity:1;stroke:none" /> - </g> - <g - transform="translate(-860.64588,879.10051)" - id="layer1-86"> - <g - transform="matrix(0.96583758,-0.25914815,0.25914815,0.96583758,-155.70545,250.69009)" - id="g9740"> - <rect - width="15.655096" - height="10.078743" - x="883.86444" - y="638.2356" - id="rect9216" - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#88897f;stroke-width:0.92526156;stroke-opacity:1" /> - <rect - width="12.767857" - height="7.0982141" - x="885.29468" - y="639.74615" - id="rect9726" - style="fill:#88acd3;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - </g> - <g - transform="matrix(0.94980636,0.31283842,-0.31283842,0.94980636,225.23946,-243.05113)" - id="g9732"> - <rect - width="15.655096" - height="10.078743" - x="883.86444" - y="638.2356" - id="rect9734" - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#88897f;stroke-width:0.92526156;stroke-opacity:1" /> - <rect - width="12.767857" - height="7.0982141" - x="885.29468" - y="639.74615" - id="rect9736" - style="fill:#6bbe21;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - </g> - <rect - width="15.655096" - height="10.078743" - x="865.33765" - y="638.32489" - id="rect9746" - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#88897f;stroke-width:0.92526156;stroke-opacity:1" /> - <rect - width="12.698151" - height="7.0935974" - x="866.7262" - y="639.77606" - id="rect9774" - style="fill:url(#linearGradient9784);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - d="m 13.872113,11.500305 a 1.5297568,1.5297568 0 1 1 -3.059514,0 1.5297568,1.5297568 0 1 1 3.059514,0 z" - transform="translate(860.60243,632.92984)" - id="path9756" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - width="12.698151" - height="7.0336046" - x="866.75745" - y="639.80731" - id="rect9758" - style="opacity:0.73899369;fill:url(#radialGradient9772);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - d="m 866.7472,646.07035 1.91945,-0.11086 0.32595,-0.96072 1.19513,-1.14548 0.97784,1.10853 1.70216,0.25865 2.60756,-0.25865 0.50702,-0.99768 1.41243,0.36951 1.05027,1.29328 1.05027,0.44342 0,0.84987 -12.71186,0 z" - id="path9752" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <path - d="m 6.34375,7.03125 0,7.125 12.75,0 0,-7.125 -12.75,0 z m 0.71875,0.6875 11.125,0 0,5.71875 -11.125,0 0,-5.71875 z" - transform="matrix(1.018707,0,0,1.0633975,860.12972,632.15392)" - id="rect9748" - style="opacity:0.45911949;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter9873)" /> - </g> - <g - transform="translate(-843.15385,882.99624)" - id="layer1-76"> - <g - transform="matrix(1.6118599,0,0,1.6118599,-522.76477,-435.86589)" - mask="url(#mask3773)" - id="g8544"> - <path - d="m 847.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - id="rect8508" - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 857.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - id="path8520" - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 9.90625,8.3125 c 0.219379,0.2493818 0.400172,0.5353409 0.53125,0.84375 l 1.21875,0 C 11.78881,8.8397468 11.967186,8.5700989 12.1875,8.3125 l -2.28125,0 z M 6.375,9.09375 C 5.9621997,9.4039663 5.725025,9.7591417 5.71875,10.0625 l -0.03125,1.25 c -0.0151,0.72807 1.26414,2.375 3.53125,2.375 l 3.6875,0 c 2.26711,0 3.46875,-1.61553 3.46875,-2.34375 l 0,-1.28125 c 0,-0.2949291 -0.211045,-0.6348842 -0.59375,-0.9375 l -0.4375,0 c -0.63503,0 -1.1133,0.14044 -1.40625,0.4375 0.224818,0.1572379 0.34375,0.3524935 0.34375,0.53125 l 0,0.75 c 0,0.45142 -0.90722,0.78125 -2.3125,0.78125 l -2.28125,0 C 8.28222,11.625 7.75,11.29515 7.75,10.84375 l 0,-0.6875 c 0,-0.1767274 0.1306645,-0.3924485 0.375,-0.5625 -0.2943153,-0.3314596 -0.7859446,-0.5 -1.4375,-0.5 l -0.3125,0 z" - transform="translate(843.28571,701.36218)" - id="path8522" - style="fill:#f4f4f5;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.60000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> - <g - transform="translate(-843.15389,954.64464)" - id="layer1-72"> - <g - transform="translate(-0.03819,0)" - id="g8544-0"> - <path - d="m 847.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - id="rect8508-4" - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 857.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - id="path8520-0" - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 9.90625,8.3125 c 0.219379,0.2493818 0.400172,0.5353409 0.53125,0.84375 l 1.21875,0 C 11.78881,8.8397468 11.967186,8.5700989 12.1875,8.3125 l -2.28125,0 z M 6.375,9.09375 C 5.9621997,9.4039663 5.725025,9.7591417 5.71875,10.0625 l -0.03125,1.25 c -0.0151,0.72807 1.26414,2.375 3.53125,2.375 l 3.6875,0 c 2.26711,0 3.46875,-1.61553 3.46875,-2.34375 l 0,-1.28125 c 0,-0.2949291 -0.211045,-0.6348842 -0.59375,-0.9375 l -0.4375,0 c -0.63503,0 -1.1133,0.14044 -1.40625,0.4375 0.224818,0.1572379 0.34375,0.3524935 0.34375,0.53125 l 0,0.75 c 0,0.45142 -0.90722,0.78125 -2.3125,0.78125 l -2.28125,0 C 8.28222,11.625 7.75,11.29515 7.75,10.84375 l 0,-0.6875 c 0,-0.1767274 0.1306645,-0.3924485 0.375,-0.5625 -0.2943153,-0.3314596 -0.7859446,-0.5 -1.4375,-0.5 l -0.3125,0 z" - transform="translate(843.28571,701.36218)" - id="path8522-7" - style="fill:#f4f4f5;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.60000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> - <g - transform="translate(-364.34044,1207.5749)" - id="layer1-85"> - <g - transform="translate(20.359375,-0.98355932)" - id="g10495"> - <path - d="m 353.50893,536.39789 0,5.04465 -7.1875,-7.14286 7.1875,-7.1875 0,4.24107 4.28571,0 0,-6.11607 5.17857,0 0,11.20536 z" - id="path9915" - style="fill:#373736;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - d="m 361.96875,525.23718 0,10.21875 -9.46875,-0.0625 0,5.0625 1,1 0,-5.0625 9.46875,0.0625 0,-11.21875 -1,0 z m -8.46875,1.875 -1,1 0,2.25 1,0 0,-3.25 z" - id="path10454" - style="opacity:0.6;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter10491)" /> - <path - d="m 357.78125,525.23718 0,6.125 -3.28125,0 0,1 4.28125,0 0,-6.125 4.1875,0 0,-1 -5.1875,0 z m -4.28125,1.875 -7.1875,7.1875 1,1 6.1875,-6.1875 0,-2 z" - id="path10425" - style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter10487)" /> - </g> - </g> - <g - transform="translate(-714.38007,1098.2114)" - id="layer1-65"> - <g - transform="translate(26.036511,-0.0978784)" - id="g7675"> - <path - d="m 691.68161,706.63153 -1.45209,12.6269 c 0,0 3.54369,-1.49312 6.50286,-0.88388 2.14658,0.44194 3.34613,1.38896 3.34613,1.38896 0,0 2.77792,-2.39911 6.12405,-1.6415 3.34613,0.75762 2.90418,0.69448 2.90418,0.69448 l -1.19955,-12.2481" - id="path7155" - style="fill:#52394e;fill-opacity:1;stroke:#52394e;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 692.06042,707.26287 -0.82075,10.60661 c 0,0 2.39912,-1.76777 4.9245,-1.19956 2.84205,0.63945 3.47239,1.76776 3.47239,1.76776 l 0,-12.6269 c 0,0 -2.58851,-1.89404 -4.86135,-0.82075 -2.27285,1.07329 -2.71479,2.27284 -2.71479,2.27284 z" - id="path7151" - style="fill:#ffffff;fill-opacity:1;stroke:#b1b2af;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - d="m 699.63656,706.06332 c 0,0 2.27285,-2.14658 4.98763,-1.13642 2.71479,1.01015 2.65165,2.0203 2.65165,2.0203 l 1.01016,10.79601 c 0,0 -1.95717,-1.26269 -4.29315,-0.69448 -2.33598,0.56821 -3.53553,1.76776 -3.53553,1.76776 z" - id="path7153" - style="fill:#ffffff;fill-opacity:1;stroke:#b1b2af;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - d="m 699.8891,706.56839 c 0,0 -0.31573,1.12962 2.28105,5.17626 2.65428,4.13625 2.07524,6.56677 2.07524,6.56677" - id="path7157" - style="fill:none;stroke:#c04848;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> - <g - transform="translate(-900.39782,1187.6647)" - id="layer1-68"> - <path - d="m 2.7162576,15.606291 c 0.014982,-0.0061 0.030116,-0.01186 0.044947,-0.01833 0.044032,-0.0192 0.097586,-0.04461 0.1391489,-0.06714 0.029295,-0.01588 0.115542,-0.06645 0.08666,-0.04983 -1.0038452,0.57765 -1.2838827,0.741183 -0.8581766,0.492994 0.037046,-0.02158 0.073951,-0.0434 0.111137,-0.06473 C 2.6300793,15.67546 3.0195615,15.45057 3.4107098,15.228603 3.5742777,15.135783 3.7473,15.057838 3.9139685,14.970667 4.171548,14.829805 4.4327254,14.695431 4.6862561,14.547333 2.5032639,15.853906 3.593205,15.175217 3.8660407,15.017504 c 0.4751945,-0.274686 0.9514185,-0.555191 1.4317232,-0.823686 0.142362,-0.0764 0.2991256,-0.120806 0.4528415,-0.168535 0.092107,-0.02377 0.1895155,-0.05226 0.2845027,-0.03273 0.1019002,0.05033 0.1453779,0.142963 0.182287,0.24448 0.042624,0.163605 0.049796,0.334568 0.06126,0.502654 0.01013,0.221059 0.018945,0.44211 0.029896,0.663161 0.016456,0.256167 0.00893,0.51265 -0.014887,0.767993 -0.02608,0.262109 -0.085432,0.519124 -0.1458886,0.774983 -0.058063,0.245373 -0.1262914,0.488199 -0.1847641,0.733455 -0.048858,0.231812 -0.099166,0.463109 -0.1648223,0.690807 -0.060983,0.207897 -0.1436609,0.408045 -0.224407,0.60874 -0.076214,0.195637 -0.1765255,0.379946 -0.2875951,0.55762 -0.1229874,0.189026 -0.2690224,0.36206 -0.4187308,0.530284 -0.1080837,0.122432 -0.2253887,0.23643 -0.3582161,0.331605 -0.9365499,0.568706 -0.9088579,0.650165 -1.6646157,0.742537 -0.1617523,0.01598 -0.3238321,0.02852 -0.4862917,0.03398 -0.1146667,-0.0056 -0.2089106,-0.0583 -0.3027264,-0.11981 C 1.9620107,20.999097 1.8715075,20.938702 1.7802895,20.879209 1.6972907,20.817586 1.653071,20.717491 1.6033139,20.62964 1.5322312,20.50861 1.4548867,20.391629 1.3913122,20.26633 c -0.07264,-0.167297 -0.077499,-0.350154 -0.075953,-0.529538 0.00745,-0.273623 0.081469,-0.538238 0.1656536,-0.796711 0.1177555,-0.330292 0.2815884,-0.640339 0.4449819,-0.949575 0.1838689,-0.336162 0.3698925,-0.67143 0.574008,-0.995796 0.1722137,-0.280536 0.3960701,-0.521103 0.6240914,-0.756187 0.2471914,-0.251128 0.5159797,-0.479759 0.7906068,-0.700066 0.313975,-0.239169 0.6487409,-0.449607 0.9828024,-0.659265 0.2562013,-0.152136 0.5076318,-0.311266 0.7522445,-0.481369 0.1960321,-0.137571 0.3878661,-0.280917 0.5829129,-0.419856 0.1499281,-0.112844 0.3077473,-0.213969 0.4533425,-0.332505 0.1496353,-0.126105 0.3009994,-0.250081 0.4379018,-0.390134 0.1195688,-0.131818 0.2271819,-0.274088 0.3189983,-0.426504 0.062814,-0.102531 0.113777,-0.2116 0.1599077,-0.322448 0.063539,-0.144198 0.1109773,-0.294886 0.1634422,-0.443344 0.064032,-0.188872 0.126562,-0.378363 0.1864819,-0.568603 0.069997,-0.218007 0.1527336,-0.431587 0.2355382,-0.644965 0.054774,-0.155522 0.1151256,-0.309556 0.1523278,-0.470447 0.026038,-0.144681 0.049854,-0.290434 0.045029,-0.4377538 C 8.3728056,9.8149502 8.2986317,9.7164754 8.2186271,9.6233765 8.1527242,9.5612044 8.0878966,9.4961292 7.9999384,9.4682539 7.8943613,9.4485021 7.7961169,9.4921617 7.7002258,9.5308343 7.672613,9.5438024 7.6443143,9.5554004 7.6173876,9.5697387 7.5876293,9.5855848 7.501067,9.6379656 7.530365,9.621284 7.854214,9.4368913 8.1754789,9.2479294 8.5010524,9.0665988 c 0.033437,-0.018623 -0.06322,0.04321 -0.093763,0.066276 C 8.3324417,9.1893972 8.3044135,9.2171152 8.2347401,9.279519 8.0586202,9.4483447 7.9233976,9.6519943 7.8010037,9.8614313 7.6446745,10.143055 7.5121438,10.43663 7.4008933,10.738685 7.2913871,11.042517 7.242477,11.362648 7.1966248,11.68095 c -0.046701,0.306129 -0.098682,0.611218 -0.1604766,0.914653 -0.069932,0.311062 -0.1303383,0.624124 -0.2053817,0.934029 -0.053132,0.217313 -0.1256675,0.428574 -0.2144463,0.633693 -0.070224,0.153442 -0.1444406,0.304866 -0.2009688,0.464022 -0.023085,0.08928 -0.044673,0.04986 -0.027236,0.02219 0.00703,-0.01116 0.023065,-0.01327 0.03568,-0.01714 0.055026,-0.01686 0.1124832,-0.02441 0.1687912,-0.03631 0.2495019,-0.05445 0.4969053,-0.117852 0.7472309,-0.168556 0.2078164,-0.04257 0.4206442,-0.04789 0.6319581,-0.05484 0.1112543,0.0017 0.222991,-0.008 0.3342245,-0.0037 0.010785,4.09e-4 0.1315998,0.01128 0.1444173,0.01242 0.085402,0.01413 0.1710335,0.02622 0.2517865,0.05899 0.069322,0.0321 0.035224,0.0175 0.1021532,0.04413 0.096055,0.03846 0.1784192,0.09809 0.2647994,0.153327 0.073649,0.04237 0.1387492,0.09149 0.1985346,0.151826 0.069801,0.07284 0.1257312,0.157748 0.1829061,0.240546 0.075399,0.100562 0.1419414,0.207061 0.2040451,0.316171 0.053096,0.100156 0.083151,0.209652 0.117392,0.317073 0.028897,0.07491 0.054643,0.150188 0.066664,0.229714 0.00421,0.07158 0.015172,0.141967 0.026594,0.212643 0.011359,0.02911 2.46e-4,0.06649 0.011714,0.09523 0.00541,0.01355 0.015129,-0.02494 0.023065,-0.03718 0.011365,-0.01752 0.025663,-0.03295 0.038495,-0.04943 -1.6473699,0.951732 -1.0951999,0.71807 -0.7535789,0.329888 0.1826495,-0.207543 0.3377825,-0.433409 0.4931041,-0.661483 0.3230555,-0.499315 0.6008615,-1.025465 0.8693005,-1.555496 0.221221,-0.454212 0.697738,-1.414258 1.360067,-1.001832 0.09569,0.09864 0.130656,0.235312 0.170828,0.363106 0.05204,0.175681 0.102576,0.351999 0.149221,0.529214 0.04699,0.18583 0.08151,0.37423 0.112944,0.563198 0.02677,0.237133 0.05235,0.47409 0.08814,0.710058 0.03428,0.212668 0.06367,0.426352 0.108012,0.637221 0.04557,0.169703 0.07868,0.34187 0.105252,0.515444 0.02396,0.171647 0.0343,0.344972 0.04747,0.517733 0.01488,0.200315 0.04953,0.398524 0.07848,0.597144 0.03496,0.229975 0.07662,0.458743 0.120696,0.687112 0.03845,0.200967 0.0777,0.401683 0.134613,0.598349 0.0354,0.13636 0.08742,0.26712 0.140805,0.39718 0.03573,0.09033 0.07249,0.179719 0.116236,0.266461 0.03868,0.06517 0.07198,0.136032 0.124362,0.191551 0.03586,0.04701 0.07495,0.09145 0.110956,0.138208 0,0 -1.101429,0.656126 -1.101429,0.656126 l 0,0 c -0.03528,-0.04495 -0.06752,-0.09205 -0.102723,-0.137022 -0.05344,-0.0685 -0.09652,-0.143971 -0.136931,-0.220759 -0.04265,-0.09072 -0.08493,-0.180839 -0.113685,-0.277246 -0.05547,-0.135393 -0.09871,-0.27549 -0.133505,-0.417596 -0.05566,-0.202218 -0.09403,-0.407487 -0.128609,-0.614261 -0.04161,-0.229361 -0.09004,-0.457466 -0.127185,-0.687658 -0.034,-0.200007 -0.06664,-0.400419 -0.09074,-0.601875 -0.01332,-0.169591 -0.02923,-0.339002 -0.04597,-0.508257 -0.02563,-0.172233 -0.05242,-0.344519 -0.09624,-0.513271 -0.04161,-0.214841 -0.06837,-0.432032 -0.102606,-0.64811 -0.03153,-0.234649 -0.06223,-0.469334 -0.09324,-0.704051 -0.03109,-0.185035 -0.07426,-0.367436 -0.112127,-0.551139 -0.04449,-0.173758 -0.09469,-0.346743 -0.151172,-0.516884 -0.02349,-0.06181 -0.04615,-0.124371 -0.07439,-0.184247 -0.0027,-0.0058 -0.02385,-0.05109 -0.03331,-0.05446 -0.0038,-0.0014 -0.0056,0.0059 -0.0083,0.0089 -0.04238,0.431954 -0.01018,0.02835 1.044188,-0.598079 0.01795,-0.01066 -0.03748,0.01977 -0.05228,0.03449 -0.08975,0.08926 -0.153018,0.24089 -0.225393,0.341311 -0.31381,0.519598 -0.596513,1.057134 -0.904591,1.580105 -0.138226,0.221515 -0.277079,0.440545 -0.431606,0.651159 -0.01081,0.01474 -0.15741,0.215292 -0.191992,0.237176 -0.3772716,0.238747 -0.7672828,0.456741 -1.1509239,0.685111 -0.02887,0.0019 -0.058438,0.0124 -0.08661,0.0058 -0.026874,-0.0063 -0.050191,-0.02451 -0.070937,-0.04271 -0.052286,-0.04588 -0.053976,-0.09572 -0.057642,-0.158149 -0.00887,-0.0718 -0.026621,-0.142245 -0.026236,-0.214908 -0.00741,-0.07405 -0.025133,-0.145375 -0.052512,-0.214763 C 8.6302021,16.171687 8.6048321,16.070436 8.5574511,15.977141 8.5005391,15.870804 8.4364921,15.768984 8.3625577,15.673459 8.3058307,15.598729 8.2492331,15.522867 8.1810749,15.458022 8.1251659,15.406392 8.061785,15.365912 7.998907,15.323277 7.921282,15.269527 7.8377632,15.225837 7.750429,15.189793 c -0.1039986,-0.04318 -0.2122199,-0.06926 -0.325112,-0.0758 -0.1533511,-0.01046 -0.3072442,-0.0072 -0.4608359,-0.0046 -0.2041835,0.0058 -0.4080615,0.02076 -0.6082629,0.06387 -0.2525206,0.05286 -0.5027377,0.115275 -0.7545027,0.171468 -0.057625,0.0097 -0.1476894,0.03013 -0.2085337,0.02141 -0.077663,-0.01112 -0.1597738,-0.07269 -0.1470492,-0.160339 0.00262,-0.01803 0.014679,-0.03336 0.022018,-0.05004 0.033638,-0.06959 0.058539,-0.142074 0.090848,-0.212291 0.040671,-0.08839 0.087761,-0.17386 0.1263158,-0.263273 0.096033,-0.201276 0.1759203,-0.40906 0.2395654,-0.622927 0.090072,-0.307158 0.1542067,-0.620475 0.2222366,-0.933056 C 6.0042224,12.823173 6.0498604,12.520549 6.102327,12.21873 6.15093,11.892267 6.2028259,11.563462 6.3082068,11.249755 6.4103983,10.945225 6.5353501,10.649404 6.6797727,10.36247 6.7961866,10.144795 6.9232919,9.9336751 7.0902422,9.75003 7.5351459,9.3040342 8.1056686,8.9955291 8.6884875,8.7620282 c 0.1256889,-0.036068 0.2543632,-0.060833 0.3757558,0.00346 0.090074,0.055422 0.1667795,0.1286976 0.2358293,0.2085297 0.094252,0.116132 0.178679,0.2377166 0.2036035,0.3889655 0.013427,0.1577518 -0.011563,0.3119029 -0.031747,0.4682589 -0.010529,0.057463 -0.016746,0.099176 -0.032934,0.1556224 -0.033401,0.1164623 -0.088218,0.2259293 -0.1246818,0.3413883 -0.08508,0.210344 -0.1722066,0.420098 -0.2404575,0.636732 -0.05771,0.189481 -0.1147613,0.379157 -0.1751629,0.567705 -0.050196,0.148813 -0.1005161,0.297497 -0.1471959,0.447455 -0.053123,0.11273 -0.089635,0.233814 -0.1582751,0.339371 -0.096677,0.159039 -0.2018903,0.312507 -0.3232974,0.454109 -0.1258605,0.151197 -0.275562,0.276538 -0.4247797,0.404024 -0.045588,0.03882 -0.089538,0.07961 -0.1363751,0.11691 -0.1032697,0.08224 -0.2199272,0.145039 -0.323707,0.226493 -0.1983624,0.149887 0.023963,-0.01524 -0.183262,0.129644 -0.1386032,0.0969 -0.2707178,0.203158 -0.4112703,0.2974 -0.2489405,0.177555 -0.5042078,0.345361 -0.7704442,0.496145 -0.3367592,0.206226 -0.6724487,0.415458 -0.991997,0.64776 -0.2723213,0.214778 -0.5364281,0.440516 -0.7857476,0.681775 -0.2271957,0.231058 -0.4562523,0.46292 -0.6347064,0.735237 -0.216352,0.317721 -0.408533,0.650929 -0.5897197,0.989826 -0.1558498,0.301637 -0.3127824,0.603033 -0.4306315,0.922183 -0.084928,0.243041 -0.1568744,0.493451 -0.1660699,0.752465 0.00113,0.158061 0.00729,0.320518 0.065694,0.469435 0.05965,0.123148 0.1362585,0.236855 0.2074265,0.353521 0.046765,0.07192 0.090011,0.149767 0.1629358,0.198684 0.08101,0.06413 0.1666965,0.122086 0.2574145,0.171736 0.088055,0.04281 0.1695465,0.06715 0.2686271,0.05993 0.1515264,-0.0012 0.3032783,-0.0066 0.4535735,-0.02736 0.1103917,-0.01631 0.2201976,-0.03396 0.3278808,-0.06409 0.4145129,-0.115996 1.0197914,-0.60846 -0.8266012,0.516908 0.1478191,-0.07849 0.2650675,-0.184499 0.3818233,-0.303699 0.151761,-0.164142 0.3038857,-0.328394 0.4326506,-0.511896 0.107296,-0.1733 0.2140082,-0.347559 0.2928106,-0.536247 0.080229,-0.199643 0.1698965,-0.395509 0.2334674,-0.601419 0.073219,-0.224178 0.1261847,-0.45457 0.1742457,-0.685327 0.054259,-0.247041 0.1255423,-0.489938 0.1861619,-0.735462 0.060901,-0.251514 0.1218702,-0.503683 0.1555321,-0.760603 0.024278,-0.248577 0.033736,-0.498072 0.014942,-0.747532 -0.012474,-0.218845 -0.024976,-0.437614 -0.035828,-0.656534 -0.013863,-0.15431 -0.027381,-0.310524 -0.064487,-0.461133 -0.019344,-0.04998 -0.042869,-0.128433 -0.1102792,-0.113455 -0.082695,0.01604 -0.1659707,0.02956 -0.2455245,0.05872 -0.1468592,0.04807 -0.2935592,0.09717 -0.4257726,0.179398 -0.1044819,0.05858 -0.061879,0.03454 -0.1701311,0.0959 -0.031925,0.0181 -0.1275071,0.07272 -0.095761,0.05431 0.3172726,-0.183974 0.6350084,-0.367149 0.9523446,-0.551014 0.037701,-0.02184 -0.075626,0.0433 -0.1134385,0.06495 -0.3883499,0.224961 -0.7766997,0.449922 -1.1650496,0.674883 -0.2573702,0.143147 -0.5166836,0.282804 -0.7769328,0.42064 -0.1266246,0.06474 -0.2537499,0.128578 -0.3794392,0.195128 -0.041511,0.02198 -0.1646218,0.09051 -0.1240878,0.06677 0.065161,-0.03815 1.3501761,-0.781852 0.8252087,-0.478022 -0.4634021,0.276695 -0.3115777,0.186742 -1.2613365,0.729481 -0.099927,0.0571 -0.208062,0.102156 -0.3188431,0.132947 0,0 1.0158165,-0.776752 1.0158165,-0.776752 z" - transform="translate(900.42859,684.2193)" - id="path7202" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <g - transform="translate(-0.1875,0.375)" - id="g3868"> - <path - d="m 888.30688,690.10346 -2.60119,12.43889 5.91169,1.23434 2.57512,-12.50165" - transform="matrix(0.9138951,0.02916988,-0.12956575,1.1023997,194.56326,-104.29886)" - mask="url(#mask3836)" - id="path7210" - style="fill:url(#linearGradient3873);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.50066453;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 912.90679,696.01618 0.30405,5.25331 2.08892,0.60935 2.98991,-4.27396" - id="path3842" - style="fill:url(#radialGradient3875);fill-opacity:1;stroke:#000000;stroke-width:0.45993432;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 913.18227,701.08114 0.31101,3.10057 1.90916,-2.43627" - id="path3852" - style="fill:#313131;fill-opacity:1;stroke:#000000;stroke-width:0.45736727;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> - <rect - width="20.883707" - height="17.976885" - x="0.58360565" - y="1945.7407" - id="rect6294" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#8c8e89;stroke-width:1.03740442;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="17.572828" - height="2.1966035" - x="2.2779477" - y="1947.4938" - id="rect6055" - style="fill:#a0bdd9;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - width="3.2949049" - height="11.035022" - x="2.2779477" - y="1950.7856" - id="rect6057" - style="fill:#cfd0c8;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - width="13.163168" - height="12.125098" - x="6.6600266" - y="1949.6956" - id="rect6059" - style="fill:#f0f2eb;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - d="m 6.1259087,1961.2303 0,-13.1952" - id="path6061" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.09438753;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 11.32115,1961.7717 0,-14.4152" - id="path6061-6" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 10.809539,1961.2225 0,-13.1952" - id="path6061-65" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.09830177;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 16.148779,1961.2225 0,-13.1952" - id="path6061-5" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.09830177;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 19.292723,1953.4289 -16.456733,0" - id="path6061-68" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.10716188;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 19.300499,1950.2395 -16.4734053,0" - id="path6061-68-8" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.09830177;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 19.292723,1956.7927 -16.456733,0" - id="path6061-68-84" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.10716188;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 19.292723,1961.2225 -16.456733,0" - id="path6061-68-9" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.10716188;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <g - transform="translate(-291.88242,-521.02797)" - id="layer1-05"> - <g - transform="translate(-37.98214,-0.06250444)" - id="g7123"> - <path - d="m 7.7678573,8.5848217 a 8.3705359,8.3705359 0 1 1 -16.7410717,0 8.3705359,8.3705359 0 1 1 16.7410717,0 z" - transform="matrix(1.1399776,0,0,1.1399776,413.66918,522.63818)" - id="path6494" - style="fill:url(#linearGradient7130);fill-opacity:1;fill-rule:nonzero;stroke:#1d497d;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 414.36607,528.58539 0.625,1.65179 -0.9375,0.71429 -0.89286,0.80357 0.84822,1.51785 2.00893,0.89286 0.58035,3.125 0.80358,2.00893 1.02678,-0.89286 0.80357,-2.36607 0.0446,-1.38393 0.75893,-1.07143 -1.25,-1.875 -1.25,-1.25 -1.60714,-1.38392 z" - id="path7012" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - <path - d="m 406.86607,533.58539 0.58036,2.8125 0.625,0.80358 0.75893,2.36607 0.80357,0.53571 0.58036,-2.27678 0.89285,-0.89286 0.71429,-0.89286 -1.16072,-1.16071 -0.98214,-1.25 -1.20536,-0.66965 -1.83035,-0.26785 -0.80357,-1.11607 -0.84822,-0.66965 1.875,-0.75893 0.625,-1.02678 0.9375,-0.66964 1.38393,-0.89286 0.58036,-0.98214 -2.09822,-0.40179 -0.84821,-0.80357 -1.16072,1.42857 -1.16071,1.38393 -0.3125,1.69643 -0.53571,1.02678 2.09821,1.78572 z" - id="path7014" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - <path - d="m 410.16964,524.29968 1.20536,1.875 1.20536,-0.9375 1.5625,-0.98214 -0.22322,-0.9375 -2.76785,0.0893 z" - id="path7016" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - <path - d="m 415.125,527.82647 1.42857,-0.40179 -0.0446,-1.78571 1.33929,-0.35715 1.02678,0.35715 0.89286,1.25 1.29464,1.60714 0.75893,1.83036 -0.13393,1.11607 -1.42857,1.02678 -0.98214,-1.47321 -0.89286,-1.83036 -1.33929,-0.75893 z" - id="path7018" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - </g> - </g> - <g - transform="translate(-699.478,-632.13055)" - id="layer1-4"> - <text - x="861.17706" - y="650.73999" - transform="scale(0.90019997,1.1108643)" - id="text4348" - xml:space="preserve" - style="font-size:15.19591999px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4379);fill-opacity:1;stroke:#1d201d;stroke-width:0.48778871;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"><tspan - x="861.17706" - y="650.73999" - id="tspan4350" - style="font-weight:bold;fill:url(#linearGradient4379);fill-opacity:1;stroke:#1d201d;stroke-width:0.48778871;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">W</tspan></text> - <path - d="m -4.6088209,10.604217 a 10.196227,10.196227 0 1 1 -20.3924541,0 10.196227,10.196227 0 1 1 20.3924541,0 z" - transform="matrix(0.87014489,0,0,0.87014489,795.88291,706.29079)" - id="path3836" - style="fill:none;stroke:#c32f2f;stroke-width:2.06862092;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="M 2.6516504,8.5523442 19.571706,13.981914" - transform="translate(771.85712,704.2193)" - id="path4346" - style="fill:none;stroke:#c32f2f;stroke-width:1.79999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - transform="translate(-817.01734,-569.02475)" - id="layer1-12"> - <g - transform="translate(65.25943,0.00449032)" - id="g6449"> - <rect - width="16.141386" - height="19.087818" - x="824.81775" - y="714.24237" - id="rect5927" - style="opacity:0.87735847;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#cccdca;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="13.214286" - height="16.294643" - x="826.21429" - y="715.54968" - id="rect6437" - style="opacity:0.87735847;fill:url(#linearGradient6454);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - d="m 835.61419,718.03653 c 0,0 -2.85604,2.15041 -2.88205,5.68281 -0.0434,5.8954 6.51786,6.38393 6.51786,6.38393 l 0,2.99107 5.51339,-5.51339 -5.55803,-5.55804 0,3.83929 c 0,0 -4.49554,0.91071 -4.71875,-2.39286 -0.1521,-1.68723 -0.19967,-3.02945 1.12758,-5.43281 z" - id="path6447" - style="fill:#127ea5;fill-opacity:1;stroke:#003553;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> - <g - transform="matrix(1.0182686,0,0,1.0182686,-766.56233,-516.75536)" - id="layer1-61"> - <g - transform="matrix(0.87945853,0,0,0.87945853,60.516821,83.916706)" - id="g11129"> - <rect - width="14.18633" - height="17.014757" - x="869.68085" - y="725.56744" - id="rect10538" - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#878984;stroke-linejoin:round;stroke-opacity:1" /> - <rect - width="11.048544" - height="14.097941" - x="871.19214" - y="726.98163" - id="rect11048" - style="fill:#eaeaea;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - width="8.9714174" - height="1.1048543" - x="872.24414" - y="729.05878" - id="rect11050" - style="fill:#c6c6c5;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - width="8.9714174" - height="1.1048543" - x="872.24414" - y="731.05878" - id="rect11052" - style="fill:#c6c6c5;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - width="8.9714174" - height="1.1048543" - x="872.24414" - y="735.05878" - id="rect11054" - style="fill:#c6c6c5;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <g - id="g11125"> - <path - d="m 880.00066,736.45436 9.30287,-9.43545 2.45278,2.34229 -9.30287,9.25867 -3.97748,1.67938 z" - id="path11075" - style="fill:url(#linearGradient11142);fill-opacity:1;stroke:#804f01;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 878.68802,738.78561 -1.02751,2.33124 2.37543,-1.0938 z" - id="path11085" - style="fill:#000000;fill-opacity:1;stroke:none" /> - </g> - <g - id="g11121"> - <path - d="m 870.39783,732.42847 -2.45576,2.45578 0,1.99046 1.62855,0 2.63673,-2.63672" - id="path11097" - style="fill:url(#linearGradient11144);fill-opacity:1;stroke:#878984;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 11.91033,5.9796119 a 4.9276505,4.9276505 0 1 1 -9.8553011,0 4.9276505,4.9276505 0 1 1 9.8553011,0 z" - transform="matrix(0.92061147,0,0,0.92061147,867.88725,724.95103)" - id="path11101" - style="fill:url(#radialGradient11146);fill-opacity:1;fill-rule:nonzero;stroke:#878984;stroke-opacity:1" /> - </g> - </g> - </g> - <g - transform="matrix(-1,0,0,1,94.095014,288.15611)" - id="g4230"> - <rect - width="11.551277" - height="2.0031219" - x="7.7045889" - y="10.508148" - id="rect8987-09" - style="fill:url(#linearGradient3195-9);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="7.706481" - y="3.4537961" - id="rect8987-2-7" - style="fill:url(#linearGradient3192-4);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="7.7958364" - y="17.516296" - id="rect8987-5-0" - style="fill:url(#linearGradient3189-4);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="2.2180145" - height="2.2927809" - x="2.3276966" - y="3.282562" - id="rect3039-8" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="2.2180145" - height="2.2927809" - x="2.3276966" - y="10.337555" - id="rect3039-7-6" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="2.2180145" - height="2.2927809" - x="2.3276966" - y="17.345551" - id="rect3039-6-2" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - transform="translate(-38.164291,3.0531433)" - id="g4305"> - <text - x="126.79857" - y="363.06299" - id="text8953-2" - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan - x="126.79857" - y="363.06299" - id="tspan8955-7" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">1</tspan></text> - <text - x="127.04527" - y="370.06119" - id="text8953-1-3" - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan - x="127.04527" - y="370.06119" - id="tspan8955-5-4" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">2</tspan></text> - <text - x="127.01372" - y="377.03754" - id="text8953-8-8" - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><tspan - x="127.01372" - y="377.03754" - id="tspan8955-55-0" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">3</tspan></text> - <rect - width="11.551277" - height="2.0031219" - x="-124.33952" - y="367.58789" - transform="scale(-1,1)" - id="rect8987-7" - style="fill:url(#linearGradient4316);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="-124.33763" - y="360.53354" - transform="scale(-1,1)" - id="rect8987-2-6" - style="fill:url(#linearGradient4318);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="11.551277" - height="2.0031219" - x="-124.24828" - y="374.59604" - transform="scale(-1,1)" - id="rect8987-5-81" - style="fill:url(#linearGradient4320);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - transform="matrix(-1,0,0,1,94.28683,432.19934)" - id="g4372"> - <rect - width="9.2080336" - height="2.0841758" - x="9.9951382" - y="10.467622" - id="rect8987-6" - style="fill:url(#linearGradient3195-1);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89300001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="16.296982" - height="1.8709884" - x="2.8947093" - y="3.5198629" - id="rect8987-2-3" - style="fill:url(#linearGradient3192-43);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89300001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="16.168335" - height="1.874174" - x="3.1143055" - y="17.58077" - id="rect8987-5-7" - style="fill:url(#linearGradient3189-2);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89300001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - d="m 6.1401918,11.71699 -2.6276419,1.51707 -2.6276417,1.51707 0,-3.03414 0,-3.0341389 2.6276419,1.5170699 z" - transform="matrix(0.90902794,0,0,0.90902794,2.2305609,0.83286798)" - id="path3978-7" - style="fill:url(#linearGradient3986-8);fill-opacity:1;fill-rule:nonzero;stroke:#e0926b;stroke-width:0.89300001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - transform="matrix(-1,0,0,1,982.4349,-208.7368)" - id="layer1-53"> - <g - transform="translate(65.25943,0.00449032)" - id="g6449-3"> - <rect - width="16.141386" - height="19.087818" - x="824.81775" - y="714.24237" - id="rect5927-5" - style="opacity:0.87735847;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#cccdca;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - width="13.214286" - height="16.294643" - x="826.21429" - y="715.54968" - id="rect6437-5" - style="opacity:0.87735847;fill:url(#linearGradient6454-9);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - d="m 835.61419,718.03653 c 0,0 -2.85604,2.15041 -2.88205,5.68281 -0.0434,5.8954 6.51786,6.38393 6.51786,6.38393 l 0,2.99107 5.51339,-5.51339 -5.55803,-5.55804 0,3.83929 c 0,0 -4.49554,0.91071 -4.71875,-2.39286 -0.1521,-1.68723 -0.19967,-3.02945 1.12758,-5.43281 z" - id="path6447-9" - style="fill:#127ea5;fill-opacity:1;stroke:#003553;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-big.svg b/extensions/WikiEditor/modules/images/toolbar/format-big.svg deleted file mode 100644 index 68d0193a..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-big.svg +++ /dev/null @@ -1,113 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg11148" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-big.svg"> - <defs - id="defs11150"> - <filter - inkscape:collect="always" - id="filter11711"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.40047554" - id="feGaussianBlur11713" /> - </filter> - <filter - inkscape:collect="always" - id="filter11735"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.22248641" - id="feGaussianBlur11737" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="3.4653374" - inkscape:cy="10.767942" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata11153"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-823.28571,-707.07648)"> - <text - xml:space="preserve" - style="font-size:10.12465572px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.70751727;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="835.85748" - y="718.30353" - id="text11171" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan11173" - x="835.85748" - y="718.30353" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.70751727;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">+</tspan></text> - <text - sodipodi:linespacing="125%" - id="text11693" - y="725.07898" - x="825.39417" - style="font-size:18.17164040000000114px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - xml:space="preserve"><tspan - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif" - y="725.07898" - x="825.39417" - id="tspan11695" - sodipodi:role="line">A</tspan></text> - <path - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - id="text11167" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - <path - style="font-size:19.56149483000000089px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:0.6918239" - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - id="text11683" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold-A.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold-A.svg deleted file mode 100644 index 83a0cb81..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold-A.svg +++ /dev/null @@ -1,131 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-a.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter3809"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30164062" - id="feGaussianBlur3811" /> - </filter> - <filter - inkscape:collect="always" - id="filter3837"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.4021875" - id="feGaussianBlur3839" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="10.896612" - inkscape:cy="10.315032" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">A</tspan></text> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3809);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 532.75446,516.10773 -4.46875,12.65625 -1,0 0,1.125 0.5,0 0,-0.625 1,0 4.46875,-12.65625 1.625,0 -0.1875,-0.5 -1.9375,0 z m 0.4375,3.96875 -0.15625,0.46875 1.46875,4.28125 -3,0 -0.1875,0.5 3.6875,0 -1.8125,-5.25 z m 1.90625,6.375 0.8125,2.3125 -1.1875,0 0,1.125 0.5,0 0,-0.625 1.1875,0 -1,-2.8125 -0.3125,0 z m -5,2.3125 -0.1875,0.5 0.9375,0 0,-0.5 -0.75,0 z m 9.40625,0 0.1875,0.5 0.625,0 0,-0.5 -0.8125,0 z" - id="text3023" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3837);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 534.37946,516.10773 4.3125,12.15625 0.3125,0 -4.3125,-12.15625 -0.3125,0 z m -2.1875,2.9375 -1.875,5.28125 0.6875,0 1.53125,-4.28125 -0.34375,-1 z m -2.28125,6.40625 -1,2.8125 0.6875,0 0.8125,-2.3125 4.1875,0 -0.1875,-0.5 -4.5,0 z m 0.4375,3.3125 0,0.625 -3.0625,0 0,0.5 3.5625,0 0,-1.125 -0.5,0 z m 9.46875,0 0,0.625 -5.09375,0 0,0.5 5.59375,0 0,-1.125 -0.5,0 z" - id="text3027" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold-B.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold-B.svg deleted file mode 100644 index ef04e499..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold-B.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-b.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter5232"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.29260706" - id="feGaussianBlur5234" /> - </filter> - <filter - inkscape:collect="always" - id="filter5240"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.35243056" - id="feGaussianBlur5242" /> - </filter> - <filter - inkscape:collect="always" - id="filter3772"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.380625" - id="feGaussianBlur3774" /> - </filter> - <filter - inkscape:collect="always" - id="filter3776"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.28441406" - id="feGaussianBlur3778" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="1.9680403" - inkscape:cy="10.315032" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">B</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:1;filter:url(#filter3772)" - d="m 528.19196,516.7064 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 4.09375,0 0,4.65625 0.5,0 0,-4.15625 1.0625,0 c 0.82594,10e-6 1.44511,0.15919 1.875,0.4375 -0.0892,-0.14324 -0.18651,-0.26897 -0.3125,-0.375 -0.42665,-0.36351 -1.11857,-0.56249 -2.0625,-0.5625 l -1.0625,0 z m 6.28125,0.25 c 0.39409,0.52808 0.59374,1.22535 0.59375,2.0625 -10e-6,0.81947 -0.27463,1.45692 -0.78125,1.9375 -0.50131,0.48059 -1.22683,0.78303 -2.21875,0.90625 0.52107,0.0562 0.95953,0.16568 1.375,0.3125 0.55687,-0.16157 1.00754,-0.39644 1.34375,-0.71875 0.50662,-0.48058 0.78124,-1.11803 0.78125,-1.9375 -10e-6,-1.13984 -0.36315,-1.99564 -1.09375,-2.5625 z m -6.28125,5.5 0,5.8125 0.5,0 0,-5.3125 1.15625,0 c 0.83936,10e-6 1.48442,0.1937 1.96875,0.53125 -0.0691,-0.0954 -0.13581,-0.19985 -0.21875,-0.28125 -0.49597,-0.48674 -1.24208,-0.74999 -2.25,-0.75 l -1.15625,0 z m 6.90625,0.84375 c 0.44148,0.56299 0.68749,1.25448 0.6875,2.09375 -10e-6,1.36783 -0.44782,2.38431 -1.34375,3.03125 -0.89062,0.64694 -2.31489,0.96875 -4.21875,0.96875 l -6.125,0 0,0.5 6.625,0 c 1.90386,0 3.32813,-0.32181 4.21875,-0.96875 0.89593,-0.64694 1.34374,-1.66342 1.34375,-3.03125 -10e-6,-1.01046 -0.32881,-1.79627 -0.96875,-2.40625 -0.067,-0.0638 -0.14565,-0.12894 -0.21875,-0.1875 z" - id="text5199" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:0.8;filter:url(#filter3776)" - d="m 528.19654,516.11548 0,1.09375 0.5,0 0,-0.59375 7.09375,0 c 1.43448,10e-6 2.51961,0.26222 3.25,0.8125 -0.13699,-0.17753 -0.2861,-0.32704 -0.46875,-0.46875 -0.73063,-0.56683 -1.82536,-0.84374 -3.28125,-0.84375 l -7.09375,0 z m 1.53125,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 6.5,0.4375 c 0.21673,0.34787 0.34374,0.80765 0.34375,1.375 -10e-6,0.79483 -0.24487,1.36184 -0.6875,1.75 -0.44264,0.38201 -1.11399,0.59376 -2.03125,0.59375 l -0.5625,0 0,0.5 1.0625,0 c 0.91726,10e-6 1.58861,-0.21174 2.03125,-0.59375 0.44263,-0.38816 0.68749,-0.95517 0.6875,-1.75 -10e-6,-0.80097 -0.22429,-1.38647 -0.65625,-1.75 -0.0533,-0.0454 -0.12609,-0.0852 -0.1875,-0.125 z m 1.8125,4.53125 c -0.27347,0.0794 -0.54832,0.14692 -0.875,0.1875 1.07435,0.11586 1.90579,0.43638 2.53125,0.9375 -0.0901,-0.11484 -0.17283,-0.20916 -0.28125,-0.3125 -0.36206,-0.34509 -0.83372,-0.62123 -1.375,-0.8125 z m -1.625,1.3125 c 0.34394,0.47485 0.53124,1.0853 0.53125,1.90625 -10e-6,0.97966 -0.22813,1.71924 -0.71875,2.1875 -0.49064,0.46826 -1.26266,0.6875 -2.28125,0.6875 l -0.65625,0 0,0.5 1.15625,0 c 1.01859,0 1.79061,-0.21924 2.28125,-0.6875 0.49062,-0.46826 0.71874,-1.20784 0.71875,-2.1875 -10e-6,-0.98581 -0.25404,-1.70075 -0.75,-2.1875 -0.0829,-0.0814 -0.18398,-0.15096 -0.28125,-0.21875 z" - id="text5217" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold-F.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold-F.svg deleted file mode 100644 index 8c8de992..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold-F.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-f.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter3809"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30164062" - id="feGaussianBlur3811" /> - </filter> - <filter - inkscape:collect="always" - id="filter3837"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.4021875" - id="feGaussianBlur3839" /> - </filter> - <filter - inkscape:collect="always" - id="filter3882"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.27492187" - id="feGaussianBlur3884" /> - </filter> - <filter - inkscape:collect="always" - id="filter3886"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.3665625" - id="feGaussianBlur3888" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="12.662998" - inkscape:cy="19.259521" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">F</tspan></text> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3886);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 538.34821,516.10773 0,2.75 -0.59375,0 0,0.5 1.09375,0 0,-3.25 -0.5,0 z m -10.15625,0.59375 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 4.125,0.15625 0,4.4375 0.5,0 0,-3.9375 4.4375,0 0,-0.5 -4.9375,0 z m 4.125,3.1875 0,4.25 -0.59375,0 0,0.5 1.09375,0 0,-4.75 -0.5,0 z m -4.125,2.5 0,5.71875 0.5,0 0,-5.21875 2.53125,0 0,-0.5 -3.03125,0 z m 1.875,6.21875 0,0.625 -6,0 0,0.5 6.5,0 0,-1.125 -0.5,0 z" - id="text3860" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:0.80000000000000004;filter:url(#filter3882)" - d="m 528.19196,516.10773 0,1.09375 0.5,0 0,-0.59375 10.15625,0 0,-0.5 -10.65625,0 z m 1.53125,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 8.03125,0.15625 0,1.5 0.5,0 0,-1.5 -0.5,0 z m -1.90625,2.1875 0,1.75 -2.53125,0 0,0.5 3.03125,0 0,-1.75 0.59375,0 0,-0.5 -1.09375,0 z m 0,3.5 0,1.25 0.5,0 0,-1.25 -0.5,0 z m -2.53125,5.21875 0,0.5 1.375,0 0,-0.5 -1.375,0 z" - id="text3864" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold-G.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold-G.svg deleted file mode 100644 index 4c924a63..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold-G.svg +++ /dev/null @@ -1,163 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-f.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter3809"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30164062" - id="feGaussianBlur3811" /> - </filter> - <filter - inkscape:collect="always" - id="filter3837"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.4021875" - id="feGaussianBlur3839" /> - </filter> - <filter - inkscape:collect="always" - id="filter3882"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.27492187" - id="feGaussianBlur3884" /> - </filter> - <filter - inkscape:collect="always" - id="filter3886"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.3665625" - id="feGaussianBlur3888" /> - </filter> - <filter - inkscape:collect="always" - id="filter3908"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.35953125" - id="feGaussianBlur3910" /> - </filter> - <filter - inkscape:collect="always" - id="filter3912"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.28933594" - id="feGaussianBlur3914" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="16.234427" - inkscape:cy="13.902379" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">G</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter3908)" - d="m 534.62946,516.45148 c -1.23726,1e-5 -2.13746,0.49527 -2.71875,1.46875 -0.57597,0.96735 -0.875,2.50505 -0.875,4.59375 0,2.07022 0.28912,3.58285 0.84375,4.5625 0.20798,0.36506 0.45502,0.67809 0.75,0.90625 -0.0944,-0.12162 -0.16884,-0.26379 -0.25,-0.40625 -0.55463,-0.97965 -0.84375,-2.49228 -0.84375,-4.5625 0,-2.0887 0.29903,-3.6264 0.875,-4.59375 0.58129,-0.97348 1.48149,-1.46874 2.71875,-1.46875 0.86746,1e-5 1.55891,0.2273 2.09375,0.625 -0.076,-0.0954 -0.13567,-0.2008 -0.21875,-0.28125 -0.55997,-0.54835 -1.35641,-0.84374 -2.375,-0.84375 z m 4.59375,0.375 0,3.09375 -0.65625,0 c 0.0425,0.16552 0.0895,0.31967 0.125,0.5 l 1.03125,0 0,-3.375 c -0.16821,-0.0805 -0.33222,-0.1465 -0.5,-0.21875 z m 0.40625,6.625 0,4.78125 c -0.89595,0.48059 -1.79157,0.82837 -2.6875,1.0625 -0.89062,0.23413 -1.81674,0.375 -2.75,0.375 -1.75604,0 -3.19957,-0.46844 -4.3125,-1.40625 1.17325,1.2754 2.76464,1.90625 4.8125,1.90625 0.93326,0 1.85938,-0.14087 2.75,-0.375 0.89593,-0.23413 1.79155,-0.58191 2.6875,-1.0625 l 0,-5.28125 -0.5,0 z m -3.8125,0.59375 0,0.5 0.9375,0 0,-0.5 -0.9375,0 z" - id="text3890" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter3912);opacity:0.80000000000000004" - d="m 534.69196,515.85773 c -2.04786,1e-5 -3.63925,0.63086 -4.8125,1.90625 -1.16792,1.27541 -1.78125,3.02575 -1.78125,5.25 0,2.2181 0.61333,3.9746 1.78125,5.25 0.12571,0.13665 0.23925,0.25299 0.375,0.375 -1.1007,-1.26488 -1.65625,-2.97168 -1.65625,-5.125 0,-2.22425 0.58208,-3.97459 1.75,-5.25 1.17325,-1.27539 2.79589,-1.90624 4.84375,-1.90625 0.85327,1e-5 1.70463,0.0841 2.53125,0.28125 0.66053,0.15756 1.33264,0.40012 2,0.6875 l 0,-0.28125 c -0.83729,-0.40048 -1.6734,-0.70907 -2.5,-0.90625 -0.82662,-0.19715 -1.67798,-0.28124 -2.53125,-0.28125 z m 3.03125,2.21875 c 0.43644,0.5474 0.76436,1.30482 0.96875,2.34375 l 0.375,0 c -0.24482,-0.95424 -0.58532,-1.66293 -1.0625,-2.125 -0.0831,-0.0814 -0.18807,-0.14946 -0.28125,-0.21875 z m -1.90625,5.375 0,1.09375 0.5,0 0,-0.59375 3.8125,0 0,-0.5 -4.3125,0 z m 1.4375,1.59375 0,3.28125 c -0.31466,0.23413 -0.67854,0.41418 -1.0625,0.53125 -0.38398,0.11707 -0.77079,0.1875 -1.21875,0.1875 -0.71603,0 -1.32688,-0.16866 -1.8125,-0.53125 0.54902,0.6868 1.32703,1.03125 2.3125,1.03125 0.44796,0 0.83477,-0.0704 1.21875,-0.1875 0.38396,-0.11707 0.74784,-0.29712 1.0625,-0.53125 l 0,-3.78125 -0.5,0 z" - id="text3894" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold-N.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold-N.svg deleted file mode 100644 index 69c9c5a1..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold-N.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-G.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter3908"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.35953125" - id="feGaussianBlur3910" /> - </filter> - <filter - inkscape:collect="always" - id="filter3912"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.28933594" - id="feGaussianBlur3914" /> - </filter> - <filter - inkscape:collect="always" - id="filter3953"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30832031" - id="feGaussianBlur3955" /> - </filter> - <filter - inkscape:collect="always" - id="filter3973"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.41109375" - id="feGaussianBlur3975" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="18.020141" - inkscape:cy="12.116664" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">N</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter3973)" - d="m 531.75446,516.10773 6.84375,9.25 0,-0.1875 -6.71875,-9.0625 -0.125,0 z m 9.5,0 0,0.59375 -1.53125,0 0,12.6875 -1.96875,0 0.375,0.5 2.09375,0 0,-12.6875 1.53125,0 0,-1.09375 -0.5,0 z m -13.125,0.59375 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 9.4375,0 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m -7.28125,2.71875 0,8.84375 0.5,0 0,-8.15625 -0.5,-0.6875 z m 1.53125,9.34375 0,0.625 -3.6875,0 0,0.5 4.1875,0 0,-1.125 -0.5,0 z" - id="text3939" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter3953);opacity:0.8" - d="m 528.12946,516.10773 0,1.09375 0.5,0 0,-0.59375 3.625,0 -0.375,-0.5 -3.75,0 z m 9.4375,0 0,1.09375 0.5,0 0,-0.59375 3.6875,0 0,-0.5 -4.1875,0 z m -7.90625,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 9.4375,0 0,7.96875 0.5,0.6875 0,-8.65625 -0.5,0 z m -7.8125,2.71875 0,0.1875 6.84375,9.28125 0.125,0 -6.96875,-9.46875 z m 0,8.34375 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z" - id="text3935" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold-P.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold-P.svg deleted file mode 100644 index 96d36e6d..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold-P.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-N.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter3953"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30832031" - id="feGaussianBlur3955" /> - </filter> - <filter - inkscape:collect="always" - id="filter3973"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.41109375" - id="feGaussianBlur3975" /> - </filter> - <filter - inkscape:collect="always" - id="filter4018"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.27" - id="feGaussianBlur4020" /> - </filter> - <filter - inkscape:collect="always" - id="filter4022"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.36515625" - id="feGaussianBlur4024" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="15.564784" - inkscape:cy="10.33095" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">P</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4022)" - d="m 528.19196,516.70148 0,0.5 1.03125,0 0,-0.5 -1.03125,0 z m 4.09375,0 0,5.875 0.5,0 0,-5.375 0.90625,0 c 0.46699,1e-5 0.88043,0.13824 1.21875,0.375 -0.0173,-0.0237 -0.0444,-0.0395 -0.0625,-0.0625 -0.41065,-0.52987 -0.95764,-0.81249 -1.65625,-0.8125 l -0.90625,0 z m 5.625,0.3125 c 0.59493,0.68939 0.93749,1.55688 0.9375,2.625 -10e-6,1.23228 -0.39823,2.19814 -1.1875,2.9375 -0.78396,0.73321 -1.83368,1.09376 -3.15625,1.09375 l -2.21875,0 0,4.59375 0.5,0 0,-4.09375 2.21875,0 c 1.32257,1e-5 2.37229,-0.36054 3.15625,-1.09375 0.78927,-0.73936 1.18749,-1.70522 1.1875,-2.9375 -10e-6,-1.2261 -0.40356,-2.21045 -1.1875,-2.9375 -0.0765,-0.0715 -0.16834,-0.12295 -0.25,-0.1875 z m -3.6875,11.75 0,0.625 -6.03125,0 0,0.5 6.53125,0 0,-1.125 -0.5,0 z" - id="text4000" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:0.80000000000000004;filter:url(#filter4018)" - d="m 528.19196,516.10773 0,1.09375 0.5,0 0,-0.59375 6.8125,0 c 1.19835,1e-5 2.15089,0.30914 2.90625,0.90625 -0.088,-0.10197 -0.14899,-0.21882 -0.25,-0.3125 -0.78396,-0.73319 -1.82835,-1.09374 -3.15625,-1.09375 l -6.8125,0 z m 1.53125,1.59375 0,11.0625 -1.53125,0 0,1.125 0.5,0 0,-0.625 1.53125,0 0,-11.5625 -0.5,0 z m 5.6875,0.375 c 0.37529,0.51597 0.56249,1.21431 0.5625,2.0625 -10e-6,0.89341 -0.20904,1.58897 -0.625,2.125 -0.41065,0.52988 -0.96297,0.81251 -1.65625,0.8125 l -0.40625,0 0,0.5 0.90625,0 c 0.69328,1e-5 1.2456,-0.28262 1.65625,-0.8125 0.41596,-0.53603 0.62499,-1.23159 0.625,-2.125 -10e-6,-0.88723 -0.21437,-1.60127 -0.625,-2.125 -0.13615,-0.17567 -0.2697,-0.32007 -0.4375,-0.4375 z m -2.125,10.6875 0,0.5 1.4375,0 0,-0.5 -1.4375,0 z" - id="text3996" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold-V.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold-V.svg deleted file mode 100644 index 2ef715af..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold-V.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-P.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter4018"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.27" - id="feGaussianBlur4020" /> - </filter> - <filter - inkscape:collect="always" - id="filter4022"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.36515625" - id="feGaussianBlur4024" /> - </filter> - <filter - inkscape:collect="always" - id="filter4063"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30199219" - id="feGaussianBlur4065" /> - </filter> - <filter - inkscape:collect="always" - id="filter4067"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.40265625" - id="feGaussianBlur4069" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="14.448713" - inkscape:cy="13.902379" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">V</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4067)" - d="m 532.44196,516.10773 0,0.59375 -1.1875,0 3.25,9.15625 0.15625,-0.46875 -2.90625,-8.1875 1.1875,0 0,-1.09375 -0.5,0 z m 7.4375,0 0,0.59375 -1,0 -4.5,12.6875 -1.59375,0 0.1875,0.5 1.875,0 4.53125,-12.6875 1,0 0,-1.09375 -0.5,0 z m -12.5625,0.59375 0,0.5 0.8125,0 -0.1875,-0.5 -0.625,0 z m 9.5,0 0,0.5 0.75,0 0.1875,-0.5 -0.9375,0 z" - id="text4049" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4063);opacity:0.8" - d="m 527.31696,516.10773 0,1.09375 0.5,0 0,-0.59375 5.125,0 0,-0.5 -5.625,0 z m 9.5,0 0,1.09375 0.5,0 0,-0.59375 3.0625,0 0,-0.5 -3.5625,0 z m -8.1875,1.59375 4.34375,12.1875 0.3125,0 -4.34375,-12.1875 -0.3125,0 z m 9.4375,0 -2.90625,8.1875 0.34375,0.96875 3.25,-9.15625 -0.6875,0 z" - id="text4045" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-bold.svg b/extensions/WikiEditor/modules/images/toolbar/format-bold.svg deleted file mode 100644 index 83a0cb81..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-bold.svg +++ /dev/null @@ -1,131 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-a.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter3809"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30164062" - id="feGaussianBlur3811" /> - </filter> - <filter - inkscape:collect="always" - id="filter3837"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.4021875" - id="feGaussianBlur3839" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="10.896612" - inkscape:cy="10.315032" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="566.91028" - y="492.98608" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="566.91028" - y="492.98608" - style="font-weight:bold;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Bold">A</tspan></text> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3809);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 532.75446,516.10773 -4.46875,12.65625 -1,0 0,1.125 0.5,0 0,-0.625 1,0 4.46875,-12.65625 1.625,0 -0.1875,-0.5 -1.9375,0 z m 0.4375,3.96875 -0.15625,0.46875 1.46875,4.28125 -3,0 -0.1875,0.5 3.6875,0 -1.8125,-5.25 z m 1.90625,6.375 0.8125,2.3125 -1.1875,0 0,1.125 0.5,0 0,-0.625 1.1875,0 -1,-2.8125 -0.3125,0 z m -5,2.3125 -0.1875,0.5 0.9375,0 0,-0.5 -0.75,0 z m 9.40625,0 0.1875,0.5 0.625,0 0,-0.5 -0.8125,0 z" - id="text3023" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3837);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 534.37946,516.10773 4.3125,12.15625 0.3125,0 -4.3125,-12.15625 -0.3125,0 z m -2.1875,2.9375 -1.875,5.28125 0.6875,0 1.53125,-4.28125 -0.34375,-1 z m -2.28125,6.40625 -1,2.8125 0.6875,0 0.8125,-2.3125 4.1875,0 -0.1875,-0.5 -4.5,0 z m 0.4375,3.3125 0,0.625 -3.0625,0 0,0.5 3.5625,0 0,-1.125 -0.5,0 z m 9.46875,0 0,0.625 -5.09375,0 0,0.5 5.59375,0 0,-1.125 -0.5,0 z" - id="text3027" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-indent.svg b/extensions/WikiEditor/modules/images/toolbar/format-indent.svg deleted file mode 100644 index 870274f9..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-indent.svg +++ /dev/null @@ -1,220 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - width="22" - height="22" - id="svg8934" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-ulist.svg"> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1041" - id="namedview3183" - showgrid="false" - inkscape:zoom="11.313708" - inkscape:cx="-8.2391735" - inkscape:cy="10.499687" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg8934" /> - <defs - id="defs8936"> - <linearGradient - id="linearGradient3980"> - <stop - style="stop-color:#fcc273;stop-opacity:1;" - offset="0" - id="stop3982" /> - <stop - style="stop-color:#fc916b;stop-opacity:1;" - offset="1" - id="stop3984" /> - </linearGradient> - <linearGradient - id="linearGradient9497"> - <stop - id="stop9499" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503" - xlink:href="#linearGradient9497" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1" - xlink:href="#linearGradient9497-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-1"> - <stop - id="stop9499-6" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520" - xlink:href="#linearGradient9497-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3" - xlink:href="#linearGradient9497-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-6"> - <stop - id="stop9499-0" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2" - xlink:href="#linearGradient9497-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497-6" - id="linearGradient3189" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3098397,0,0,0.848111,-727.30273,-410.25386)" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497-1" - id="linearGradient3192" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3202618,0,0,0.84666939,-733.334,-423.58754)" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497" - id="linearGradient3195" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.74596729,0,0,0.94314201,-405.98488,-465.30597)" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3980" - id="linearGradient3986" - x1="1.1049798" - y1="13.152683" - x2="6.6379666" - y2="10.024924" - gradientUnits="userSpaceOnUse" /> - </defs> - <metadata - id="metadata8939"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <rect - style="fill:url(#linearGradient3195);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89300001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987" - y="10.467622" - x="9.9951382" - height="2.0841758" - width="9.2080336" /> - <rect - style="fill:url(#linearGradient3192);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.893;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987-2" - y="3.5198629" - x="2.8947093" - height="1.8709884" - width="16.296982" /> - <rect - style="fill:url(#linearGradient3189);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.893;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987-5" - y="17.58077" - x="3.1143055" - height="1.874174" - width="16.168335" /> - <path - sodipodi:type="star" - style="fill:url(#linearGradient3986);fill-opacity:1;fill-rule:nonzero;stroke:#e0926b;stroke-width:0.89300000999999984;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="path3978" - sodipodi:sides="3" - sodipodi:cx="2.6366694" - sodipodi:cy="11.71699" - sodipodi:r1="3.5035224" - sodipodi:r2="1.7517612" - sodipodi:arg1="0" - sodipodi:arg2="1.0471976" - inkscape:flatsided="false" - inkscape:rounded="0" - inkscape:randomized="0" - d="m 6.1401918,11.71699 -2.6276419,1.51707 -2.6276417,1.51707 0,-3.03414 0,-3.0341389 2.6276419,1.5170699 z" - inkscape:transform-center-x="-0.79619997" - transform="matrix(0.90902794,0,0,0.90902794,2.2305609,0.83286798)" /> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-italic-A.svg b/extensions/WikiEditor/modules/images/toolbar/format-italic-A.svg deleted file mode 100644 index 0e484a13..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-italic-A.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-bold-V.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter4063"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30199219" - id="feGaussianBlur4065" /> - </filter> - <filter - inkscape:collect="always" - id="filter4067"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.40265625" - id="feGaussianBlur4069" /> - </filter> - <filter - inkscape:collect="always" - id="filter4108"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.29320256" - id="feGaussianBlur4110" /> - </filter> - <filter - inkscape:collect="always" - id="filter4112"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.3909375" - id="feGaussianBlur4114" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="10.63356" - inkscape:cy="15.345202" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="569.04468" - y="493.06223" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="569.04468" - y="493.06223" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">A</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4108);opacity:0.8" - d="m 535.78571,516.17023 -6.40625,12.8125 -1.0625,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.0625,0 6.40625,-12.8125 0.9375,0 -0.0937,-0.5 -1.34375,0 z m 0.375,2.75 -0.3125,0.625 0.90625,5.4375 -3.625,0 -0.25,0.5 4.375,0 -1.09375,-6.5625 z m 0.8125,7.53125 0.40625,2.53125 -1.3125,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.3125,0 -0.46875,-3.03125 -0.4375,0 z m -5.84375,2.53125 -0.25,0.5 0.71875,0 0.0937,-0.5 -0.5625,0 z m 8.53125,0 0.0937,0.5 0.59375,0 0.0625,-0.5 -0.75,0 z" - id="text4090" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4112);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 536.72321,516.17023 2.03125,12.3125 0.40625,0 -2.03125,-12.3125 -0.40625,0 z m -1.5625,1.75 -3.28125,6.5625 0.75,0 2.71875,-5.4375 -0.1875,-1.125 z m -3.78125,7.53125 -1.5,3.03125 0.75,0 1.25,-2.53125 4.59375,0 -0.0625,-0.5 -5.03125,0 z m -0.28125,3.53125 -0.0625,0.5 -2.8125,0 -0.0625,0.5 3.375,0 0.15625,-1 -0.59375,0 z m 8.75,0 -0.0937,0.5 -3.78125,0 -0.0625,0.5 4.34375,0 0.15625,-1 -0.5625,0 z" - id="text4094" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-italic-C.svg b/extensions/WikiEditor/modules/images/toolbar/format-italic-C.svg deleted file mode 100644 index d58e1deb..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-italic-C.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-italic.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter4108"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.29320256" - id="feGaussianBlur4110" /> - </filter> - <filter - inkscape:collect="always" - id="filter4112"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.3909375" - id="feGaussianBlur4114" /> - </filter> - <filter - inkscape:collect="always" - id="filter4180"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.28407221" - id="feGaussianBlur4182" /> - </filter> - <filter - inkscape:collect="always" - id="filter4184"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.35995908" - id="feGaussianBlur4186" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="30.773476" - inkscape:cy="10.294439" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="567.37231" - y="493.05362" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="567.37231" - y="493.05362" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">C</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4184)" - d="m 534.56696,516.42023 c -1.06685,0.11457 -1.95956,0.64601 -2.6875,1.5625 -0.83195,1.04128 -1.43994,2.56667 -1.78125,4.59375 -0.34131,2.02093 -0.26122,3.54632 0.21875,4.59375 0.20629,0.44755 0.49066,0.80731 0.84375,1.0625 -0.12875,-0.16736 -0.24717,-0.35298 -0.34375,-0.5625 -0.47997,-1.04743 -0.56006,-2.57282 -0.21875,-4.59375 0.34131,-2.02708 0.9493,-3.55247 1.78125,-4.59375 0.83194,-1.04742 1.88166,-1.56249 3.15625,-1.5625 0.85596,1e-5 1.50789,0.15034 2,0.5 -0.0471,-0.0641 -0.10373,-0.13005 -0.15625,-0.1875 -0.50131,-0.54835 -1.27183,-0.81249 -2.34375,-0.8125 -0.15932,0 -0.31634,-0.0164 -0.46875,0 z m 4.96875,0.4375 -0.5,2.9375 -0.40625,0 c 0.0125,0.1636 0.0304,0.32199 0.0312,0.5 l 0.875,0 0.53125,-3.1875 c -0.18373,-0.0945 -0.35168,-0.16682 -0.53125,-0.25 z m -1.4375,9.46875 c -0.53603,1.0345 -1.18715,1.83323 -2,2.40625 -0.93861,0.65927 -2.04326,1 -3.3125,1 -0.77862,0 -1.48046,-0.16068 -2.09375,-0.46875 -0.28043,-0.14086 -0.54208,-0.29859 -0.78125,-0.5 0.36218,0.42621 0.79506,0.75578 1.28125,1 0.61329,0.30807 1.31513,0.46875 2.09375,0.46875 1.26924,0 2.37389,-0.34073 3.3125,-1 0.94393,-0.66543 1.67936,-1.61852 2.25,-2.90625 l -0.75,0 z" - id="text4162" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4180);opacity:0.8" - d="m 535.81696,515.92023 c -1.75455,1e-5 -3.26659,0.65023 -4.5625,1.96875 -1.29058,1.31238 -2.10611,3.04335 -2.46875,5.1875 -0.18665,1.10905 -0.20649,2.11893 -0.0625,3 0.14399,0.87492 0.45753,1.65368 0.9375,2.34375 0.22577,0.32438 0.4661,0.60468 0.75,0.84375 -0.0947,-0.11143 -0.16379,-0.21989 -0.25,-0.34375 -0.47997,-0.69007 -0.79351,-1.46883 -0.9375,-2.34375 -0.14399,-0.88107 -0.12415,-1.89095 0.0625,-3 0.36264,-2.14415 1.17817,-3.87512 2.46875,-5.1875 1.29591,-1.31852 2.80795,-1.96874 4.5625,-1.96875 0.65061,1e-5 1.33262,0.0841 2.03125,0.28125 0.53784,0.15065 1.10607,0.38692 1.6875,0.65625 l 0.0312,-0.25 c -0.77863,-0.40048 -1.51481,-0.70907 -2.21875,-0.90625 -0.69863,-0.19715 -1.38064,-0.28124 -2.03125,-0.28125 z m 2.21875,2 c 0.40225,0.54813 0.62022,1.33803 0.625,2.375 l 0.4375,0 c -0.0691,-0.9005 -0.29465,-1.59857 -0.71875,-2.0625 -0.101,-0.11048 -0.21959,-0.22428 -0.34375,-0.3125 z m -0.65625,8.40625 c -0.42131,0.9735 -0.96372,1.69459 -1.625,2.1875 -0.65596,0.48675 -1.4219,0.71875 -2.3125,0.71875 -0.72676,0 -1.31284,-0.16146 -1.78125,-0.5 0.51111,0.66438 1.26314,1 2.28125,1 0.8906,0 1.65654,-0.232 2.3125,-0.71875 0.66128,-0.49291 1.20369,-1.214 1.625,-2.1875 l 0.71875,0 c 0.0864,-0.16682 0.17076,-0.32118 0.25,-0.5 l -1.46875,0 z" - id="text4158" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-italic-K.svg b/extensions/WikiEditor/modules/images/toolbar/format-italic-K.svg deleted file mode 100644 index 25f31558..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-italic-K.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-italic-C.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter4180"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.28407221" - id="feGaussianBlur4182" /> - </filter> - <filter - inkscape:collect="always" - id="filter4184"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.35995908" - id="feGaussianBlur4186" /> - </filter> - <filter - inkscape:collect="always" - id="filter4225"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30445256" - id="feGaussianBlur4227" /> - </filter> - <filter - inkscape:collect="always" - id="filter4229"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.4059375" - id="feGaussianBlur4231" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="13.095807" - inkscape:cy="7.7690577" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="567.41534" - y="493.06223" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="567.41534" - y="493.06223" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">K</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4225);opacity:0.8" - d="m 529.97321,516.17023 -0.1875,1 0.59375,0 0.0937,-0.5 4.0625,0 0.0937,-0.5 -4.65625,0 z m 6.96875,0 -0.15625,1 0.5625,0 0.0937,-0.5 3.40625,0 0.0625,-0.5 -3.96875,0 z m -5.71875,1.5 -1.90625,11.3125 -1.5,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.5,0 2,-11.8125 -0.59375,0 z m 6.3125,0 -4.78125,4.125 -0.1875,1.09375 6.03125,-5.21875 -1.0625,0 z m -5.15625,6.25 -0.0312,0.1875 4.09375,5.875 0.15625,0 -4.21875,-6.0625 z m -0.84375,5.0625 -0.0937,0.5 0.96875,0 0.0625,-0.5 -0.9375,0 z m 6.65625,0 0.34375,0.5 0.75,0 0.0937,-0.5 -1.1875,0 z" - id="text4207" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;filter:url(#filter4229);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 534.03571,516.17023 -0.0625,0.5 -1.53125,0 -0.875,5.21875 0.6875,-0.59375 0.6875,-4.125 1.53125,0 0.15625,-1 -0.59375,0 z m 6.3125,0 -0.0937,0.5 -1.34375,0 -6,5.1875 4.625,6.625 0.15625,0 -4.28125,-6.125 6,-5.1875 1.34375,0 0.15625,-1 -0.5625,0 z m -10.46875,0.5 -0.0937,0.5 0.9375,0 0.0937,-0.5 -0.9375,0 z m 6.96875,0 -0.0625,0.5 0.25,0 0.5625,-0.5 -0.75,0 z m -5.46875,6.25 -0.9375,5.5625 0.59375,0 0.8125,-4.875 -0.46875,-0.6875 z m 0.53125,6.0625 -0.0937,0.5 -4.09375,0 -0.0625,0.5 4.65625,0 0.15625,-1 -0.5625,0 z m 6.875,0 -0.0625,0.5 -2.625,0 0.34375,0.5 2.78125,0 0.15625,-1 -0.59375,0 z" - id="text4211" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-italic-i.svg b/extensions/WikiEditor/modules/images/toolbar/format-italic-i.svg deleted file mode 100644 index c5183082..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-italic-i.svg +++ /dev/null @@ -1,104 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg5250" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="Nowy dokument 15"> - <defs - id="defs5252"> - <filter - inkscape:collect="always" - id="filter5867"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23529697" - id="feGaussianBlur5869" /> - </filter> - <filter - inkscape:collect="always" - id="filter5879"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30769604" - id="feGaussianBlur5881" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="13.978787" - inkscape:cy="12.402617" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata5255"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-840.42859,-692.79077)"> - <g - id="g5883" - transform="translate(-19.62505,-0.15625)"> - <text - transform="scale(1.0721134,0.93273715)" - sodipodi:linespacing="125%" - id="text5269" - y="762.1983" - x="808.40424" - style="font-size:20.50770187px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#565758;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - xml:space="preserve"><tspan - style="font-style:italic;font-weight:normal;fill:#565758;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic" - y="762.1983" - x="808.40424" - id="tspan5271" - sodipodi:role="line">I</tspan></text> - <path - inkscape:connector-curvature="0" - id="text5273" - d="m 875.11609,696.97827 -0.0937,0.5 -2.03125,0 -2.6875,11.96875 0.625,0 2.53125,-11.46875 2.0625,0 0.21875,-1 -0.625,0 z m -5.75,0.5 -0.125,0.5 1.4375,0 0.125,-0.5 -1.4375,0 z m 2.84375,12.46875 -0.0937,0.46875 -5.625,0 -0.125,0.5 6.25,0 0.21875,-0.96875 -0.625,0 z" - style="font-size:20.50770187px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter5879);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - <path - inkscape:connector-curvature="0" - id="text5282" - d="m 869.49109,696.97827 -0.25,1 0.625,0 0.125,-0.5 5.625,0 0.125,-0.5 -6.25,0 z m 1.6875,1.5 -2.5625,11.46875 -2.03125,0 -0.21875,0.96875 0.625,0 0.0937,-0.46875 2.03125,0 2.6875,-11.96875 -0.625,0 z m 0.25,11.46875 -0.125,0.5 1.40625,0 0.125,-0.5 -1.40625,0 z" - style="font-size:20.50770187px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.87735847;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter5867);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-italic.svg b/extensions/WikiEditor/modules/images/toolbar/format-italic.svg deleted file mode 100644 index 23b01c9c..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-italic.svg +++ /dev/null @@ -1,147 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4055" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-italic-A.svg"> - <defs - id="defs4057"> - <filter - id="filter5056" - inkscape:label="Diffuse light" - inkscape:menu="ABCs" - inkscape:menu-tooltip="Basic diffuse bevel to use for building textures" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5058" - stdDeviation="6" - in="SourceGraphic" - result="result0" /> - <feDiffuseLighting - id="feDiffuseLighting5060" - diffuseConstant="1" - surfaceScale="10" - result="result5"> - <feDistantLight - id="feDistantLight5062" - elevation="25" - azimuth="235" /> - </feDiffuseLighting> - <feComposite - id="feComposite5064" - in2="SourceGraphic" - k1="1" - in="result5" - result="result4" - operator="arithmetic" - k2="0" - k3="0.6" /> - </filter> - <filter - inkscape:collect="always" - id="filter4063"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30199219" - id="feGaussianBlur4065" /> - </filter> - <filter - inkscape:collect="always" - id="filter4067"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.40265625" - id="feGaussianBlur4069" /> - </filter> - <filter - inkscape:collect="always" - id="filter4108"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.29320256" - id="feGaussianBlur4110" /> - </filter> - <filter - inkscape:collect="always" - id="filter4112"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.3909375" - id="feGaussianBlur4114" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="10.63356" - inkscape:cy="15.345202" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata4060"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-523.28571,-512.07648)"> - <text - xml:space="preserve" - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="569.04468" - y="493.06223" - id="text5195" - sodipodi:linespacing="125%" - transform="scale(0.93034878,1.0748657)"><tspan - sodipodi:role="line" - id="tspan5197" - x="569.04468" - y="493.06223" - style="font-style:italic;font-weight:normal;fill:#444444;fill-opacity:1;-inkscape-font-specification:DejaVu Serif Italic">A</tspan></text> - <path - style="font-size:17.60938834999999969px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;filter:url(#filter4108);opacity:0.8" - d="m 535.78571,516.17023 -6.40625,12.8125 -1.0625,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.0625,0 6.40625,-12.8125 0.9375,0 -0.0937,-0.5 -1.34375,0 z m 0.375,2.75 -0.3125,0.625 0.90625,5.4375 -3.625,0 -0.25,0.5 4.375,0 -1.09375,-6.5625 z m 0.8125,7.53125 0.40625,2.53125 -1.3125,0 -0.15625,1 0.5625,0 0.0937,-0.5 1.3125,0 -0.46875,-3.03125 -0.4375,0 z m -5.84375,2.53125 -0.25,0.5 0.71875,0 0.0937,-0.5 -0.5625,0 z m 8.53125,0 0.0937,0.5 0.59375,0 0.0625,-0.5 -0.75,0 z" - id="text4090" - inkscape:connector-curvature="0" /> - <path - style="font-size:17.60938835px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter4112);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 536.72321,516.17023 2.03125,12.3125 0.40625,0 -2.03125,-12.3125 -0.40625,0 z m -1.5625,1.75 -3.28125,6.5625 0.75,0 2.71875,-5.4375 -0.1875,-1.125 z m -3.78125,7.53125 -1.5,3.03125 0.75,0 1.25,-2.53125 4.59375,0 -0.0625,-0.5 -5.03125,0 z m -0.28125,3.53125 -0.0625,0.5 -2.8125,0 -0.0625,0.5 3.375,0 0.15625,-1 -0.59375,0 z m 8.75,0 -0.0937,0.5 -3.78125,0 -0.0625,0.5 4.34375,0 0.15625,-1 -0.5625,0 z" - id="text4094" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-olist.svg b/extensions/WikiEditor/modules/images/toolbar/format-olist.svg deleted file mode 100644 index 909cb94b..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-olist.svg +++ /dev/null @@ -1,202 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg8934" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="Nowy dokument 47"> - <defs - id="defs8936"> - <linearGradient - id="linearGradient9497"> - <stop - style="stop-color:#757772;stop-opacity:1;" - offset="0" - id="stop9499" /> - <stop - style="stop-color:#6d6f6a;stop-opacity:1;" - offset="1" - id="stop9501" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497" - id="linearGradient9503" - x1="557.13837" - y1="505.56084" - x2="570.48212" - y2="505.56084" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497-1" - id="linearGradient9503-1" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-1"> - <stop - style="stop-color:#757772;stop-opacity:1;" - offset="0" - id="stop9499-6" /> - <stop - style="stop-color:#6d6f6a;stop-opacity:1;" - offset="1" - id="stop9501-7" /> - </linearGradient> - <linearGradient - y2="505.56085" - x2="570.48212" - y1="505.56085" - x1="557.13837" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" - gradientUnits="userSpaceOnUse" - id="linearGradient9520" - xlink:href="#linearGradient9497-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497-6" - id="linearGradient9503-3" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-6"> - <stop - style="stop-color:#757772;stop-opacity:1;" - offset="0" - id="stop9499-0" /> - <stop - style="stop-color:#6d6f6a;stop-opacity:1;" - offset="1" - id="stop9501-1" /> - </linearGradient> - <linearGradient - y2="505.56085" - x2="570.48212" - y1="505.56085" - x1="557.13837" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" - gradientUnits="userSpaceOnUse" - id="linearGradient9520-2" - xlink:href="#linearGradient9497-6" - inkscape:collect="always" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="-338.44907" - inkscape:cy="56.302882" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata8939"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-550.42859,-494.21933)"> - <text - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="551.98376" - y="500.20258" - id="text8953" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan8955" - x="551.98376" - y="500.20258" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">1</tspan></text> - <text - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="552.23047" - y="507.20078" - id="text8953-1" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan8955-5" - x="552.23047" - y="507.20078" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">2</tspan></text> - <text - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="552.19891" - y="514.17712" - id="text8953-8" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan8955-55" - x="552.19891" - y="514.17712" - style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">3</tspan></text> - <rect - style="fill:url(#linearGradient9503);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987" - width="11.551277" - height="2.0031219" - x="558.13318" - y="504.72748" /> - <rect - style="fill:url(#linearGradient9520);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987-2" - width="11.551277" - height="2.0031219" - x="558.13507" - y="497.67313" /> - <rect - style="fill:url(#linearGradient9520-2);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987-5" - width="11.551277" - height="2.0031219" - x="558.22443" - y="511.73563" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-small.svg b/extensions/WikiEditor/modules/images/toolbar/format-small.svg deleted file mode 100644 index af49cc73..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-small.svg +++ /dev/null @@ -1,114 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg11148" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-small.svg"> - <defs - id="defs11150"> - <filter - inkscape:collect="always" - id="filter11711"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.40047554" - id="feGaussianBlur11713" /> - </filter> - <filter - inkscape:collect="always" - id="filter11735"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.22248641" - id="feGaussianBlur11737" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="9.4578669" - inkscape:cy="10.767942" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata11153"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-823.28571,-707.07648)"> - <text - xml:space="preserve" - style="font-size:15.80470848000000039px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999999;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="674.32245" - y="890.06787" - id="text11171" - sodipodi:linespacing="125%" - transform="scale(1.2392818,0.80691899)"><tspan - sodipodi:role="line" - id="tspan11173" - x="674.32245" - y="890.06787" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999999;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">-</tspan></text> - <text - sodipodi:linespacing="125%" - id="text11693" - y="725.07898" - x="825.39417" - style="font-size:18.17164040000000114px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - xml:space="preserve"><tspan - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif" - y="725.07898" - x="825.39417" - id="tspan11695" - sodipodi:role="line">A</tspan></text> - <path - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - id="text11167" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - <path - style="font-size:19.56149483000000089px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:0.6918239" - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - id="text11683" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-subscript.svg b/extensions/WikiEditor/modules/images/toolbar/format-subscript.svg deleted file mode 100644 index f6d094da..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-subscript.svg +++ /dev/null @@ -1,114 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg11148" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-subscript.svg"> - <defs - id="defs11150"> - <filter - inkscape:collect="always" - id="filter11711"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.40047554" - id="feGaussianBlur11713" /> - </filter> - <filter - inkscape:collect="always" - id="filter11735"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.22248641" - id="feGaussianBlur11737" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="9.4578669" - inkscape:cy="10.767942" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata11153"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-823.28571,-707.07648)"> - <text - xml:space="preserve" - style="font-size:5.07652283000000004px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998000000003;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="676.90649" - y="897.27142" - id="text11171" - sodipodi:linespacing="125%" - transform="scale(1.2392818,0.80691898)"><tspan - sodipodi:role="line" - id="tspan11173" - x="676.90649" - y="897.27142" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998000000003;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">â–¼</tspan></text> - <text - sodipodi:linespacing="125%" - id="text11693" - y="725.07898" - x="825.39417" - style="font-size:18.1716404px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - xml:space="preserve"><tspan - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif" - y="725.07898" - x="825.39417" - id="tspan11695" - sodipodi:role="line">A</tspan></text> - <path - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - id="text11167" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - <path - style="font-size:19.56149483000000089px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:0.6918239" - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - id="text11683" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-superscript.svg b/extensions/WikiEditor/modules/images/toolbar/format-superscript.svg deleted file mode 100644 index 0c94275c..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-superscript.svg +++ /dev/null @@ -1,114 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg11148" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-subscript.svg"> - <defs - id="defs11150"> - <filter - inkscape:collect="always" - id="filter11711"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.40047554" - id="feGaussianBlur11713" /> - </filter> - <filter - inkscape:collect="always" - id="filter11735"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.22248641" - id="feGaussianBlur11737" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="9.4578669" - inkscape:cy="10.767942" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata11153"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-823.28571,-707.07648)"> - <text - xml:space="preserve" - style="font-size:5.07652283px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="676.90649" - y="884.87854" - id="text11171" - sodipodi:linespacing="125%" - transform="scale(1.2392818,0.80691898)"><tspan - sodipodi:role="line" - id="tspan11173" - x="676.90649" - y="884.87854" - style="font-weight:bold;fill:#969795;fill-opacity:1;stroke:#2e3436;stroke-width:0.76999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">â–²</tspan></text> - <text - sodipodi:linespacing="125%" - id="text11693" - y="725.07898" - x="825.39417" - style="font-size:18.1716404px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#212222;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - xml:space="preserve"><tspan - style="font-weight:normal;fill:#212222;fill-opacity:1;-inkscape-font-specification:DejaVu Serif" - y="725.07898" - x="825.39417" - id="tspan11695" - sodipodi:role="line">A</tspan></text> - <path - style="font-size:19.56149483px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter11735);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - d="m 831.84511,710.73333 4.90625,12.71875 0.28125,0 -4.875,-12.71875 -0.3125,0 z m -1.5,1.8125 -2.59375,6.78125 0.6875,0 2.25,-5.875 -0.34375,-0.90625 z m -3,7.78125 -1.1875,3.125 0.6875,0 1,-2.625 5.6875,0 -0.1875,-0.5 -6,0 z m 0.375,3.65625 0,0.5 -3.5,0 0,0.5 4,0 0,-1 -0.5,0 z m 10.40625,0 0,0.5 -4.65625,0 0,0.5 5.15625,0 0,-1 -0.5,0 z" - id="text11167" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - <path - style="font-size:19.56149483000000089px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter11711);font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif;opacity:0.6918239" - d="m 830.51875,710.76366 -5.0625,13.21875 -1.25,0 0,1.03125 0.5,0 0,-0.5 1.25,0 5.0625,-13.25 1.3125,0 -0.1875,-0.5 -1.625,0 z m 0.8125,2.8125 -0.15625,0.40625 2.28125,5.875 -4.53125,0 -0.1875,0.5 5.21875,0 -2.625,-6.78125 z m 2.6875,7.78125 1,2.625 -1.5625,0 0,1.03125 0.5,0 0,-0.5 1.5625,0 -1.1875,-3.15625 -0.3125,0 z m -6.6875,2.625 -0.1875,0.53125 1.0625,0 0,-0.53125 -0.875,0 z m 10.1875,0 0.21875,0.53125 0.875,0 0,-0.53125 -1.09375,0 z" - id="text11683" - inkscape:connector-curvature="0" - transform="matrix(0.92894952,0,0,0.92894952,59.652113,51.58086)" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/format-ulist.svg b/extensions/WikiEditor/modules/images/toolbar/format-ulist.svg deleted file mode 100644 index 21091807..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/format-ulist.svg +++ /dev/null @@ -1,204 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - width="22" - height="22" - id="svg8934" - inkscape:version="0.48.4 r9939" - sodipodi:docname="format-indent.svg"> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1041" - id="namedview3183" - showgrid="false" - inkscape:zoom="8" - inkscape:cx="-21.518622" - inkscape:cy="4.2550987" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg8934" /> - <defs - id="defs8936"> - <linearGradient - id="linearGradient9497"> - <stop - id="stop9499" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503" - xlink:href="#linearGradient9497" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-1" - xlink:href="#linearGradient9497-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-1"> - <stop - id="stop9499-6" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-7" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520" - xlink:href="#linearGradient9497-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.297231,40.402412)" /> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9503-3" - xlink:href="#linearGradient9497-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.295341,47.45676)" /> - <linearGradient - id="linearGradient9497-6"> - <stop - id="stop9499-0" - style="stop-color:#757772;stop-opacity:1" - offset="0" /> - <stop - id="stop9501-1" - style="stop-color:#6d6f6a;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" - id="linearGradient9520-2" - xlink:href="#linearGradient9497-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,36.386517,54.464913)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497-6" - id="linearGradient3189" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.04207,-439.75442)" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497-1" - id="linearGradient3192" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.13136,-453.81692)" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9497" - id="linearGradient3195" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.93579965,0,0,0.90646314,-514.13325,-446.76257)" - x1="557.13837" - y1="505.56085" - x2="570.48212" - y2="505.56085" /> - </defs> - <metadata - id="metadata8939"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <rect - style="fill:url(#linearGradient3195);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987" - y="10.508148" - x="7.7045889" - height="2.0031219" - width="11.551277" /> - <rect - style="fill:url(#linearGradient3192);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987-2" - y="3.4537961" - x="7.706481" - height="2.0031219" - width="11.551277" /> - <rect - style="fill:url(#linearGradient3189);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.89313626;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect8987-5" - y="17.516296" - x="7.7958364" - height="2.0031219" - width="11.551277" /> - <rect - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect3039" - y="3.282562" - x="2.3276966" - height="2.2927809" - width="2.2180145" /> - <rect - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect3039-7" - y="10.337555" - x="2.3276966" - height="2.2927809" - width="2.2180145" /> - <rect - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.65534317;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect3039-6" - y="17.345551" - x="2.3276966" - height="2.2927809" - width="2.2180145" /> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-file.svg b/extensions/WikiEditor/modules/images/toolbar/insert-file.svg deleted file mode 100644 index 012ffeff..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-file.svg +++ /dev/null @@ -1,206 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg8549" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="insert-file.svg"> - <defs - id="defs8551"> - <linearGradient - id="linearGradient9124"> - <stop - style="stop-color:#ffedbc;stop-opacity:1;" - offset="0" - id="stop9126" /> - <stop - style="stop-color:#f7eca1;stop-opacity:1;" - offset="1" - id="stop9128" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient9100"> - <stop - style="stop-color:#f4f5f4;stop-opacity:1;" - offset="0" - id="stop9102" /> - <stop - style="stop-color:#f4f5f4;stop-opacity:0;" - offset="1" - id="stop9104" /> - </linearGradient> - <linearGradient - id="linearGradient9090"> - <stop - style="stop-color:#766649;stop-opacity:1;" - offset="0" - id="stop9092" /> - <stop - style="stop-color:#e6a540;stop-opacity:1;" - offset="1" - id="stop9094" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter9146"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.0990625" - id="feGaussianBlur9148" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9090" - id="linearGradient9159" - gradientUnits="userSpaceOnUse" - x1="805.19128" - y1="693.05548" - x2="805.19128" - y2="702.22186" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient9124" - id="radialGradient9161" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5528787,-1.1867658e-7,7.6106348e-8,0.99584878,755.02076,685.64122)" - cx="30.513159" - cy="16.796043" - fx="30.513159" - fy="16.796043" - r="3.140625" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient9100" - id="radialGradient9163" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5459471,-0.89508966,0.42455384,0.72967733,750.53948,718.40122)" - cx="31.993927" - cy="9.0202503" - fx="31.993927" - fy="9.0202503" - r="6.866059" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient9100" - id="radialGradient9185" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5459471,-0.89508966,0.42455384,0.72967733,727.79019,718.64005)" - cx="31.993927" - cy="9.0202503" - fx="31.993927" - fy="9.0202503" - r="6.866059" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient9124" - id="radialGradient9190" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.5528787,-1.1867658e-7,7.6106348e-8,0.99584878,732.27147,685.88005)" - cx="30.513159" - cy="16.796043" - fx="30.513159" - fy="16.796043" - r="3.140625" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9090" - id="linearGradient9194" - gradientUnits="userSpaceOnUse" - x1="805.19128" - y1="693.05548" - x2="805.19128" - y2="702.22186" - gradientTransform="translate(-22.749292,0.238835)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="11.000002" - inkscape:cy="11.000005" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata8554"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-771.85712,-687.07648)"> - <path - style="fill:#f4f5f4;fill-opacity:1;fill-rule:nonzero;stroke:#979995;stroke-width:0.98371369;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 773.33551,690.56085 0,15.03125 15.6875,0 1.6875,-1.6875 1.625,-1.59375 0,-11.75 -19,0 z" - id="rect8568" - inkscape:connector-curvature="0" /> - <rect - style="fill:url(#linearGradient9194);fill-opacity:1;fill-rule:nonzero;stroke:#8a8475;stroke-width:0.98447442;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none" - id="rect9088" - width="14.78293" - height="10.804496" - x="775.41565" - y="692.71948" /> - <path - style="fill:#001700;fill-opacity:1;stroke:none" - d="m 784.01425,702.59563 0.0601,-2.9358 -1.26032,-1.93639 -1.8605,-1.24927 1.80048,0.62463 -0.26028,-1.46793 -1.82531,-2.19755 1.32363,0.61702 0.91039,1.03764 0.35492,1.31728 0.18635,0.79469 1.17065,1.79054 2.04124,-1.92043 1.67975,-2.40736 -0.62239,2.53228 -2.32245,2.54612 0,2.97449 z" - id="path9114" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccc" /> - <path - style="fill:url(#radialGradient9190);fill-opacity:1;fill-rule:nonzero;stroke:none;" - d="m 779.6728,699.1081 c -1.73172,0 -3.125,1.39328 -3.125,3.125 0,0.1736 0.0354,0.33407 0.0625,0.5 l 6.15625,0 c 0.0271,-0.16593 0.0625,-0.3264 0.0625,-0.5 0,-1.73172 -1.42454,-3.125 -3.15625,-3.125 z" - id="path9118" - inkscape:connector-curvature="0" /> - <path - style="fill:#193119;fill-opacity:1;stroke:none" - d="m 775.90453,703.04526 13.73212,0 0,-0.54833 -13.7798,0 z" - id="path9112" - inkscape:connector-curvature="0" /> - <path - style="fill:#f4f5f4;fill-opacity:1;stroke:#979995;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none" - d="m 789.0447,705.53374 3.32589,-3.32589 -3.32589,0 z" - id="path9086" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.31132076;fill:url(#radialGradient9185);fill-opacity:1;stroke:none" - d="m 775.9663,700.54201 c 0,0 1.79546,-2.81322 6.35713,-4.86346 4.34963,-1.95492 7.3609,-2.47941 7.3609,-2.47941 l -13.76583,0 z" - id="path9098" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csccc" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-gallery.svg b/extensions/WikiEditor/modules/images/toolbar/insert-gallery.svg deleted file mode 100644 index 99d73797..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-gallery.svg +++ /dev/null @@ -1,191 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg9197" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="Nowy dokument 44"> - <defs - id="defs9199"> - <linearGradient - id="linearGradient9778"> - <stop - style="stop-color:#f0a829;stop-opacity:1;" - offset="0" - id="stop9780" /> - <stop - style="stop-color:#f0ad3e;stop-opacity:1;" - offset="1" - id="stop9782" /> - </linearGradient> - <linearGradient - id="linearGradient9760"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop9762" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop9764" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient9760" - id="radialGradient9772" - cx="8.1702919" - cy="6.458025" - fx="8.1702919" - fy="6.458025" - r="5.4584503" - gradientTransform="matrix(-1.0337084,0.97885003,-0.83095482,-1.1642322,881.6209,640.19021)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient9778" - id="linearGradient9784" - x1="7.7878532" - y1="12.734541" - x2="17.905109" - y2="8.1800375" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1631645,0,0,1.3512007,858.27422,629.02856)" /> - <filter - inkscape:collect="always" - id="filter9873"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.12340545" - id="feGaussianBlur9875" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="14.381371" - inkscape:cx="7.555295" - inkscape:cy="18.334089" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata9202"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-860.42859,-632.79077)"> - <g - id="g9740" - transform="matrix(0.96583758,-0.25914815,0.25914815,0.96583758,-155.70545,250.69009)"> - <rect - y="638.2356" - x="883.86444" - height="10.078743" - width="15.655096" - id="rect9216" - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#88897f;stroke-width:0.92526156;stroke-opacity:1" /> - <rect - y="639.74615" - x="885.29468" - height="7.0982141" - width="12.767857" - id="rect9726" - style="fill:#88acd3;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - </g> - <g - id="g9732" - transform="matrix(0.94980636,0.31283842,-0.31283842,0.94980636,225.23946,-243.05113)"> - <rect - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#88897f;stroke-width:0.92526156;stroke-opacity:1" - id="rect9734" - width="15.655096" - height="10.078743" - x="883.86444" - y="638.2356" /> - <rect - style="fill:#6bbe21;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="rect9736" - width="12.767857" - height="7.0982141" - x="885.29468" - y="639.74615" /> - </g> - <rect - y="638.32489" - x="865.33765" - height="10.078743" - width="15.655096" - id="rect9746" - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#88897f;stroke-width:0.92526156;stroke-opacity:1" /> - <rect - y="639.77606" - x="866.7262" - height="7.0935974" - width="12.698151" - id="rect9774" - style="fill:url(#linearGradient9784);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - sodipodi:type="arc" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path9756" - sodipodi:cx="12.342356" - sodipodi:cy="11.500305" - sodipodi:rx="1.5297568" - sodipodi:ry="1.5297568" - d="m 13.872113,11.500305 a 1.5297568,1.5297568 0 1 1 -3.059514,0 1.5297568,1.5297568 0 1 1 3.059514,0 z" - transform="translate(860.60243,632.92984)" /> - <rect - style="opacity:0.73899369;fill:url(#radialGradient9772);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="rect9758" - width="12.698151" - height="7.0336046" - x="866.75745" - y="639.80731" /> - <path - style="fill:#000000;fill-opacity:1;stroke:none" - d="m 866.7472,646.07035 1.91945,-0.11086 0.32595,-0.96072 1.19513,-1.14548 0.97784,1.10853 1.70216,0.25865 2.60756,-0.25865 0.50702,-0.99768 1.41243,0.36951 1.05027,1.29328 1.05027,0.44342 0,0.84987 -12.71186,0 z" - id="path9752" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.45911949;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter9873)" - d="m 6.34375,7.03125 0,7.125 12.75,0 0,-7.125 -12.75,0 z m 0.71875,0.6875 11.125,0 0,5.71875 -11.125,0 0,-5.71875 z" - transform="matrix(1.018707,0,0,1.0633975,860.12972,632.15392)" - id="rect9748" - inkscape:connector-curvature="0" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-ilink.svg b/extensions/WikiEditor/modules/images/toolbar/insert-ilink.svg deleted file mode 100644 index 58a64a6c..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-ilink.svg +++ /dev/null @@ -1,148 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg7700" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="insert-ilink.svg"> - <defs - id="defs7702"> - <linearGradient - id="linearGradient3759"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3761" /> - <stop - id="stop3767" - offset="0.25" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.75" - id="stop3769" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3763" /> - </linearGradient> - <linearGradient - id="linearGradient8229"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop8231" /> - <stop - style="stop-color:#9da09f;stop-opacity:1;" - offset="1" - id="stop8233" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3759" - id="linearGradient3765" - x1="843.28571" - y1="721.07123" - x2="865.29926" - y2="721.07123" - gradientUnits="userSpaceOnUse" - spreadMethod="pad" - gradientTransform="matrix(1,0,0,5.6369887,0,-3352.5089)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3759" - id="linearGradient3777" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.62040131,0,0,3.4971952,324.32395,-1809.4892)" - spreadMethod="pad" - x1="843.28571" - y1="721.07123" - x2="865.29926" - y2="721.07123" /> - <mask - maskUnits="userSpaceOnUse" - id="mask3773"> - <rect - style="fill:url(#linearGradient3777);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="rect3775" - width="13.657221" - height="13.439366" - x="847.49951" - y="705.51801" /> - </mask> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.6914316" - inkscape:cx="-15.694299" - inkscape:cy="66.481165" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata7705"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-843.28571,-701.36218)"> - <g - id="g8544" - transform="matrix(1.6118599,0,0,1.6118599,-522.76477,-435.86589)" - mask="url(#mask3773)"> - <path - sodipodi:nodetypes="ssssssssssssssssss" - inkscape:connector-curvature="0" - id="rect8508" - d="m 847.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 857.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - id="path8520" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ssssssssssssssssss" /> - <path - id="path8522" - transform="translate(843.28571,701.36218)" - d="m 9.90625,8.3125 c 0.219379,0.2493818 0.400172,0.5353409 0.53125,0.84375 l 1.21875,0 C 11.78881,8.8397468 11.967186,8.5700989 12.1875,8.3125 l -2.28125,0 z M 6.375,9.09375 C 5.9621997,9.4039663 5.725025,9.7591417 5.71875,10.0625 l -0.03125,1.25 c -0.0151,0.72807 1.26414,2.375 3.53125,2.375 l 3.6875,0 c 2.26711,0 3.46875,-1.61553 3.46875,-2.34375 l 0,-1.28125 c 0,-0.2949291 -0.211045,-0.6348842 -0.59375,-0.9375 l -0.4375,0 c -0.63503,0 -1.1133,0.14044 -1.40625,0.4375 0.224818,0.1572379 0.34375,0.3524935 0.34375,0.53125 l 0,0.75 c 0,0.45142 -0.90722,0.78125 -2.3125,0.78125 l -2.28125,0 C 8.28222,11.625 7.75,11.29515 7.75,10.84375 l 0,-0.6875 c 0,-0.1767274 0.1306645,-0.3924485 0.375,-0.5625 -0.2943153,-0.3314596 -0.7859446,-0.5 -1.4375,-0.5 l -0.3125,0 z" - style="fill:#f4f4f5;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.60000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-link.svg b/extensions/WikiEditor/modules/images/toolbar/insert-link.svg deleted file mode 100644 index 0a0f8c4a..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-link.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg7700" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="insert-link.svg"> - <defs - id="defs7702"> - <linearGradient - id="linearGradient8229"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop8231" /> - <stop - style="stop-color:#9da09f;stop-opacity:1;" - offset="1" - id="stop8233" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="38.272727" - inkscape:cx="11" - inkscape:cy="11" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata7705"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-843.28571,-701.36218)"> - <g - id="g8544" - transform="translate(-0.03819,0)"> - <path - sodipodi:nodetypes="ssssssssssssssssss" - inkscape:connector-curvature="0" - id="rect8508" - d="m 847.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.69803369;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 857.87034,708.6932 c -1.78875,0 -3.22236,1.30374 -3.22236,2.89165 l 0,1.55466 c 0,1.58791 1.43361,2.89165 3.22236,2.89165 l 2.90712,0 c 1.78875,0 3.22236,-1.30374 3.22236,-2.89165 l 0,-1.55466 c 0,-1.58791 -1.43361,-2.89165 -3.22236,-2.89165 z m 0.51649,1.76812 1.7863,0 c 1.10879,0 1.69598,0.40915 1.69598,1.39344 l 0,0.99498 c 0,0.9843 -0.66558,1.28893 -1.77437,1.28893 l -1.7863,0 c -1.10879,0 -1.59148,-0.34383 -1.59148,-1.32813 l 0,-0.99498 c 0,-0.98429 0.56108,-1.35424 1.66987,-1.35424 z" - id="path8520" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ssssssssssssssssss" /> - <path - id="path8522" - transform="translate(843.28571,701.36218)" - d="m 9.90625,8.3125 c 0.219379,0.2493818 0.400172,0.5353409 0.53125,0.84375 l 1.21875,0 C 11.78881,8.8397468 11.967186,8.5700989 12.1875,8.3125 l -2.28125,0 z M 6.375,9.09375 C 5.9621997,9.4039663 5.725025,9.7591417 5.71875,10.0625 l -0.03125,1.25 c -0.0151,0.72807 1.26414,2.375 3.53125,2.375 l 3.6875,0 c 2.26711,0 3.46875,-1.61553 3.46875,-2.34375 l 0,-1.28125 c 0,-0.2949291 -0.211045,-0.6348842 -0.59375,-0.9375 l -0.4375,0 c -0.63503,0 -1.1133,0.14044 -1.40625,0.4375 0.224818,0.1572379 0.34375,0.3524935 0.34375,0.53125 l 0,0.75 c 0,0.45142 -0.90722,0.78125 -2.3125,0.78125 l -2.28125,0 C 8.28222,11.625 7.75,11.29515 7.75,10.84375 l 0,-0.6875 c 0,-0.1767274 0.1306645,-0.3924485 0.375,-0.5625 -0.2943153,-0.3314596 -0.7859446,-0.5 -1.4375,-0.5 l -0.3125,0 z" - style="fill:#f4f4f5;fill-opacity:1;fill-rule:nonzero;stroke:#393a3d;stroke-width:0.60000002;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-newline.svg b/extensions/WikiEditor/modules/images/toolbar/insert-newline.svg deleted file mode 100644 index c7db3a8f..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-newline.svg +++ /dev/null @@ -1,105 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg9896" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="Nowy dokument 48"> - <defs - id="defs9898"> - <filter - inkscape:collect="always" - id="filter10487" - x="-0.08373546" - width="1.1674709" - y="-0.13860559" - height="1.2772112"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.58113281" - id="feGaussianBlur10489" /> - </filter> - <filter - inkscape:collect="always" - id="filter10491" - x="-0.13307104" - width="1.2661421" - y="-0.085893642" - height="1.1717873"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.58045312" - id="feGaussianBlur10493" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313708" - inkscape:cx="18.926984" - inkscape:cy="14.173711" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata9901"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-364,-521.36218)"> - <g - id="g10495" - transform="translate(20.359375,-0.98355932)"> - <path - sodipodi:nodetypes="cccccccccc" - inkscape:connector-curvature="0" - id="path9915" - d="m 353.50893,536.39789 0,5.04465 -7.1875,-7.14286 7.1875,-7.1875 0,4.24107 4.28571,0 0,-6.11607 5.17857,0 0,11.20536 z" - style="fill:#373736;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path10454" - d="m 361.96875,525.23718 0,10.21875 -9.46875,-0.0625 0,5.0625 1,1 0,-5.0625 9.46875,0.0625 0,-11.21875 -1,0 z m -8.46875,1.875 -1,1 0,2.25 1,0 0,-3.25 z" - style="opacity:0.6;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter10491)" /> - <path - inkscape:connector-curvature="0" - id="path10425" - d="m 357.78125,525.23718 0,6.125 -3.28125,0 0,1 4.28125,0 0,-6.125 4.1875,0 0,-1 -5.1875,0 z m -4.28125,1.875 -7.1875,7.1875 1,1 6.1875,-6.1875 0,-2 z" - style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter10487)" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-nowiki.svg b/extensions/WikiEditor/modules/images/toolbar/insert-nowiki.svg deleted file mode 100644 index 35a788d7..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-nowiki.svg +++ /dev/null @@ -1,112 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg3817" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="insert-nowiki.svg"> - <defs - id="defs3819"> - <linearGradient - id="linearGradient4373"> - <stop - style="stop-color:#a1a0a0;stop-opacity:1;" - offset="0" - id="stop4375" /> - <stop - style="stop-color:#616363;stop-opacity:1;" - offset="1" - id="stop4377" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4373" - id="linearGradient4379" - x1="896.22729" - y1="642.37769" - x2="884.73309" - y2="650.4939" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.97557742,0,0,0.97557742,-0.43357327,15.714485)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="21.175745" - inkscape:cx="9.1267246" - inkscape:cy="15.351238" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata3822"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-771.85712,-704.2193)"> - <text - xml:space="preserve" - style="font-size:15.19591999px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4379);fill-opacity:1;stroke:#1d201d;stroke-width:0.48778871;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif" - x="861.17706" - y="650.73999" - id="text4348" - sodipodi:linespacing="125%" - transform="scale(0.90019997,1.1108643)"><tspan - sodipodi:role="line" - id="tspan4350" - x="861.17706" - y="650.73999" - style="font-weight:bold;fill:url(#linearGradient4379);fill-opacity:1;stroke:#1d201d;stroke-width:0.48778871;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:DejaVu Serif Bold">W</tspan></text> - <path - sodipodi:type="arc" - style="fill:none;stroke:#c32f2f;stroke-width:2.06862101000000020;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="path3836" - sodipodi:cx="-14.805048" - sodipodi:cy="10.604217" - sodipodi:rx="10.196227" - sodipodi:ry="10.196227" - d="m -4.6088209,10.604217 a 10.196227,10.196227 0 1 1 -20.3924541,0 10.196227,10.196227 0 1 1 20.3924541,0 z" - transform="matrix(0.87014489,0,0,0.87014489,795.88291,706.29079)" /> - <path - style="fill:none;stroke:#c32f2f;stroke-width:1.80000000000000004;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" - d="M 2.6516504,8.5523442 19.571706,13.981914" - id="path4346" - inkscape:connector-curvature="0" - transform="translate(771.85712,704.2193)" /> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-redirect.svg b/extensions/WikiEditor/modules/images/toolbar/insert-redirect.svg deleted file mode 100644 index ca036928..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-redirect.svg +++ /dev/null @@ -1,118 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg5908" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="Nowy dokument 19"> - <defs - id="defs5910"> - <linearGradient - inkscape:collect="always" - id="linearGradient6439"> - <stop - style="stop-color:#e5e7e2;stop-opacity:1;" - offset="0" - id="stop6441" /> - <stop - style="stop-color:#e5e7e2;stop-opacity:0;" - offset="1" - id="stop6443" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6439" - id="linearGradient6445" - x1="880.47321" - y1="718.15826" - x2="880.47321" - y2="738.3028" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-46,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6439" - id="linearGradient6454" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-46,0)" - x1="880.47321" - y1="718.15826" - x2="880.47321" - y2="738.3028" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="8.8237211" - inkscape:cy="2.783125" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata5913"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-889,-712.79077)"> - <g - id="g6449" - transform="translate(65.25943,0.00449032)"> - <rect - y="714.24237" - x="824.81775" - height="19.087818" - width="16.141386" - id="rect5927" - style="opacity:0.87735847;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#cccdca;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <rect - y="715.54968" - x="826.21429" - height="16.294643" - width="13.214286" - id="rect6437" - style="opacity:0.87735847;fill:url(#linearGradient6454);fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - sodipodi:nodetypes="csccccccc" - inkscape:connector-curvature="0" - id="path6447" - d="m 835.61419,718.03653 c 0,0 -2.85604,2.15041 -2.88205,5.68281 -0.0434,5.8954 6.51786,6.38393 6.51786,6.38393 l 0,2.99107 5.51339,-5.51339 -5.55803,-5.55804 0,3.83929 c 0,0 -4.49554,0.91071 -4.71875,-2.39286 -0.1521,-1.68723 -0.19967,-3.02945 1.12758,-5.43281 z" - style="fill:#127ea5;fill-opacity:1;stroke:#003553;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-reference.svg b/extensions/WikiEditor/modules/images/toolbar/insert-reference.svg deleted file mode 100644 index c404e860..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-reference.svg +++ /dev/null @@ -1,88 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg7132" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="Nowy dokument 27"> - <defs - id="defs7134" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.839192" - inkscape:cx="-9.8129606" - inkscape:cy="7.4207416" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata7137"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-714.71429,-701.36218)"> - <g - id="g7675" - transform="translate(26.036511,-0.0978784)"> - <path - sodipodi:nodetypes="ccscscc" - inkscape:connector-curvature="0" - id="path7155" - d="m 691.68161,706.63153 -1.45209,12.6269 c 0,0 3.54369,-1.49312 6.50286,-0.88388 2.14658,0.44194 3.34613,1.38896 3.34613,1.38896 0,0 2.77792,-2.39911 6.12405,-1.6415 3.34613,0.75762 2.90418,0.69448 2.90418,0.69448 l -1.19955,-12.2481" - style="fill:#52394e;fill-opacity:1;stroke:#52394e;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - sodipodi:nodetypes="ccsccsc" - inkscape:connector-curvature="0" - id="path7151" - d="m 692.06042,707.26287 -0.82075,10.60661 c 0,0 2.39912,-1.76777 4.9245,-1.19956 2.84205,0.63945 3.47239,1.76776 3.47239,1.76776 l 0,-12.6269 c 0,0 -2.58851,-1.89404 -4.86135,-0.82075 -2.27285,1.07329 -2.71479,2.27284 -2.71479,2.27284 z" - style="fill:#ffffff;fill-opacity:1;stroke:#b1b2af;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="csccscc" - inkscape:connector-curvature="0" - id="path7153" - d="m 699.63656,706.06332 c 0,0 2.27285,-2.14658 4.98763,-1.13642 2.71479,1.01015 2.65165,2.0203 2.65165,2.0203 l 1.01016,10.79601 c 0,0 -1.95717,-1.26269 -4.29315,-0.69448 -2.33598,0.56821 -3.53553,1.76776 -3.53553,1.76776 z" - style="fill:#ffffff;fill-opacity:1;stroke:#b1b2af;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path7157" - d="m 699.8891,706.56839 c 0,0 -0.31573,1.12962 2.28105,5.17626 2.65428,4.13625 2.07524,6.56677 2.07524,6.56677" - style="fill:none;stroke:#c04848;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-signature.svg b/extensions/WikiEditor/modules/images/toolbar/insert-signature.svg deleted file mode 100644 index d0fd5d89..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-signature.svg +++ /dev/null @@ -1,274 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg6665" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="insert-signature.svg"> - <defs - id="defs6667"> - <linearGradient - id="linearGradient3844"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3846" /> - <stop - style="stop-color:#cecece;stop-opacity:1;" - offset="1" - id="stop3848" /> - </linearGradient> - <linearGradient - id="linearGradient3780"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3782" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3784" /> - </linearGradient> - <linearGradient - id="linearGradient8680"> - <stop - style="stop-color:#2e366a;stop-opacity:0.99215686;" - offset="0" - id="stop8682" /> - <stop - id="stop8688" - offset="0.4154374" - style="stop-color:#3c91de;stop-opacity:1;" /> - <stop - style="stop-color:#2e366a;stop-opacity:0.99358976;" - offset="1" - id="stop8684" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8662"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop8664" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop8666" /> - </linearGradient> - <linearGradient - id="linearGradient8656" - osb:paint="solid"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop8658" /> - </linearGradient> - <linearGradient - id="linearGradient7212"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7214" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7216" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8662" - id="linearGradient8670" - x1="16.330652" - y1="8.7101812" - x2="17.635729" - y2="1.9547856" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8680" - id="linearGradient8686" - x1="12.19534" - y1="11.109293" - x2="20.350513" - y2="12.52982" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8680" - id="linearGradient8809" - x1="910.96173" - y1="694.78741" - x2="921.80005" - y2="696.93402" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-26.508294,6.8837482)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3780" - id="linearGradient3840" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-19.422226,4.7882523)" - x1="914.08923" - y1="691.73273" - x2="914.625" - y2="689.00946" /> - <mask - maskUnits="userSpaceOnUse" - id="mask3836"> - <rect - style="fill:url(#linearGradient3840);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="rect3838" - width="21.294643" - height="21.741072" - x="874.80103" - y="689.3111" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3844" - id="radialGradient3850" - cx="921.40735" - cy="698.09576" - fx="921.40735" - fy="698.09576" - r="3.38059" - gradientTransform="matrix(0.37329045,0.12989255,-0.3815617,0.95521397,839.37118,-91.004306)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8680" - id="linearGradient3859" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-26.508294,6.8837482)" - x1="910.96173" - y1="694.78741" - x2="921.80005" - y2="696.93402" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3844" - id="radialGradient3861" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.37329045,0.12989255,-0.3815617,0.95521397,839.37118,-91.004306)" - cx="921.40735" - cy="698.09576" - fx="921.40735" - fy="698.09576" - r="3.38059" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3844" - id="radialGradient3865" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.32194816,0.22927541,-0.63390316,0.81005546,1060.6407,-75.559535)" - cx="921.40735" - cy="698.09576" - fx="921.40735" - fy="698.09576" - r="3.38059" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8680" - id="linearGradient3873" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-26.508294,6.8837482)" - x1="910.96173" - y1="694.78741" - x2="921.80005" - y2="696.93402" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3844" - id="radialGradient3875" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.32194816,0.22927541,-0.63390316,0.81005546,1060.6407,-75.559535)" - cx="921.40735" - cy="698.09576" - fx="921.40735" - fy="698.09576" - r="3.38059" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="32" - inkscape:cx="9.8024665" - inkscape:cy="9.5718478" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1014" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" /> - <metadata - id="metadata6670"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-900.42859,-684.2193)"> - <path - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path7202" - d="m 2.7162576,15.606291 c 0.014982,-0.0061 0.030116,-0.01186 0.044947,-0.01833 0.044032,-0.0192 0.097586,-0.04461 0.1391489,-0.06714 0.029295,-0.01588 0.115542,-0.06645 0.08666,-0.04983 -1.0038452,0.57765 -1.2838827,0.741183 -0.8581766,0.492994 0.037046,-0.02158 0.073951,-0.0434 0.111137,-0.06473 0.3901054,-0.223795 0.7795876,-0.448685 1.1707359,-0.670652 0.1635679,-0.09282 0.3365902,-0.170765 0.5032587,-0.257936 0.2575795,-0.140862 0.5187569,-0.275236 0.7722876,-0.423334 -2.1829922,1.306573 -1.0930511,0.627884 -0.8202154,0.470171 0.4751945,-0.274686 0.9514185,-0.555191 1.4317232,-0.823686 0.142362,-0.0764 0.2991256,-0.120806 0.4528415,-0.168535 0.092107,-0.02377 0.1895155,-0.05226 0.2845027,-0.03273 0.1019002,0.05033 0.1453779,0.142963 0.182287,0.24448 0.042624,0.163605 0.049796,0.334568 0.06126,0.502654 0.01013,0.221059 0.018945,0.44211 0.029896,0.663161 0.016456,0.256167 0.00893,0.51265 -0.014887,0.767993 -0.02608,0.262109 -0.085432,0.519124 -0.1458886,0.774983 -0.058063,0.245373 -0.1262914,0.488199 -0.1847641,0.733455 -0.048858,0.231812 -0.099166,0.463109 -0.1648223,0.690807 -0.060983,0.207897 -0.1436609,0.408045 -0.224407,0.60874 -0.076214,0.195637 -0.1765255,0.379946 -0.2875951,0.55762 -0.1229874,0.189026 -0.2690224,0.36206 -0.4187308,0.530284 -0.1080837,0.122432 -0.2253887,0.23643 -0.3582161,0.331605 -0.9365499,0.568706 -0.9088579,0.650165 -1.6646157,0.742537 -0.1617523,0.01598 -0.3238321,0.02852 -0.4862917,0.03398 -0.1146667,-0.0056 -0.2089106,-0.0583 -0.3027264,-0.11981 C 1.9620107,20.999097 1.8715075,20.938702 1.7802895,20.879209 1.6972907,20.817586 1.653071,20.717491 1.6033139,20.62964 1.5322312,20.50861 1.4548867,20.391629 1.3913122,20.26633 c -0.07264,-0.167297 -0.077499,-0.350154 -0.075953,-0.529538 0.00745,-0.273623 0.081469,-0.538238 0.1656536,-0.796711 0.1177555,-0.330292 0.2815884,-0.640339 0.4449819,-0.949575 0.1838689,-0.336162 0.3698925,-0.67143 0.574008,-0.995796 0.1722137,-0.280536 0.3960701,-0.521103 0.6240914,-0.756187 0.2471914,-0.251128 0.5159797,-0.479759 0.7906068,-0.700066 0.313975,-0.239169 0.6487409,-0.449607 0.9828024,-0.659265 0.2562013,-0.152136 0.5076318,-0.311266 0.7522445,-0.481369 0.1960321,-0.137571 0.3878661,-0.280917 0.5829129,-0.419856 0.1499281,-0.112844 0.3077473,-0.213969 0.4533425,-0.332505 0.1496353,-0.126105 0.3009994,-0.250081 0.4379018,-0.390134 0.1195688,-0.131818 0.2271819,-0.274088 0.3189983,-0.426504 0.062814,-0.102531 0.113777,-0.2116 0.1599077,-0.322448 0.063539,-0.144198 0.1109773,-0.294886 0.1634422,-0.443344 0.064032,-0.188872 0.126562,-0.378363 0.1864819,-0.568603 0.069997,-0.218007 0.1527336,-0.431587 0.2355382,-0.644965 0.054774,-0.155522 0.1151256,-0.309556 0.1523278,-0.470447 0.026038,-0.144681 0.049854,-0.290434 0.045029,-0.4377538 C 8.3728056,9.8149502 8.2986317,9.7164754 8.2186271,9.6233765 8.1527242,9.5612044 8.0878966,9.4961292 7.9999384,9.4682539 7.8943613,9.4485021 7.7961169,9.4921617 7.7002258,9.5308343 7.672613,9.5438024 7.6443143,9.5554004 7.6173876,9.5697387 7.5876293,9.5855848 7.501067,9.6379656 7.530365,9.621284 7.854214,9.4368913 8.1754789,9.2479294 8.5010524,9.0665988 c 0.033437,-0.018623 -0.06322,0.04321 -0.093763,0.066276 C 8.3324417,9.1893972 8.3044135,9.2171152 8.2347401,9.279519 8.0586202,9.4483447 7.9233976,9.6519943 7.8010037,9.8614313 7.6446745,10.143055 7.5121438,10.43663 7.4008933,10.738685 7.2913871,11.042517 7.242477,11.362648 7.1966248,11.68095 c -0.046701,0.306129 -0.098682,0.611218 -0.1604766,0.914653 -0.069932,0.311062 -0.1303383,0.624124 -0.2053817,0.934029 -0.053132,0.217313 -0.1256675,0.428574 -0.2144463,0.633693 -0.070224,0.153442 -0.1444406,0.304866 -0.2009688,0.464022 -0.023085,0.08928 -0.044673,0.04986 -0.027236,0.02219 0.00703,-0.01116 0.023065,-0.01327 0.03568,-0.01714 0.055026,-0.01686 0.1124832,-0.02441 0.1687912,-0.03631 0.2495019,-0.05445 0.4969053,-0.117852 0.7472309,-0.168556 0.2078164,-0.04257 0.4206442,-0.04789 0.6319581,-0.05484 0.1112543,0.0017 0.222991,-0.008 0.3342245,-0.0037 0.010785,4.09e-4 0.1315998,0.01128 0.1444173,0.01242 0.085402,0.01413 0.1710335,0.02622 0.2517865,0.05899 0.069322,0.0321 0.035224,0.0175 0.1021532,0.04413 0.096055,0.03846 0.1784192,0.09809 0.2647994,0.153327 0.073649,0.04237 0.1387492,0.09149 0.1985346,0.151826 0.069801,0.07284 0.1257312,0.157748 0.1829061,0.240546 0.075399,0.100562 0.1419414,0.207061 0.2040451,0.316171 0.053096,0.100156 0.083151,0.209652 0.117392,0.317073 0.028897,0.07491 0.054643,0.150188 0.066664,0.229714 0.00421,0.07158 0.015172,0.141967 0.026594,0.212643 0.011359,0.02911 2.46e-4,0.06649 0.011714,0.09523 0.00541,0.01355 0.015129,-0.02494 0.023065,-0.03718 0.011365,-0.01752 0.025663,-0.03295 0.038495,-0.04943 -1.6473699,0.951732 -1.0951999,0.71807 -0.7535789,0.329888 0.1826495,-0.207543 0.3377825,-0.433409 0.4931041,-0.661483 0.3230554,-0.499315 0.6008614,-1.025465 0.8693004,-1.555496 0.221221,-0.454212 0.697738,-1.414258 1.360067,-1.001832 0.09569,0.09864 0.130656,0.235312 0.170828,0.363106 0.05204,0.175681 0.102576,0.351999 0.149221,0.529214 0.04699,0.18583 0.08151,0.37423 0.112944,0.563198 0.02677,0.237133 0.05235,0.47409 0.08814,0.710058 0.03428,0.212668 0.06367,0.426352 0.108012,0.637221 0.04557,0.169703 0.07868,0.34187 0.105252,0.515444 0.02396,0.171647 0.0343,0.344972 0.04747,0.517733 0.01488,0.200315 0.04953,0.398524 0.07848,0.597144 0.03496,0.229975 0.07662,0.458743 0.120696,0.687112 0.03845,0.200967 0.0777,0.401683 0.134613,0.598349 0.0354,0.13636 0.08742,0.26712 0.140805,0.39718 0.03573,0.09033 0.07249,0.179719 0.116236,0.266461 0.03868,0.06517 0.07198,0.136032 0.124362,0.191551 0.03586,0.04701 0.07495,0.09145 0.110956,0.138208 0,0 -1.101429,0.656126 -1.101429,0.656126 l 0,0 c -0.03528,-0.04495 -0.06752,-0.09205 -0.102723,-0.137022 -0.05344,-0.0685 -0.09652,-0.143971 -0.136931,-0.220759 -0.04265,-0.09072 -0.08493,-0.180839 -0.113685,-0.277246 -0.05547,-0.135393 -0.09871,-0.27549 -0.133505,-0.417596 -0.05566,-0.202218 -0.09403,-0.407487 -0.128609,-0.614261 -0.04161,-0.229361 -0.09004,-0.457466 -0.127185,-0.687658 -0.034,-0.200007 -0.06664,-0.400419 -0.09074,-0.601875 -0.01332,-0.169591 -0.02923,-0.339002 -0.04597,-0.508257 -0.02563,-0.172233 -0.05242,-0.344519 -0.09624,-0.513271 -0.04161,-0.214841 -0.06837,-0.432032 -0.102606,-0.64811 -0.03153,-0.234649 -0.06223,-0.469334 -0.09324,-0.704051 -0.03109,-0.185035 -0.07426,-0.367436 -0.112127,-0.551139 -0.04449,-0.173758 -0.09469,-0.346743 -0.151172,-0.516884 -0.02349,-0.06181 -0.04615,-0.124371 -0.07439,-0.184247 -0.0027,-0.0058 -0.02385,-0.05109 -0.03331,-0.05446 -0.0038,-0.0014 -0.0056,0.0059 -0.0083,0.0089 -0.04238,0.431954 -0.01018,0.02835 1.044188,-0.598079 0.01795,-0.01066 -0.03748,0.01977 -0.05228,0.03449 -0.08975,0.08926 -0.153018,0.24089 -0.225393,0.341311 -0.31381,0.519598 -0.596513,1.057134 -0.904591,1.580105 -0.138226,0.221515 -0.277079,0.440545 -0.431606,0.651159 -0.01081,0.01474 -0.15741,0.215292 -0.191992,0.237176 -0.3772715,0.238747 -0.7672827,0.456741 -1.1509238,0.685111 -0.02887,0.0019 -0.058438,0.0124 -0.08661,0.0058 -0.026874,-0.0063 -0.050191,-0.02451 -0.070937,-0.04271 -0.052286,-0.04588 -0.053976,-0.09572 -0.057642,-0.158149 -0.00887,-0.0718 -0.026621,-0.142245 -0.026236,-0.214908 -0.00741,-0.07405 -0.025133,-0.145375 -0.052512,-0.214763 -0.026575,-0.100553 -0.051945,-0.201804 -0.099326,-0.295099 -0.056912,-0.106337 -0.120959,-0.208157 -0.1948934,-0.303682 -0.056727,-0.07473 -0.1133246,-0.150592 -0.1814828,-0.215437 -0.055909,-0.05163 -0.1192899,-0.09211 -0.1821679,-0.134745 -0.077625,-0.05375 -0.1611438,-0.09744 -0.248478,-0.133484 -0.1039986,-0.04318 -0.2122199,-0.06926 -0.325112,-0.0758 -0.1533511,-0.01046 -0.3072442,-0.0072 -0.4608359,-0.0046 -0.2041835,0.0058 -0.4080615,0.02076 -0.6082629,0.06387 -0.2525206,0.05286 -0.5027377,0.115275 -0.7545027,0.171468 -0.057625,0.0097 -0.1476894,0.03013 -0.2085337,0.02141 -0.077663,-0.01112 -0.1597738,-0.07269 -0.1470492,-0.160339 0.00262,-0.01803 0.014679,-0.03336 0.022018,-0.05004 0.033638,-0.06959 0.058539,-0.142074 0.090848,-0.212291 0.040671,-0.08839 0.087761,-0.17386 0.1263158,-0.263273 0.096033,-0.201276 0.1759203,-0.40906 0.2395654,-0.622927 0.090072,-0.307158 0.1542067,-0.620475 0.2222366,-0.933056 0.057106,-0.301042 0.102744,-0.603666 0.1552106,-0.905485 0.048603,-0.326463 0.1004989,-0.655268 0.2058798,-0.968975 C 6.4103983,10.945225 6.5353501,10.649404 6.6797727,10.36247 6.7961866,10.144795 6.9232919,9.9336751 7.0902422,9.75003 7.5351459,9.3040342 8.1056686,8.9955291 8.6884875,8.7620282 c 0.1256889,-0.036068 0.2543632,-0.060833 0.3757558,0.00346 0.090074,0.055422 0.1667795,0.1286976 0.2358293,0.2085297 0.094252,0.116132 0.178679,0.2377166 0.2036035,0.3889655 0.013427,0.1577518 -0.011563,0.3119029 -0.031747,0.4682589 -0.010529,0.057463 -0.016746,0.099176 -0.032934,0.1556224 -0.033401,0.1164624 -0.088218,0.2259294 -0.1246818,0.3413884 -0.08508,0.210344 -0.1722066,0.420098 -0.2404575,0.636732 -0.05771,0.189481 -0.1147613,0.379157 -0.1751629,0.567705 -0.050196,0.148813 -0.1005161,0.297497 -0.1471959,0.447455 -0.053123,0.11273 -0.089635,0.233814 -0.1582751,0.339371 -0.096677,0.159039 -0.2018903,0.312507 -0.3232974,0.454109 -0.1258605,0.151197 -0.275562,0.276538 -0.4247797,0.404024 -0.045588,0.03882 -0.089538,0.07961 -0.1363751,0.11691 -0.1032697,0.08224 -0.2199272,0.145039 -0.323707,0.226493 -0.1983624,0.149887 0.023963,-0.01524 -0.183262,0.129644 -0.1386032,0.0969 -0.2707178,0.203158 -0.4112703,0.2974 -0.2489405,0.177555 -0.5042078,0.345361 -0.7704442,0.496145 -0.3367592,0.206226 -0.6724487,0.415458 -0.991997,0.64776 -0.2723213,0.214778 -0.5364281,0.440516 -0.7857476,0.681775 -0.2271957,0.231058 -0.4562523,0.46292 -0.6347064,0.735237 -0.216352,0.317721 -0.408533,0.650929 -0.5897197,0.989826 -0.1558498,0.301637 -0.3127824,0.603033 -0.4306315,0.922183 -0.084928,0.243041 -0.1568744,0.493451 -0.1660699,0.752465 0.00113,0.158061 0.00729,0.320518 0.065694,0.469435 0.05965,0.123148 0.1362585,0.236855 0.2074265,0.353521 0.046765,0.07192 0.090011,0.149767 0.1629358,0.198684 0.08101,0.06413 0.1666965,0.122086 0.2574145,0.171736 0.088055,0.04281 0.1695465,0.06715 0.2686271,0.05993 0.1515264,-0.0012 0.3032783,-0.0066 0.4535735,-0.02736 0.1103917,-0.01631 0.2201976,-0.03396 0.3278808,-0.06409 0.4145129,-0.115996 1.0197914,-0.60846 -0.8266012,0.516908 0.1478191,-0.07849 0.2650675,-0.184499 0.3818233,-0.303699 0.151761,-0.164142 0.3038857,-0.328394 0.4326506,-0.511896 0.107296,-0.1733 0.2140082,-0.347559 0.2928106,-0.536247 0.080229,-0.199643 0.1698965,-0.395509 0.2334674,-0.601419 0.073219,-0.224178 0.1261847,-0.45457 0.1742457,-0.685327 0.054259,-0.247041 0.1255423,-0.489938 0.1861619,-0.735462 0.060901,-0.251514 0.1218702,-0.503683 0.1555321,-0.760603 0.024278,-0.248577 0.033736,-0.498072 0.014942,-0.747532 -0.012474,-0.218845 -0.024976,-0.437614 -0.035828,-0.656534 -0.013863,-0.15431 -0.027381,-0.310524 -0.064487,-0.461133 -0.019344,-0.04998 -0.042869,-0.128433 -0.1102792,-0.113455 -0.082695,0.01604 -0.1659707,0.02956 -0.2455245,0.05872 -0.1468592,0.04807 -0.2935592,0.09717 -0.4257726,0.179398 -0.1044819,0.05858 -0.061879,0.03454 -0.1701311,0.0959 -0.031925,0.0181 -0.1275071,0.07272 -0.095761,0.05431 0.3172726,-0.183974 0.6350084,-0.367149 0.9523446,-0.551014 0.037701,-0.02184 -0.075626,0.0433 -0.1134385,0.06495 -0.3883499,0.224961 -0.7766997,0.449922 -1.1650496,0.674883 -0.2573702,0.143147 -0.5166836,0.282804 -0.7769328,0.42064 -0.1266246,0.06474 -0.2537499,0.128578 -0.3794392,0.195128 -0.041511,0.02198 -0.1646218,0.09051 -0.1240878,0.06677 0.065161,-0.03815 1.3501761,-0.781852 0.8252087,-0.478022 -0.4634021,0.276695 -0.3115777,0.186742 -1.2613365,0.729481 -0.099927,0.0571 -0.208062,0.102156 -0.3188431,0.132947 0,0 1.0158165,-0.776752 1.0158165,-0.776752 z" - inkscape:connector-curvature="0" - transform="translate(900.42859,684.2193)" /> - <g - id="g3868" - transform="translate(-0.1875,0.375)"> - <path - transform="matrix(0.9138951,0.02916988,-0.12956575,1.1023997,194.56326,-104.29886)" - mask="url(#mask3836)" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path7210" - d="m 888.30688,690.10346 -2.60119,12.43889 5.91169,1.23434 2.57512,-12.50165" - style="fill:url(#linearGradient3873);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.50066453;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path3842" - d="m 912.90679,696.01618 0.30405,5.25331 2.08892,0.60935 2.98991,-4.27396" - style="fill:url(#radialGradient3875);fill-opacity:1;stroke:#000000;stroke-width:0.45993432;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - sodipodi:nodetypes="ccc" - inkscape:connector-curvature="0" - id="path3852" - d="m 913.18227,701.08114 0.31101,3.10057 1.90916,-2.43627" - style="fill:#313131;fill-opacity:1;stroke:#000000;stroke-width:0.45736727;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-table.svg b/extensions/WikiEditor/modules/images/toolbar/insert-table.svg deleted file mode 100644 index 3585edfc..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-table.svg +++ /dev/null @@ -1,131 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg4674" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="insert-table.svg"> - <defs - id="defs4676" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.4" - inkscape:cx="14.917631" - inkscape:cy="9.7454912" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata4679"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-754.71429,-709.93359)"> - <g - id="g6398"> - <rect - transform="matrix(0.99817187,0,0,1.0178786,1.3828921,-13.085829)" - y="712.74176" - x="756.2171" - height="15.99255" - width="19.028265" - id="rect4693" - style="fill:#e6e6e6;fill-opacity:1;stroke:#8c8e89;stroke-width:1.00070357;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter6043)" /> - <rect - y="713.93359" - x="757.71429" - height="2" - width="16" - id="rect6055" - style="fill:#a0bdd9;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - y="716.93091" - x="757.71429" - height="10.047351" - width="3" - id="rect6057" - style="fill:#cfd0c8;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - y="715.93835" - x="761.70416" - height="11.039861" - width="11.985021" - id="rect6059" - style="fill:#f0f2eb;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <path - inkscape:connector-curvature="0" - id="path6061" - d="m 761.21785,726.44068 0,-12.01418" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:0.99643618;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path6061-6" - d="m 765.9481,726.93359 0,-13.125" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path6061-65" - d="m 765.48228,726.43359 0,-12.01418" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path6061-5" - d="m 770.34364,726.43359 0,-12.01418" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path6061-68" - d="m 773.20619,719.33746 -14.9838,0" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.00806725;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path6061-68-8" - d="m 773.21327,716.43359 -14.99898,0" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path6061-68-84" - d="m 773.20619,722.40028 -14.9838,0" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.00806725;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path6061-68-9" - d="m 773.20619,726.43359 -14.9838,0" - style="opacity:0.24842769;fill:none;stroke:#000000;stroke-width:1.00806725;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/insert-xlink.svg b/extensions/WikiEditor/modules/images/toolbar/insert-xlink.svg deleted file mode 100644 index c7c664b5..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/insert-xlink.svg +++ /dev/null @@ -1,125 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg6475" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="insert-xlink.svg"> - <defs - id="defs6477"> - <linearGradient - id="linearGradient7004"> - <stop - style="stop-color:#8ea8c5;stop-opacity:1;" - offset="0" - id="stop7006" /> - <stop - style="stop-color:#365f96;stop-opacity:1;" - offset="1" - id="stop7008" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient7004" - id="linearGradient7010" - x1="1.9835248" - y1="1.7316169" - x2="-3.7763" - y2="15.516348" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient7004" - id="linearGradient7130" - gradientUnits="userSpaceOnUse" - x1="1.9835248" - y1="1.7316169" - x2="-3.7763" - y2="15.516348" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.2" - inkscape:cx="14.804469" - inkscape:cy="22.496339" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata6480"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-364,-521.36218)"> - <g - id="g7123" - transform="translate(-37.98214,-0.06250444)"> - <path - transform="matrix(1.1399776,0,0,1.1399776,413.66918,522.63818)" - d="m 7.7678573,8.5848217 c 0,4.6229193 -3.7476166,8.3705363 -8.3705359,8.3705363 -4.6229193,0 -8.3705358,-3.747617 -8.3705358,-8.3705363 0,-4.6229193 3.7476165,-8.37053585 8.3705358,-8.37053585 4.6229193,0 8.3705359,3.74761655 8.3705359,8.37053585 z" - sodipodi:ry="8.3705359" - sodipodi:rx="8.3705359" - sodipodi:cy="8.5848217" - sodipodi:cx="-0.6026786" - id="path6494" - style="fill:url(#linearGradient7130);fill-opacity:1;fill-rule:nonzero;stroke:#1d497d;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - sodipodi:type="arc" /> - <path - inkscape:connector-curvature="0" - id="path7012" - d="m 414.36607,528.58539 0.625,1.65179 -0.9375,0.71429 -0.89286,0.80357 0.84822,1.51785 2.00893,0.89286 0.58035,3.125 0.80358,2.00893 1.02678,-0.89286 0.80357,-2.36607 0.0446,-1.38393 0.75893,-1.07143 -1.25,-1.875 -1.25,-1.25 -1.60714,-1.38392 z" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - <path - inkscape:connector-curvature="0" - id="path7014" - d="m 406.86607,533.58539 0.58036,2.8125 0.625,0.80358 0.75893,2.36607 0.80357,0.53571 0.58036,-2.27678 0.89285,-0.89286 0.71429,-0.89286 -1.16072,-1.16071 -0.98214,-1.25 -1.20536,-0.66965 -1.83035,-0.26785 -0.80357,-1.11607 -0.84822,-0.66965 1.875,-0.75893 0.625,-1.02678 0.9375,-0.66964 1.38393,-0.89286 0.58036,-0.98214 -2.09822,-0.40179 -0.84821,-0.80357 -1.16072,1.42857 -1.16071,1.38393 -0.3125,1.69643 -0.53571,1.02678 2.09821,1.78572 z" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - <path - inkscape:connector-curvature="0" - id="path7016" - d="m 410.16964,524.29968 1.20536,1.875 1.20536,-0.9375 1.5625,-0.98214 -0.22322,-0.9375 -2.76785,0.0893 z" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - <path - inkscape:connector-curvature="0" - id="path7018" - d="m 415.125,527.82647 1.42857,-0.40179 -0.0446,-1.78571 1.33929,-0.35715 1.02678,0.35715 0.89286,1.25 1.29464,1.60714 0.75893,1.83036 -0.13393,1.11607 -1.42857,1.02678 -0.98214,-1.47321 -0.89286,-1.83036 -1.33929,-0.75893 z" - style="fill:#a2b52f;fill-opacity:1;stroke:none" /> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/images/toolbar/magnify-clip.png b/extensions/WikiEditor/modules/images/toolbar/magnify-clip.png Binary files differdeleted file mode 100644 index 00a9cee1..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/magnify-clip.png +++ /dev/null diff --git a/extensions/WikiEditor/modules/images/toolbar/search-replace.svg b/extensions/WikiEditor/modules/images/toolbar/search-replace.svg deleted file mode 100644 index 91cb6ace..00000000 --- a/extensions/WikiEditor/modules/images/toolbar/search-replace.svg +++ /dev/null @@ -1,228 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="22" - height="22" - id="svg10519" - version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="search-replace.svg"> - <defs - id="defs10521"> - <linearGradient - id="linearGradient11111"> - <stop - style="stop-color:#e6edf5;stop-opacity:1;" - offset="0" - id="stop11113" /> - <stop - style="stop-color:#7da2cc;stop-opacity:0.58333331;" - offset="1" - id="stop11115" /> - </linearGradient> - <linearGradient - id="linearGradient11103"> - <stop - style="stop-color:#b8b8b7;stop-opacity:1;" - offset="0" - id="stop11105" /> - <stop - style="stop-color:#a3a4a3;stop-opacity:1;" - offset="1" - id="stop11107" /> - </linearGradient> - <linearGradient - id="linearGradient11077"> - <stop - style="stop-color:#a48757;stop-opacity:1;" - offset="0" - id="stop11079" /> - <stop - style="stop-color:#eeeac6;stop-opacity:1;" - offset="1" - id="stop11081" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11077" - id="linearGradient11095" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(66.373514,4.6113592)" - x1="819.42767" - y1="729.21069" - x2="818.52716" - y2="728.31018" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11103" - id="linearGradient11109" - x1="814.55927" - y1="726.61975" - x2="813.53076" - y2="725.49475" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(55.60781,8.9693543)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11111" - id="radialGradient11119" - cx="6.7155318" - cy="4.395853" - fx="6.7155318" - fy="4.395853" - r="5.4276505" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11077" - id="linearGradient11142" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(66.373514,4.6113592)" - x1="819.42767" - y1="729.21069" - x2="818.52716" - y2="728.31018" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11103" - id="linearGradient11144" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(55.60781,8.9693543)" - x1="814.55927" - y1="726.61975" - x2="813.53076" - y2="725.49475" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11111" - id="radialGradient11146" - gradientUnits="userSpaceOnUse" - cx="6.7155318" - cy="4.395853" - fx="6.7155318" - fy="4.395853" - r="5.4276505" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="18.387223" - inkscape:cy="9.028262" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1041" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata10524"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-823.28571,-718.50507)"> - <g - id="g11129" - transform="matrix(0.87945853,0,0,0.87945853,60.516821,83.916706)"> - <rect - y="725.56744" - x="869.68085" - height="17.014757" - width="14.18633" - id="rect10538" - style="fill:#fefefe;fill-opacity:1;fill-rule:nonzero;stroke:#878984;stroke-linejoin:round;stroke-opacity:1" /> - <rect - y="726.98163" - x="871.19214" - height="14.097941" - width="11.048544" - id="rect11048" - style="fill:#eaeaea;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - y="729.05878" - x="872.24414" - height="1.1048543" - width="8.9714174" - id="rect11050" - style="fill:#c6c6c5;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <rect - style="fill:#c6c6c5;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="rect11052" - width="8.9714174" - height="1.1048543" - x="872.24414" - y="731.05878" /> - <rect - y="735.05878" - x="872.24414" - height="1.1048543" - width="8.9714174" - id="rect11054" - style="fill:#c6c6c5;fill-opacity:1;fill-rule:nonzero;stroke:none" /> - <g - id="g11125"> - <path - style="fill:url(#linearGradient11142);fill-opacity:1;stroke:#804f01;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1;stroke-dasharray:none" - d="m 880.00066,736.45436 9.30287,-9.43545 2.45278,2.34229 -9.30287,9.25867 -3.97748,1.67938 z" - id="path11075" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="fill:#000000;fill-opacity:1;stroke:none" - d="m 878.68802,738.78561 -1.02751,2.33124 2.37543,-1.0938 z" - id="path11085" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> - <g - id="g11121"> - <path - style="fill:url(#linearGradient11144);fill-opacity:1;stroke:#878984;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 870.39783,732.42847 -2.45576,2.45578 0,1.99046 1.62855,0 2.63673,-2.63672" - id="path11097" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient11146);fill-opacity:1;fill-rule:nonzero;stroke:#878984;stroke-opacity:1" - id="path11101" - sodipodi:cx="6.9826794" - sodipodi:cy="5.9796119" - sodipodi:rx="4.9276505" - sodipodi:ry="4.9276505" - d="m 11.91033,5.9796119 c 0,2.7214662 -2.2061844,4.9276501 -4.9276506,4.9276501 -2.7214662,0 -4.9276505,-2.2061839 -4.9276505,-4.9276501 0,-2.7214662 2.2061843,-4.9276505 4.9276505,-4.9276505 2.7214662,0 4.9276506,2.2061843 4.9276506,4.9276505 z" - transform="matrix(0.92061147,0,0,0.92061147,867.88725,724.95103)" /> - </g> - </g> - </g> -</svg> diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.css b/extensions/WikiEditor/modules/jquery.wikiEditor.css deleted file mode 100644 index cabe6a94..00000000 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.css +++ /dev/null @@ -1,112 +0,0 @@ -/* - * CSS for WikiEditor jQuery plugin - */ - -.wikiEditor-ui { - position: relative; - clear: both; - width: 100%; - background-color: #E0EEf7; -} -.wikiEditor-ui textarea { - width: 100%; - border: 0; -} -.wikiEditor-ui textarea:focus { - outline: none; -} -.wikiEditor-ui .wikiEditor-ui-clear { - clear: both; -} -.wikiEditor-ui .wikiEditor-ui-view { - border: 1px solid silver; -} -.wikiEditor-ui .wikiEditor-ui-top { - position: relative; - border-bottom: 1px solid silver; -} -.wikiEditor-ui .wikiEditor-ui-left { - float: left; - width: 100%; -} -.wikiEditor-ui .wikiEditor-ui-right { - float: right; - background: #F3F3F3; - overflow: hidden; -} -.wikiEditor-wikitext { - float: left; - width: 100%; -} -.wikiEditor-ui-controls { - float: left; - width: 100%; - background-color: white; -} -.wikiEditor-ui-tabs { - float: left; - height: 2.5em; - margin-right: -1px; - background-color: white; - border-left: 1px solid silver; - border-top: 1px solid silver; -} -.wikiEditor-ui-buttons { - float: right; - height: 2.5em; - margin-right: -1px; - background-color: white; - padding-left: 1em; - border-top: 1px solid white; -} -.wikiEditor-ui-buttons button { - margin-left: 0.5em; -} -.wikiEditor-ui-tabs div { - float: left; - height: 2.5em; - background-color: #f3f3f3; - border-right: 1px solid silver; - border-bottom: 1px solid silver; -} -.wikiEditor-ui-tabs div.current { - border-bottom: 1px solid white; - background-color: white; -} -.wikiEditor-ui-tabs div a { - display: inline-block; - padding: 0 0.75em; - line-height: 2.5em; - color: #0645AD; -} -.wikiEditor-ui-tabs div.current a { - color: #333333; -} -.wikiEditor-ui-tabs div.current a:hover { - text-decoration: none; -} - -.wikiEditor-view-wikitext { - line-height: 1em; -} -.wikiEditor-ui-loading { - background: #f3f3f3; - z-index: 10; - position: absolute; - top: 0; - left: 0; - text-align: center; - height: 100%; - width: 100%; - border: 1px solid silver; - margin: -1px; -} -.wikiEditor-ui-loading span { - display: block; - height: 24px; - width: 24px; - /* @embed */ - background: url(images/toolbar/loading.gif) 0 0 no-repeat; - text-indent: -9999px; - margin: 0 auto; -} diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css deleted file mode 100644 index 1cc9f5a1..00000000 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css +++ /dev/null @@ -1,184 +0,0 @@ -/* - * CSS for WikiEditor Dialogs - */ - -/* Table Dialog */ -#wikieditor-toolbar-table-dialog fieldset { - width: 218px; - padding: 0; - float: left; -} - -#wikieditor-toolbar-table-dialog .wikieditor-toolbar-table-preview-wrapper { - width: 330px; - padding: 0; - float: right; -} - -.wikieditor-toolbar-table-preview-content * { - cursor: default; -} -.wikiEditor-toolbar-dialog .wikieditor-toolbar-table-preview-wrapper table { - width: 100% !important; -} -.wikiEditor-toolbar-dialog .wikieditor-toolbar-table-preview-content table td { - padding: 10px 4px !important; - height: auto !important; -} -.wikiEditor-toolbar-dialog .wikieditor-toolbar-table-preview-content table th { - padding: 7px 3px !important; -} -.wikieditor-toolbar-table-dimension-fields .wikieditor-toolbar-field-wrapper { - float: left; - margin-right: 20px; - vertical-align: bottom; -} - -.wikiEditor-toolbar-dialog .ui-dialog-content { - padding: 30px 20px 0 !important; -} -.wikieditor-toolbar-dialog-wrapper { - width: 100%; -} -/* Insert Link Dialog */ -#wikieditor-toolbar-link-int-target-status { - float: right; -} -#wikieditor-toolbar-link-int-target, -#wikieditor-toolbar-link-int-text { - width: 100%; -} -#wikieditor-toolbar-tool-link-int-target-label { - float: left; - line-height: 1.7em; -} -#wikieditor-toolbar-link-int-target-status-exists, -#wikieditor-toolbar-link-int-target-status-notexists, -#wikieditor-toolbar-link-int-target-status-invalid, -#wikieditor-toolbar-link-int-target-status-external, -#wikieditor-toolbar-link-int-target-status-disambig { - padding-left: 30px; - background-position: 0 50%; - background-repeat: no-repeat; -} -#wikieditor-toolbar-link-int-target-status-exists { - /* @embed */ - background-image: url(images/dialogs/insert-link-exists.png); - background-position: left; -} -#wikieditor-toolbar-link-int-target-status-notexists { - /* @embed */ - background-image: url(images/dialogs/insert-link-notexists.png); - background-position: left; -} -#wikieditor-toolbar-link-int-target-status-invalid { - /* @embed */ - background-image: url(images/dialogs/insert-link-invalid.png); - background-position: left; -} -#wikieditor-toolbar-link-int-target-status-external { - /* @embed */ - background-image: url(images/dialogs/insert-link-external.png); - background-position: left; -} -#wikieditor-toolbar-link-int-target-status-disambig { - /* @embed */ - background-image: url(images/dialogs/insert-disambiguation.png); - background-position: left; -} -/* File dialog */ -#wikieditor-toolbar-file-target, -#wikieditor-toolbar-file-caption { - width: 100%; -} -.wikieditor-toolbar-file-options .wikieditor-toolbar-field-wrapper { - float: left; - margin: 0 20px 0 0; -} -/* Reference Dialog */ -#wikieditor-toolbar-reference-dialog label { - float: left; - line-height: 1.7em; -} -#wikieditor-toolbar-reference-text { - width: 100%; -} -/* RTL Changes */ - -body.rtl #wikieditor-toolbar-link-int-target-status-external { - /* @embed */ - background-image: url(images/dialogs/insert-link-external-rtl.png); -} - -body.rtl .wikiEditor-toolbar-dialog .ui-dialog-buttonpane button { - float: left; - margin: 0.5em 0.4em 0.5em 0 !important; -} -/* Template Editor Dialogs */ -.wikiEditor-template-dialog-fields label { - text-transform: capitalize; - float: left; - width: 25%; - line-height: 2.25em; -} -.wikiEditor-template-dialog-fields textarea { - float: right; - width: 70%; - line-height: 1.5em; - height: 1.5em; -} -.wikiEditor-template-dialog-fields .wikiEditor-template-dialog-field-wrapper { - padding: 0.75em 0.33em; - border-bottom: 1px dashed silver; - clear: both; -} -.wikiEditor-template-dialog-fields .wikiEditor-template-dialog-field-wrapper:first-child { - padding-top: 0; -} -.wikiEditor-template-dialog-fields .wikiEditor-template-dialog-field-wrapper:last-child { - border-bottom: none; -} -/* Self Clearing Floats */ -.wikieditor-toolbar-table-dimension-fields:after, -.wikieditor-toolbar-dialog-wrapper:after { - visibility: hidden; - display: block; - font-size: 0; - content: " "; - clear: both; - height: 0; -} -.wikieditor-toolbar-table-dimension-fields, -.wikieditor-toolbar-dialog-wrapper { - display: inline-table; -} -/* Hides from IE-mac \*/ -* html .wikieditor-toolbar-table-dimension-fields, -* html .wikieditor-toolbar-dialog-wrapper { - height: 1%; -} -.wikieditor-toolbar-table-dimension-fields, -.wikieditor-toolbar-dialog-wrapper { - display: block; -} -/* End hide from IE-mac */ -.wikiEditor-toolbar-dialog .ui-dialog-buttonpane { - border-top: 1px solid #cccccc !important; -} -.wikiEditor-toolbar-dialog .ui-dialog-content { - padding-bottom: 1em !important; -} -/* Edit dialog */ -.wikiEditor-dialog-editoptions { - margin-top: 15px; -} -/* Publish dialog */ -.wikiEditor-publish-dialog-copywarn { - margin-top: 0.5em; -} -.wikiEditor-publish-dialog-summary { - margin-top: 1.5em; -} -.wikiEditor-publish-dialog-options { - margin-top: 1.5em; -} diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js index 8cd50a06..31b54805 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js @@ -119,6 +119,8 @@ $.wikiEditor.modules.dialogs.config = { </fieldset>', init: function () { + var api = new mw.Api(); + function isExternalLink( s ) { // The following things are considered to be external links: // * Starts a URL protocol @@ -198,7 +200,7 @@ $.wikiEditor.modules.dialogs.config = { // If the Disambiguator extension is not installed then such a property won't be set. $( '#wikieditor-toolbar-link-int-target-status' ).data( 'request', - ( new mw.Api() ).get( { + api.get( { action: 'query', prop: 'pageprops', titles: target, @@ -328,28 +330,23 @@ $.wikiEditor.modules.dialogs.config = { } ); // Add images to the page existence widget, which will be shown mutually exclusively to communicate if // the page exists, does not exist or the title is invalid (like if it contains a | character) - var existsMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-exists' ); - var notexistsMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-notexists' ); - var invalidMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-invalid' ); - var externalMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-external' ); var loadingMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-loading' ); - var disambigMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-disambig' ); $( '#wikieditor-toolbar-link-int-target-status' ) .append( $( '<div>' ) .attr( 'id', 'wikieditor-toolbar-link-int-target-status-exists' ) - .append( existsMsg ) + .text( mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-exists' ) ) ) .append( $( '<div>' ) .attr( 'id', 'wikieditor-toolbar-link-int-target-status-notexists' ) - .append( notexistsMsg ) + .text( mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-notexists' ) ) ) .append( $( '<div>' ) .attr( 'id', 'wikieditor-toolbar-link-int-target-status-invalid' ) - .append( invalidMsg ) + .text( mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-invalid' ) ) ) .append( $( '<div>' ) .attr( 'id', 'wikieditor-toolbar-link-int-target-status-external' ) - .append( externalMsg ) + .text( mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-external' ) ) ) .append( $( '<div>' ) .attr( 'id', 'wikieditor-toolbar-link-int-target-status-loading' ) @@ -361,7 +358,7 @@ $.wikiEditor.modules.dialogs.config = { ) .append( $( '<div>' ) .attr( 'id', 'wikieditor-toolbar-link-int-target-status-disambig' ) - .append( disambigMsg ) + .text( mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-disambig' ) ) ) .data( 'existencecache', {} ) .children().hide(); @@ -403,20 +400,15 @@ $.wikiEditor.modules.dialogs.config = { return; } - var request = $.ajax( { - url: mw.util.wikiScript( 'api' ), - data: { - action: 'opensearch', - search: title, - namespace: 0, - suggest: '', - format: 'json' - }, - dataType: 'json', - success: function ( data ) { - cache[title] = data[1]; - $( that ).suggestions( 'suggestions', data[1] ); - } + var request = api.get( { + action: 'opensearch', + search: title, + namespace: 0, + suggest: '' + } ) + .done( function ( data ) { + cache[title] = data[1]; + $( that ).suggestions( 'suggestions', data[1] ); } ); $( this ).data( 'request', request ); }, @@ -474,6 +466,7 @@ $.wikiEditor.modules.dialogs.config = { else insertText = '[[' + target + '|' + escapeInternalText( text ) + ']]'; } else { + target = $.trim( target ); // Prepend http:// if there is no protocol if ( !target.match( /^[a-z]+:\/\/./ ) ) target = 'http://' + target; @@ -602,7 +595,7 @@ $.wikiEditor.modules.dialogs.config = { $( '#wikieditor-toolbar-link-int-target' ).suggestions(); // don't overwrite user's text - if ( selection !== '' ){ + if ( selection !== '' ) { $( '#wikieditor-toolbar-link-int-text' ).data( 'untouched', false ); } @@ -813,7 +806,7 @@ $.wikiEditor.modules.dialogs.config = { if ( fileName !== '' ) { fileTitle = new mw.Title( fileName ); // Append file namespace prefix to filename if not already contains it - if ( fileTitle.getNamespaceId() !== 6 ){ + if ( fileTitle.getNamespaceId() !== 6 ) { fileTitle = new mw.Title( fileName, 6 ); } fileName = fileTitle.toText(); @@ -1101,7 +1094,7 @@ $.wikiEditor.modules.dialogs.config = { 'browsers': { // Left-to-right languages 'ltr': { - 'msie': false, + 'msie': [['>=', 11]], // Known to work on 11. 'firefox': [['>=', 2]], 'opera': false, 'safari': [['>=', 3]], @@ -1109,7 +1102,7 @@ $.wikiEditor.modules.dialogs.config = { }, // Right-to-left languages 'rtl': { - 'msie': false, + 'msie': [['>=', 11]], // Works on 11 but dialog positioning is cruddy. 'firefox': [['>=', 2]], 'opera': false, 'safari': [['>=', 3]], @@ -1128,11 +1121,11 @@ $.wikiEditor.modules.dialogs.config = { <fieldset>\ <div class="wikieditor-toolbar-field-wrapper">\ <label for="wikieditor-toolbar-replace-search" rel="wikieditor-toolbar-tool-replace-search"></label>\ - <input type="text" id="wikieditor-toolbar-replace-search" style="width: 100%;"/>\ + <input type="text" id="wikieditor-toolbar-replace-search"/>\ </div>\ <div class="wikieditor-toolbar-field-wrapper">\ <label for="wikieditor-toolbar-replace-replace" rel="wikieditor-toolbar-tool-replace-replace"></label>\ - <input type="text" id="wikieditor-toolbar-replace-replace" style="width: 100%;"/>\ + <input type="text" id="wikieditor-toolbar-replace-replace"/>\ </div>\ <div class="wikieditor-toolbar-field-wrapper">\ <input type="checkbox" id="wikieditor-toolbar-replace-case"/>\ diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.less b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.less new file mode 100644 index 00000000..72b384d3 --- /dev/null +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.less @@ -0,0 +1,234 @@ +@import "mediawiki.mixins"; + +/* + * CSS for WikiEditor Dialogs + */ + +/* Replace Dialog */ +#wikieditor-toolbar-replace-search, +#wikieditor-toolbar-replace-replace { + width: 100%; +} + +/* Table Dialog */ +#wikieditor-toolbar-table-dialog { + fieldset { + width: 218px; + padding: 0; + float: left; + } + + .wikieditor-toolbar-table-preview-wrapper { + width: 330px; + padding: 0; + float: right; + } +} + +.wikieditor-toolbar-table-preview-content * { + cursor: default; +} + +.wikiEditor-toolbar-dialog { + .wikieditor-toolbar-table-preview-wrapper { + table { + width: 100% !important; + } + } + + .wikieditor-toolbar-table-preview-content { + table { + td { + padding: 10px 4px !important; + height: auto !important; + } + + th { + padding: 7px 3px !important; + } + } + } + + .ui-dialog-content { + padding: 30px 20px 1em !important; + } + + .ui-dialog-buttonpane { + border-top: 1px solid #cccccc !important; + } +} + +.wikieditor-toolbar-table-dimension-fields { + .wikieditor-toolbar-field-wrapper { + float: left; + margin-right: 20px; + vertical-align: bottom; + } +} + +.wikieditor-toolbar-dialog-wrapper { + width: 100%; +} + +/* Insert Link Dialog */ +#wikieditor-toolbar-link-int-target-status { + float: right; +} + +#wikieditor-toolbar-link-int-target, +#wikieditor-toolbar-link-int-text { + width: 100%; +} + +#wikieditor-toolbar-tool-link-int-target-label { + float: left; + line-height: 1.7em; +} + +#wikieditor-toolbar-link-int-target-status-exists, +#wikieditor-toolbar-link-int-target-status-notexists, +#wikieditor-toolbar-link-int-target-status-invalid, +#wikieditor-toolbar-link-int-target-status-external, +#wikieditor-toolbar-link-int-target-status-disambig { + padding-left: 30px; + background-position: 0 50%; + background-repeat: no-repeat; +} + +#wikieditor-toolbar-link-int-target-status-exists { + .background-image('images/dialogs/insert-link-exists.png'); + background-position: left; +} + +#wikieditor-toolbar-link-int-target-status-notexists { + .background-image('images/dialogs/insert-link-notexists.png'); + background-position: left; +} + +#wikieditor-toolbar-link-int-target-status-invalid { + .background-image('images/dialogs/insert-link-invalid.png'); + background-position: left; +} + +#wikieditor-toolbar-link-int-target-status-external { + .background-image('images/dialogs/insert-link-external.png'); + background-position: left; +} + +#wikieditor-toolbar-link-int-target-status-disambig { + .background-image('images/dialogs/insert-disambiguation.png'); + background-position: left; +} + +/* File dialog */ +#wikieditor-toolbar-file-target, +#wikieditor-toolbar-file-caption { + width: 100%; +} + +.wikieditor-toolbar-file-options { + .wikieditor-toolbar-field-wrapper { + float: left; + margin: 0 20px 0 0; + } +} + +/* Reference Dialog */ +#wikieditor-toolbar-reference-dialog { + label { + float: left; + line-height: 1.7em; + } +} + +#wikieditor-toolbar-reference-text { + width: 100%; +} + +/* RTL Changes */ + +body.rtl { + .wikiEditor-toolbar-dialog { + .ui-dialog-buttonpane { + button { + float: left; + margin: 0.5em 0.4em 0.5em 0 !important; + } + } + } +} + +/* Template Editor Dialogs */ +.wikiEditor-template-dialog-fields { + label { + text-transform: capitalize; + float: left; + width: 25%; + line-height: 2.25em; + } + + textarea { + float: right; + width: 70%; + line-height: 1.5em; + height: 1.5em; + } + + .wikiEditor-template-dialog-field-wrapper { + padding: 0.75em 0.33em; + border-bottom: 1px dashed silver; + clear: both; + + &:first-child { + padding-top: 0; + } + + &:last-child { + border-bottom: none; + } + } +} + +/* Self Clearing Floats */ +.wikieditor-toolbar-table-dimension-fields:after, +.wikieditor-toolbar-dialog-wrapper:after { + visibility: hidden; + display: block; + font-size: 0; + content: " "; + clear: both; + height: 0; +} + +/* Hides from IE-mac \*/ +* html { + .wikieditor-toolbar-table-dimension-fields, + .wikieditor-toolbar-dialog-wrapper { + height: 1%; + } +} + +.wikieditor-toolbar-table-dimension-fields, +.wikieditor-toolbar-dialog-wrapper { + display: inline-table; + display: block; +} + +/* End hide from IE-mac */ +/* Edit dialog */ +.wikiEditor-dialog-editoptions { + margin-top: 15px; +} + +/* Publish dialog */ +.wikiEditor-publish-dialog-copywarn { + margin-top: 0.5em; +} + +.wikiEditor-publish-dialog-summary { + margin-top: 1.5em; +} + +.wikiEditor-publish-dialog-options { + margin-top: 1.5em; +} diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css deleted file mode 100644 index b97ce7e3..00000000 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css +++ /dev/null @@ -1,68 +0,0 @@ -/** - * CSS for WikiEditor Dialogs jQuery plugin - */ - -.wikiEditor-toolbar-dialog table { - margin-top: 0.75em; -} - -.wikiEditor-toolbar-dialog table td { - padding: 0.5em; - height: 3em; - overflow: visible; -} - -/* Put suggestions (default z-index 99) on top of dialogs (z-index 1002) */ -div.suggestions { - z-index: 1099; -} - -.wikiEditor-toolbar-dialog table td { - padding: 0 !important; -} - -.wikiEditor-toolbar-dialog .ui-dialog-content fieldset { - border: none !important; - margin: 0 !important; - padding: 0 !important; -} - -.wikiEditor-toolbar-dialog .ui-widget-header { - border-bottom:1px solid #6bc8f3 !important; -} - -.wikiEditor-toolbar-dialog .ui-dialog-content input[type=text] { - -moz-box-sizing: border-box; - -ms-box-sizing: border-box; - -webkit-box-sizing: border-box; - -khtml-box-sizing: border-box; -} - -.wikiEditor-toolbar-dialog .ui-dialog-content input[type="radio"], -.wikiEditor-toolbar-dialog .ui-dialog-content input[type="checkbox"] { - margin-left: 0; -} - -.wikiEditor-toolbar-dialog .ui-dialog-titlebar-close { - padding: 0; -} -body .wikiEditor-toolbar-dialog .ui-dialog-titlebar-close { - right: 0.9em; -} - -.wikieditor-toolbar-field-wrapper { - padding: 0 0 25px 0; -} - -.wikieditor-toolbar-floated-field-wrapper { - float: left; - margin-right: 2em; -} - -.wikieditor-toolbar-dialog-hint { - color: #999999; -} - -.wikiEditor-toolbar-dialog { - border: none; -}
\ No newline at end of file diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.less b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.less new file mode 100644 index 00000000..6516d090 --- /dev/null +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.less @@ -0,0 +1,60 @@ +/** + * CSS for WikiEditor Dialogs jQuery plugin + */ + +.wikiEditor-toolbar-dialog { + border: none; + + .ui-dialog-content { + fieldset { + border: none !important; + margin: 0 !important; + padding: 0 !important; + } + + input[type=text] { + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + -webkit-box-sizing: border-box; + -khtml-box-sizing: border-box; + box-sizing: border-box; + } + + input { + &[type="radio"], + &[type="checkbox"] { + margin-left: 0; + } + } + } + + .ui-dialog-titlebar-close { + padding: 0; + } +} + +/* Put suggestions (default z-index 99) on top of dialogs (z-index 1002) */ +div.suggestions { + z-index: 1099; +} + +body { + .wikiEditor-toolbar-dialog { + .ui-dialog-titlebar-close { + right: 0.9em; + } + } +} + +.wikieditor-toolbar-field-wrapper { + padding: 0 0 25px 0; +} + +.wikieditor-toolbar-floated-field-wrapper { + float: left; + margin-right: 2em; +} + +.wikieditor-toolbar-dialog-hint { + color: #999999; +} diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.html b/extensions/WikiEditor/modules/jquery.wikiEditor.html index 7a890af0..349f0273 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.html +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.html @@ -6,14 +6,14 @@ <!--[if gte IE 8]> <style> /* IE8 ONLY - This is how we are fixing the double-height of BR tags when they are alone in a P tag */ - p > br { + p > br { display: none; } - p > br + br { + p > br + br { display: block; } </style> - <![endif]--> + <![endif]--> <style> body { margin: 0; diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.js b/extensions/WikiEditor/modules/jquery.wikiEditor.js index e5d34aa9..7c8e4c35 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.js +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.js @@ -11,6 +11,8 @@ /*jshint onevar:false, boss:true */ ( function ( $, mw ) { +var hasOwn = Object.prototype.hasOwnProperty; + /** * Global static object for wikiEditor that provides generally useful functionality to all modules and contexts. */ @@ -80,7 +82,7 @@ $.wikiEditor = { * Path to images - this is a bit messy, and it would need to change if this code (and images) gets moved into the * core - or anywhere for that matter... */ - imgPath : mw.config.get( 'wgExtensionAssetsPath' ) + '/WikiEditor/modules/images/', + imgPath: mw.config.get( 'wgExtensionAssetsPath' ) + '/WikiEditor/modules/images/', /** * Checks the current browser against the browsers object to determine if the browser has been black-listed or not. @@ -123,8 +125,7 @@ $.wikiEditor = { }, /** - * Provides a way to extract messages from objects. Wraps the mediaWiki.msg() function, which - * may eventually become a wrapper for some kind of core MW functionality. + * Provides a way to extract messages from objects. Wraps a mediaWiki.message( ... ).plain() call. * * @param object Object to extract messages from * @param property String of name of property which contains the message. This should be the base name of the @@ -168,7 +169,8 @@ $.wikiEditor = { */ autoLang: function ( object, lang ) { var defaultKey = $( 'body' ).hasClass( 'rtl' ) ? 'default-rtl' : 'default'; - return object[lang || mw.config.get( 'wgUserLanguage' )] || object[defaultKey] || object['default'] || object; + lang = lang || mw.config.get( 'wgUserLanguage' ); + return hasOwn.call( object, lang ) ? object[lang] : ( object[defaultKey] || object['default'] || object ); }, /** @@ -199,9 +201,9 @@ $.wikiEditor = { */ autoIconOrOffset: function ( icon, offset, path, lang ) { lang = lang || mw.config.get( 'wgUserLanguage' ); - if ( typeof offset === 'object' && lang in offset ) { + if ( typeof offset === 'object' && hasOwn.call( offset, lang ) ) { return offset[lang]; - } else if ( typeof icon === 'object' && lang in icon ) { + } else if ( typeof icon === 'object' && hasOwn.call( icon, lang ) ) { return $.wikiEditor.autoIcon( icon, undefined, lang ); } else { return $.wikiEditor.autoLang( offset, lang ); @@ -219,6 +221,9 @@ if ( !$.wikiEditor.isSupported() ) { return $( this ); } +// Save browser profile for detailed tests. +var profile = $.client.profile(); + /* Initialization */ // The wikiEditor context is stored in the element's data, so when this function gets called again we can pick up right @@ -311,6 +316,11 @@ if ( !context || typeof context === 'undefined' ) { * Executes core event filters as well as event handlers provided by modules. */ trigger: function ( name, event ) { + // Workaround for a scrolling bug in IE8 (bug 61908) + if ( profile.name === 'msie' && profile.versionNumber === 8 ) { + context.$textarea.css( 'width', context.$textarea.parent().width() ); + } + // Event is an optional argument, but from here on out, at least the type field should be dependable if ( typeof event === 'undefined' ) { event = { 'type': 'custom' }; @@ -326,7 +336,7 @@ if ( !context || typeof context === 'undefined' ) { return false; } } - var returnFromModules = null; //they return null by default + var returnFromModules = null; // they return null by default // Pass the event around to all modules activated on this context for ( var module in context.modules ) { @@ -337,7 +347,7 @@ if ( !context || typeof context === 'undefined' ) { ) { var ret = $.wikiEditor.modules[module].evt[name]( context, event ); if ( ret !== null ) { - //if 1 returns false, the end result is false + // if 1 returns false, the end result is false if ( returnFromModules === null ) { returnFromModules = ret; } else { @@ -416,28 +426,30 @@ if ( !context || typeof context === 'undefined' ) { }, /** - * Save scrollTop and cursor position for IE + * Save scrollTop and cursor position for old IE (<=10) + * Related to old IE 8 issues that are no longer reproducible */ saveCursorAndScrollTop: function () { - if ( $.client.profile().name === 'msie' ) { - var IHateIE = { - 'scrollTop' : context.$textarea.scrollTop(), + if ( profile.name === 'msie' && document.selection && document.selection.createRange ) { + var IHateIE8 = { + 'scrollTop': context.$textarea.scrollTop(), 'pos': context.$textarea.textSelection( 'getCaretPosition', { startAndEnd: true } ) }; - context.$textarea.data( 'IHateIE', IHateIE ); + context.$textarea.data( 'IHateIE8', IHateIE8 ); } }, /** - * Restore scrollTo and cursor position for IE + * Restore scrollTo and cursor position for IE (<=10) + * Related to old IE 8 issues that are no longer reproducible */ restoreCursorAndScrollTop: function () { - if ( $.client.profile().name === 'msie' ) { - var IHateIE = context.$textarea.data( 'IHateIE' ); - if ( IHateIE ) { - context.$textarea.scrollTop( IHateIE.scrollTop ); - context.$textarea.textSelection( 'setSelection', { start: IHateIE.pos[0], end: IHateIE.pos[1] } ); - context.$textarea.data( 'IHateIE', null ); + if ( profile.name === 'msie' && document.selection && document.selection.createRange ) { + var IHateIE8 = context.$textarea.data( 'IHateIE' ); + if ( IHateIE8 ) { + context.$textarea.scrollTop( IHateIE8.scrollTop ); + context.$textarea.textSelection( 'setSelection', { start: IHateIE8.pos[0], end: IHateIE8.pos[1] } ); + context.$textarea.data( 'IHateIE8', null ); } } }, @@ -446,7 +458,7 @@ if ( !context || typeof context === 'undefined' ) { * Save text selection for old IE (<=10) */ saveSelection: function () { - if ( $.client.profile().name === 'msie' && document.selection && document.selection.createRange ) { + if ( profile.name === 'msie' && document.selection && document.selection.createRange ) { context.$textarea.focus(); context.savedSelection = document.selection.createRange(); } @@ -456,7 +468,7 @@ if ( !context || typeof context === 'undefined' ) { * Restore text selection for old IE (<=10) */ restoreSelection: function () { - if ( $.client.profile().name === 'msie' && context.savedSelection !== null ) { + if ( profile.name === 'msie' && context.savedSelection !== null ) { context.$textarea.focus(); context.savedSelection.select(); context.savedSelection = null; @@ -467,8 +479,9 @@ if ( !context || typeof context === 'undefined' ) { /** * Workaround for a scrolling bug in IE8 (bug 61908) */ - if ( $.client.profile().name === 'msie' ) { + if ( profile.name === 'msie' && profile.versionNumber === 8 ) { context.$textarea.css( 'height', context.$textarea.height() ); + context.$textarea.css( 'width', context.$textarea.parent().width() ); } /** diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.less b/extensions/WikiEditor/modules/jquery.wikiEditor.less new file mode 100644 index 00000000..18adf867 --- /dev/null +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.less @@ -0,0 +1,134 @@ +@import "mediawiki.mixins"; + +/* + * CSS for WikiEditor jQuery plugin + */ + +.wikiEditor-ui { + position: relative; + clear: both; + width: 100%; + background-color: #E0EEf7; + + textarea { + width: 100%; + border: 0; + + &:focus { + outline: none; + } + } + + .wikiEditor-ui-clear { + clear: both; + } + + .wikiEditor-ui-view { + border: 1px solid silver; + } + + .wikiEditor-ui-top { + position: relative; + border-bottom: 1px solid silver; + } + + .wikiEditor-ui-left { + float: left; + width: 100%; + } + + .wikiEditor-ui-right { + float: right; + background: #F3F3F3; + overflow: hidden; + } +} + +.wikiEditor-wikitext { + float: left; + width: 100%; +} + +.wikiEditor-ui-controls { + float: left; + width: 100%; + background-color: white; +} + +.wikiEditor-ui-tabs { + float: left; + height: 2.5em; + margin-right: -1px; + background-color: white; + border-left: 1px solid silver; + border-top: 1px solid silver; + + div { + float: left; + height: 2.5em; + background-color: #f3f3f3; + border-right: 1px solid silver; + border-bottom: 1px solid silver; + + a { + display: inline-block; + padding: 0 0.75em; + line-height: 2.5em; + color: #0645AD; + } + + &.current { + border-bottom: 1px solid white; + background-color: white; + + a { + color: #333333; + + &:hover { + text-decoration: none; + } + } + } + } +} + +.wikiEditor-ui-buttons { + float: right; + height: 2.5em; + margin-right: -1px; + background-color: white; + padding-left: 1em; + border-top: 1px solid white; + + button { + margin-left: 0.5em; + } +} + +.wikiEditor-view-wikitext { + line-height: 1em; +} + +.wikiEditor-ui-loading { + background: #f3f3f3; + border: 1px solid silver; + left: 0; + height: 100%; + margin: -1px; + position: absolute; + text-align: center; + top: 0; + width: 100%; + z-index: 10; + + span { + display: block; + height: 24px; + width: 24px; + .background-image('images/toolbar/loading.gif'); + background-position: 0 0; + background-repeat: no-repeat; + text-indent: -9999px; + margin: 0 auto; + } +} diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js index f0665220..436b0720 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js @@ -33,6 +33,8 @@ fn: { * @param config Configuration object to create module from */ create: function ( context ) { + var api = new mw.Api(); + if ( 'initialized' in context.modules.preview ) { return; } @@ -53,18 +55,12 @@ fn: { } context.modules.preview.$preview.find( '.wikiEditor-preview-contents' ).empty(); context.modules.preview.$preview.find( '.wikiEditor-preview-loading' ).show(); - $.ajax( { - url: mw.util.wikiScript( 'api' ), - type: 'POST', - dataType: 'json', - data: { - format: 'json', - action: 'parse', - title: mw.config.get( 'wgPageName' ), - text: wikitext, - prop: 'text|modules', - pst: '' - } + api.post( { + action: 'parse', + title: mw.config.get( 'wgPageName' ), + text: wikitext, + prop: 'text|modules', + pst: '' } ).done( function ( data ) { if ( !data.parse || !data.parse.text || data.parse.text['*'] === undefined ) { return; @@ -74,6 +70,7 @@ fn: { context.modules.preview.$preview.find( '.wikiEditor-preview-loading' ).hide(); context.modules.preview.$preview.find( '.wikiEditor-preview-contents' ) .html( data.parse.text['*'] ) + .append( '<div class="visualClear"></div>' ) .find( 'a:not([href^=#])' ) .click( false ); @@ -101,21 +98,14 @@ fn: { context.$changesTab.find( '.wikiEditor-preview-loading' ).show(); // Call the API. First PST the input, then diff it - $.ajax( { - url: mw.util.wikiScript( 'api' ), - type: 'POST', - dataType: 'json', - data: { - format: 'json', - action: 'parse', - title: mw.config.get( 'wgPageName' ), - onlypst: '', - text: wikitext - } + api.post( { + action: 'parse', + title: mw.config.get( 'wgPageName' ), + onlypst: '', + text: wikitext } ).done( function ( data ) { try { var postdata2 = { - format: 'json', action: 'query', indexpageids: '', prop: 'revisions', @@ -128,19 +118,17 @@ fn: { postdata2.rvsection = section; } - $.ajax( { - url: mw.util.wikiScript( 'api' ), - type: 'POST', - dataType: 'json', - data: postdata2 - } ).done( function ( data ) { + api.post( postdata2 ) + .done( function ( data ) { // Add diff CSS mw.loader.load( 'mediawiki.action.history.diff' ); try { var diff = data.query.pages[data.query.pageids[0]] .revisions[0].diff['*']; - context.$changesTab.find( 'table.diff tbody' ).html( diff ); + context.$changesTab.find( 'table.diff tbody' ) + .html( diff ) + .append( '<div class="visualClear"></div>' ); context.modules.preview.changesText = wikitext; } catch ( e ) { // "data.blah is undefined" error, ignore diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.css b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.less index 6b026a1e..fc8155bc 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.css +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.less @@ -5,10 +5,10 @@ .wikiEditor-preview-loading { padding: 1em; background-color: white; -} -.wikiEditor-preview-loading span { - color: #666666; + span { + color: #666666; + } } .wikiEditor-preview-spinner { @@ -21,11 +21,15 @@ } /* FIXME: This only works for the first wikiEditor on the page! */ -#wikiEditor-0-preview-dialog .wikiEditor-ui-loading { - overflow: hidden; - border: none; +#wikiEditor-0-preview-dialog { + .wikiEditor-ui-loading { + overflow: hidden; + border: none; + } } -.ui-dialog .ui-dialog-buttonpane { - margin: 0 !important; +.ui-dialog { + .ui-dialog-buttonpane { + margin: 0 !important; + } } diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css b/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css deleted file mode 100644 index f66773b0..00000000 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css +++ /dev/null @@ -1,39 +0,0 @@ -/** - * CSS for WikiEditor Preview Dialog jQuery plugin - */ - -/* FIXME: This only works for the first wikiEditor on the page! */ -#wikiEditor-0-preview-dialog .wikiEditor-ui-loading { - background: #f3f3f3; - z-index: 10; - position: absolute; - left: 0; - text-align: center; - height: 100%; - width: 100%; - overflow: hidden; - border: none; -} - -/* FIXME: This only works for the first wikiEditor on the page! */ -#wikiEditor-0-preview-dialog .wikiEditor-ui-loading span { - display: block; - height: 24px; - width: 24px; - /* @embed */ - background: url(images/toolbar/loading.gif) 0 0 no-repeat; - text-indent: -9999px; - margin: 50px auto; -} - -.ui-dialog .ui-dialog-buttonpane { - margin: 0 !important; -} - -.wikiEditor-preview-dialog-contents { - font-size: 0.9em !important; -} - -.wikiEditor-preview-dialog-contents #firstHeading { - font-size: 2.1em; -} diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.js b/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.js deleted file mode 100644 index 34f38e30..00000000 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.js +++ /dev/null @@ -1,132 +0,0 @@ -/* Publish module for wikiEditor */ -/*jshint onevar:false */ -( function ( $, mw ) { $.wikiEditor.modules.previewDialog = { - -/** - * Compatability map - */ -'browsers': { - // Left-to-right languages - 'ltr': { - 'msie': [['>=', 7]], - 'firefox': [['>=', 3]], - 'opera': [['>=', 9.6]], - 'safari': [['>=', 4]] - }, - // Right-to-left languages - 'rtl': { - 'msie': [['>=', 8]], - 'firefox': [['>=', 3]], - 'opera': [['>=', 9.6]], - 'safari': [['>=', 4]] - } -}, -/** - * Internally used functions - */ -fn: { - /** - * Creates a publish module within a wikiEditor - * @param context Context object of editor to create module in - * @param config Configuration object to create module from - */ - create: function ( context ) { - // Build the dialog behind the Publish button - var dialogID = 'wikiEditor-' + context.instance + '-preview-dialog'; - $.wikiEditor.modules.dialogs.fn.create( - context, - { - preview: { - id: dialogID, - titleMsg: 'wikieditor-preview-tab', - html: '\ - <div class="wikiEditor-ui-loading"><span></span></div>\ - <div class="wikiEditor-preview-dialog-contents"></div>\ - ', - init: function () { - }, - dialog: { - buttons: { - 'wikieditor-publish-dialog-publish': function () { - var minorChecked = $( '#wikiEditor-' + context.instance + - '-dialog-minor' ).is( ':checked' ) ? - 'checked' : ''; - var watchChecked = $( '#wikiEditor-' + context.instance + - '-dialog-watch' ).is( ':checked' ) ? - 'checked' : ''; - $( '#wpMinoredit' ).attr( 'checked', minorChecked ); - $( '#wpWatchthis' ).attr( 'checked', watchChecked ); - $( '#wpSummary' ).val( $( '#wikiEditor-' + context.instance + - '-dialog-summary' ).val() ); - $( '#editform' ).submit(); - }, - 'wikieditor-publish-dialog-goback': function () { - $( this ).dialog( 'close' ); - } - }, - resizable: false, - height: $( 'body' ).height() - 100, - width: $( 'body' ).width() - 300, - position: ['center', 'top'], - open: function () { - // Gets the latest copy of the wikitext - var wikitext = context.fn.getContents(); - var $dialog = $( '#' + dialogID ); - $dialog - .css( 'position', 'relative' ) - .css( 'height', $( 'body' ).height() - 200 ) - .parent() - .css( 'top', '25px' ); - // $dialog.dialog( 'option', 'width', $( 'body' ).width() - 300 ); - // Aborts when nothing has changed since the last preview - if ( context.modules.preview.previewText === wikitext ) { - return; - } - - $dialog.find( '.wikiEditor-preview-dialog-contents' ).empty(); - $dialog.find( '.wikiEditor-ui-loading' ).show(); - $.post( - mw.util.wikiScript( 'api' ), - { - 'action': 'parse', - 'title': mw.config.get( 'wgPageName' ), - 'text': wikitext, - 'prop': 'text', - 'pst': '', - 'format': 'json' - }, - function ( data ) { - if ( - typeof data.parse === 'undefined' || - typeof data.parse.text === 'undefined' || - typeof data.parse.text['*'] === 'undefined' - ) { - return; - } - context.modules.preview.previewText = wikitext; - $dialog.find( '.wikiEditor-ui-loading' ).hide(); - $dialog.find( '.wikiEditor-preview-dialog-contents' ) - .html( '<h1 class="firstHeading" id="firstHeading">' + - mw.config.get( 'wgTitle' ) + '</h1>' + - data.parse.text['*'] ) - .find( 'a:not([href^=#])' ).click( function () { return false; } ); - }, - 'json' - ); - } - }, - resizeme: false - } - } - ); - context.fn.addButton( { - 'captionMsg': 'wikieditor-preview-tab', - 'action': function () { - context.$textarea.wikiEditor( 'openDialog', 'preview' ); - return false; - } - } ); - } -} - -}; } )( jQuery, mediaWiki ); diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js b/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js index c7360006..bbd539f4 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js @@ -72,22 +72,24 @@ fn: { } ); /* REALLY DIRTY HACK! */ - // Reformat the copyright warning stuff - var copyWarnHTML = $( '#editpage-copywarn p' ).html(); - // TODO: internationalize by splitting on other characters that end statements - var copyWarnStatements = copyWarnHTML.split( '. ' ); - var newCopyWarnHTML = '<ul>'; - for ( i = 0; i < copyWarnStatements.length; i++ ) { - if ( copyWarnStatements[i] !== '' ) { - var copyWarnStatement = $.trim( copyWarnStatements[i] ).replace( /\.*$/, '' ); - newCopyWarnHTML += '<li>' + copyWarnStatement + '.</li>'; + // Reformat the copyright warning stuff, if available + if ( $( '#editpage-copywarn p' ).length ) { + var copyWarnHTML = $( '#editpage-copywarn p' ).html(); + // TODO: internationalize by splitting on other characters that end statements + var copyWarnStatements = copyWarnHTML.split( '. ' ); + var newCopyWarnHTML = '<ul>'; + for ( i = 0; i < copyWarnStatements.length; i++ ) { + if ( copyWarnStatements[i] !== '' ) { + var copyWarnStatement = $.trim( copyWarnStatements[i] ).replace( /\.*$/, '' ); + newCopyWarnHTML += '<li>' + copyWarnStatement + '.</li>'; + } } + newCopyWarnHTML += '</ul>'; + // No list if there's only one element + $( this ).find( '.wikiEditor-publish-dialog-copywarn' ).html( + copyWarnStatements.length > 1 ? newCopyWarnHTML : copyWarnHTML + ); } - newCopyWarnHTML += '</ul>'; - // No list if there's only one element - $( this ).find( '.wikiEditor-publish-dialog-copywarn' ).html( - copyWarnStatements.length > 1 ? newCopyWarnHTML : copyWarnHTML - ); /* END OF REALLY DIRTY HACK */ if ( $( '#wpMinoredit' ).length === 0 ) { diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js index 17a219af..41e70be0 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js @@ -83,6 +83,7 @@ getDefaultConfig: function () { 'it': [2, -790], 'ky': [2, -934], 'nl': [2, -790], + 'os': [2, -934], 'pt': [2, -862], 'pt-br': [2, -862], 'pl': [2, -862], @@ -209,7 +210,7 @@ getDefaultConfig: function () { 'labelMsg': 'wikieditor-toolbar-tool-heading', 'type': 'select', 'list': { - 'heading-2' : { + 'heading-2': { 'labelMsg': 'wikieditor-toolbar-tool-heading-2', 'action': { 'type': 'encapsulate', @@ -223,7 +224,7 @@ getDefaultConfig: function () { } } }, - 'heading-3' : { + 'heading-3': { 'labelMsg': 'wikieditor-toolbar-tool-heading-3', 'action': { 'type': 'encapsulate', @@ -237,7 +238,7 @@ getDefaultConfig: function () { } } }, - 'heading-4' : { + 'heading-4': { 'labelMsg': 'wikieditor-toolbar-tool-heading-4', 'action': { 'type': 'encapsulate', @@ -251,7 +252,7 @@ getDefaultConfig: function () { } } }, - 'heading-5' : { + 'heading-5': { 'labelMsg': 'wikieditor-toolbar-tool-heading-5', 'action': { 'type': 'encapsulate', @@ -471,786 +472,112 @@ getDefaultConfig: function () { 'deferLoad': true, 'pages': { 'latin': { - 'labelMsg': 'wikieditor-toolbar-characters-page-latin', + 'labelMsg': 'special-characters-group-latin', 'layout': 'characters', - 'characters': [ - "\u00c1", "\u00e1", "\u00c0", "\u00e0", "\u00c2", "\u00e2", "\u00c4", "\u00e4", "\u00c3", - "\u00e3", "\u01cd", "\u01ce", "\u0100", "\u0101", "\u0102", "\u0103", "\u0104", "\u0105", - "\u00c5", "\u00e5", "\u0106", "\u0107", "\u0108", "\u0109", "\u00c7", "\u00e7", "\u010c", - "\u010d", "\u010a", "\u010b", "\u0110", "\u0111", "\u010e", "\u010f", "\u00c9", "\u00e9", - "\u00c8", "\u00e8", "\u00ca", "\u00ea", "\u00cb", "\u00eb", "\u011a", "\u011b", "\u0112", - "\u0113", "\u0114", "\u0115", "\u0116", "\u0117", "\u0118", "\u0119", "\u011c", "\u011d", - "\u0122", "\u0123", "\u011e", "\u011f", "\u0120", "\u0121", "\u0124", "\u0125", "\u0126", - "\u0127", "\u00cd", "\u00ed", "\u00cc", "\u00ec", "\u00ce", "\u00ee", "\u00cf", "\u00ef", - "\u0128", "\u0129", "\u01cf", "\u01d0", "\u012a", "\u012b", "\u012c", "\u012d", "\u0130", - "\u0131", "\u012e", "\u012f", "\u0134", "\u0135", "\u0136", "\u0137", "\u0139", "\u013a", - "\u013b", "\u013c", "\u013d", "\u013e", "\u0141", "\u0142", "\u0143", "\u0144", "\u00d1", - "\u00f1", "\u0145", "\u0146", "\u0147", "\u0148", "\u00d3", "\u00f3", "\u00d2", "\u00f2", - "\u00d4", "\u00f4", "\u00d6", "\u00f6", "\u00d5", "\u00f5", "\u01d1", "\u01d2", "\u014c", - "\u014d", "\u014e", "\u014f", "\u01ea", "\u01eb", "\u0150", "\u0151", "\u0154", "\u0155", - "\u0156", "\u0157", "\u0158", "\u0159", "\u015a", "\u015b", "\u015c", "\u015d", "\u015e", - "\u015f", "\u0160", "\u0161", "\u0218", "\u0219", "\u021a", "\u021b", "\u0164", "\u0165", - "\u00da", "\u00fa", "\u00d9", "\u00f9", "\u00db", "\u00fb", "\u00dc", "\u00fc", "\u0168", - "\u0169", "\u016e", "\u016f", "\u01d3", "\u01d4", "\u016a", "\u016b", "\u01d6", "\u01d8", - "\u01da", "\u01dc", "\u016c", "\u016d", "\u0172", "\u0173", "\u0170", "\u0171", "\u0174", - "\u0175", "\u00dd", "\u00fd", "\u0176", "\u0177", "\u0178", "\u00ff", "\u0232", "\u0233", - "\u0179", "\u017a", "\u017d", "\u017e", "\u017b", "\u017c", "\u00c6", "\u00e6", "\u01e2", - "\u01e3", "\u00d8", "\u00f8", "\u0152", "\u0153", "\u00df", "\u00D0", "\u00f0", "\u00de", - "\u00fe", "\u018f", "\u0259" - ] + 'characters': mw.language.specialCharacters.latin }, 'latinextended': { - 'labelMsg': 'wikieditor-toolbar-characters-page-latinextended', + 'labelMsg': 'special-characters-group-latinextended', 'layout': 'characters', - 'characters': [ - "\u1e00", "\u1e01", "\u1e9a", "\u1ea0", "\u1ea1", "\u1ea2", "\u1ea3", "\u1ea4", "\u1ea5", - "\u1ea6", "\u1ea7", "\u1ea8", "\u1ea9", "\u1eaa", "\u1eab", "\u1eac", "\u1ead", "\u1eae", - "\u1eaf", "\u1eb0", "\u1eb1", "\u1eb2", "\u1eb3", "\u1eb4", "\u1eb5", "\u1eb6", "\u1eb7", - "\u1e02", "\u1e03", "\u1e04", "\u1e05", "\u1e06", "\u1e07", "\u1e08", "\u1e09", "\u1e0a", - "\u1e0b", "\u1e0c", "\u1e0d", "\u1e0e", "\u1e0f", "\u1e10", "\u1e11", "\u1e12", "\u1e13", - "\u1e14", "\u1e15", "\u1e16", "\u1e17", "\u1e18", "\u1e19", "\u1e1a", "\u1e1b", "\u1e1c", - "\u1e1d", "\u1eb8", "\u1eb9", "\u1eba", "\u1ebb", "\u1ebc", "\u1ebd", "\u1ebe", "\u1ebf", - "\u1ec0", "\u1ec1", "\u1ec2", "\u1ec3", "\u1ec4", "\u1ec5", "\u1ec6", "\u1ec7", "\u1e1e", - "\u1e1f", "\u1e20", "\u1e21", "\u1e22", "\u1e23", "\u1e24", "\u1e25", "\u1e26", "\u1e27", - "\u1e28", "\u1e29", "\u1e2a", "\u1e2b", "\u1e96", "\u1e2c", "\u1e2d", "\u1e2e", "\u1e2f", - "\u1ec8", "\u1ec9", "\u1eca", "\u1ecb", "\u1e30", "\u1e31", "\u1e32", "\u1e33", "\u1e34", - "\u1e35", "\u1e36", "\u1e37", "\u1e38", "\u1e39", "\u1e3a", "\u1e3b", "\u1e3c", "\u1e3d", - "\u1efa", "\u1efb", "\u1e3e", "\u1e3f", "\u1e40", "\u1e41", "\u1e42", "\u1e43", "\u1e44", - "\u1e45", "\u1e46", "\u1e47", "\u1e48", "\u1e49", "\u1e4a", "\u1e4b", "\u1e4c", "\u1e4d", - "\u1e4e", "\u1e4f", "\u1e50", "\u1e51", "\u1e52", "\u1e53", "\u1ecc", "\u1ecd", "\u1ece", - "\u1ecf", "\u1ed0", "\u1ed1", "\u1ed2", "\u1ed3", "\u1ed4", "\u1ed5", "\u1ed6", "\u1ed7", - "\u1ed8", "\u1ed9", "\u1eda", "\u1edb", "\u1edc", "\u1edd", "\u1ede", "\u1edf", "\u1ee0", - "\u1ee1", "\u1ee2", "\u1ee3", "\u01FE", "\u01FF", "\u01A0", "\u01A1", "\u1e54", "\u1e55", - "\u1e56", "\u1e57", "\u1e58", "\u1e59", "\u1e5a", "\u1e5b", "\u1e5c", "\u1e5d", "\u1e5e", - "\u1e5f", "\u1e60", "\u1e61", "\u1e9b", "\u1e62", "\u1e63", "\u1e64", "\u1e65", "\u1e66", - "\u1e67", "\u1e68", "\u1e69", "\u1e9c", "\u1e9d", "\u1e6a", "\u1e6b", "\u1e6c", "\u1e6d", - "\u1e6e", "\u1e6f", "\u1e70", "\u1e71", "\u1e97", "\u1e72", "\u1e73", "\u1e74", "\u1e75", - "\u1e76", "\u1e77", "\u1e78", "\u1e79", "\u1e7a", "\u1e7b", "\u1ee4", "\u1ee5", "\u1ee6", - "\u1ee7", "\u1ee8", "\u1ee9", "\u1eea", "\u1eeb", "\u1eec", "\u1eed", "\u1eee", "\u1eef", - "\u1ef0", "\u1ef1", "\u01AF", "\u01B0", "\u01D5", "\u01D7", "\u01D9", "\u01DB", "\u1e7c", - "\u1e7d", "\u1e7e", "\u1e7f", "\u1efc", "\u1efd", "\u1e80", "\u1e81", "\u1e82", "\u1e83", - "\u1e84", "\u1e85", "\u1e86", "\u1e87", "\u1e88", "\u1e89", "\u1e98", "\u1e8a", "\u1e8b", - "\u1e8c", "\u1e8d", "\u1e8e", "\u1e8f", "\u1e99", "\u1ef2", "\u1ef3", "\u1ef4", "\u1ef5", - "\u1ef6", "\u1ef7", "\u1ef8", "\u1ef9", "\u1efe", "\u1eff", "\u1e90", "\u1e91", "\u1e92", - "\u1e93", "\u1e94", "\u1e95", "\u01FC", "\u01FD", "\u1e9e", "\u1e9f" - - ] + 'characters': mw.language.specialCharacters.latinextended }, 'ipa': { - 'labelMsg': 'wikieditor-toolbar-characters-page-ipa', + 'labelMsg': 'special-characters-group-ipa', 'layout': 'characters', - 'characters': [ - "p", "t\u032a", "t", "\u0288", "c", "k", "q", "\u02a1", "\u0294", "b","d\u032a", "d", "\u0256", - "\u025f", "\u0261", "\u0262", "\u0253", "\u0257", "\u0284", "\u0260", "\u029b", "t\u0361s", - "t\u0361\u0283", "t\u0361\u0255", "d\u0361z", "d\u0361\u0292", "d\u0361\u0291", "\u0278", "f", - "\u03b8", "s", "\u0283", "\u0285", "\u0286", "\u0282", "\u0255", "\u00e7", "\u0267", "x", - "\u03c7", "\u0127", "\u029c", "h", "\u03b2", "v", "\u028d", "\u00f0", "z", "\u0292", "\u0293", - "\u0290", "\u0291", "\u029d", "\u0263", "\u0281", "\u0295", "\u0296", "\u02a2", "\u0266", - "\u026c", "\u026e", "m", "m\u0329", "\u0271", "\u0271\u0329", "\u0271\u030d", "n\u032a", - "n\u032a\u030d", "n", "n\u0329", "\u0273", "\u0273\u0329", "\u0272", "\u0272\u0329", "\u014b", - "\u014b\u030d", "\u014b\u0329", "\u0274", "\u0274\u0329", "\u0299", "\u0299\u0329", "r", - "r\u0329", "\u0280", "\u0280\u0329", "\u027e", "\u027d", "\u027f", "\u027a", "l\u032a", - "l\u032a\u0329", "l", "l\u0329", "\u026b", "\u026b\u0329", "\u026d", "\u026d\u0329", "\u028e", - "\u028e\u0329", "\u029f", "\u029f\u0329", "w", "\u0265", "\u028b", "\u0279", "\u027b", "j", - "\u0270", "\u0298", "\u01c2", "\u01c0", "!", "\u01c1", "\u02b0", "\u02b1", "\u02b7", "\u02b8", - "\u02b2", "\u02b3", "\u207f", "\u02e1", "\u02b4", "\u02b5", "\u02e2", "\u02e3", "\u02e0", - "\u02b6", "\u02e4", "\u02c1", "\u02c0", "\u02bc", "i", "i\u032f", "\u0129", "y", "y\u032f", - "\u1ef9", "\u026a", "\u026a\u032f", "\u026a\u0303", "\u028f", "\u028f\u032f", "\u028f\u0303", - "\u0268", "\u0268\u032f", "\u0268\u0303", "\u0289", "\u0289\u032f", "\u0289\u0303", "\u026f", - "\u026f\u032f", "\u026f\u0303", "u", "u\u032f", "\u0169", "\u028a", "\u028a\u032f", - "\u028a\u0303", "e", "e\u032f", "\u1ebd", "\u00f8", "\u00f8\u032f", "\u00f8\u0303", "\u0258", - "\u0258\u032f", "\u0258\u0303", "\u0275", "\u0275\u032f", "\u0275\u0303", "\u0264", - "\u0264\u032f", "\u0264\u0303", "o", "o\u032f", "\u00f5", "\u025b", "\u025b\u032f", - "\u025b\u0303", "\u0153", "\u0153\u032f", "\u0153\u0303", "\u025c", "\u025c\u032f", - "\u025c\u0303", "\u0259", "\u0259\u032f", "\u0259\u0303", "\u025e", "\u025e\u032f", - "\u025e\u0303", "\u028c", "\u028c\u032f", "\u028c\u0303", "\u0254", "\u0254\u032f", - "\u0254\u0303", "\u00e6", "\u00e6\u032f", "\u00e6\u0303", "\u0276", "\u0276\u032f", - "\u0276\u0303", "a", "a\u032f", "\u00e3", "\u0250", "\u0250\u032f", "\u0250\u0303", "\u0251", - "\u0251\u032f", "\u0251\u0303", "\u0252", "\u0252\u032f", "\u0252\u0303", "\u02c8", "\u02cc", - "\u02d0", "\u02d1", "\u02d8", ".", "\u203f", "|", "\u2016", "\u025A", "\u025D" - ] + 'characters': mw.language.specialCharacters.ipa }, 'symbols': { - 'labelMsg': 'wikieditor-toolbar-characters-page-symbols', + 'labelMsg': 'special-characters-group-symbols', 'layout': 'characters', - 'characters': [ - "~", "|", "\u00a1", "\u00bf", "\u2020", "\u2021", "\u2194", "\u2191", "\u2193", "\u2022", - "\u00b6", "#", "\u00bd", "\u2153", "\u2154", "\u00bc", "\u00be", "\u215b", "\u215c", "\u215d", - "\u215e", "\u221e", "\u2018", "\u2019", - { - 'label': "\u201c\u201d", - 'action': { - 'type': 'encapsulate', 'options': { 'pre': "\u201c", 'post': "\u201d" } - } - }, - { - 'label': "\u201e\u201c", - 'action': { - 'type': 'encapsulate', 'options': { 'pre': "\u201e", 'post': "\u201c" } - } - }, - { - 'label': "\u201e\u201d", - 'action': { - 'type': 'encapsulate', 'options': { 'pre': "\u201e", 'post': "\u201d" } - } - }, - { - 'label': "\u00ab\u00bb", - 'action': { - 'type': 'encapsulate', 'options': { 'pre': "\u00ab", 'post': "\u00bb" } - } - }, - "\u00a4", "\u20b3", "\u0e3f", "\u20b5", "\u00a2", "\u20a1", "\u20a2", "$", "\u20ab", "\u20af", - "\u20ac", "\u20a0", "\u20a3", "\u0192", "\u20b4", "\u20ad", "\u20a4", "\u2133", "\u20a5", - "\u20a6", "\u2116", "\u20a7", "\u20b0", "\u00a3", "\u17db", "\u20a8", "\u20aa", "\u09f3", - "\u20ae", "\u20a9", "\u00a5", "\u2660", "\u2663", "\u2665", "\u2666", "m\u00b2", "m\u00b3", - { - 'label': "\u2013", - 'titleMsg': 'wikieditor-toolbar-characters-endash', - 'action' : { - 'type' : 'replace', - 'options' : { - 'peri' : "\u2013", - 'selectPeri': false - } - } - }, - { - 'label': "\u2014", - 'titleMsg': 'wikieditor-toolbar-characters-emdash', - 'action' : { - 'type' : 'replace', - 'options' : { - 'peri' : "\u2014", - 'selectPeri': false - } - } - }, - "\u2026", "\u2018", "\u2019", "\u201c", "\u201d", "\u00b0", "\u2032", - "\u2033", "\u2248", "\u2260", "\u2264", "\u2265", "\u00b1", - { - 'label': "\u2212", - 'titleMsg': 'wikieditor-toolbar-characters-minus', - 'action' : { - 'type' : 'replace', - 'options' : { - 'peri' : "\u2212", - 'selectPeri': false - } - } - }, - "\u00d7", "\u00f7", "\u2190", "\u2192", "\u00b7", "\u00a7", "\u203D" - ] + 'characters': mw.language.specialCharacters.symbols }, 'greek': { - 'labelMsg': 'wikieditor-toolbar-characters-page-greek', + 'labelMsg': 'special-characters-group-greek', 'layout': 'characters', 'language': 'el', - 'characters': [ - "\u0391", "\u0386", "\u03b1", "\u03ac", "\u0392", "\u03b2", "\u0393", "\u03b3", "\u0394", - "\u03b4", "\u0395", "\u0388", "\u03b5", "\u03ad", "\u0396", "\u03b6", "\u0397", "\u0389", - "\u03b7", "\u03ae", "\u0398", "\u03b8", "\u0399", "\u038a", "\u03b9", "\u03af", "\u039a", - "\u03ba", "\u039b", "\u03bb", "\u039c", "\u03bc", "\u039d", "\u03bd", "\u039e", "\u03be", - "\u039f", "\u038c", "\u03bf", "\u03cc", "\u03a0", "\u03c0", "\u03a1", "\u03c1", "\u03a3", - "\u03c3", "\u03c2", "\u03a4", "\u03c4", "\u03a5", "\u038e", "\u03c5", "\u03cd", "\u03a6", - "\u03c6", "\u03a7", "\u03c7", "\u03a8", "\u03c8", "\u03a9", "\u038f", "\u03c9", "\u03ce" - ] + 'characters': mw.language.specialCharacters.greek }, 'cyrillic': { - 'labelMsg': 'wikieditor-toolbar-characters-page-cyrillic', + 'labelMsg': 'special-characters-group-cyrillic', 'layout': 'characters', - 'characters': [ - "\u0410", "\u0430", // A - "\u04d0", "\u04d1", // A with breve (Chuvash) - "\u04d2", "\u04d3", // A with diaeresis (Mari, Gargauz, etc.) - "\u04d8", "\u04d9", // Schwa (Abkhaz, etc) - "\u04da", "\u04db", // Schwa with diaeresis (Khanty) - "\u0411", "\u0431", // B - "\u0412", "\u0432", // V - "\u0413", "\u0433", // G - "\u0490", "\u0491", // G with upturn (Ukranian, etc) - "\u04f6", "\u04f7", // Ge with descender (Abkhaz, etc) - "\u0403", "\u0453", // G with acute (Macedonian) - "\u04fa", "\u04fb", // Ge with stroke and hook (Nivkh) - "\u0492", "\u0493", // G with stroke (Kazakh etc.) - "\u0494", "\u0495", // G with hook (Sakha etc.) - "\u0414", "\u0434", // D - "\u0500", "\u0501", // De (Komi) - "\u0502", "\u0503", // Dje (Komi) - "\u0402", "\u0452", // Dj (Serbian, Montenegrin) - "\u0415", "\u0435", "\u0400", "\u0450", // IE - "\u0404", "\u0454", // Ukrainian IE - "\u0401", "\u0451", // IO - "\u04d6", "\u04d7", // Ye with breve (Chuvash) - "\u04bc", "\u04bd", // Che (Abkhazian) - "\u04be", "\u04bf", // Che with descender (Abkhazian) - "\u0416", "\u0436", // Zh - "\u0496", "\u0497", // Zhe with descender (Kalmyk, Tatar, etc) - "\u04c1", "\u04c2", // Zhe with breve (Moldovan, Gagauz) - "\u04dc", "\u04dd", // Zhe with diaeresis (Udmurt) - "\u0417", "\u0437", // Z - "\u0498", "\u0499", // Ze with descender (Bashkir) - "\u04de", "\u04df", // Ze with diaeresis (Udmurt) - "\u0510", "\u0511", // Reversed Ze (Enets, Khanty) - "\u04e0", "\u04e1", // Dze (Abkhazian) - "\u0405", "\u0455", // Dz (Macedonian, Montenegrin) - "\u0504", "\u0505", // Zje (Komi) - "\u0506", "\u0507", // Dzje (Komi) - "\u0418", "\u0438", // I - "\u0406", "\u0456", // Dotted I (Ukranian, etc) - "\u0407", "\u0457", // I with dieresis (Rusyn, Ukranian) - [ "\u25cc\u04c0", "\u04c0" ], // Palochka. Dotted circle to differentiate from I - [ "\u25cc\u04cf", "\u04cf" ], // Palochka. Dotted circle to differentiate from I - "\u0419", "\u0439", // Short I - "\u04e2", "\u04e3", // I with macron (Tajik) - "\u040d", "\u045d", // I with grave (Macedonian) - "\u048a", "\u048b", // Short I with tail (Kildin Sami) - "\u04e4", "\u04e5", // I with diaeresis (Udmurt) - "\u0408", "\u0458", // Je (Altai, Azerbaijani, etc) - "\u041a", "\u043a", // K - "\u040c", "\u045c", // K with acute (Macedonian) - "\u049a", "\u049b", // K with descender (Kazakh etc.) - "\u049c", "\u049d", // Ka with vertical stroke (Azerbaijani) - "\u049e", "\u049f", // Ka with stroke (Abkhaz) - "\u04a0", "\u04a1", // Ka (Bashkir) - "\u04c3", "\u04c4", // Ka with hook (Chukchi, etc) - "\u051a", "\u051b", // Qa (Kurdish, old Abkhaz) - "\u041b", "\u043b", // L - "\u0409", "\u0459", // Lj (Serbian, Macedonian) - "\u0508", "\u0509", // Lje (Komi) - "\u0512", "\u0513", // El with hook (Chukchi, Itelmen, Khanty) - "\u04c5", "\u04c6", // El with tail (Itelmen, Kildin Sami) - "\u041c", "\u043c", // M - "\u04cd", "\u04ce", // Em with tail (Kildin Sami) - "\u041d", "\u043d", // N - "\u040a", "\u045a", // Nj (Macedonian, Serbian) - "\u04a2", "\u04a3", // N with descender (Kazakh etc.) - "\u04a4", "\u04a5", // Ligature En Ghe (Aleut, Altai, etc) - "\u04c7", "\u04c8", // En with hook (Even, etc) - "\u050a", "\u050b", // Nje (Komi) - "\u04c9", "\u04ca", // En with tail (Kilidn Sami) - "\u041e", "\u043e", // O - "\u04a8", "\u04a9", // Ha (Abkhazian) - "\u04e6", "\u04e7", // O with diaeresis (Altay, Komi, etc) - "\u04e8", "\u04e9", // O with bar (Bashkir, etc) - "\u04ea", "\u04eb", // Barred O with diaeresis (Even, Khanty) - "\u041f", "\u043f", // P - "\u0524", "\u0525", // Pe with descender (Abkhaz) - "\u04a6", "\u04a7", // Pe with middle hook (Abkhaz) - "\u0420", "\u0440", // R - "\u048e", "\u048f", // Er with tick (Kildin Sami) - "\u0421", "\u0441", // S - "\u04aa", "\u04ab", // Es with descender (Bashkir, Chuvash) - "\u0422", "\u0442", // T - "\u040b", "\u045b", // Tsh (Serbian, Bosnian, etc) - "\u050c", "\u050d", // Sje (Komi) - "\u04ac", "\u04ad", // Te with descender (Abkhaz) - "\u050e", "\u050f", // The (Komi) - "\u0423", "\u0443", // U - "\u040e", "\u045e", // Short U (Belarusian, Dungan, etc) - "\u04ee", "\u04ef", // U with macron (Tajik) - "\u04f0", "\u04f1", // U with diaeresis (Altai, etc) - "\u04f2", "\u04f3", // U with double acute (Chuvash) - "\u04ae", "\u04af", // Straight U Bashkir, Buryat, etc) - "\u04b0", "\u04b1", // Straight U with stroke (Kazakh) - "\u0424", "\u0444", // F - "\u0425", "\u0445", // Kha - "\u04b2", "\u04b3", // Kha with descender (Abkhaz, etc) - "\u04fc", "\u04fd", // Ha with hook (Itelmen, Nivkh) - "\u04fe", "\u04ff", // Ha with stroke (Nivkh) - "\u04ba", "\u04bb", // Shha (Azerbaijani, etc) - "\u0426", "\u0446", // Ts - "\u0427", "\u0447", // Ch - "\u04b4", "\u04b5", // Ligature Te Tse (Abkhaz) - "\u04b6", "\u04b7", // Ch with descender (Abkhaz, Tajik) - "\u04b8", "\u04b9", // Che with vertical stroke (Azeri) - "\u04cb", "\u04cc", // Che (Khakassian) - "\u04f4", "\u04f5", // Che with diaeresis (Udmurt) - "\u040f", "\u045f", // Dzh (Serbian, Macedonian, etc) - "\u0428", "\u0448", // Sh - "\u0429", "\u0449", // Sch - "\u042a", "\u044a", // Hard sign - "\u042b", "\u044b", // Yeru - "\u04f8", "\u04f9", // Yeru with diaeresis (mari) - "\u042c", "\u044c", // Soft sign - "\u048c", "\u048d", // Semisoft Sign (kildin) - "\u042d", "\u044d", // E - "\u04ec", "\u04ed", // E with diaeresis (kildin) - "\u042e", "\u044e", // Yu - "\u042f", "\u044f", // Ya - "\u051c", "\u051d", // We (Kurdish) - "\u0460", "\u0461", // Omega - "\u0462", "\u0463", // Yat (old cyrillic) - "\u0464", "\u0465", // Iotified E (old cyrillic) - "\u0466", "\u0467", // Little Yus (old cyrillic) - "\u0468", "\u0469", // Iotified Little Yus (old cyrillic) - "\u046A", "\u046B", // Big Yus (old cyrillic) - "\u046C", "\u046D", // Iotified Big Yus (old cyrillic) - "\u046E", "\u046F", // Ksi (old cyrillic) - "\u0470", "\u0471", // Psi (old cyrillic) - "\u0472", "\u0473", // Fita (old cyrillic) - "\u0474", "\u0475", // Izhitsa (old cyrillic) - "\u0476", "\u0477", // Izhitsa with double grave accent (old cyrillic) - "\u0478", "\u0479", // Uk (old cyrillic) - "\u047A", "\u047B", // Round Omega (old cyrillic) - "\u047c", "\u047d", // Cyr Omega with Titlo (old cyrillic) - "\u047e", "\u047f", // Cyr Ot (old cyrillic) - "\u0480", "\u0481" // Cyr Koppa (old cyrillic) - ] + 'characters': mw.language.specialCharacters.cyrillic }, // The core 28-letter alphabet, special letters for the Arabic language, // vowels, punctuation, digits. // Names of letters are written as in the Unicode charts. 'arabic': { - 'labelMsg': 'wikieditor-toolbar-characters-page-arabic', + 'labelMsg': 'special-characters-group-arabic', 'layout': 'characters', 'language': 'ar', 'direction': 'rtl', - 'characters': [ - // core alphabet - "\u0627", "\u0628", "\u062a", "\u062b", "\u062c", "\u062d", "\u062e", "\u062f", - "\u0630", "\u0631", "\u0632", "\u0633", "\u0634", "\u0635", "\u0636", "\u0637", - "\u0638", "\u0639", "\u063a", "\u0641", "\u0642", "\u0643", "\u0644", "\u0645", - "\u0646", "\u0647", "\u0648", "\u064a", - // special letters for the Arabic language - "\u0621", // Hamza - "\u0622", "\u0623", "\u0625", "\u0671", // Alef - "\u0624", // Waw hamza - "\u0626", // Yeh hamza - "\u0649", // Alef maksura - "\u0629", // Teh marbuta - // vowels - "\u064E", "\u064F", "\u0650", "\u064B", "\u064C", "\u064D", "\u0651", "\u0652", - "\u0670", - // punctuation - "\u060c", "\u061b", "\u061f", "\u0640", - // digits - "\u0660", "\u0661", "\u0662", "\u0663", "\u0664", "\u0665", "\u0666", "\u0667", - "\u0668", "\u0669", - // other special characters - "\u066A", "\u066B", "\u066C", "\u066D", - // ZWNJ and ZWJ - [ "ZWNJ", "\u200C" ], [ "ZWJ", "\u200D" ] - ] + 'characters': mw.language.specialCharacters.arabic }, // Characters for languages other than Arabic. 'arabicextended': { - 'labelMsg': 'wikieditor-toolbar-characters-page-arabicextended', + 'labelMsg': 'special-characters-group-arabicextended', 'layout': 'characters', 'language': 'ar', 'direction': 'rtl', - 'characters': [ - // Alef - "\u0672", "\u0673", "\u0674", "\u0675", "\u0773", "\u0774", - // Beh - "\u066E", "\u067B", "\u067E", "\u0680", "\u0750", "\u0751", "\u0752", "\u0753", - "\u0754", "\u0755", "\u0756", - // Teh - "\u0679", "\u067A", "\u067C", "\u067D", "\u067F", - // Jeem - "\u0681", "\u0682", "\u0683", "\u0684", "\u0685", "\u0686", "\u0687", "\u06BF", - // Hah - "\u0757", "\u0758", "\u076E", "\u076F", "\u0772", "\u077C", - // Dal - "\u0688", "\u0689", "\u068A", "\u068B", "\u068C", "\u068D", "\u068E", "\u068F", - "\u0690", "\u06EE", "\u0759", "\u075A", - // Reh - "\u0691", "\u0692", "\u0693", "\u0694", "\u0695", "\u0696", "\u0697", "\u0698", - "\u0699", "\u06EF", "\u075B", "\u076B", "\u076C", "\u0771", - // Seen - "\u069A", "\u069B", "\u069C", "\u077D", - // Sheen - "\u06FA", "\u075C", "\u076D", "\u0770", "\u077E", - // Sad - "\u069D", "\u069E", - // Dad - "\u06FB", - // Tah - "\u069F", - // Ain - "\u06A0", "\u075D", "\u075E", "\u075F", - // Ghain - "\u06FC", - // Feh - "\u06A1", "\u06A2", "\u06A3", "\u06A4", "\u06A5", "\u06A6", "\u0760", "\u0761", - // Qaf - "\u066F", "\u06A7", "\u06A8", - // Kaf - "\u063B", "\u063C", "\u06A9", "\u06AA", "\u06AB", "\u06AC", "\u06AD", "\u06AE", - "\u06AF", "\u06B0", "\u06B1", "\u06B2", "\u06B3", "\u06B4", "\u0762", "\u0763", - "\u0764", "\u077F", - // Lam - "\u06B5", "\u06B6", "\u06B7", "\u06B8", "\u076A", - // Meem - "\u0765", "\u0766", - // Noon - "\u06B9", "\u06BA", "\u06BB", "\u06BC", "\u06BD", "\u0767", "\u0768", "\u0769", - // Heh - "\u06BE", "\u06C0", "\u06C1", "\u06C2", "\u06C3", "\u06D5", "\u06FF", - // Waw - "\u0676", "\u0677", "\u06C4", "\u06C5", "\u06C6", "\u06C7", "\u06C8", "\u06C9", - "\u06CA", "\u06CB", "\u06CF", "\u0778", "\u0779", - // Yeh - "\u0620", "\u063D", "\u063E", "\u063F", "\u0678", "\u06CC", "\u06CD", "\u06CE", - "\u06D0", "\u06D1", "\u06D2", "\u06D3", "\u0775", "\u0776", "\u0777", "\u077A", - "\u077B", - // diacritics - "\u0656", "\u0657", "\u0658", "\u0659", "\u065A", "\u065B", "\u065C", "\u065D", - "\u065E", "\u065F", - // special punctuation - "\u06D4", "\u06FD", "\u06FE", - // special digits - "\u06F0", "\u06F1", "\u06F2", "\u06F3", "\u06F4", "\u06F5", "\u06F6", "\u06F7", - "\u06F8", "\u06F9" - ] + 'characters': mw.language.specialCharacters.arabicextended }, 'hebrew': { - 'labelMsg': 'wikieditor-toolbar-characters-page-hebrew', + 'labelMsg': 'special-characters-group-hebrew', 'layout': 'characters', 'direction': 'rtl', - 'characters': [ - // Letters - "\u05d0", "\u05d1", "\u05d2", "\u05d3", "\u05d4", "\u05d5", "\u05d6", "\u05d7", "\u05d8", - "\u05d9", "\u05db", "\u05da", "\u05dc", "\u05de", "\u05dd", "\u05e0", "\u05df", "\u05e1", - "\u05e2", "\u05e4", "\u05e3", "\u05e6", "\u05e5", "\u05e7", "\u05e8", "\u05e9", "\u05ea", - - // Yiddish - "\u05f0", "\u05f1", "\u05f2", - - // Punctuation - "\u05f3", "\u05f4", "\u05be", "\u2013", - { - 'label': "\u201e\u201d", - 'action': { - 'type': 'encapsulate', 'options': { 'pre': "\u201e", 'post': "\u201d" } - } - }, - { - 'label': "\u201a\u2019", - 'action': { - 'type': 'encapsulate', 'options': { 'pre': "\u201a", 'post': "\u2019" } - } - }, - - // Vowels - [ "\u25cc\u05b0", "\u05b0" ], [ "\u25cc\u05b1", "\u05b1" ], [ "\u25cc\u05b2", "\u05b2" ], - [ "\u25cc\u05b3", "\u05b3" ], [ "\u25cc\u05b4", "\u05b4" ], [ "\u25cc\u05b5", "\u05b5" ], - [ "\u25cc\u05b6", "\u05b6" ], [ "\u25cc\u05b7", "\u05b7" ], [ "\u25cc\u05b8", "\u05b8" ], - [ "\u25cc\u05b9", "\u05b9" ], [ "\u25cc\u05bb", "\u05bb" ], [ "\u25cc\u05bc", "\u05bc" ], - [ "\u25cc\u05c1", "\u05c1" ], [ "\u25cc\u05c2", "\u05c2" ], [ "\u25cc\u05c7", "\u05c7" ], - - // Cantillation - [ "\u25cc\u0591", "\u0591" ], [ "\u25cc\u0592", "\u0592" ], [ "\u25cc\u0593", "\u0593" ], - [ "\u25cc\u0594", "\u0594" ], [ "\u25cc\u0595", "\u0595" ], [ "\u25cc\u0596", "\u0596" ], - [ "\u25cc\u0597", "\u0597" ], [ "\u25cc\u0598", "\u0598" ], [ "\u25cc\u0599", "\u0599" ], - [ "\u25cc\u059a", "\u059a" ], [ "\u25cc\u059b", "\u059b" ], [ "\u25cc\u059c", "\u059c" ], - [ "\u25cc\u059d", "\u059d" ], [ "\u25cc\u059e", "\u059e" ], [ "\u25cc\u059f", "\u059f" ], - [ "\u25cc\u05a0", "\u05a0" ], [ "\u25cc\u05a1", "\u05a1" ], [ "\u25cc\u05a2", "\u05a2" ], - [ "\u25cc\u05a3", "\u05a3" ], [ "\u25cc\u05a4", "\u05a4" ], [ "\u25cc\u05a5", "\u05a5" ], - [ "\u25cc\u05a6", "\u05a6" ], [ "\u25cc\u05a7", "\u05a7" ], [ "\u25cc\u05a8", "\u05a8" ], - [ "\u25cc\u05a9", "\u05a9" ], [ "\u25cc\u05aa", "\u05aa" ], [ "\u25cc\u05ab", "\u05ab" ], - [ "\u25cc\u05ac", "\u05ac" ], [ "\u25cc\u05ad", "\u05ad" ], [ "\u25cc\u05ae", "\u05ae" ], - [ "\u25cc\u05af", "\u05af" ], [ "\u25cc\u05bf", "\u05bf" ], [ "\u25cc\u05c0", "\u05c0" ], - [ "\u25cc\u05c3", "\u05c3" ] - ] + 'characters': mw.language.specialCharacters.hebrew }, 'bangla': { - 'labelMsg': 'wikieditor-toolbar-characters-page-bangla', + 'labelMsg': 'special-characters-group-bangla', 'language': 'bn', 'layout': 'characters', - 'characters': [ - "\u0985", "\u0986", "\u0987", "\u0988", "\u0989", "\u098a", "\u098b", "\u098f", "\u0990", - "\u0993", "\u0994", "\u09be", "\u09bf", "\u09c0", "\u09c1", "\u09c2", "\u09c3", "\u09c7", - "\u09c8", "\u09cb", "\u09cc", "\u0995", "\u0996", "\u0997", "\u0998", "\u0999", "\u099a", - "\u099b", "\u099c", "\u099d", "\u099e", "\u099f", "\u09a0", "\u09a1", "\u09a2", "\u09a3", - "\u09a4", "\u09a5", "\u09a6", "\u09a7", "\u09a8", "\u09aa", "\u09ab", "\u09ac", "\u09ad", - "\u09ae", "\u09af", "\u09b0", "\u09b2", "\u09b6", "\u09b7", "\u09b8", "\u09b9", "\u09a1\u09bc", - "\u09a2\u09bc", "\u09af\u09bc", "\u09ce", "\u0982", "\u0983", "\u0981", "\u09cd", "\u09e7", - "\u09e8", "\u09e9", "\u09ea", "\u09eb", "\u09ec", "\u09ed", "\u09ee", "\u09ef", "\u09e6" - ] + 'characters': mw.language.specialCharacters.bangla }, 'tamil': { - 'labelMsg': 'wikieditor-toolbar-characters-page-tamil', + 'labelMsg': 'special-characters-group-tamil', 'language': 'ta', 'layout': 'characters', - 'characters': [ - "\u0be6", "\u0be7", "\u0be8", "\u0be9", "\u0bea", "\u0beb", "\u0bec", "\u0bed", "\u0bee", - "\u0bef", "\u0bf0", "\u0bf1", "\u0bf2", "\u0bf3", "\u0bf4", "\u0bf5", "\u0bf6", "\u0bf7", - "\u0bf8", "\u0bf9", "\u0bfa", "\u0bd0" - ] + 'characters': mw.language.specialCharacters.tamil }, 'telugu': { - 'labelMsg': 'wikieditor-toolbar-characters-page-telugu', + 'labelMsg': 'special-characters-group-telugu', 'language': 'te', 'layout': 'characters', - 'characters': [ - "\u0c01", "\u0c02", "\u0c03", "\u0c05", "\u0c06", "\u0c07", "\u0c08", "\u0c09", "\u0c0a", - "\u0c0b", "\u0c60", "\u0c0c", "\u0c61", "\u0c0e", "\u0c0f", "\u0c10", "\u0c12", "\u0c13", - "\u0c14", "\u0c15", "\u0c16", "\u0c17", "\u0c18", "\u0c19", "\u0c1a", "\u0c1b", "\u0c1c", - "\u0c1d", "\u0c1e", "\u0c1f", "\u0c20", "\u0c21", "\u0c22", "\u0c23", "\u0c24", "\u0c25", - "\u0c26", "\u0c27", "\u0c28", "\u0c2a", "\u0c2b", "\u0c2c", "\u0c2d", "\u0c2e", "\u0c2f", - "\u0c30", "\u0c31", "\u0c32", "\u0c33", "\u0c35", "\u0c36", "\u0c37", "\u0c38", "\u0c39", - "\u0c3e", "\u0c3f", "\u0c40", "\u0c41", "\u0c42", "\u0c43", "\u0c44", "\u0c46", "\u0c47", - "\u0c48", "\u0c4a", "\u0c4b", "\u0c4c", "\u0c4d", "\u0c62", "\u0c63", "\u0c58", "\u0c59", - "\u0c66", "\u0c67", "\u0c68", "\u0c69", "\u0c6a", "\u0c6b", "\u0c6c", "\u0c6d", "\u0c6e", - "\u0c6f", "\u0c3d", "\u0c78", "\u0c79", "\u0c7a", "\u0c7b", "\u0c7c", "\u0c7d", "\u0c7e", - "\u0c7f" - ] + 'characters': mw.language.specialCharacters.telugu }, 'sinhala': { - 'labelMsg': 'wikieditor-toolbar-characters-page-sinhala', + 'labelMsg': 'special-characters-group-sinhala', 'language': 'si', 'layout': 'characters', - 'characters': [ - "\u0d85", "\u0d86", "\u0d87", "\u0d88", "\u0d89", "\u0d8a", "\u0d8b", "\u0d8c", "\u0d8d", - "\u0d8e", "\u0d8f", "\u0d90", "\u0d91", "\u0d92", "\u0d93", "\u0d94", "\u0d95", "\u0d96", - "\u0d9a", "\u0d9b", "\u0d9c", "\u0d9d", "\u0d9e", "\u0d9f", "\u0da0", "\u0da1", "\u0da2", - "\u0da3", "\u0da4", "\u0da5", "\u0da6", "\u0da7", "\u0da8", "\u0da9", "\u0daa", "\u0dab", - "\u0dac", "\u0dad", "\u0dae", "\u0daf", "\u0db0", "\u0db1", "\u0db3", "\u0db4", "\u0db5", - "\u0db6", "\u0db7", "\u0db8", "\u0db9", "\u0dba", "\u0dbb", "\u0dbd", "\u0dc0", "\u0dc1", - "\u0dc2", "\u0dc3", "\u0dc4", "\u0dc5", "\u0dc6", - [ "\u25cc\u0dcf", "\u0dcf" ], [ "\u25cc\u0dd0", "\u0dd0" ], [ "\u25cc\u0dd1", "\u0dd1" ], - [ "\u25cc\u0dd2", "\u0dd2" ], [ "\u25cc\u0dd3", "\u0dd3" ], [ "\u25cc\u0dd4", "\u0dd4" ], - [ "\u25cc\u0dd6", "\u0dd6" ], [ "\u25cc\u0dd8", "\u0dd8" ], [ "\u25cc\u0df2", "\u0df2" ], - [ "\u25cc\u0ddf", "\u0ddf" ], [ "\u25cc\u0df3", "\u0df3" ], [ "\u25cc\u0dd9", "\u0dd9" ], - [ "\u25cc\u0dda", "\u0dda" ], [ "\u25cc\u0ddc", "\u0ddc" ], [ "\u25cc\u0ddd", "\u0ddd" ], - [ "\u25cc\u0dde", "\u0dde" ], [ "\u25cc\u0dca", "\u0dca" ] - ] + 'characters': mw.language.specialCharacters.sinhala }, 'devanagari': { - 'labelMsg': 'wikieditor-toolbar-characters-page-devanagari', + 'labelMsg': 'special-characters-group-devanagari', 'layout': 'characters', - 'characters': [ - "\u0900", // DEVANAGARI SIGN INVERTED CANDRABINDU - "\u0901", // DEVANAGARI SIGN CANDRABINDU - "\u0902", // DEVANAGARI SIGN ANUSVARA - "\u0903", // DEVANAGARI SIGN VISARGA - "\u0904", // DEVANAGARI LETTER SHORT A - "\u0905", // DEVANAGARI LETTER A - "\u0906", // DEVANAGARI LETTER AA - "\u0907", // DEVANAGARI LETTER I - "\u0908", // DEVANAGARI LETTER II - "\u0909", // DEVANAGARI LETTER U - "\u090a", // DEVANAGARI LETTER UU - "\u090b", // DEVANAGARI LETTER VOCALIC R - "\u090c", // DEVANAGARI LETTER VOCALIC L - "\u090d", // DEVANAGARI LETTER CANDRA E - "\u090e", // DEVANAGARI LETTER SHORT E - "\u090f", // DEVANAGARI LETTER E - "\u0910", // DEVANAGARI LETTER AI - "\u0911", // DEVANAGARI LETTER CANDRA O - "\u0912", // DEVANAGARI LETTER SHORT O - "\u0913", // DEVANAGARI LETTER O - "\u0914", // DEVANAGARI LETTER AU - "\u0915", // DEVANAGARI LETTER KA - "\u0916", // DEVANAGARI LETTER KHA - "\u0917", // DEVANAGARI LETTER GA - "\u0918", // DEVANAGARI LETTER GHA - "\u0919", // DEVANAGARI LETTER NGA - "\u091a", // DEVANAGARI LETTER CA - "\u091b", // DEVANAGARI LETTER CHA - "\u091c", // DEVANAGARI LETTER JA - "\u091d", // DEVANAGARI LETTER JHA - "\u091e", // DEVANAGARI LETTER NYA - "\u091f", // DEVANAGARI LETTER TTA - "\u0920", // DEVANAGARI LETTER TTHA - "\u0921", // DEVANAGARI LETTER DDA - "\u0922", // DEVANAGARI LETTER DDHA - "\u0923", // DEVANAGARI LETTER NNA - "\u0924", // DEVANAGARI LETTER TA - "\u0925", // DEVANAGARI LETTER THA - "\u0926", // DEVANAGARI LETTER DA - "\u0927", // DEVANAGARI LETTER DHA - "\u0928", // DEVANAGARI LETTER NA - "\u0929", // DEVANAGARI LETTER NNNA - "\u092a", // DEVANAGARI LETTER PA - "\u092b", // DEVANAGARI LETTER PHA - "\u092c", // DEVANAGARI LETTER BA - "\u092d", // DEVANAGARI LETTER BHA - "\u092e", // DEVANAGARI LETTER MA - "\u092f", // DEVANAGARI LETTER YA - "\u0930", // DEVANAGARI LETTER RA - "\u0931", // DEVANAGARI LETTER RRA - "\u0932", // DEVANAGARI LETTER LA - "\u0933", // DEVANAGARI LETTER LLA - "\u0934", // DEVANAGARI LETTER LLLA - "\u0935", // DEVANAGARI LETTER VA - "\u0936", // DEVANAGARI LETTER SHA - "\u0937", // DEVANAGARI LETTER SSA - "\u0938", // DEVANAGARI LETTER SA - "\u0939", // DEVANAGARI LETTER HA - "\u093a", // DEVANAGARI VOWEL SIGN OE - "\u093b", // DEVANAGARI VOWEL SIGN OOE - "\u093c", // DEVANAGARI SIGN NUKTA - "\u093d", // DEVANAGARI SIGN AVAGRAHA - "\u093e", // DEVANAGARI VOWEL SIGN AA - "\u093f", // DEVANAGARI VOWEL SIGN I - "\u0940", // DEVANAGARI VOWEL SIGN II - "\u0941", // DEVANAGARI VOWEL SIGN U - "\u0942", // DEVANAGARI VOWEL SIGN UU - "\u0943", // DEVANAGARI VOWEL SIGN VOCALIC R - "\u0944", // DEVANAGARI VOWEL SIGN VOCALIC RR - "\u0945", // DEVANAGARI VOWEL SIGN CANDRA E - "\u0946", // DEVANAGARI VOWEL SIGN SHORT E - "\u0947", // DEVANAGARI VOWEL SIGN E - "\u0948", // DEVANAGARI VOWEL SIGN AI - "\u0949", // DEVANAGARI VOWEL SIGN CANDRA O - "\u094a", // DEVANAGARI VOWEL SIGN SHORT O - "\u094b", // DEVANAGARI VOWEL SIGN O - "\u094c", // DEVANAGARI VOWEL SIGN AU - "\u094d", // DEVANAGARI SIGN VIRAMA - "\u094e", // DEVANAGARI VOWEL SIGN PRISHTHAMATRA E - "\u094f", // DEVANAGARI VOWEL SIGN AW - "\u0950", // DEVANAGARI OM - "\u0951", // DEVANAGARI STRESS SIGN UDATTA - "\u0952", // DEVANAGARI STRESS SIGN ANUDATTA - "\u0953", // DEVANAGARI GRAVE ACCENT - "\u0954", // DEVANAGARI ACUTE ACCENT - "\u0955", // DEVANAGARI VOWEL SIGN CANDRA LONG E - "\u0956", // DEVANAGARI VOWEL SIGN UE - "\u0957", // DEVANAGARI VOWEL SIGN UUE - "\u0958", // DEVANAGARI LETTER QA - "\u0959", // DEVANAGARI LETTER KHHA - "\u095a", // DEVANAGARI LETTER GHHA - "\u095b", // DEVANAGARI LETTER ZA - "\u095c", // DEVANAGARI LETTER DDDHA - "\u095d", // DEVANAGARI LETTER RHA - "\u095e", // DEVANAGARI LETTER FA - "\u095f", // DEVANAGARI LETTER YYA - "\u0960", // DEVANAGARI LETTER VOCALIC RR - "\u0961", // DEVANAGARI LETTER VOCALIC LL - "\u0962", // DEVANAGARI VOWEL SIGN VOCALIC L - "\u0963", // DEVANAGARI VOWEL SIGN VOCALIC LL - "\u0964", // DEVANAGARI DANDA - "\u0965", // DEVANAGARI DOUBLE DANDA - "\u0966", // DEVANAGARI DIGIT ZERO - "\u0967", // DEVANAGARI DIGIT ONE - "\u0968", // DEVANAGARI DIGIT TWO - "\u0969", // DEVANAGARI DIGIT THREE - "\u096a", // DEVANAGARI DIGIT FOUR - "\u096b", // DEVANAGARI DIGIT FIVE - "\u096c", // DEVANAGARI DIGIT SIX - "\u096d", // DEVANAGARI DIGIT SEVEN - "\u096e", // DEVANAGARI DIGIT EIGHT - "\u096f", // DEVANAGARI DIGIT NINE - "\u0970", // DEVANAGARI ABBREVIATION SIGN - "\u0971", // DEVANAGARI SIGN HIGH SPACING DOT - "\u0972", // DEVANAGARI LETTER CANDRA A - "\u0973", // DEVANAGARI LETTER OE - "\u0974", // DEVANAGARI LETTER OOE - "\u0975", // DEVANAGARI LETTER AW - "\u0976", // DEVANAGARI LETTER UE - "\u0977", // DEVANAGARI LETTER UUE - "\u0979", // DEVANAGARI LETTER ZHA - "\u097a", // DEVANAGARI LETTER HEAVY YA - "\u097b", // DEVANAGARI LETTER GGA - "\u097c", // DEVANAGARI LETTER JJA - "\u097d", // DEVANAGARI LETTER GLOTTAL STOP - "\u097e", // DEVANAGARI LETTER DDDA - "\u097f" // DEVANAGARI LETTER BBA - ] + 'characters': mw.language.specialCharacters.devanagari }, 'gujarati': { - 'labelMsg': 'wikieditor-toolbar-characters-page-gujarati', + 'labelMsg': 'special-characters-group-gujarati', 'language': 'gu', 'layout': 'characters', - 'characters': [ - "\u0ad0", // Om - "\u0a81", // Candrabindu - "\u0a82", // Anusvara - "\u0a83", // Visarga - // Vowels - "\u0a85", "\u0a86", // A - "\u0a87", "\u0a88", // I - "\u0a89", "\u0a8a", // U - "\u0a8f", "\u0a90", // E - "\u0a93", "\u0a94", // O - "\u0a85\u0a82", // A with Anusvara - "\u0a8b", // Vocalic R - "\u0a8d", "\u0a91", // Candra E and O - // Special vowels - "\u0a8c", // Vocalic L - "\u0ae0", // Vocalic RR - "\u0ae1", // Vocalic LL - // Consonants - "\u0a95", "\u0a96", "\u0a97", "\u0a98", "\u0a99", - "\u0a9a", "\u0a9b", "\u0a9c", "\u0a9d", "\u0a9e", - "\u0a9f", "\u0aa0", "\u0aa1", "\u0aa2", "\u0aa3", - "\u0aa4", "\u0aa5", "\u0aa6", "\u0aa7", "\u0aa8", - "\u0aaa", "\u0aab", "\u0aac", "\u0aad", "\u0aae", - "\u0aaf", "\u0ab0", "\u0ab2", "\u0ab3", - "\u0ab5", "\u0ab6", "\u0ab7", "\u0ab8", "\u0ab9", - "\u0a95\u0acd\u0ab7", // ksh - "\u0a9c\u0acd\u0a9e", // jny - "\u0abd", // Avagraha - // Vowel signs - "\u0abe", "\u0abf", "\u0ac0", "\u0ac0", "\u0ac1", "\u0ac2", - "\u0ac3", "\u0ac4", "\u0ac5", "\u0ac7", "\u0ac8", "\u0ac9", "\u0acb", "\u0acc", - "\u0ae2", "\u0ae3", - // Virama - "\u0acd", - // Digits - "\u0ae6", "\u0ae7", "\u0ae8", "\u0ae9", "\u0aea", - "\u0aeb", "\u0aec", "\u0aed", "\u0aee", "\u0aef", - // Rupee - "\u0af1" - ] + 'characters': mw.language.specialCharacters.gujarati }, 'thai': { - 'labelMsg': 'wikieditor-toolbar-characters-page-thai', + 'labelMsg': 'special-characters-group-thai', 'language': 'th', 'layout': 'characters', - 'characters': [ - "\u0e01", "\u0e02", "\u0e03", "\u0e04", "\u0e05", "\u0e06", "\u0e07", "\u0e08", "\u0e09", - "\u0e0a", "\u0e0b", "\u0e0c", "\u0e0d", "\u0e0e", "\u0e0f", "\u0e10", "\u0e11", "\u0e12", - "\u0e13", "\u0e14", "\u0e15", "\u0e16", "\u0e17", "\u0e18", "\u0e19", "\u0e1a", "\u0e1b", - "\u0e1c", "\u0e1d", "\u0e1e", "\u0e1f", "\u0e20", "\u0e21", "\u0e22", "\u0e23", "\u0e24", - "\u0e25", "\u0e26", "\u0e27", "\u0e28", "\u0e29", "\u0e2a", "\u0e2b", "\u0e2c", "\u0e2d", - "\u0e2e", "\u0e30", "\u0e31", "\u0e32", "\u0e45", "\u0e33", "\u0e34", "\u0e35", "\u0e36", - "\u0e37", "\u0e38", "\u0e39", "\u0e40", "\u0e41", "\u0e42", "\u0e43", "\u0e44", "\u0e47", - "\u0e48", "\u0e49", "\u0e4a", "\u0e4b", "\u0e4c", "\u0e4d", "\u0e3a", "\u0e4e", "\u0e50", - "\u0e51", "\u0e52", "\u0e53", "\u0e54", "\u0e55", "\u0e56", "\u0e57", "\u0e58", "\u0e59", - "\u0e3f", "\u0e46", "\u0e2f", "\u0e5a", "\u0e4f", "\u0e5b" - ] + 'characters': mw.language.specialCharacters.thai }, 'lao': { - 'labelMsg': 'wikieditor-toolbar-characters-page-lao', + 'labelMsg': 'special-characters-group-lao', 'language': 'lo', 'layout': 'characters', - 'characters': [ - "\u0e81", "\u0e82", "\u0e84", "\u0e87", "\u0e88", "\u0eaa", "\u0e8a", "\u0e8d", "\u0e94", - "\u0e95", "\u0e96", "\u0e97", "\u0e99", "\u0e9a", "\u0e9b", "\u0e9c", "\u0e9d", "\u0e9e", - "\u0e9f", "\u0ea1", "\u0ea2", "\u0ea5", "\u0ea7", "\u0eab", "\u0ead", "\u0eae", "\u0ea3", - "\u0edc", "\u0edd", "\u0ebc", "\u0ebd", "\u0eb0", "\u0eb1", "\u0eb2", "\u0eb3", "\u0eb4", - "\u0eb5", "\u0eb6", "\u0eb7", "\u0eb8", "\u0eb9", "\u0ebb", "\u0ec0", "\u0ec1", "\u0ec2", - "\u0ec3", "\u0ec4", "\u0ec8", "\u0ec9", "\u0eca", "\u0ecb", "\u0ecc", "\u0ecd", "\u0ed0", - "\u0ed1", "\u0ed2", "\u0ed3", "\u0ed4", "\u0ed5", "\u0ed6", "\u0ed7", "\u0ed8", "\u0ed9", - "\u20ad", "\u0ec6", "\u0eaf" - ] + 'characters': mw.language.specialCharacters.lao }, 'khmer': { - 'labelMsg': 'wikieditor-toolbar-characters-page-khmer', + 'labelMsg': 'special-characters-group-khmer', 'language': 'km', 'layout': 'characters', - 'characters': [ - "\u1780", "\u1781", "\u1782", "\u1783", "\u1784", "\u1785", "\u1786", "\u1787", "\u1788", - "\u1789", "\u178a", "\u178b", "\u178c", "\u178d", "\u178e", "\u178f", "\u1790", "\u1791", - "\u1792", "\u1793", "\u1794", "\u1795", "\u1796", "\u1797", "\u1798", "\u1799", "\u179a", - "\u179b", "\u179c", "\u179f", "\u17a0", "\u17a1", "\u17a2", "\u17a3", "\u17a4", "\u17a5", - "\u17a6", "\u17a7", "\u17a8", "\u17a9", "\u17aa", "\u17ab", "\u17ac", "\u17ad", "\u17ae", - "\u17af", "\u17b0", "\u17b1", "\u17b2", "\u17b3", "\u17d2", "\u17b4", "\u17b5", "\u17b6", - "\u17b7", "\u17b8", "\u17b9", "\u17ba", "\u17bb", "\u17bc", "\u17bd", "\u17be", "\u17bf", - "\u17c0", "\u17c1", "\u17c2", "\u17c3", "\u17c4", "\u17c5", "\u17c6", "\u17c7", "\u17c8", - "\u17c9", "\u17ca", "\u17cb", "\u17cc", "\u17cd", "\u17ce", "\u17cf", "\u17d0", "\u17d1", - "\u17d3", "\u17dd", "\u17dc", "\u17e0", "\u17e1", "\u17e2", "\u17e3", "\u17e4", "\u17e5", - "\u17e6", "\u17e7", "\u17e8", "\u17e9", "\u17db", "\u17d4", "\u17d5", "\u17d6", "\u17d7", - "\u17d8", "\u17d9", "\u17da", "\u17f0", "\u17f1", "\u17f2", "\u17f3", "\u17f4", "\u17f5", - "\u17f6", "\u17f7", "\u17f8", "\u17f9", "\u19e0", "\u19e1", "\u19e2", "\u19e3", "\u19e4", - "\u19e5", "\u19e6", "\u19e7", "\u19e8", "\u19e9", "\u19ea", "\u19eb", "\u19ec", "\u19ed", - "\u19ee", "\u19ef", "\u19f0", "\u19f1", "\u19f2", "\u19f3", "\u19f4", "\u19f5", "\u19f6", - "\u19f7", "\u19f8", "\u19f9", "\u19fa", "\u19fb", "\u19fc", "\u19fd", "\u19fe", "\u19ff" - ] + 'characters': mw.language.specialCharacters.khmer } } }, @@ -1369,8 +696,21 @@ getDefaultConfig: function () { 'rows': [ { 'description': { 'htmlMsg': 'wikieditor-toolbar-help-content-file-description' }, - 'syntax': { 'htmlMsg': [ 'wikieditor-toolbar-help-content-file-syntax', fileNamespace ] }, - 'result': { 'htmlMsg': [ 'wikieditor-toolbar-help-content-file-result', mw.config.get( 'stylepath' ), mw.config.get( 'wgExtensionAssetsPath' ) ] } + 'syntax': { 'htmlMsg': [ + 'wikieditor-toolbar-help-content-file-syntax', + fileNamespace, + mw.config.get( 'wgWikiEditorMagicWords' ).img_thumbnail, + mw.message( 'wikieditor-toolbar-help-content-file-caption' ).text() + ] }, + 'result': { 'html': '<div class="thumbinner" style="width: 102px;">' + + '<a href="#" class="image">' + + '<img alt="" src="' + $.wikiEditor.imgPath + 'toolbar/example-image.png" width="100" height="50" class="thumbimage"/>' + + '</a>' + + '<div class="thumbcaption"><div class="magnify">' + + '<a title="' + mw.message( 'thumbnail-more' ).escaped() + '" class="internal" href="#"></a>' + + '</div>' + mw.message( 'wikieditor-toolbar-help-content-file-caption' ).escaped() + '</div>' + + '</div>' + } } ] }, diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css deleted file mode 100644 index 2dad74ab..00000000 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css +++ /dev/null @@ -1,322 +0,0 @@ -/** - * CSS for WikiEditor Toolbar jQuery plugin - */ - -.wikiEditor-ui-toolbar { - position: relative; - display: block; -} - -.wikiEditor-ui-toolbar .empty { - display: none; -} - -/* Expandable Sections */ -.wikiEditor-ui-toolbar .sections { - float: left; - width: 100%; - clear: both; - height: 0; -} -.wikiEditor-ui-toolbar .sections .section { - float: left; - width: 100%; - border-top: 1px solid #DDDDDD; - background-color: #E0EEf7; -} - -.wikiEditor-ui-toolbar .sections .section-hidden { - display: none; -} - -.wikiEditor-ui-toolbar { - /* @embed */ - background-image: url(images/toolbar/base.png); - background-position: left top; - background-repeat: repeat-x; -} -/* Gets overridden when the section div is in class loading - see below */ -.wikiEditor-ui-toolbar .sections div .spinner { - display: none; -} -.wikiEditor-ui-toolbar .sections .loading .spinner { - display: block; - float: left; - /* @embed */ - background-image: url(images/toolbar/loading.gif); - background-position: left center; - background-repeat: no-repeat; - padding-left: 32px; - margin-left: 0.5em; - height: 32px; - color: #666666; -} -/* Top Level Containers */ -.wikiEditor-ui-toolbar .tabs, -.wikiEditor-ui-toolbar .section-main { - position: relative; - float: left; - min-height: 26px; - height: 100%; -} -/* Groups */ -.wikiEditor-ui-toolbar .group { - float: left; - height: 26px; - padding-right: 6px; - border-right: 1px solid #DDDDDD; - margin: 3px; -} -.wikiEditor-ui-toolbar .group-search { - float: right; - padding: 0 0 0 6px; - border-right: none; - border-left: 1px solid #DDDDDD; -} -.wikiEditor-ui-toolbar .group-insert { - border-right: none; -} -/* Sprited Buttons */ -.wikiEditor-toolbar-spritedButton { - background-image: url('images/toolbar/button-sprite.png'); - /* @embed */ - background-image: -webkit-linear-gradient(transparent, transparent), url('images/toolbar/button-sprite.svg'); - /* @embed */ - background-image: linear-gradient(transparent, transparent), url('images/toolbar/button-sprite.svg'); - - background-position: 0 0; - background-repeat: no-repeat; - display: block; - float: left; - height: 22px; - text-indent: -9999px; - width: 22px; - padding: 2px; - cursor: pointer; - overflow: hidden; -} -/* Tabs */ -.wikiEditor-ui-toolbar .tabs { - list-style: none; - margin: 3px; -} -.wikiEditor-ui-toolbar .tabs span.tab { - display: block; - float: left; - line-height: 26px; -} -.wikiEditor-ui-toolbar .tabs span.tab a, -.wikiEditor-ui-toolbar .tabs span.tab a:visited { - display: inline-block; - float: left; - padding-left: 18px; - padding-right: 12px; - height: 26px; - cursor: pointer; - color: #0645ad; - /* @embed */ - background-image: url(images/toolbar/arrow-ltr.png); - background-position: left center; - background-repeat: no-repeat; -} -.wikiEditor-ui-toolbar .tabs span.tab a.current, -.wikiEditor-ui-toolbar .tabs span.tab a.current:visited { - color: #333333; - /* @embed */ - background-image: url(images/toolbar/arrow-down.png); -} -.wikiEditor-ui-toolbar .tabs span.tab a.current:hover { - text-decoration: none; -} -.wikiEditor-ui-toolbar .tabs span.tab a.loading { - /* @embed */ - background-image: url(images/toolbar/loading-small.gif); -} -/* Toolbar */ -.wikiEditor-ui-toolbar .group .label { - float: left; - border: 0; - height: 22px; - line-height: 22px; - margin: 2px; - margin-left: 5px; - margin-right: 8px; - color: #777777; - cursor: default; -} -.wikiEditor-ui-toolbar .group img.tool { - float: left; - border: 0; - height: 22px; - width: 22px; - padding: 2px; - cursor: pointer; -} -.wikiEditor-ui-toolbar .group .tool-select { - float: left; - margin: 2px; - height: 22px; - cursor: pointer; - border: 1px solid silver; - padding: 0; - margin-right: 0; - cursor: pointer; - background-color: #ffffff; -} -.wikiEditor-ui-toolbar .group .tool-select .label { - /* @embed */ - background-image: url(images/toolbar/arrow-down.png); - background-position: center right; - background-repeat: no-repeat; - padding: 0; - margin: 0; - padding-left: 4px; - padding-right: 22px; - margin-right: 4px; - cursor: pointer; - text-decoration: none; - color: #333333; -} -.wikiEditor-ui-toolbar .group .tool-select .menu .options { - position: absolute; - display: none; - margin-left: -1px; - margin-top: 22px; - border: 1px solid silver; - background-color: #ffffff; -} -.wikiEditor-ui-toolbar .group .tool-select .options .option { - display: block; - padding: 0.5em; - text-decoration: none; - color: black; - white-space: nowrap; -} -.wikiEditor-ui-toolbar .group .tool-select .options .option:hover { - background-color: #E0EEf7; -} -.wikiEditor-ui-toolbar .group .tool-select .options .option[rel=heading-2] { - font-size: 150%; - font-weight: normal; -} -.wikiEditor-ui-toolbar .group .tool-select .options .option[rel=heading-3] { - font-size: 132%; - font-weight: normal; -} -.wikiEditor-ui-toolbar .group .tool-select .options .option[rel=heading-4] { - font-size: 116%; - font-weight: normal; -} -.wikiEditor-ui-toolbar .group .tool-select .options .option[rel=heading-5] { - font-size: 100%; - font-weight: bold; -} -/* Booklet */ -.wikiEditor-ui-toolbar .booklet .index { - float: left; - width: 20%; - height: 125px; - overflow: auto; -} -.wikiEditor-ui-toolbar .booklet .index div { - padding: 4px; - padding-left: 6px; - cursor: pointer; - color: #0645ad; -} -.wikiEditor-ui-toolbar .booklet .index .current { - background-color: #FAFAFA; - color: #333333; - cursor: default; -} -.wikiEditor-ui-toolbar .booklet .pages { - float: right; - width: 80%; - height: 125px; - overflow: auto; - background-color: #FAFAFA; -} -/* Help Pages */ -.wikiEditor-ui-toolbar .page-table table { - padding-left: 5px; - padding-right: 5px; - background: none; -} -.wikiEditor-ui-toolbar .page-table th { - color: #999999; -} -.wikiEditor-ui-toolbar .page-table td { - color: black; - border-top: 1px solid #EEEEEE; -} -.wikiEditor-ui-toolbar .page-table th, -.wikiEditor-ui-toolbar .page-table td { - text-align: left; - padding: 5px; - margin: 0; -} -.wikiEditor-ui-toolbar .section-help .page-table .cell { - vertical-align: top; -} -.wikiEditor-ui-toolbar .section-help .page-table td.cell-syntax, -.wikiEditor-ui-toolbar .section-help .page-table td.syntax { - font-family: monospace, "Courier New"; -} -.wikiEditor-ui-toolbar .section-help .page-table td.syntax, -.wikiEditor-ui-toolbar .section-help .page-table td.cell-syntax, -.wikiEditor-ui-toolbar .section-help .page-table td.cell-result, -.wikiEditor-ui-toolbar .section-help .page-table td.result { - width: 40%; -} -.wikiEditor-ui-toolbar .section-help .page-table td.description, -.wikiEditor-ui-toolbar .section-help .page-table td.description { - width: 20%; -} -/* Characters Pages */ -.wikiEditor-ui-toolbar .page-characters div span { - border: 1px solid #DDDDDD; - padding: 5px; - padding-left: 8px; - padding-right: 8px; - margin-left: 5px; - margin-top: 5px; - height: 1em; - float: left; - display: block; - color: black; - text-decoration: none; - cursor: pointer; - font-family: monospace, "Courier New"; - font-size: 1.25em; -} -.wikiEditor-ui-toolbar .page-characters div[dir=rtl] span { - /* @noflip */ direction: rtl; -} -.wikiEditor-ui-toolbar .page-characters div span:hover { - background-color: white; - text-decoration: none; - border-color: #a8d7f9; -} -.ui-widget table td.wikieditor-toolbar-table-preview-wrapper span { - padding: 4px 6px 0; - display: block; -} -.ui-widget table .wikieditor-toolbar-table-preview-frame { - width: 340px; - background: #fff; - padding: 10px; - overflow: hidden; - display: block; - position: relative; -} -.ui-widget table .wikieditor-toolbar-table-preview-content { - width: 375px; - display: block; -} -.ui-widget table .wikieditor-toolbar-table-preview { - width: 340px; -} -.ui-widget table td.wikieditor-toolbar-table-preview-wrapper { - background: #e5e5e5; - padding: 10px; -} diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js index 454b42a0..29899a38 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js @@ -7,15 +7,15 @@ /** * API accessible functions */ -api : { - addToToolbar : function ( context, data ) { +api: { + addToToolbar: function ( context, data ) { var smooth = true, type, i; for ( type in data ) { switch ( type ) { case 'sections': - var $sections = context.modules.toolbar.$toolbar.find( 'div.sections' ), + var $sections = context.modules.toolbar.$toolbar.find( 'div.sections' ), $tabs = context.modules.toolbar.$toolbar.find( 'div.tabs' ); for ( var section in data[type] ) { if ( section === 'main' ) { @@ -41,7 +41,7 @@ api : { if ( !( 'section' in data ) ) { continue; } - var $section = context.modules.toolbar.$toolbar.find( 'div[rel="' + data.section + '"].section' ); + var $section = context.modules.toolbar.$toolbar.find( 'div[rel="' + data.section + '"].section' ); for ( var group in data[type] ) { // Group $section.append( @@ -145,7 +145,7 @@ api : { } } }, - removeFromToolbar : function ( context, data ) { + removeFromToolbar: function ( context, data ) { if ( typeof data.section === 'string' ) { // Section var tab = 'div.tabs span[rel="' + data.section + '"].tab'; @@ -158,7 +158,7 @@ api : { // Save for later checking if empty group = target; // Tool - target = target + ' a[rel="' + data.tool + '"].tool, ' + target + ' img[rel="' + data.tool + '"].tool'; + target = target + ' [rel="' + data.tool + '"].tool'; } } else if ( typeof data.page === 'string' ) { // Booklet page @@ -217,7 +217,7 @@ fn: { * @param {Object} context Context object of editor to create module in * @param {Object} config Configuration object to create module from */ - create : function ( context, config ) { + create: function ( context, config ) { if ( '$toolbar' in context.modules.toolbar ) { return; } @@ -234,14 +234,14 @@ fn: { * @param {Object} action * @param {Object} source */ - doAction : function ( context, action ) { + doAction: function ( context, action ) { switch ( action.type ) { case 'replace': case 'encapsulate': var parts = { - 'pre' : $.wikiEditor.autoMsg( action.options, 'pre' ), - 'peri' : $.wikiEditor.autoMsg( action.options, 'peri' ), - 'post' : $.wikiEditor.autoMsg( action.options, 'post' ) + 'pre': $.wikiEditor.autoMsg( action.options, 'pre' ), + 'peri': $.wikiEditor.autoMsg( action.options, 'peri' ), + 'post': $.wikiEditor.autoMsg( action.options, 'post' ) }; var replace = action.type === 'replace'; if ( 'regex' in action.options && 'regexReplace' in action.options ) { @@ -270,8 +270,8 @@ fn: { default: break; } }, - buildGroup : function ( context, id, group ) { - var $group = $( '<div>' ).attr( { 'class' : 'group group-' + id, 'rel' : id } ); + buildGroup: function ( context, id, group ) { + var $group = $( '<div>' ).attr( { 'class': 'group group-' + id, 'rel': id } ); var label = $.wikiEditor.autoMsg( group, 'label' ); if ( label ) { var $label = $( '<span />' ) @@ -296,7 +296,7 @@ fn: { } return $group; }, - buildTool : function ( context, id, tool ) { + buildTool: function ( context, id, tool ) { if ( 'filters' in tool ) { for ( var i = 0; i < tool.filters.length; i++ ) { if ( $( tool.filters[i] ).size() === 0 ) { @@ -316,11 +316,11 @@ fn: { if ( typeof offsetOrIcon === 'object' ) { $button = $( '<a>' ) .attr( { - 'href' : '#', - 'title' : label, - 'rel' : id, - 'role' : 'button', - 'class' : 'tool tool-button wikiEditor-toolbar-spritedButton' + 'href': '#', + 'title': label, + 'rel': id, + 'role': 'button', + 'class': 'tool tool-button wikiEditor-toolbar-spritedButton' } ) .text( label ) .css( 'backgroundPosition', offsetOrIcon[0] + 'px ' + offsetOrIcon[1] + 'px' ); @@ -329,14 +329,14 @@ fn: { if ( !$button ) { $button = $( '<img>' ) .attr( { - 'src' : src, - 'width' : 22, - 'height' : 22, - 'alt' : label, - 'title' : label, - 'rel' : id, - 'role' : 'button', - 'class' : 'tool tool-button' + 'src': src, + 'width': 22, + 'height': 22, + 'alt': label, + 'title': label, + 'rel': id, + 'role': 'button', + 'class': 'tool tool-button' } ); } if ( 'action' in tool ) { @@ -360,7 +360,7 @@ fn: { return $button; case 'select': var $select = $( '<div>' ) - .attr( { 'rel' : id, 'class' : 'tool tool-select' } ); + .attr( { 'rel': id, 'class': 'tool tool-select' } ); var $options = $( '<div>' ).addClass( 'options' ); if ( 'list' in tool ) { for ( var option in tool.list ) { @@ -416,7 +416,7 @@ fn: { return null; } }, - buildBookmark : function ( context, id, page ) { + buildBookmark: function ( context, id, page ) { var label = $.wikiEditor.autoMsg( page, 'label' ); return $( '<div>' ) .text( label ) @@ -445,17 +445,17 @@ fn: { return false; } ); }, - buildPage : function ( context, id, page ) { + buildPage: function ( context, id, page ) { var html, i; var $page = $( '<div>' ).attr( { - 'class' : 'page page-' + id, - 'rel' : id + 'class': 'page page-' + id, + 'rel': id } ); switch ( page.layout ) { case 'table': $page.addClass( 'page-table' ); html = - '<table cellpadding=0 cellspacing=0 ' + 'border=0 width="100%" class="table table-' + id + '">'; + '<table class="table-' + id + '">'; if ( 'headings' in page ) { html += $.wikiEditor.modules.toolbar.fn.buildHeading( context, page.headings ); } @@ -510,14 +510,14 @@ fn: { } return $page; }, - buildHeading : function ( context, headings ) { + buildHeading: function ( context, headings ) { var html = '<tr>'; for ( var i = 0; i< headings.length; i++ ) { html += '<th>' + $.wikiEditor.autoMsg( headings[i], ['html', 'text'] ) + '</th>'; } return html + '</tr>'; }, - buildRow : function ( context, row ) { + buildRow: function ( context, row ) { var html = '<tr>'; for ( var cell in row ) { html += '<td class="cell cell-' + cell + '"><span>' + @@ -525,14 +525,14 @@ fn: { } return html + '</tr>'; }, - buildCharacter : function ( character, actions ) { + buildCharacter: function ( character, actions ) { if ( typeof character === 'string' ) { character = { - 'label' : character, - 'action' : { - 'type' : 'replace', - 'options' : { - 'peri' : character, + 'label': character, + 'action': { + 'type': 'replace', + 'options': { + 'peri': character, 'selectPeri': false } } @@ -541,11 +541,11 @@ fn: { // character that gets inserted (e.g. Hebrew vowels) } else if ( character && 0 in character && 1 in character ) { character = { - 'label' : character[0], - 'action' : { - 'type' : 'replace', - 'options' : { - 'peri' : character[1], + 'label': character[0], + 'action': { + 'type': 'replace', + 'options': { + 'peri': character[1], 'selectPeri': false } } @@ -567,7 +567,7 @@ fn: { // bug 31673; also an additional fix for bug 24208... return ''; }, - buildTab : function ( context, id, section ) { + buildTab: function ( context, id, section ) { var selected = $.cookie( 'wikiEditor-' + context.instance + '-toolbar-section' ); // Re-save cookie if ( selected !== null ) { @@ -625,8 +625,8 @@ fn: { if ( show ) { $section.removeClass( 'section-hidden' ) .attr( 'aria-expanded', 'true' ) - .animate( {opacity: 100.0}, 'fast', 'linear', function () { - $(this).addClass( 'section-visible' ); + .animate( { opacity: 100.0 }, 'fast', 'linear', function () { + $( this ).addClass( 'section-visible' ); } ); if ( $section.hasClass( 'loading' ) ) { @@ -661,8 +661,8 @@ fn: { } ); return $( '<span>' ) .attr( { - 'class' : 'tab tab-' + id, - 'rel' : id + 'class': 'tab tab-' + id, + 'rel': id } ) .append( $link ); }, @@ -728,7 +728,7 @@ fn: { break; } }, - updateBookletSelection : function ( context, id, $pages, $index ) { + updateBookletSelection: function ( context, id, $pages, $index ) { /*jshint eqnull:true */ var cookie = 'wikiEditor-' + context.instance + '-booklet-' + id + '-page'; var selected = $.cookie( cookie ); @@ -747,7 +747,7 @@ fn: { $index.children().removeClass( 'current' ); $selectedIndex.addClass( 'current' ); }, - build : function ( context, config ) { + build: function ( context, config ) { var $tabs = $( '<div>' ).addClass( 'tabs' ).appendTo( context.modules.toolbar.$toolbar ); var $sections = $( '<div>' ).addClass( 'sections' ).appendTo( context.modules.toolbar.$toolbar ); context.modules.toolbar.$toolbar.append( $( '<div>' ).css( 'clear', 'both' ) ); @@ -759,17 +759,17 @@ fn: { ); } else { sectionQueue.push( { - '$sections' : $sections, - 'context' : context, - 'id' : section, - 'config' : config[section] + '$sections': $sections, + 'context': context, + 'id': section, + 'config': config[section] } ); $tabs.append( $.wikiEditor.modules.toolbar.fn.buildTab( context, section, config[section] ) ); } } $.eachAsync( sectionQueue, { - 'bulk' : 0, - 'end' : function () { + 'bulk': 0, + 'end': function () { // HACK: Opera doesn't seem to want to redraw after these bits // are added to the DOM, so we can just FORCE it! var oldValue = $( 'body' ).css( 'position' ); @@ -778,7 +778,7 @@ fn: { context.$textarea.trigger( 'wikiEditor-toolbar-doneInitialSections' ); }, - 'loop' : function ( i, s ) { + 'loop': function ( i, s ) { s.$sections.append( $.wikiEditor.modules.toolbar.fn.buildSection( s.context, s.id, s.config ) ); var $section = s.$sections.find( '.section-visible' ); if ( $section.size() ) { diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.less b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.less new file mode 100644 index 00000000..cfd316b1 --- /dev/null +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.less @@ -0,0 +1,387 @@ +@import "mediawiki.mixins"; + +/** + * CSS for WikiEditor Toolbar jQuery plugin + */ + +.wikiEditor-ui-toolbar { + position: relative; + display: block; + .background-image('images/toolbar/base.png'); + background-position: left top; + background-repeat: repeat-x; + + .empty { + display: none; + } + + /* Expandable Sections */ + .sections { + float: left; + width: 100%; + clear: both; + height: 0; + + .section { + float: left; + width: 100%; + border-top: 1px solid #DDDDDD; + background-color: #E0EEF7; + } + + .section-hidden { + display: none; + } + + /* Gets overridden when the section div is in class loading - see below */ + div { + .spinner { + display: none; + } + } + + .loading { + .spinner { + .background-image('images/toolbar/loading.gif'); + background-position: left center; + background-repeat: no-repeat; + color: #666666; + display: block; + float: left; + height: 32px; + margin-left: 0.5em; + padding-left: 32px; + } + } + } + + /* Top Level Containers */ + /* Tabs */ + .tabs { + float: left; + height: 100%; + list-style: none; + margin: 3px; + min-height: 26px; + position: relative; + + span.tab { + display: block; + float: left; + line-height: 26px; + + a, a:visited { + .background-image('images/toolbar/arrow-ltr.png'); + background-position: left center; + background-repeat: no-repeat; + color: #0645ad; + cursor: pointer; + display: inline-block; + float: left; + height: 26px; + padding-left: 18px; + padding-right: 12px; + } + + a.current, a.current:visited { + .background-image('images/toolbar/arrow-down.png'); + color: #333333; + + &:hover { + text-decoration: none; + } + } + + a.loading { + .background-image('images/toolbar/loading-small.gif'); + } + } + } + + /* Top Level Containers */ + .tabs, + .section-main { + position: relative; + float: left; + min-height: 26px; + height: 100%; + } + + /* Groups */ + .group { + float: left; + height: 26px; + padding-right: 6px; + border-right: 1px solid #DDDDDD; + margin: 3px; + + /* Toolbar */ + .label { + float: left; + border: 0; + height: 22px; + line-height: 22px; + margin: 2px; + margin-left: 5px; + margin-right: 8px; + color: #777777; + cursor: default; + } + + img.tool { + float: left; + border: 0; + height: 22px; + width: 22px; + padding: 2px; + cursor: pointer; + } + + .tool-select { + float: left; + margin: 2px; + height: 22px; + cursor: pointer; + border: 1px solid silver; + padding: 0; + margin-right: 0; + background-color: #ffffff; + + .label { + .background-image('images/toolbar/arrow-down.png'); + background-position: center right; + background-repeat: no-repeat; + padding: 0; + margin: 0; + padding-left: 4px; + padding-right: 22px; + margin-right: 4px; + cursor: pointer; + text-decoration: none; + color: #333333; + } + + .menu { + .options { + position: absolute; + display: none; + margin-left: -1px; + margin-top: 22px; + border: 1px solid silver; + background-color: #ffffff; + } + } + + .options { + .option { + display: block; + padding: 0.5em; + text-decoration: none; + color: black; + white-space: nowrap; + + &:hover { + background-color: #E0EEF7; + } + + &[rel=heading-2] { + font-size: 150%; + font-weight: normal; + } + + &[rel=heading-3] { + font-size: 132%; + font-weight: normal; + } + + &[rel=heading-4] { + font-size: 116%; + font-weight: normal; + } + + &[rel=heading-5] { + font-size: 100%; + font-weight: bold; + } + } + } + } + } + + .group-search { + float: right; + padding: 0 0 0 6px; + border-right: none; + border-left: 1px solid #DDDDDD; + } + + .group-insert { + border-right: none; + } + + /* Booklet */ + .booklet { + .index { + float: left; + width: 20%; + height: 125px; + overflow: auto; + resize: horizontal; + + div { + padding: 4px; + padding-left: 6px; + cursor: pointer; + color: #0645ad; + } + + .current { + background-color: #FAFAFA; + color: #333333; + cursor: default; + } + } + + .pages { + background-color: #FAFAFA; + height: 125px; + overflow: auto; + } + } + + /* Help Pages */ + .page-table { + padding-left: 5px; + padding-right: 5px; + + table { + background: none; + border-collapse: collapse; + width: 100%; + } + + th { + color: #999999; + } + + td { + color: black; + border-top: 1px solid #EEEEEE; + } + + th, + td { + margin: 0; + padding: 5px; + text-align: left; + } + } + + .section-help { + .page-table { + .cell { + vertical-align: top; + } + + td.cell-syntax { + font-family: monospace, Courier; + } + + td.cell-syntax, + td.cell-result { + width: 40%; + } + + td.cell-description { + width: 20%; + } + + /* T33649 */ + .table-link { + td.cell-syntax { + white-space: pre; + } + } + } + } + + /* Characters Pages */ + .page-characters { + div { + span { + border: 1px solid #DDDDDD; + padding: 5px; + padding-left: 8px; + padding-right: 8px; + margin-left: 5px; + margin-top: 5px; + height: 1em; + float: left; + display: block; + color: black; + text-decoration: none; + cursor: pointer; + font-family: monospace, Courier; + font-size: 1.25em; + line-height: 1; + + &:hover { + background-color: white; + text-decoration: none; + border-color: #a8d7f9; + } + } + } + + div[dir=rtl] span { + /* @noflip */ + direction: rtl; + } + } +} + +/* Sprited Buttons */ +.wikiEditor-toolbar-spritedButton { + .background-image('images/toolbar/button-sprite.png'); + background-position: 0 0; + background-repeat: no-repeat; + display: block; + float: left; + height: 22px; + text-indent: -9999px; + width: 22px; + padding: 2px; + cursor: pointer; + overflow: hidden; +} + +.ui-widget { + table { + td.wikieditor-toolbar-table-preview-wrapper { + background: #e5e5e5; + padding: 10px; + span { + padding: 4px 6px 0; + display: block; + } + } + + .wikieditor-toolbar-table-preview-frame { + width: 340px; + background: #fff; + padding: 10px; + overflow: hidden; + display: block; + position: relative; + } + + .wikieditor-toolbar-table-preview-content { + width: 375px; + display: block; + } + + .wikieditor-toolbar-table-preview { + width: 340px; + } + } +} |