helpauthoring/Addons.xcu                                      |   21 
 helpauthoring/HelpAuthoring/OtherElements.xba                 |   16 
 helpauthoring/HelpAuthoring/Switch.xba                        |   40 
 helpauthoring/HelpAuthoring/Validate.xba                      |    2 
 helpauthoring/HelpAuthoring/_Main.xba                         |   20 
 helpauthoring/images/tango/sources/tango_system_shut_down.svg |  424 ----------
 helpauthoring/images/tango/switch.png                         |binary
 7 files changed, 89 insertions(+), 434 deletions(-)

New commits:
commit 8931fd9edd41ab6c7537e7650f0eeb25a6db8574
Author: Yousuf Philips <philip...@hotmail.com>
Date:   Thu Oct 1 00:04:37 2015 +0400

    Support default terminals in gnome and kde for git comparison
    
    Change-Id: Iff2033eecbd5daece5f990df16fc8925e3c261df
    Reviewed-on: https://gerrit.libreoffice.org/19047
    Reviewed-by: Caolán McNamara <caol...@redhat.com>
    Tested-by: Caolán McNamara <caol...@redhat.com>

diff --git a/helpauthoring/HelpAuthoring/_Main.xba 
b/helpauthoring/HelpAuthoring/_Main.xba
index 06d1cea..3e40174 100644
--- a/helpauthoring/HelpAuthoring/_Main.xba
+++ b/helpauthoring/HelpAuthoring/_Main.xba
@@ -32,6 +32,8 @@ Global Const GitClient = &quot;git-gui&quot;
 
 Global Const WebView = &quot;false&quot;
 
+Global Const ConsoleTerminal = &quot;true&quot;
+
 &apos;=======================================================
 &apos; Main
 &apos;-------------------------------------------------------
@@ -326,20 +328,30 @@ Sub OpenGitCompare
        if systemOS = &quot;UNIX&quot; then
                sDocRoot = convertfromurl( ReadConfig(&quot;HelpPrefix&quot;) )
 
-               if FileExists(&quot;/usr/bin/xfce4-terminal&quot;) then
+               Terminal = ConsoleTerminal
+        WorkDirArg = &quot; --working-directory=&quot;
+               HoldArg = &quot; -H&quot;
+
+               if FileExists(&quot;/usr/bin/xfce4-terminal&quot;) and Terminal 
= &quot;&quot; then
                        Terminal = &quot;xfce4-terminal&quot;
-               elseif FileExists(&quot;/usr/bin/mate-terminal&quot;) then
+               elseif FileExists(&quot;/usr/bin/mate-terminal&quot;) and 
Terminal = &quot;&quot; then
                        Terminal = &quot;mate-terminal&quot;
+               elseif FileExists(&quot;/usr/bin/gnome-terminal&quot;) and 
Terminal = &quot;&quot; then
+                       Terminal = &quot;gnome-terminal&quot;
+               elseif FileExists(&quot;/usr/bin/konsole&quot;) and ( Terminal 
= &quot;&quot; or Terminal = &quot;konsole&quot; ) then
+                       Terminal = &quot;konsole&quot;
+                       WorkDirArg = &quot; --workdir &quot;
+                       HoldArg = &quot; --hold&quot;
                end if
 
                if FileExists(&quot;/usr/bin/git-cola&quot;) and ( GitClient = 
&quot;&quot; or GitClient = &quot;git-cola&quot; ) then
-                       shell( Terminal + &quot; --working-directory=&quot; + 
sDocRoot + &quot; -e git-cola&quot;, 0 )
+                       shell( Terminal + HoldArg + WorkDirArg + sDocRoot + 
&quot; -e git-cola&quot;, 0 )
 
                elseif FileExists(&quot;/usr/bin/git&quot;) and ( GitClient = 
&quot;&quot; or GitClient = &quot;git-gui&quot; ) then
                        shell( &quot;git -C &quot; + sDocRoot + &quot; 
gui&quot;, 0 )
 
                elseif FileExists(&quot;/usr/bin/gitk&quot;) and ( GitClient = 
&quot;&quot; or GitClient = &quot;gitk&quot; ) then
-                       shell( Terminal + &quot; --working-directory=&quot; +  
sDocRoot + &quot; -e gitk&quot;, 0 )
+                       shell( Terminal + WorkDirArg + sDocRoot + &quot; -e 
gitk&quot;, 0 )
 
                elseif FileExists(&quot;/usr/bin/gitg&quot;) and ( GitClient = 
&quot;&quot; or GitClient = &quot;gitg&quot; ) then
                        shell( &quot;gitg &quot; + sDocRoot, 0 )
commit 123d0285b9e01fea8f36073f24b880fb58f1a207
Author: Yousuf Philips <philip...@hotmail.com>
Date:   Thu Sep 17 21:32:31 2015 +0400

    Add switch to toolbar and improve inline switch functions
    
    Change-Id: Ie640e39a903191992f88b68f5fed19ec248dd65d
    Reviewed-on: https://gerrit.libreoffice.org/18668
    Reviewed-by: Caolán McNamara <caol...@redhat.com>
    Tested-by: Caolán McNamara <caol...@redhat.com>

diff --git a/helpauthoring/Addons.xcu b/helpauthoring/Addons.xcu
index 4870209..67fce67 100644
--- a/helpauthoring/Addons.xcu
+++ b/helpauthoring/Addons.xcu
@@ -741,6 +741,15 @@
                           <value xml:lang="en-US">Insert Index Entry</value>
                       </prop>
                   </node>
+                  <node oor:name="m45" oor:op="replace">
+                      <prop oor:name="URL" oor:type="xs:string">
+                          
<value>vnd.sun.star.script:HelpAuthoring.Switch.InsertSwitchByDialog?language=Basic&amp;location=application</value>
+                      </prop>
+                      <prop oor:name="Title" oor:type="xs:string">
+                          <value xml:lang="en-US">Switch</value>
+                          <value xml:lang="en-US">Insert Switch</value>
+                      </prop>
+                  </node>
 
                   <node oor:name="m50" oor:op="replace">
                       <prop oor:name="URL" oor:type="xs:string">
@@ -808,7 +817,7 @@
                           
<value>vnd.sun.star.script:HelpAuthoring.Helpers.SetParaWarning?language=Basic&amp;location=application</value>
                       </prop>
                       <prop oor:name="Title" oor:type="xs:string">
-                          <value xml:lang="en-US">Warning</value>
+                          <value xml:lang="en-US">Warn</value>
                       </prop>
                   </node>
                   <node oor:name="m66" oor:op="replace">
@@ -1095,6 +1104,16 @@
                     </prop>
                 </node>
             </node>
+            <node oor:name="org.openoffice.helpauthoringtoolbar.switch" 
oor:op="replace">
+                <prop oor:name="URL" oor:type="xs:string">
+                    
<value>vnd.sun.star.script:HelpAuthoring.Switch.InsertSwitchByDialog?language=Basic&amp;location=application</value>
+                </prop>
+                <node oor:name="UserDefinedImages">
+                    <prop oor:name="ImageBigURL">
+                        
<value>vnd.sun.star.extension://org.openoffice.helpauthoring/images/tango/switch.png</value>
+                    </prop>
+                </node>
+            </node>
         </node>
     </node>
 </oor:component-data>
diff --git a/helpauthoring/HelpAuthoring/OtherElements.xba 
b/helpauthoring/HelpAuthoring/OtherElements.xba
index ab81d99..7b16152 100644
--- a/helpauthoring/HelpAuthoring/OtherElements.xba
+++ b/helpauthoring/HelpAuthoring/OtherElements.xba
@@ -90,6 +90,7 @@ Sub InsertSwitchOSParagraph
 End Sub
 
 Sub InsertSwitchOSInline
+       SetCharStyle(&quot;Default Style&quot;)
     InsertText( &quot; &quot; )
     GoLeft( 1 )
        InsertTag(&quot;SWITCHINLINE_&quot;,&quot;&lt;SWITCHINLINE 
select=&quot;&quot;sys&quot;&quot;&gt;&quot;,&quot;hlp_aux_switch&quot;)
@@ -99,12 +100,15 @@ Sub InsertSwitchOSInline
        InsertCaseInlineNow(&quot;MAC&quot;)
 
     InsertTag(&quot;DEFAULTINLINE_&quot;,&quot;&lt;DEFAULTINLINE&gt;&quot;)
-    SetCharStyle(&quot;Default Style&quot;)
     InsertText( &quot;Default&quot; )
+       goLeft( 7, 1 )
+       SetCharStyle(&quot;Default Style&quot;)
+       goRight( 7 )
     InsertTag(&quot;_DEFAULTINLINE&quot;,&quot;&lt;/DEFAULTINLINE&gt;&quot;)
 
     InsertTag(&quot;_SWITCHINLINE&quot;,&quot;&lt;/SWITCHINLINE&gt;&quot;)
     SetCharStyle(&quot;Default Style&quot;)
+    GoRight( 1 )
 End Sub
 
 Sub InsertSwitchAppParagraph
@@ -140,6 +144,7 @@ Sub InsertSwitchAppParagraph
 End Sub
 
 Sub InsertSwitchAppInline
+       SetCharStyle(&quot;Default Style&quot;)
     InsertText( &quot; &quot; )
     GoLeft( 1 )
        InsertTag(&quot;SWITCHINLINE_&quot;,&quot;&lt;SWITCHINLINE 
select=&quot;&quot;appl&quot;&quot;&gt;&quot;,&quot;hlp_aux_switch&quot;)
@@ -153,12 +158,15 @@ Sub InsertSwitchAppInline
        &apos;InsertCaseInlineNow(&quot;CHART&quot;)
 
     InsertTag(&quot;DEFAULTINLINE_&quot;,&quot;&lt;DEFAULTINLINE&gt;&quot;)
-    SetCharStyle(&quot;Default Style&quot;)
     InsertText( &quot;Default&quot; )
+       goLeft( 7, 1 )
+       SetCharStyle(&quot;Default Style&quot;)
+       goRight( 7 )
     InsertTag(&quot;_DEFAULTINLINE&quot;,&quot;&lt;/DEFAULTINLINE&gt;&quot;)
 
     InsertTag(&quot;_SWITCHINLINE&quot;,&quot;&lt;/SWITCHINLINE&gt;&quot;)
     SetCharStyle(&quot;Default Style&quot;)
+    GoRight( 1 )
 End Sub
 
 Sub InsertCaseNow(sType As String)
@@ -177,8 +185,10 @@ End Sub
 
 Sub InsertCaseInlineNow(sSelect As String)
        InsertTag(&quot;CASEINLINE_&quot;,&quot;&lt;CASEINLINE 
select=&quot;&quot;&quot;+sSelect+&quot;&quot;&quot;&gt;&quot;)
-       SetCharStyle(&quot;Default Style&quot;)
        InsertText( sSelect )
+       goLeft( len(sSelect), 1 )
+       SetCharStyle(&quot;Default Style&quot;)
+       goRight( len(sSelect) )
     InsertTag(&quot;_CASEINLINE&quot;,&quot;&lt;/CASEINLINE&gt;&quot;)
 End Sub
 
diff --git a/helpauthoring/HelpAuthoring/Switch.xba 
b/helpauthoring/HelpAuthoring/Switch.xba
index a3ff62a..cb93d2f 100644
--- a/helpauthoring/HelpAuthoring/Switch.xba
+++ b/helpauthoring/HelpAuthoring/Switch.xba
@@ -25,6 +25,46 @@ Dim document AS Object
 Sub Main
 End Sub
 
+Sub InsertSwitchByDialog
+
+       Reply = msgbox( &quot;Would you like to insert a OS paragraph 
switch?&quot;, 3 )
+
+       if Reply = 6 then
+               InsertSwitchOSParagraph()
+               exit sub
+       elseif Reply = 2 then
+               exit sub
+       end if
+
+       Reply = msgbox( &quot;Would you like to insert a OS inline 
switch?&quot;, 3 )
+
+       if Reply = 6 then
+               InsertSwitchOSInline()
+               exit sub
+       elseif Reply = 2 then
+               exit sub
+       end if
+
+       Reply = msgbox( &quot;Would you like to insert a App paragraph 
switch?&quot;, 3 )
+
+       if Reply = 6 then
+               InsertSwitchAppParagraph()
+               exit sub
+       elseif Reply = 2 then
+               exit sub
+       end if
+
+       Reply = msgbox( &quot;Would you like to insert a App inline 
switch?&quot;, 3 )
+
+       if Reply = 6 then
+               InsertSwitchAppInline()
+               exit sub
+       elseif Reply = 2 then
+               exit sub
+       end if
+
+End Sub
+
 Sub InsertSwitch
     InsertSwitchTag(FALSE)
 End Sub
diff --git a/helpauthoring/HelpAuthoring/Validate.xba 
b/helpauthoring/HelpAuthoring/Validate.xba
index 4e24ecd..9977161 100644
--- a/helpauthoring/HelpAuthoring/Validate.xba
+++ b/helpauthoring/HelpAuthoring/Validate.xba
@@ -508,8 +508,6 @@ Sub CheckMetaData(oDoc As Object)
     &apos;sTopicID = oDoc.DocumentInfo.GetUserFieldValue(1)
      sTopicID = oDoc.DocumentProperties.UserDefinedProperties.ID
 
-
-
     If sTopicID &lt;&gt; AlphaNum(sTopicID) OR sTopicID=&quot;&quot; Then
         sTopicID = &quot;topic_&quot;+CreateID &apos; create a topic id
     End If
diff --git a/helpauthoring/images/tango/sources/tango_system_shut_down.svg 
b/helpauthoring/images/tango/sources/tango_system_shut_down.svg
deleted file mode 100644
index 9b0b327..0000000
--- a/helpauthoring/images/tango/sources/tango_system_shut_down.svg
+++ /dev/null
@@ -1,424 +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";
-   sodipodi:docname="system-shutdown.svg"
-   sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
-   inkscape:version="0.46"
-   sodipodi:version="0.32"
-   id="svg11300"
-   height="48px"
-   width="48px"
-   inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
-   inkscape:export-xdpi="90.000000"
-   inkscape:export-ydpi="90.000000"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs3">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 24 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="48 : 24 : 1"
-       inkscape:persp3d-origin="24 : 16 : 1"
-       id="perspective62" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5060"
-       id="radialGradient5031"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
-       cx="605.71429"
-       cy="486.64789"
-       fx="605.71429"
-       fy="486.64789"
-       r="117.14286" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5060">
-      <stop
-         style="stop-color:black;stop-opacity:1;"
-         offset="0"
-         id="stop5062" />
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="1"
-         id="stop5064" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5060"
-       id="radialGradient5029"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
-       cx="605.71429"
-       cy="486.64789"
-       fx="605.71429"
-       fy="486.64789"
-       r="117.14286" />
-    <linearGradient
-       id="linearGradient5048">
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="0"
-         id="stop5050" />
-      <stop
-         id="stop5056"
-         offset="0.5"
-         style="stop-color:black;stop-opacity:1;" />
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="1"
-         id="stop5052" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5048"
-       id="linearGradient5027"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
-       x1="302.85715"
-       y1="366.64789"
-       x2="302.85715"
-       y2="609.50507" />
-    <linearGradient
-       id="linearGradient7636"
-       inkscape:collect="always">
-      <stop
-         id="stop7638"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1;" />
-      <stop
-         id="stop7640"
-         offset="1"
-         style="stop-color:#000000;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient7614">
-      <stop
-         id="stop7616"
-         offset="0.0000000"
-         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1.0000000;"
-         offset="0.21590909"
-         id="stop7649" />
-      <stop
-         style="stop-color:#838383;stop-opacity:1.0000000;"
-         offset="0.50000000"
-         id="stop7632" />
-      <stop
-         id="stop7618"
-         offset="1"
-         style="stop-color:#838383;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient7608">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop7610" />
-      <stop
-         id="stop7622"
-         offset="0.46022728"
-         style="stop-color:#e3e3e3;stop-opacity:1.0000000;" />
-      <stop
-         style="stop-color:#dadada;stop-opacity:0.67058824;"
-         offset="0.61970556"
-         id="stop7624" />
-      <stop
-         style="stop-color:#d1d1d1;stop-opacity:0.34285715;"
-         offset="1.0000000"
-         id="stop7612" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient7586">
-      <stop
-         id="stop7588"
-         offset="0.0000000"
-         style="stop-color:#525252;stop-opacity:1.0000000;" />
-      <stop
-         id="stop7590"
-         offset="1.0000000"
-         style="stop-color:#000000;stop-opacity:1.0000000;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11594">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11596" />
-      <stop
-         style="stop-color:#d1d1d1;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop11598" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11520">
-      <stop
-         style="stop-color:#fbfbfb;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop11522" />
-      <stop
-         style="stop-color:#dcdcdc;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop11524" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11508">
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="0"
-         id="stop11510" />
-      <stop
-         style="stop-color:#000000;stop-opacity:0;"
-         offset="1"
-         id="stop11512" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11520"
-       id="radialGradient11526"
-       cx="24.445690"
-       cy="35.878170"
-       fx="24.445690"
-       fy="35.878170"
-       r="20.530962"
-       gradientUnits="userSpaceOnUse"
-       
gradientTransform="matrix(1.995058,-1.535926e-32,0.000000,1.855412,-24.37145,-30.20430)"
 />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11508"
-       id="radialGradient11532"
-       gradientUnits="userSpaceOnUse"
-       
gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,-5.168001e-14,29.48178)"
-       cx="30.203562"
-       cy="44.565483"
-       fx="30.203562"
-       fy="44.565483"
-       r="6.5659914" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11594"
-       id="linearGradient11600"
-       x1="20.092352"
-       y1="8.9471626"
-       x2="31.799011"
-       y2="38.947163"
-       gradientUnits="userSpaceOnUse"
-       
gradientTransform="matrix(1.045319,0.000000,0.000000,0.957884,-1.154429,1.415543)"
 />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11520"
-       id="linearGradient11608"
-       x1="24.445671"
-       y1="0.49847093"
-       x2="24.445671"
-       y2="39.447163"
-       gradientUnits="userSpaceOnUse"
-       
gradientTransform="matrix(0.984324,0.000000,0.000000,0.957884,0.336637,1.415543)"
 />
-    <linearGradient
-       y2="21.067410"
-       x2="24.445690"
-       y1="33.447811"
-       x1="31.597168"
-       
gradientTransform="matrix(0.476329,0.000000,0.000000,0.627721,12.75490,9.156933)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient7584"
-       xlink:href="#linearGradient11594"
-       inkscape:collect="always" />
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       
gradientTransform="matrix(2.407878,2.776254e-16,-5.900875e-16,1.861050,-34.35094,-20.55775)"
-       r="6.0270013"
-       fy="29.099535"
-       fx="24.399090"
-       cy="29.099535"
-       cx="24.399090"
-       id="radialGradient7592"
-       xlink:href="#linearGradient7586"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="11.042997"
-       x2="22.585604"
-       y1="34.149513"
-       x1="22.585604"
-       
gradientTransform="matrix(1.059222,0.000000,0.000000,0.808101,-1.234132,4.001391)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient7596"
-       xlink:href="#linearGradient7608"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="38.454056"
-       x2="28.284273"
-       y1="28.554562"
-       x1="25.279068"
-       id="linearGradient7642"
-       xlink:href="#linearGradient7636"
-       inkscape:collect="always" />
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       
gradientTransform="matrix(2.777122,-8.126449e-2,6.891211e-2,2.223012,-45.28558,-33.24798)"
-       r="4.4774761"
-       fy="29.609560"
-       fx="24.483574"
-       cy="29.609560"
-       cx="24.483574"
-       id="radialGradient7647"
-       xlink:href="#linearGradient7614"
-       inkscape:collect="always" />
-  </defs>
-  <sodipodi:namedview
-     inkscape:window-y="94"
-     inkscape:window-x="268"
-     inkscape:window-height="754"
-     inkscape:window-width="872"
-     inkscape:showpageshadow="false"
-     inkscape:document-units="px"
-     inkscape:grid-bbox="true"
-     showgrid="false"
-     inkscape:current-layer="layer1"
-     inkscape:cy="17.878701"
-     inkscape:cx="-112.52652"
-     inkscape:zoom="1"
-     inkscape:pageshadow="2"
-     inkscape:pageopacity="0.0"
-     borderopacity="0.25490196"
-     bordercolor="#666666"
-     pagecolor="#ffffff"
-     id="base"
-     fill="#fce94f"
-     stroke="#ef2929" />
-  <metadata
-     id="metadata4">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
-        <dc:creator>
-          <cc:Agent>
-            <dc:title>Jakub Steiner</dc:title>
-          </cc:Agent>
-        </dc:creator>
-        <dc:source>http://jimmac.musichall.cz</dc:source>
-        <cc:license
-           rdf:resource="http://creativecommons.org/licenses/publicdomain/"; />
-        <dc:title>System Shutdown</dc:title>
-        <dc:subject>
-          <rdf:Bag>
-            <rdf:li>poweroff</rdf:li>
-            <rdf:li>shutdown</rdf:li>
-            <rdf:li>halt</rdf:li>
-            <rdf:li>system</rdf:li>
-          </rdf:Bag>
-        </dc:subject>
-      </cc:Work>
-      <cc:License
-         rdf:about="http://creativecommons.org/licenses/publicdomain/";>
-        <cc:permits
-           rdf:resource="http://creativecommons.org/ns#Reproduction"; />
-        <cc:permits
-           rdf:resource="http://creativecommons.org/ns#Distribution"; />
-        <cc:permits
-           rdf:resource="http://creativecommons.org/ns#DerivativeWorks"; />
-      </cc:License>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:groupmode="layer"
-     inkscape:label="Layer 1"
-     id="layer1">
-    <g
-       style="display:inline"
-       id="g5022"
-       transform="matrix(2.312904e-2,0,0,1.818338e-2,45.14375,40.29231)">
-      <rect
-         y="-150.69685"
-         x="-1559.2523"
-         height="478.35718"
-         width="1339.6335"
-         id="rect4173"
-         
style="opacity:0.40206185;color:black;fill:url(#linearGradient5027);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
 />
-      <path
-         sodipodi:nodetypes="cccc"
-         id="path5058"
-         d="M -219.61876,-150.68038 C -219.61876,-150.68038 
-219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 
125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 
-33.655436,-150.68036 -219.61876,-150.68038 z "
-         
style="opacity:0.40206185;color:black;fill:url(#radialGradient5029);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
 />
-      <path
-         
style="opacity:0.40206185;color:black;fill:url(#radialGradient5031);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-         d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 
-1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 
-1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 
-1745.2157,-150.68036 -1559.2523,-150.68038 z "
-         id="path5018"
-         sodipodi:nodetypes="cccc" />
-    </g>
-    <rect
-       
style="opacity:1.0000000;color:#000000;fill:url(#radialGradient11526);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#9b9b9b;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
-       id="rect11518"
-       width="40.061924"
-       height="39.914883"
-       x="4.3681555"
-       y="3.6171863"
-       rx="5.4548240"
-       ry="5.4548221" />
-    <rect
-       ry="4.2426381"
-       rx="4.2426391"
-       y="4.6506371"
-       x="5.5508161"
-       height="37.781532"
-       width="37.696587"
-       id="rect11528"
-       
style="opacity:1.0000000;color:#000000;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
 />
-    <rect
-       
style="opacity:1.0000000;color:#000000;fill:url(#linearGradient11608);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient11600);stroke-width:0.99999964;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
-       id="rect11592"
-       width="24.258368"
-       height="32.706299"
-       x="12.269927"
-       y="7.5220733"
-       rx="2.2980957"
-       ry="2.2980950" />
-    <rect
-       ry="1.5909867"
-       rx="1.5909867"
-       y="13.865772"
-       x="18.518534"
-       height="20.902771"
-       width="12.114655"
-       id="rect7580"
-       
style="opacity:1.0000000;color:#000000;fill:url(#radialGradient7592);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient7584);stroke-width:0.99999881;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
 />
-    <path
-       sodipodi:nodetypes="ccccccc"
-       id="path7634"
-       d="M 19.975767,34.034641 L 22.627417,36.686292 L 33.764349,36.509516 C 
33.764349,36.509516 30.935922,27.140350 30.935922,27.140350 C 
30.935922,27.140350 30.228815,17.771184 30.228815,17.771184 L 
29.521708,33.681088 L 19.975767,34.034641 z "
-       
style="overflow:visible;display:inline;visibility:visible;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:none;stroke-miterlimit:10.000000;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-linejoin:bevel;stroke-linecap:butt;stroke-width:0.99999923;stroke:none;fill-rule:evenodd;fill-opacity:1.0;fill:url(#linearGradient7642);color:#000000;opacity:0.31550802"
 />
-    <rect
-       
style="opacity:1.0000000;color:#000000;fill:#8a8a8a;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#595959;stroke-width:0.99999839;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
-       id="rect7626"
-       width="8.9714193"
-       height="4.3154969"
-       x="20.019962"
-       y="29.217876"
-       rx="1.0606545"
-       ry="1.0606545" />
-    <rect
-       ry="0.88388008"
-       rx="0.88388008"
-       y="15.230613"
-       x="20.049574"
-       height="15.812397"
-       width="8.9121952"
-       id="rect7594"
-       
style="opacity:1.0000000;color:#000000;fill:url(#linearGradient7596);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#radialGradient7647);stroke-width:0.99999917;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
 />
-  </g>
-</svg>
diff --git a/helpauthoring/images/tango/switch.png 
b/helpauthoring/images/tango/switch.png
index 4413e6d..0b5f284 100644
Binary files a/helpauthoring/images/tango/switch.png and 
b/helpauthoring/images/tango/switch.png differ
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to