From c38321db6312b6ee24a629f360003bbb9d3d5288 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Mon, 18 May 2009 17:54:47 +0200 Subject: [PATCH 01/17] set favicon --- template/index.htm | 188 ++++++++++++++++++++++----------------------- 1 file changed, 94 insertions(+), 94 deletions(-) diff --git a/template/index.htm b/template/index.htm index 71dbeb5..9aeec91 100644 --- a/template/index.htm +++ b/template/index.htm @@ -1,94 +1,94 @@ - - - - Mumble Administration - - - - - - - - - - - {% block HeadTag %} - {% endblock %} - - -
-
-
-
-
-
- - -
-
-
- - {% block LeftColumn %} - {% endblock %} -
-
-
-
- - {% block Content %} - {% endblock %} -
- -
 
-
-
- - -
-
-
-
-
-
- - + + + + Mumble Administration + + + + + + + + + + + {% block HeadTag %} + {% endblock %} + + +
+
+
+
+
+
+ + +
+
+
+ + {% block LeftColumn %} + {% endblock %} +
+
+
+
+ + {% block Content %} + {% endblock %} +
+ +
 
+
+
+ + +
+
+
+
+
+
+ + From d62cb9f453b1a091ec43998f8d8b00a0894080f2 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Mon, 18 May 2009 22:37:51 +0200 Subject: [PATCH 02/17] implemented setting user textures --- pyweb/mumble/forms.py | 8 +++++++- pyweb/mumble/models.py | 23 ++++++++++++++++++++++- pyweb/mumble/views.py | 14 ++++++++++++-- template/mumble/mumble.htm | 20 ++++++++++++++++++++ 4 files changed, 61 insertions(+), 4 deletions(-) diff --git a/pyweb/mumble/forms.py b/pyweb/mumble/forms.py index 23c6327..4f7c740 100644 --- a/pyweb/mumble/forms.py +++ b/pyweb/mumble/forms.py @@ -14,7 +14,8 @@ * GNU General Public License for more details. """ -from django.forms import ModelForm +from django import forms +from django.forms import Form, ModelForm from models import * class MumbleForm( ModelForm ): @@ -28,3 +29,8 @@ class MumbleUserForm( ModelForm ): model = MumbleUser; fields = ( 'name', 'password' ); + +class MumbleTextureForm( Form ): + texturefile = forms.ImageField(); + + diff --git a/pyweb/mumble/models.py b/pyweb/mumble/models.py index 420f04f..50e1a36 100644 --- a/pyweb/mumble/models.py +++ b/pyweb/mumble/models.py @@ -14,6 +14,10 @@ * GNU General Public License for more details. """ +from PIL import Image +from struct import pack +from zlib import compress + from django.contrib.auth.models import User from django.db import models @@ -219,7 +223,24 @@ class MumbleUser( models.Model ): bus.setACL( *acl.pack() ); return value; - + def setTexture( self, infile ): + # open image, convert to RGBA, and resize to 600x60 + img = Image.open( infile ).convert( "RGBA" ).transform( ( 600, 60 ), Image.EXTENT, ( 0, 0, 600, 60 ) ); + # iterate over the list and pack everything into a string + bgrastring = ""; + for ent in list( img.getdata() ): + # ent is in RGBA format, but Murmur wants BGRA (ARGB inverse), so stuff needs + # to be reordered when passed to pack() + bgrastring += pack( "4B", ent[2], ent[1], ent[0], ent[3] ); + # compress using zlib + compressed = compress( bgrastring ); + # pack the original length in 4 byte big endian, and concat the compressed + # data to it to emulate qCompress(). + texture = pack( ">L", len(bgrastring) ) + compressed; + # finally call murmur and set the texture + murmur = self.server.getDbusObject(); + murmur.setTexture( dbus.Int32( self.mumbleid ), texture ); + @staticmethod def pre_delete_listener( **kwargs ): kwargs['instance'].unregister(); diff --git a/pyweb/mumble/views.py b/pyweb/mumble/views.py index 1ccf99c..357d42a 100644 --- a/pyweb/mumble/views.py +++ b/pyweb/mumble/views.py @@ -66,6 +66,7 @@ def show( request, server ): adminform = None; registered = False; + if request.user.is_authenticated(): if request.method == 'POST' and 'mode' in request.POST and request.POST['mode'] == 'reg': try: @@ -92,8 +93,18 @@ def show( request, server ): else: regform = MumbleUserForm( instance=user ); registered = True; + + if request.method == 'POST' and 'mode' in request.POST and request.POST['mode'] == 'texture' and registered: + textureform = MumbleTextureForm( request.POST, request.FILES ); + if textureform.is_valid(): + user.setTexture( request.FILES['texturefile'] ); + return HttpResponseRedirect( '/mumble/%d' % int(server) ); + else: + textureform = MumbleTextureForm(); + else: regform = None; + textureform = None; return render_to_response( 'mumble/mumble.htm', @@ -104,6 +115,7 @@ def show( request, server ): "CurrentUserIsAdmin": isAdmin, "AdminForm": adminform, "RegForm": regform, + "TextureForm": textureform, "Registered": registered, "DisplayTab": displayTab, 'MumbleActive': True, @@ -168,5 +180,3 @@ def renderListItem( item, level ): Storage.s.append( ( level, item ) ); - - diff --git a/template/mumble/mumble.htm b/template/mumble/mumble.htm index e33c176..228625a 100644 --- a/template/mumble/mumble.htm +++ b/template/mumble/mumble.htm @@ -37,6 +37,20 @@ {% endif %} + {% if Registered %} +
+

User Texture

+ You can upload an image that you would like to use as your user texture here.
+
+ + {{ TextureForm }} +
+ + +
+
+ {% endif %} + {% if CurrentUserIsAdmin %}

Server administration

@@ -87,6 +101,9 @@ - - - - {% block HeadTag %} - {% endblock %} - - -
-
-
-
-
-
- - -
-
-
- - {% block LeftColumn %} - {% endblock %} -
-
-
-
- - {% block Content %} - {% endblock %} -
- -
 
-
-
- - -
-
-
-
-
-
- - + + + Mumble Administration + + + + + + + + + + + + {% block HeadTag %} + {% endblock %} + + +
+ +
+ +

{% block Headline %}{% endblock %}

+
+ + + +
+
+ {% block LeftColumn %} + {% endblock %} +
+
+ {% block Content %} + {% endblock %} +
+
+ +
+ You are using Mumble-Django -- + interface built using ExtJS +
+
+ + + diff --git a/template/mumble/mumble.htm b/template/mumble/mumble.htm index 6f78041..5c25e8a 100644 --- a/template/mumble/mumble.htm +++ b/template/mumble/mumble.htm @@ -17,6 +17,7 @@ that are displayed.

+
{% if user.is_authenticated %}

Server registration

@@ -115,10 +116,10 @@ {% endif %} var cardpanel = new Ext.Panel({ - renderTo: 'col3_content', + renderTo: 'mumble_ext_container', layout: 'card', id: 'mumble_container', - height: 510, + height: 550, activeItem: 0, border: false, items: [ { From acd5a20a4cd0339af772cb06af77a6affc443563 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Wed, 27 May 2009 17:48:15 +0200 Subject: [PATCH 15/17] removed everything YAML --- htdocs/css/my_layout.css | 22 -- htdocs/css/patches/patch_my_layout.css | 47 --- htdocs/css/screen/basemod.css | 127 ------ htdocs/css/screen/content.css | 225 ----------- htdocs/images/bg_blue.png | Bin 1332 -> 0 bytes htdocs/images/bg_col_left.png | Bin 484 -> 0 bytes htdocs/images/bg_col_right.png | Bin 541 -> 0 bytes htdocs/images/gfxborder/border_bottom.gif | Bin 116 -> 0 bytes htdocs/images/gfxborder/border_left.gif | Bin 116 -> 0 bytes htdocs/images/gfxborder/border_right.gif | Bin 116 -> 0 bytes htdocs/images/gfxborder/border_top.gif | Bin 116 -> 0 bytes htdocs/images/gfxborder/corner_bl.gif | Bin 264 -> 0 bytes htdocs/images/gfxborder/corner_br.gif | Bin 266 -> 0 bytes htdocs/images/gfxborder/corner_tl.gif | Bin 266 -> 0 bytes htdocs/images/gfxborder/corner_tr.gif | Bin 266 -> 0 bytes .../microformats/images/external_link.gif | Bin 66 -> 0 bytes .../add-ons/microformats/images/hcalendar.png | Bin 633 -> 0 bytes .../add-ons/microformats/images/hcard.png | Bin 673 -> 0 bytes .../add-ons/microformats/images/icon-geo.png | Bin 4707 -> 0 bytes .../microformats/images/icon-hatom.png | Bin 713 -> 0 bytes .../microformats/images/icon-haudio.png | Bin 1092 -> 0 bytes .../images/icon-hcalendar-add.png | Bin 1106 -> 0 bytes .../images/icon-hcalendar-download.png | Bin 1118 -> 0 bytes .../microformats/images/icon-hcalendar.png | Bin 707 -> 0 bytes .../microformats/images/icon-hcard-add.png | Bin 707 -> 0 bytes .../images/icon-hcard-download.png | Bin 721 -> 0 bytes .../microformats/images/icon-hcard.png | Bin 1052 -> 0 bytes .../microformats/images/icon-hresume.png | Bin 724 -> 0 bytes .../microformats/images/icon-rel-tag.png | Bin 720 -> 0 bytes .../add-ons/microformats/images/icon-xfn.png | Bin 721 -> 0 bytes .../images/xfn/xfn-colleague-met.png | Bin 430 -> 0 bytes .../microformats/images/xfn/xfn-colleague.png | Bin 413 -> 0 bytes .../images/xfn/xfn-friend-met.png | Bin 435 -> 0 bytes .../microformats/images/xfn/xfn-friend.png | Bin 413 -> 0 bytes .../microformats/images/xfn/xfn-me.png | Bin 385 -> 0 bytes .../images/xfn/xfn-sweetheart-met.png | Bin 402 -> 0 bytes .../images/xfn/xfn-sweetheart.png | Bin 390 -> 0 bytes .../add-ons/microformats/microformats.css | 147 ------- .../add-ons/rtl-support/core/base-rtl.css | 92 ----- .../add-ons/rtl-support/core/iehacks-rtl.css | 37 -- .../rtl-support/core/slim_base-rtl.css | 15 - .../rtl-support/core/slim_iehacks-rtl.css | 8 - .../navigation/nav_shinybuttons-rtl.css | 49 --- .../navigation/nav_slidingdoor-rtl.css | 44 --- .../rtl-support/navigation/nav_vlist-rtl.css | 62 --- htdocs/yaml/central_draft.css | 27 -- htdocs/yaml/core/base.css | 223 ----------- htdocs/yaml/core/iehacks.css | 365 ------------------ htdocs/yaml/core/print_base.css | 98 ----- htdocs/yaml/core/slim_base.css | 50 --- htdocs/yaml/core/slim_iehacks.css | 47 --- htdocs/yaml/core/slim_print_base.css | 16 - htdocs/yaml/debug/debug.css | 197 ---------- htdocs/yaml/debug/images/grid_pattern.png | Bin 29833 -> 0 bytes htdocs/yaml/debug/images/warning_iehacks.png | Bin 2301 -> 0 bytes htdocs/yaml/markup_draft.html | 71 ---- .../images/shiny_buttons/background.png | Bin 508 -> 0 bytes .../shiny_buttons/background_active.png | Bin 538 -> 0 bytes .../images/sliding_door/round/bg.gif | Bin 82 -> 0 bytes .../images/sliding_door/round/left.png | Bin 2352 -> 0 bytes .../images/sliding_door/round/left_on.png | Bin 1457 -> 0 bytes .../images/sliding_door/round/right.png | Bin 818 -> 0 bytes .../images/sliding_door/round/right_on.png | Bin 432 -> 0 bytes .../navigation/images/vlist/square/node.gif | Bin 174 -> 0 bytes .../images/vlist/square/node_minus.gif | Bin 174 -> 0 bytes .../images/vlist/square/node_plus.gif | Bin 174 -> 0 bytes .../images/vlist/square/subnode.gif | Bin 107 -> 0 bytes .../images/vlist/square/subnode_minus.gif | Bin 107 -> 0 bytes .../images/vlist/square/subnode_plus.gif | Bin 107 -> 0 bytes htdocs/yaml/navigation/nav_shinybuttons.css | 93 ----- htdocs/yaml/navigation/nav_slidingdoor.css | 118 ------ htdocs/yaml/navigation/nav_vlist.css | 123 ------ htdocs/yaml/patches/patch_layout_draft.css | 29 -- htdocs/yaml/patches/patch_nav_vlist.css | 60 --- htdocs/yaml/print/print_003_draft.css | 56 --- htdocs/yaml/print/print_020_draft.css | 56 --- htdocs/yaml/print/print_023_draft.css | 62 --- htdocs/yaml/print/print_100_draft.css | 56 --- htdocs/yaml/print/print_103_draft.css | 61 --- htdocs/yaml/print/print_120_draft.css | 61 --- htdocs/yaml/print/print_123_draft.css | 62 --- htdocs/yaml/print/print_draft.css | 49 --- htdocs/yaml/screen/basemod_draft.css | 70 ---- htdocs/yaml/screen/content_default.css | 218 ----------- htdocs/yaml/screen/forms.css | 253 ------------ htdocs/yaml/screen/images/button_gray.png | Bin 428 -> 0 bytes htdocs/yaml/screen/images/button_red.png | Bin 428 -> 0 bytes htdocs/yaml/screen/images/button_yellow.png | Bin 428 -> 0 bytes 88 files changed, 3396 deletions(-) delete mode 100644 htdocs/css/my_layout.css delete mode 100644 htdocs/css/patches/patch_my_layout.css delete mode 100644 htdocs/css/screen/basemod.css delete mode 100644 htdocs/css/screen/content.css delete mode 100644 htdocs/images/bg_blue.png delete mode 100644 htdocs/images/bg_col_left.png delete mode 100644 htdocs/images/bg_col_right.png delete mode 100644 htdocs/images/gfxborder/border_bottom.gif delete mode 100644 htdocs/images/gfxborder/border_left.gif delete mode 100644 htdocs/images/gfxborder/border_right.gif delete mode 100644 htdocs/images/gfxborder/border_top.gif delete mode 100644 htdocs/images/gfxborder/corner_bl.gif delete mode 100644 htdocs/images/gfxborder/corner_br.gif delete mode 100644 htdocs/images/gfxborder/corner_tl.gif delete mode 100644 htdocs/images/gfxborder/corner_tr.gif delete mode 100644 htdocs/yaml/add-ons/microformats/images/external_link.gif delete mode 100644 htdocs/yaml/add-ons/microformats/images/hcalendar.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/hcard.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-geo.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hatom.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-haudio.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hcalendar-add.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hcalendar-download.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hcalendar.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hcard-add.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hcard-download.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hcard.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-hresume.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-rel-tag.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/icon-xfn.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/xfn/xfn-colleague-met.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/xfn/xfn-colleague.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/xfn/xfn-friend-met.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/xfn/xfn-friend.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/xfn/xfn-me.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/xfn/xfn-sweetheart-met.png delete mode 100644 htdocs/yaml/add-ons/microformats/images/xfn/xfn-sweetheart.png delete mode 100644 htdocs/yaml/add-ons/microformats/microformats.css delete mode 100644 htdocs/yaml/add-ons/rtl-support/core/base-rtl.css delete mode 100644 htdocs/yaml/add-ons/rtl-support/core/iehacks-rtl.css delete mode 100644 htdocs/yaml/add-ons/rtl-support/core/slim_base-rtl.css delete mode 100644 htdocs/yaml/add-ons/rtl-support/core/slim_iehacks-rtl.css delete mode 100644 htdocs/yaml/add-ons/rtl-support/navigation/nav_shinybuttons-rtl.css delete mode 100644 htdocs/yaml/add-ons/rtl-support/navigation/nav_slidingdoor-rtl.css delete mode 100644 htdocs/yaml/add-ons/rtl-support/navigation/nav_vlist-rtl.css delete mode 100644 htdocs/yaml/central_draft.css delete mode 100644 htdocs/yaml/core/base.css delete mode 100644 htdocs/yaml/core/iehacks.css delete mode 100644 htdocs/yaml/core/print_base.css delete mode 100644 htdocs/yaml/core/slim_base.css delete mode 100644 htdocs/yaml/core/slim_iehacks.css delete mode 100644 htdocs/yaml/core/slim_print_base.css delete mode 100644 htdocs/yaml/debug/debug.css delete mode 100644 htdocs/yaml/debug/images/grid_pattern.png delete mode 100644 htdocs/yaml/debug/images/warning_iehacks.png delete mode 100644 htdocs/yaml/markup_draft.html delete mode 100644 htdocs/yaml/navigation/images/shiny_buttons/background.png delete mode 100644 htdocs/yaml/navigation/images/shiny_buttons/background_active.png delete mode 100644 htdocs/yaml/navigation/images/sliding_door/round/bg.gif delete mode 100644 htdocs/yaml/navigation/images/sliding_door/round/left.png delete mode 100644 htdocs/yaml/navigation/images/sliding_door/round/left_on.png delete mode 100644 htdocs/yaml/navigation/images/sliding_door/round/right.png delete mode 100644 htdocs/yaml/navigation/images/sliding_door/round/right_on.png delete mode 100644 htdocs/yaml/navigation/images/vlist/square/node.gif delete mode 100644 htdocs/yaml/navigation/images/vlist/square/node_minus.gif delete mode 100644 htdocs/yaml/navigation/images/vlist/square/node_plus.gif delete mode 100644 htdocs/yaml/navigation/images/vlist/square/subnode.gif delete mode 100644 htdocs/yaml/navigation/images/vlist/square/subnode_minus.gif delete mode 100644 htdocs/yaml/navigation/images/vlist/square/subnode_plus.gif delete mode 100644 htdocs/yaml/navigation/nav_shinybuttons.css delete mode 100644 htdocs/yaml/navigation/nav_slidingdoor.css delete mode 100644 htdocs/yaml/navigation/nav_vlist.css delete mode 100644 htdocs/yaml/patches/patch_layout_draft.css delete mode 100644 htdocs/yaml/patches/patch_nav_vlist.css delete mode 100644 htdocs/yaml/print/print_003_draft.css delete mode 100644 htdocs/yaml/print/print_020_draft.css delete mode 100644 htdocs/yaml/print/print_023_draft.css delete mode 100644 htdocs/yaml/print/print_100_draft.css delete mode 100644 htdocs/yaml/print/print_103_draft.css delete mode 100644 htdocs/yaml/print/print_120_draft.css delete mode 100644 htdocs/yaml/print/print_123_draft.css delete mode 100644 htdocs/yaml/print/print_draft.css delete mode 100644 htdocs/yaml/screen/basemod_draft.css delete mode 100644 htdocs/yaml/screen/content_default.css delete mode 100644 htdocs/yaml/screen/forms.css delete mode 100644 htdocs/yaml/screen/images/button_gray.png delete mode 100644 htdocs/yaml/screen/images/button_red.png delete mode 100644 htdocs/yaml/screen/images/button_yellow.png diff --git a/htdocs/css/my_layout.css b/htdocs/css/my_layout.css deleted file mode 100644 index 6ed84e0..0000000 --- a/htdocs/css/my_layout.css +++ /dev/null @@ -1,22 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework - * (en) central stylesheet - * (de) zentrales Stylesheet - * - * @creator YAML Builder V1.2b (http://builder.yaml.de) - * @file my_layout.css - * @-yaml-minver 3.1 - * - */ - -/* import core styles | Basis-Stylesheets einbinden */ -@import url(../yaml/core/base.css); - -/* import screen layout | Screen-Layout einbinden */ -@import url(../yaml/navigation/nav_shinybuttons.css); -@import url(screen/basemod.css); -@import url(screen/content.css); - -/* import print layout | Druck-Layout einbinden */ -@import url(../yaml/print/print_draft.css); diff --git a/htdocs/css/patches/patch_my_layout.css b/htdocs/css/patches/patch_my_layout.css deleted file mode 100644 index b99f062..0000000 --- a/htdocs/css/patches/patch_my_layout.css +++ /dev/null @@ -1,47 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework - * (en) IE patch stylesheet - * (de) IE-Anpassungs-Stylesheet - * - * @creator YAML Builder V1.2b (http://builder.yaml.de) - * @file patch_my_layout.css - * @-yaml-minver 3.1 - */ - -/* Layout independent adjustments | Layout-unabhängige Anpassungen */ -@import url(../../yaml/core/iehacks.css); - -/* Layout-dependent adjustments | Layout-abhängige Anpassungen */ -@media screen, projection -{ - /** - * Bugfix for IE 3-Pixel-Jog Bug - * - * @bugfix - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid yes - */ - - * html #col3 {height: 1%} - * html #col1 {margin-right: -3px} - * html #col3 {margin-left: 24%} - - /** - * min-width/max-width workaround for IE - * - * @workaround - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid no - */ - - * html .page_margins { - /* Fallback if JavaScript is disabled */ - width: auto; - - /* JS-Expression for min-/max-width simulation */ - width: expression((document.documentElement && document.documentElement.clientHeight) ? ((document.documentElement.clientWidth < 740) ? "740px" : ((document.documentElement.clientWidth > (90 * 16 * (parseInt(this.parentNode.currentStyle.fontSize) / 100))) ? "90em" : "auto" )) : ((document.body.clientWidth < 740) ? "740px" : ((document.body.clientWidth > (90 * 16 * (parseInt(this.parentNode.currentStyle.fontSize) / 100))) ? "90em" : "auto" ))); - } -} diff --git a/htdocs/css/screen/basemod.css b/htdocs/css/screen/basemod.css deleted file mode 100644 index 4fd166a..0000000 --- a/htdocs/css/screen/basemod.css +++ /dev/null @@ -1,127 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework - * (en) stylesheet for screen layout - * (de) Stylesheet für das Bildschirm-Layout - * - * @creator YAML Builder V1.2b (http://builder.yaml.de) - * @file basemod.css - * @-yaml-minver 3.1 - */ - -@media screen, projection -{ - /*-------------------------------------------------------------------------*/ - - /* (en) Marginal areas & page background */ - /* (de) Randbereiche & Seitenhintergrund */ - body { background: #3b69ad none; padding: 10px 0; } - - /* Layout Alignment | Layout-Ausrichtung */ - .page_margins { margin: 0 auto; } - - /* Layout Properties | Layout-Eigenschaften */ - .page_margins { width: auto; min-width: 740px; max-width: 90em; background: #fff; } - .page { padding: 10px 15px 10px 10px; } - #header { padding: 45px 2em 1em 20px; color: #000; background: #fff; } - #topnav { color: #aaa; background: transparent; } - #nav { overflow:hidden; } - div.hlist { } - #main { margin: 10px 0; background: #fff; } - #footer { padding: 10px 20px; color:#666; background: #f9f9f9; border-top: 5px #efefef solid; } - - /* (en) navigation: horizontal adjustment | (de) horizontale Ausrichtung */ - #nav ul { margin-left: 20px; } - - /*-------------------------------------------------------------------------*/ - - /** - * (en) Formatting content container - * (de) Formatierung der Inhalts-Container - * - */ - - #col1 { float: left; width: 40%} - #col1 { float: left } - #col2 { display:none} - #col3 { width: auto; margin: 0 0 0 40%; border-left: 1px #ddd dotted } - #col1_content { padding: 0 10px 0 20px } - #col3_content { padding: 0 20px 0 10px } - - /*-------------------------------------------------------------------------*/ - - .page_margins { - border: 0 none; - background-image: url(../../images/gfxborder/border_left.gif); - background-repeat:repeat-y; - background-position:left; - } - - .page { - border: 0 none; - margin: 0 0 0 5px; padding: 10px 15px 10px 10px; - background-image: url(../../images/gfxborder/border_right.gif); - background-repeat:repeat-y; - background-position:right; - } - - - #border-top { - overflow:hidden; - width: auto; - height: 20px; - font-size:0; - margin-bottom: -15px; - background-image: url(../../images/gfxborder/border_top.gif); - background-repeat:repeat-x; - background-position:top left; - } - - #border-bottom { - overflow:hidden; - width: auto; - height: 20px; - margin-top: -15px; - font-size:0; - background-image: url(../../images/gfxborder/border_bottom.gif); - background-repeat:repeat-x; - background-position:bottom left; - } - - #edge-tl { - float:left; - width: 20px; - height: 20px; - font-size:0; - background-image: url(../../images/gfxborder/corner_tl.gif); - background-position: top left; - } - - #edge-tr { - position:relative; /* IE Fix | z-index */ - float:right; - width: 20px; - height: 20px; - font-size:0; - background-image: url(../../images/gfxborder/corner_tr.gif); - background-position: top right; - } - - #edge-bl { - float:left; - width: 20px; - height: 20px; - background-image: url(../../images/gfxborder/corner_bl.gif); - background-position: bottom left; - } - - #edge-br { - position:relative; /* IE Fix | z-index */ - float:right; - width: 20px; - height: 20px; - background-image: url(../../images/gfxborder/corner_br.gif); - background-position: bottom right; - } - -} diff --git a/htdocs/css/screen/content.css b/htdocs/css/screen/content.css deleted file mode 100644 index 97bef3e..0000000 --- a/htdocs/css/screen/content.css +++ /dev/null @@ -1,225 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) Uniform design of standard content elements - * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - * @appdef yaml - */ - -@media all -{ - /** - * Fonts - * - * (en) global settings of font-families and font-sizes - * (de) Globale Einstellungen für Zeichensatz und Schriftgrößen - * - * @section content-global-settings - */ - - /* (en) reset font size for all elements to standard (16 Pixel) */ - /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */ - html * { font-size: 100.01%; } - - /** - * (en) reset monospaced elements to font size 16px in all browsers - * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen - * - * @see: http://webkit.org/blog/67/strange-medium/ - */ - - textarea, pre, code, kbd, samp, var, tt { - font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier; - } - - /* (en) base layout gets standard font size 12px */ - /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */ - body { - font-family: Arial, Helvetica, sans-serif; - font-size: 75.00%; - color: #444; - } - - /*--- Headings | Überschriften ------------------------------------------------------------------------*/ - - h1,h2,h3,h4,h5,h6 { - font-family: "Times New Roman", Times, serif; - font-weight:normal; - color:#222; - margin: 0 0 0.25em 0; - } - - h1 { font-size: 250%; } /* 30px */ - h2 { font-size: 200%; } /* 24px */ - h3 { font-size: 150%; } /* 18px */ - h4 { font-size: 133.33%; } /* 16px */ - h5 { font-size: 116.67%; } /* 14px */ - h6 { font-size: 116.67%; } /* 14px */ - - /* --- Lists | Listen -------------------------------------------------------------------------------- */ - - ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em; } - ul li { list-style-type: disc; } - ul ul li { list-style-type: circle; } - - ol li { list-style-type: decimal; } - ol ol li { list-style-type: lower-latin; } - - li { margin-left: 0.8em; line-height: 1.5em; } - - dt { font-weight: bold; } - dd { margin: 0 0 1em 0.8em; } - - /* The above broke ExtJS's Tabs, so fix em */ - .x-tab-strip-wrap li { - list-style-type: none; - } - - /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */ - - p { line-height: 1.5em; margin: 0 0 1em 0; } - - blockquote, cite,q { - font-family: Georgia, "Times New Roman", Times, serif; - font-style:italic; - } - blockquote { margin: 0 0 1em 1.6em; color: #666; } - - strong,b { font-weight: bold; } - em,i { font-style: italic; } - - pre, code, kbd, tt, samp, var { font-size: 100%; } - pre, code { color: #800; } - pre { line-height: 1.5em; margin: 0 0 1em 0; } - kbd, samp, var { color: #666; } - var { font-style: italic; } - - acronym, abbr { - border-bottom: 1px #aaa dotted; - font-variant: small-caps; - letter-spacing: .07em; - cursor: help; - } - - sub, sup { font-size: 91.6667%; } - - hr { - color: #fff; - background:transparent; - margin: 0 0 0.5em 0; - padding: 0 0 0.5em 0; - border:0; - border-bottom: 1px #eee solid; - } - - /*--- Links ----------------------------------------------------------------------------------------- */ - - a { color: #4D87C7; background:transparent; text-decoration:none; } - a:visited { color: #036; } - - a:focus, - a:hover, - a:active { color:#182E7A; text-decoration:underline; } - - /* --- images (with optional captions) | Bilder (mit optionaler Bildunterschrift) ------------------ */ - - p.icaption_left { float:left; display:inline; margin: 0 1em 0.15em 0; } - p.icaption_right { float:right; display:inline; margin: 0 0 0.15em 1em; } - - p.icaption_left img, - p.icaption_right img { padding:0; border: 1px #888 solid; } - - p.icaption_left strong, - p.icaption_right strong { display:block; overflow:hidden; margin-top: 2px; padding: 0.3em 0.5em; background: #eee; font-weight: normal; font-size: 91.667%; } - - /** - * ------------------------------------------------------------------------------------------------- # - * - * Generic Content Classes - * - * (en) standard classes for positioning and highlighting - * (de) Standardklassen zur Positionierung und Hervorhebung - * - * @section content-generic-classes - */ - - .highlight { color: #f60; } - .dimmed { color: #888; } - - .info { background: #f8f8f8; color: #666; padding: 10px; margin-bottom: 0.5em; font-size: 91.7%; } - - .note { background: #efe; color: #040; border: 2px #484 solid; padding: 10px; margin-bottom: 1em; } - .important { background: #ffe; color: #440; border: 2px #884 solid; padding: 10px; margin-bottom: 1em; } - .warning { background: #fee; color: #400; border: 2px #844 solid; padding: 10px; margin-bottom: 1em; } - - .float_left { float: left; display:inline; margin-right: 1em; margin-bottom: 0.15em; } - .float_right { float: right; display:inline; margin-left: 1em; margin-bottom: 0.15em; } - .center { display:block; text-align:center; margin: 0.5em auto; } - - /** - * ------------------------------------------------------------------------------------------------- # - * - * Tables | Tabellen - * - * (en) Generic classes for table-width and design definition - * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen - * - * @section content-tables - */ - - table { width: auto; border-collapse:collapse; margin-bottom: 0.5em; border-top: 2px #888 solid; border-bottom: 2px #888 solid; } - table caption { font-variant:small-caps; } - table.full { width: 100%; } - table.fixed { table-layout:fixed; } - - th,td { padding: 0.5em; } - thead th { color: #000; border-bottom: 2px #800 solid; } - tbody th { background: #e0e0e0; color: #333; } - tbody th[scope="row"], tbody th.sub { background: #f0f0f0; } - - tbody th { border-bottom: 1px solid #fff; text-align: left; } - tbody td { border-bottom: 1px solid #eee; } - - tbody tr:hover th[scope="row"], - tbody tr:hover tbody th.sub { background: #f0e8e8; } - tbody tr:hover td { background: #fff8f8; } - - /** - * ------------------------------------------------------------------------------------------------- # - * - * Miscellaneous | Sonstiges - * - * @section content-misc - */ - input, textarea { - border: 1px solid #CCCCCC; - } - /** - * (en) Emphasizing external Hyperlinks via CSS - * (de) Hervorhebung externer Hyperlinks mit CSS - * - * @section content-external-links - * @app-yaml-default disabled - */ - - /* - #main a[href^="http://www.my-domain.com"], - #main a[href^="https://www.my-domain.com"] - { - padding-left: 12px; - background-image: url('your_image.gif'); - background-repeat: no-repeat; - background-position: 0 0.45em; - } - */ -} diff --git a/htdocs/images/bg_blue.png b/htdocs/images/bg_blue.png deleted file mode 100644 index 191735f04811f3e3960a0dc729e703ed97bb8a05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1332 zcmWmCc~H`67zc26-O6mrrqK>h6j8{7BM=o7x#ae)bj!$+6pd)nvOM@H`lHmc#4D`C zlrpQ;GPB$)HtoQTnP%DAX47PyWo>G9v>kUwNrQcv`MlrvJMa7a`P8K*bJu(Lcpwmn z^?V*X9o(J>#J5@QZlKlsi2}goR?OsQy1Tni&ZPVa{zR#wOpf@}3$f<8Nb_8*c_D(I zi{NL%+NZ+WXTq9sLCv_Z=BYqEE>Ms0tAQs1kX283(9b*-VB}T;kGY^!JWg_XlvF;N zRQ`xlHp(e`m{c~(KKYPy@*(@gPwY})gasUbz&iGTb$o<*>;d!GeP#(T%qRx#F+fq? zOLQ4Z{9%ZG^lswOyL1IGm;fBPlW=4(UVb}4ekcC$?fAn3@kIl)qJCOoKdoqhTG&sO z{TNqpi&}6iF8^j+{;jw}H)CCH#7g^Or8i>ouE*r{#T>j&ap|Sx0@o-9dZTl%Mehf$ zk|hSRE5vyxIzNC=L+%rE@HNxkgX?XcM-Dmgse`&?oRx!%lO@w zaXT;JcU{8myok%Z7zJc>L}hkFr31Q1AnihAnl2)>JtFl&L`r)^N?SOP+!~(Twq4vB zE^gf}YS}Jq#tHx}R@jUYXfb@CDU5d>!)prTo(toi4@){1>e7hjG=_2-(d@Hm7H}p6 zU^av>8bX+7P>co?qaKwA)CJRl)4`x5oDOn16%>C8Nz(+;G)O8ONQIG9O<-JYU>qD6 zTN@Z#69B}h11Rc%m>PeI+MiPGA6@N7uJR*6z9h(xROPz^^4+2GAp(`YAPE&dgvxFB zif#DvtvH};8_1}#p7iKBux4wI^0JE&h;^G>=Nrp=)e3m@E8%37WGD`ml;$d>2u7ab zfE1Y|Q%Xw}%A#TpG@wF9+p$Z2PcQ+H`D$iO$5IDm;Cz^pCa1)w3T-83+IH16OrEu3J~){(&{eauPU~zk)0>w)TkKBM;=JkW9uH^y$Mt`&3}CHJ+(&QN zsW$7Im)l!b@@)?6$F(C6djb;8dh!;rc29mOcEO5ze}(3hTOx@@{){9nr^jYR=AakC zZ4M#~)s82Eh&y*&6nFr)1^M{RXLzDo9nyZ$E+-hK^QIfd<{5M4+T}SfM_}Ic+1IUO^UP1|iFwf{p3dmj7q7dI zT9lhc$*{HUb-j5{`ckB+vY4n46f!3iNrj>rO7Mclu)5{L0QW|U&bXm38f}c~3)Q{t zw!K9zzTv+yReB3lQl+HT9GS6id9NFrrNvB67|%Uumx?)N_UIB qA#I6+`G6D6uEJU+Ra0AnrTXKHzkd7n?YCF2-T>JzUw(b@;>+{rU!On! z^6c5?Cr@5IfByOD)6b6|e|q%jXF4<0>wbmPX2>({S08?AT^bQ@=Z zM`SSr1Gf+eGhVt|_Xj8_R^l2_;#`!PSdy8arx22vo62Blq;F`UZ(yu#O8C?}TpMHM$`19k(pYK2Xc=!It`}aTI zy?gie-H$hKzrTI^_6-PpfA#v?>(}32z54d@)wdTfzrJ|!^*IQAdG#C!zC3&W<>|A} zPoI8%^5pZAr=K4K$tO=9J^u9Q(Wl3cA3u8Z=;5PJ4Oe0 zF;Jx8q2%%n!EaXj`f*O=E@~|L_Rl{xck{Nu$uoZcuWr%r>RMT<)_(h$mfov1-wx_+ z4t>2nH0z=6Q4@*P6D2wpzNof6Z+SiR+O4u>Pfdf5&DgbKUr5uZZMNp`J&LRv+0BqvBc~2Yr@eP!pt-JBOd^r%;4$j=d#Wzp$P!0y+J|h4FI*iDewRQ diff --git a/htdocs/images/gfxborder/border_left.gif b/htdocs/images/gfxborder/border_left.gif deleted file mode 100644 index ebbb3b073d88a0539fcfd693d524f622668840e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmZ?wbhEHbWM!yeSj50!6gf@Xx6wRtv1RHiCEGLx7*PDl0%q!fNRV0vW=jhu$5VM* z%~M;xgyn30ub`f{B(3hTz;kY~PUnS&l_5&gFDwt4 I!N6b*0R5XJcmMzZ diff --git a/htdocs/images/gfxborder/border_right.gif b/htdocs/images/gfxborder/border_right.gif deleted file mode 100644 index 6d8259ce1bfa559f715dc36c149fe0e798d6c3d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmZ?wbhEHbWM!yeSj50!6gf@Xx6wRtv1RHiCEGLx7*PDl0%q!fNRV0vW=ju7qf>cX z%~M;xgyn30ub`f{B(3hTz;kY~PUnS&l_5&gFDwt4 I!N6b*0R6focmMzZ diff --git a/htdocs/images/gfxborder/border_top.gif b/htdocs/images/gfxborder/border_top.gif deleted file mode 100644 index fa997089328025dbefb9d4b96e1ae68f17d2fc71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 116 zcmZ?wbhEHbtYBbeSj50!6gf@Xx6wRtv1RHiCEGLx7*PDl0%q!fNRV0vW=o4*cm5fi z@?5=F>Gj#&{}VL&QZkt`R;|l|h4FItCDcJx3 diff --git a/htdocs/images/gfxborder/corner_bl.gif b/htdocs/images/gfxborder/corner_bl.gif deleted file mode 100644 index 4f10b57102d0a37f9ba816c7ffeb30d4ff7834ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmZ?wbhEHblw^=(I3mqpp0w05b){kWBxUf$@%p@D7ZiAAnIBj*fx()QgYC$ki#94vJkiA+8XA%wNewT5|8J0x z;$slzV&Y+Ck?iU1>z9;b6lD+;;^5{Ln>}alJTa+BeC+%T3~b^nSFK(nzHt49jhi+q HGFSrugxOk{ diff --git a/htdocs/images/gfxborder/corner_br.gif b/htdocs/images/gfxborder/corner_br.gif deleted file mode 100644 index 526f19fa9b4e2bed2bff6914b152576585d475a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmZ?wbhEHblw^=(I3mqpp0w05b){kWBxU5(^b diff --git a/htdocs/images/gfxborder/corner_tr.gif b/htdocs/images/gfxborder/corner_tr.gif deleted file mode 100644 index 6e359359db494c3a7dc2f0e773658b94d2ca1d88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmZ?wbhEHblw^=(I3mqpp0w05b){kWBxU{OQ&f{^`GEb zctAiyjiH^*d2Q7C8IDYo7HTN5pH1`8n|)TY@rk0{?(+g{Oc&~In|B^+s@u=c!OK=! zn=To;zb^-@=pyOQe@AS-EiajI~qN&zZG+ J#VkbzYXAowV}k$y diff --git a/htdocs/yaml/add-ons/microformats/images/external_link.gif b/htdocs/yaml/add-ons/microformats/images/external_link.gif deleted file mode 100644 index 4b101cae4f52e0cc36362f909a1719852869ef53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 66 zcmZ?wbhEHb`&EqYiI;gYGFSruHh~fl diff --git a/htdocs/yaml/add-ons/microformats/images/hcalendar.png b/htdocs/yaml/add-ons/microformats/images/hcalendar.png deleted file mode 100644 index 5cf931acc46d0a627e33d43d077c959d54631333..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 633 zcmV-<0*3vGP)Hb$q^8>vZlei|vOjvJBAw3_v*#UamKojV z!JfWceY6Ud%>lX3hiaV%iMBPt^D+4N?32Gen$HNr)s@uYvgYj1W0eGSs|;|U6szDD zgRC%#zy_zoYJs>3|NsA<)C{=nB4m~YmAFlHtqqR5IG4jauHzb!$pWL;5OAdmc&`kF zya%Gx7>mONyznJvnFg80I;h)eW1?6gq%FV*mgE32;bR za{vGf5&!@T5&_cPe*6Fc03UQkSaefwW^{L9a%BKbVPkS{ZDnL>VIW3na%FdKa%*!S zIJIcfcmMzaD@jB_R49>+&x=mNFcb#ht_NNiNVy&i&|LSa7jbn%!sPaqoF-8bCfYdY8>u7; z;u{_@Hw?q(DHlTFRM4Uy>6zFm2quPGLdS!_2c>!2?QWQx10syEk_7H0r38Kez%)ug TQ9cAH00000NkvXXu0mjfZb2Jy diff --git a/htdocs/yaml/add-ons/microformats/images/hcard.png b/htdocs/yaml/add-ons/microformats/images/hcard.png deleted file mode 100644 index f102f51ec35fa0bd3892818dfb6bb709013c251f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 673 zcmV;S0$%-zP)m2Xq?Nc$Zlei}#RRM17mm9)dZr?4mKojV z!KcG&xzC5e^D%w23Y*OoW|;=~`0Ui-vclDsgRC&-?9a339dMu&rrQ#9s|<{?Kc2o^ zW0eGnzy_DYJAt?f|NsA%%mt&^5V-6jb*&Aq;~J640+YWzWR?YRr3z}D2aC5hpVbX` zuMCB}2b#|ai^B!H@FkhXI-=AVe5@m=-4$Pt0<`EKtlc4;)(D-?6)C%CUH||932;bR za{vGf5&!@T5&_cPe*6Fc03UQkSaefwW^{L9a%BKbVPkS{ZDnL>VIW3na%FdKa%*!S zIJIcfcmMzaQ%OWYR49?1kqvKxFc5}Y1XOBUx4Qz?p=KY7Mo_2Qn9KhE-&zZz!z|g@ znl%1|O#2`Ipj}JPM`?dNZb=70fXn3)hoiJ8Hm~jI ze6g@}4~J>-w0Zul3$fyVqjT)_3~k}Z+bYcy00^6{vDb{bGW6YDMPp%A6{wClQrhfJ zl4cA}Nq2C+-@D%n4#edU!L&4OlIhUo0MtZlVe1+k>yG5>bq8m&-R}OzXnT4lDlefu z2_6FTe4ud@DJqo&Wd=#bIZTwL-|z%)w@uo<6ZzJnGK_W3MPec*&d$5tF5-*TYPC8! zm%x9d6*%UU`7@mb*PEbPOXbD2^NRMFvF$k~5)hhwYM+xl%d$bO%XTIjn4&^6i8aj` z&;&%}*xv++p-wDqK5sgGHyT`f_)R1)Swj;-+S8a{)E34sT1ZmzJ#C|G00000NkvXX Hu0mjf14S^g diff --git a/htdocs/yaml/add-ons/microformats/images/icon-geo.png b/htdocs/yaml/add-ons/microformats/images/icon-geo.png deleted file mode 100644 index daf497c79c26d83db9719bdc00730fa58d44a091..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4707 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 diff --git a/htdocs/yaml/add-ons/microformats/images/icon-hatom.png b/htdocs/yaml/add-ons/microformats/images/icon-hatom.png deleted file mode 100644 index d7662e7753ecb3b64f79a44ad78effe4412e576c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 713 zcmeAS@N?(olHy`uVBq!ia0vp^vOp}v!3-oPNUOd8QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%9SHCVas9fv@cV-7@9UhuR!M&? zk@&GE;>%>Uugi>n-#z-ZM)g~l@7H3nFGZqX=IVZHl=-^Q;P1PKKMp7Tm>v18P2uNU z(_g3ZelD^4+Nb($tIwwy8ebOZf1RfF^YrpBGqu0(ZvWPy_~+TB57V4JcPjpUb?4vL z4_}rT{rmpm*DCw3JxX8KM1P#F@pY2=k3P*$^Zh^0wElT4L^R``$U zhCi=v{m^Ujbwlp=71lrI$A9Qo{xm`LYq`YtZq*-?b&nl8_J^sY1Lzlrk|4iephijn z!=dVpE({Ee&YmugAr-fLCUqAz83?!rceZt~=!CGk3dn~96xNF9hW!7(eph!`l^V}< z%R6UUTJOGHZDNsh`5dQ8C9imPT;~=w_DMR!us|YMH4)A`fbT~;o>>fNQp+7WR){@Ptb!Ruzr zG%gjl)Me|foGs`-yL6M!lFM(W^R1riU*>T{c+2G(N^f)W)dfnYW!QHH+)6k-W08fy zos4D94;Pmnx)69(Zg;G&rJu%`yK4@Z&9UtZ)7-he@xuKjMJ?MGJv-CJm);gs!&tAg zL&$Nxp89oJo=Hols!VTuJugps`613rUw+!h)ie114{u;(*b!h<%oY?}28d z+FEF7bOZT$h$iXg?%sRnj^E5|_9uxy4|?G+ckj-e?>lF{bB?IJdJp&v(vH!FX&dn0 zKl8LP+DPH(^mRc{19%Dj>&l|A)yT2S*WoeH8Jf z(-65bqdtLbF>*rtd(bA33BB9_j*f!gRx_FM6plQv@W z1Y34f;fWPsw~(|e6~so38eSq?gtZhs&%O(P`#vXu$t&&jE|(066`wz2)46csQ5&H@ z_z-lofb5Sdg33PBzZ$V1T|&|^nfUz(pF4%#!#^Y3I|98h$9gNluRPKQn7PR;WnDrt zN;1xMeV%Q!f#k+{S04S_ko{im>RhJxYLWMxvq+)m;K%SP!!3a5%{|bwmmw=pz~8YS z8KX>p_<$ITY->)*y3$8=l5`ZiD`ENDwwWqR#=IMKn+_(%r)_#~Q!vHl^s4bMAqRKx zK!W7k)6mnGSz{8}FP|a4@~KsUFpLdgM{^K9%c+!a|Ng5UtPz_?KjE-=((WQ7ozUWC zMY6Gna&;?P>1X?W|7yO8t5ZzBy3iVJ1TNbK9tJi&@QrzP6?SbJCyOxCMK;Z((Tp}D zKwC=6nzk!T#3;Yc@wUk6mFm`LyJcQD7LVy#Jd9fWzYp<01sDLKF%psGjs>m&0000< KMNUMnLSTaD^$HjO diff --git a/htdocs/yaml/add-ons/microformats/images/icon-hcalendar-add.png b/htdocs/yaml/add-ons/microformats/images/icon-hcalendar-add.png deleted file mode 100644 index 8068a86ed7e68bc5cd63425488a08f8dec2c6c2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1106 zcmV-Y1g-mtP)+7+;w-2geMz4&0^B$A#z4Pw%5RSd#U|nY?>U-~l(cUht67<^gH#TBtfyCIT;}xYa81xR zJm38;lcdwgoj;G*j&978o27oK1gB7tuB|LChNLA54HL18^@awhrYY}|q;@r9Ba}47 zt7#OjUk?>I!Su#PY<&GSSsFJ^3}SI?6p5amP_L5Dq2uj$ZcCi5lPAOZ>e&7ZOfjAaL+5RB0oKixuK83z1r-Q?XfC6 zzb$)%L<%yM<=3GhSt1=zKZBMB9>n7J6R@c{2G3ghTO8GHe)mCi&ap?z%wa8j~?=NHLc=(!0Uvz}C2d$+ zdZa;Fr^`{JQPr!U-W-6f;@TC3<(qM%X2KA*BWqkx=&WK1MXF_6*!*jIR{1}E;(rM+ Y0OB}VCu{sU+yDRo07*qoM6N<$g0H3+EC2ui diff --git a/htdocs/yaml/add-ons/microformats/images/icon-hcalendar-download.png b/htdocs/yaml/add-ons/microformats/images/icon-hcalendar-download.png deleted file mode 100644 index b3a6e317e318c3798d8b2bbdfcf99923d8078a3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1118 zcmV-k1flzhP)za&_01Z=2vHLQr3jVMQmiaLt=5`sx9)Dc-JO{`<2iRa!-@@ez^OgPxs(i)95ZG=%;3PsnU zXc`a-$x(ju$o~YXS5<)FIB*FN0`3A}+i-nY7OYGLlfy$8yErgUT$^b(ytnRwmS}8U zBaqL-B>Y=3YHR=2u9cKvb$bU?-6+1+|NRF{y1k}hHH2*~npo7-gp&4$q1V^TTM0UC zZukna0|OB0^rE?rBbIfz*rrV&(oQCgxQ+|k^hnu#6+3q#($N8HY6^BD0X-IzM5Rw` zM{(;GBu<=wIX)h2rVGa-Cs&HuSvj((6sAxlB1d0Bnr1L5Y|HdCih`;gJ0xN9i$0{z zoI#|m4HZv5h2K6r0;8b;HGB4=`o(?t_3&ZX)6*WA@NR0RQfN4MaMA51y1QXiR4me| zlGHRMj5TWz-MSTjeESU&eSNU9Sqg|Q6Gl+7%#Dp|$-j3b~ggwH7iqOi7cy5y#xbM6iexOe-(P+IQcPrSZ$r9?bNgLm9c9*X79@4<0)7 zm&wz7{CMzviaX0Dt=VNwa6d-I+vGo#l~ONnIM7en^uO|O*@5u;G*U+99FOa|-1l~uUh)rFR0 z$L>kUwvw6}A`N-2F1+dFsV`;R>UZx6bax{{wN}36AxwRBD$pq*6-8B5xb*zqC4{VF z8_#iseaF2v#fFh0S6=_<2r8*$*1x$Q#;R3;&82dx-u5^)yxooT=qSc}KM8Dndfv2n zX=0ms%l^l+9F|=5+|ZS36yavg~WvmsC)VuNv223k%?c&&pjVw z>hx)dyXvuUQzi+QmEF_ELa&<1q+jRrxo0&Ba-mEQU6xpmEVuXG>OafFcTD<*E$nTS z`_VAH270&%A%l7*bs|;QB3(5LFk^lez07*qoM6N<$f}-aYYXATM diff --git a/htdocs/yaml/add-ons/microformats/images/icon-hcalendar.png b/htdocs/yaml/add-ons/microformats/images/icon-hcalendar.png deleted file mode 100644 index cbbf7ba9c41f540a03019edd71f82aef720c1d6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 707 zcmeAS@N?(olHy`uVBq!ia0vp^vOp}v!3-oPNUOd8QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%9SHCVas9Mx`LpFK?q+9gH8I-d z?Rh#V@K#F7ty!}^-Mjm&vtzHV^(sx(b5Rk$K7G30)_Tm_>+6%pFOMJlFlWyBr1-VE zng?B-pO%+hjEelaY15&U#D|52oAk9`@7;STHTh&o$+Ha`?yX+6&Pex2PUg9$rsq}F zhdta+M})qcJb9O+!@H|jHX0dRO^DxRY4IR0Z@szk$=sZq>1lT}GLHNE{r~^}MRoNC zOOx&9rk7%)-<>)A>B9MAVPTI;iodL1cOfGDTzt&2W5;^(KUx9(;!qOg7Yx)w31B!> zz0rk%fzj5}#WAGfR?WoQMNI|*4$3oDI5Z?(@(^Vd4RLV2*0pxg|Nr54uUx-1`OLj@ zK5E9^a{nG({?}b=Q6o_Qe$KVm3LG4Y+i#~B?Yz5ztLf_s-}aP=^Xnql`kh~V`13PG z&-L%u@8C+R&nR<0He=)Ak~@jbj?LE`URix>?C)E{9=|m3P|wSijoZ>pgT?Pj9~BIC z=2LyGkXIOGyd^bKOFZV*%5A*~Z0i;YlrLpl8^qVE_}Xge3hw(g*D3_e`z~v;>n^?0 z?U=OaW~=@g7>IH+9Blo^#dW+N^OdB2g@ZfUm6~1!Zo}GEj>6_c zTRwF2o}K&KqHEE|yC*XrpY(db_W$m`egFVdQ&MBb@0Ku7V AfB*mh diff --git a/htdocs/yaml/add-ons/microformats/images/icon-hcard-add.png b/htdocs/yaml/add-ons/microformats/images/icon-hcard-add.png deleted file mode 100644 index 07d0de790e03c7b935b474498b3e799abd707892..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 707 zcmeAS@N?(olHy`uVBq!ia0vp^vOp}v!3-oPNUOd8QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%9SHCVab0j-Xv@u_uESz8&hc!! zCAIW|Z}Wc6na5pP_H(u#?tZG>cZ75EL#0{Q z1Xf-OU3pn_=`E32=lMGha?ZTKzvzb0v{QUXUYMPG<2dm+&)iFb2c8=)yCXd5Bv;!R z&Icb3PCCukdziEP5J&rdj{pDvue>L^@}AiH@Auz*d+_?}&89tU-+sPZdsSl68Qw+b zg*My?>_5Rh>!RSfXN&efGhBUF`ot^C_JbV#$GMl^5k7Y8n4wMmI-p-1N`m}?fu>Oc z7!Fl$bYWm%wDojx45_$PGx2s&lYu~6@|vy*0tXe;1+}|oJdmsodi8sMXnCQI`P{n0 zN9{jvwB8+AbiZoLfAKBb_fOXC-FGbc_)nint8>q%8Qf% zT_9Dn<=P^V!2Sz2zVDP5ew`$EuJ+tkhQ|5NoGxj9N9XDHA*ryQ#loVHWaJKH_Fa6EXvfK8WlC^{6RKH5tg6qH_k~K zZ>d#a-Vm#@+)S0pE7Y8p%(gaOady+Jva+-HmHV$r=ClMKJR^C- z#I)~x+N+Eu8(t(Y-o*BL7yH$sf`!w(Umm`-&hf>qyF5{58MDi;CE2RnTdQ&CtiG#a zfJuw(jt9DP{Z?lgS?;y5oU0aU%KNbCf82lf21bS_8;s>H7CsXMMhb(ctDnm{r-UW| DXT@m` diff --git a/htdocs/yaml/add-ons/microformats/images/icon-hcard-download.png b/htdocs/yaml/add-ons/microformats/images/icon-hcard-download.png deleted file mode 100644 index 42888ae99c039a882be1c42ba658ab2a148e8540..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 721 zcmeAS@N?(olHy`uVBq!ia0vp^vOp}v!3-oPNUOd8QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%9SHCVaeedk=JwmAGtTjJ9TwYu zTe^8a$C8`EOE3D)IPTJVfb--l>y>v!r=H<$-^a1wy3qWq0)0m~@4h>@>xtIphssNC zi_ALDKkX9Vq*J^d2RV+uG+T8kV&(<@xt9dby>VQ0U1;?cv5CidmfaDaaguM=HG#>e zxVsLrPq@hY?bo}>XZV`-vTwL9Iq#;>)GPdLXE^`=|G)B{=*oLy@4nw}-_NoCxxs^v z2bWwBUUN@o!CAp`&lWAeBRunxK>u;>?!#Q`?*y*6Bzo-Fu>||Xzd*k@lmz(&15Ka= zFdVAh=)%Cj=1*&d-U;t{nfh{uDwhy z+jP=A#(&)u0s9|8YmTh) zl?X@@aqJI>P4s<#dEq+l*mTyKH4PVd7wHPDR$jU%dd8t$9ZHPSVhQahzOZ~NIVzH) zlFE|a&UR9#Mf!O`gET?QgaBkvFjyD=dMf6&>r5u&fV)qlU*zCVy?v+9&cbA`z zr<~$!u^xn4TuQt%^R#(Ycg%GQbgvuA9z z64bfYA=Y;6+x8iEqgn-b>OniRl*+{6(!ovHlir{M1H7P{iL#6uWY#AiC5=(QXw%T^0owqNs?d z8zELjMNz9LVnL0z6+8$xpVI43D zNge+E$dWuKIeKzazE_-n7-qnp#@bN4VO9hoBLqVj&{;HH%|eGJbZ^#_&`;3JPCKyS zxQ-Ot3}t^~Xk=o7uvQ!Ncc#837>`E{m`)L9sfd{vv4{rS35JJ9 zOXnGMORU;}ZLIfF<0Npa6NygQB3tH!QAQ4YW{a~&K*LquVu=yQos}fRIutxD| zffcBCBla{TTCk_-4l;!_?tMATo=LAw%awmPR@V2nws*g*5>&*ak>9DjuGqYowMtUv;m>6G_=GblA!$ys&JsTAn?WoIOaa~dhkM~12(Vy)`nK(z;@ZkXwuh98t31-a) zWntsbzfxF2hgxO~`Jyc;FA{y07lN1lT{!U|Ea#Tldr?=l5|%ZY`uuLLU}H}8CaFqi zQu16MgD+G;FJ(BMem{e7pceaAQaqyVSP(skMe%ldn4jsKR7qN9|ClpvzR^Qn1pD}DN!^zB($d~8`D;a#EcpAj!MMJu9PdOk{Kt;qEk0?@-95B zpe6WZ%E+gxDbBKE;lC_gOz*C=EHUVVl8xPlnDN#NFBcy%=y58eBn31cF$@F^jXIDg zvgfM)sY@NrobsAb4TFReOA057t9rBTsJgUhHYr90;{A8gq^}tG({@DskB|5t0R{kJ W*7$L5dd^n>0000{(JaZG%Q-e|yQz{EjrrH1%9SHCVah-OFZ`M_TH(zfz@8{Tb zBX{Lp(bZQYc0AUYcv5P~1>tSCq*@Pfb{-Nt`)bb2^L%|rxR%@$KJjq&=0{2kZwPgs z;+lGv_w*avXJ5|UdAoPXEs+T)xv#ug^X=EWr5Al?p3$CrU7-6Ad*d$l{m=A|KIxfq zinsj`&yg2q6OZ%kzuUd$uIITojy;DtKm2^SF!H50jun+$l4N5{QtXj-ihA~JQmhTS7I=jHeRN9%4_xqbKD ze`ihi{?XfMqPRWE_{shhpQX|(dB6R<^;&m&W>x9kt65KXT{nrH#cE1dGYUiGq)84+KZ9$u}$1&4D z?YJ4Qw^lNCO$j>At)zO%A=$WN#w+n;hu+35Qxan={N&Y~8a0ERh1I5Wf10+bf+PCa zj1NpVS8w-Ontfw}+3vMxjtB^~Z;WUZe)4E`kdf5h!Z$Y$R>|M?;b6A0;9S0X&rP2L zPi9DS$8r^^zE_v?*wrB)E4t6;iH>$}BE#dzMGo^)ZvJ&=4WAe_E%a4)tBt;Nq`vNJ zJKp_HSqTi4<%{3HD4rB${C};wNbsG6$w!}mPS}2X|DCP(-?Kg6agg`l?!WqsYz#-8 W^iO`!{vHF2B?eDdKbLh*2~7Y-UwCK$ diff --git a/htdocs/yaml/add-ons/microformats/images/icon-rel-tag.png b/htdocs/yaml/add-ons/microformats/images/icon-rel-tag.png deleted file mode 100644 index 3d380d278651b0e6e1fc880b35adac399a078aca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 720 zcmeAS@N?(olHy`uVBq!ia0vp^vOp}v!3-oPNUOd8QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%9SHCVam|`?Exh|m`;HgJSw~ze z&nQOiQB6AJ+I0Ee^RG*HJuIDeSvq>ZaluLb%%hKAf7eJnu>Ir<+v;6Cfe{<=-igD2eb>bP36>hZBF?@X%B>E@iU zYPxj!?#HfGcf%&%K6&G#Udd^>&>fm72i;pPU%dU^yYrex#?i(_x75>)`1RcQ|NnpZ zl-vHj*E<&9n6mlN)HS#3=3V!1Jb&=q%hd;;wJy4T?AS48gHNVFzc`cx`2_>jQvw(c zRc~}*U|{s}ba4!+xK%PKv-psLK-;M0&*B$e-|H)vz z`?t}7Gu%6UIC^7bw*O>LGcnLlaXOr56}vX<^wUq74907gw;6GA?!LRux$Q^%n_UJ9 zTk0!2lmhRYhjvJuj1~>^wZ9Vawbt{Fn&G#C)RdY7c0N+cPdEisJf)`Z2o;@lSc)$? zK98lR_k)Vs?ZY?CSFKVJlzX+=*kWHj6Ms&8mBF;2UpL&Zy3c4`^@mB*#;w);xMRT~ zvwPjYRkk{Krt3bFUMNy=itUDxW?*VZa^vY2Z*z;cn~CQ!zUNE+v5H4i_d=iHky}i5 zizTvdx6L;?9V4{0qiTI_EE!m{q%`WzKpYxw^RIgAwP8v)>Q?{ms8)_kZmJ3_sSHIe+MTG#wa2 N44$rjF6*2UngAnwb;SSx diff --git a/htdocs/yaml/add-ons/microformats/images/icon-xfn.png b/htdocs/yaml/add-ons/microformats/images/icon-xfn.png deleted file mode 100644 index 8c48029beb35bb9aa9b141d70f21aa4b89fd417f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 721 zcmeAS@N?(olHy`uVBq!ia0vp^vOp}v!3-oPNUOd8QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%9SHCVab0j-`0ckl&HFjK4vTNQ zB{lOLU+Y1x=@a|VlK91c_ zwWpkx{`TwLtV?p;huAkiR6hKuXX!1G3CFlPk8s_2yLZwl?ipt+x8BZPcP(qxWzo5p z1eRX(opF+{=P>8Qv%KftIL^7CQ@@*I$_cGmmjxDH7drB!Zqa$6qc6?>|Np=Ij&RFf z_7!)<_CGURcU9u>bCVUwaL+yCfk=7?tFLMXT8MgRbJ{jvlpGy-o4Ix`qi%jZFVAVoJrwMJga3(j!En^ z`^#s@yRmHInY4U8fobv@p3i;GeU7OW<8->;Dm;A^cjH_3m`j;qs+TNV79I0=wz;$? zz(UMt($n3yqYhl_-@VtCcN#0R;YpL%zw1_UFt@Edc=L$fPH9gE<+*8>O?qWx?it>_ zaL;6FVrKDz%O`VhXK=U2yEv`8zD*|VjQzpe+f=XjEV?*RTtx19>rLA;P4ezbPWu?j zi^PibKMUjP{krF(`Oz2b_nP!xxSoDmH$T<)bIJ0|O*#AHt4a>mum7)lfZ_dqBay{q`QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%B?S0{xE{UoZr{1r_nv>%NIY=% z_Qy;2K1H{kfB*THTKs;Ktiua;J)W@s-tRyEZa)6<>FaN&lH;#F{D|$i5Y~L||NsB{ z&cE4v?)AoF&jaetJb(LR*V$KVk365d?a{p#Un}R_xcTJkv17+hrfvNVv`e8R$S)YE z1s`CDiIIK_RJ+2{#WAGfR?dV-zGed+m$@^JzVSYGLG)eyX)6V;pxON!zZ!MTUAQ&y zM&Yt^j9kJ$rcMk0VS7(Fsn+1Lt?U2244FF39O*l~_3q@}`4ibUdH3JBj_YcKKIi|* z{dekc^z63I!v}Bs?V7h@+cagqUFUUoCV83k?|oA&cx%&R!=6b~J*!rqx8+WonQ5k* zbzx^e<1_W{zlsd)`y>B7-(Y5Fy5i}wT`#BIc5h&0xOrc=vXg`VB+$(ap00i_>zopr E07Bv8X#fBK diff --git a/htdocs/yaml/add-ons/microformats/images/xfn/xfn-colleague.png b/htdocs/yaml/add-ons/microformats/images/xfn/xfn-colleague.png deleted file mode 100644 index d79e5256cc43a27c615a06bd95a05cfa1edf70ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&N!3-otS@yI7DVB6cUq=RpYd5a=M;HP5k|nMY zCBgY=CFO}lsSJ)O`AMk?p1FzXsX?iUDV2pMQ*D5X5(0ceT<<>rdhYheV^`m)CG5ZX z_{+P`KPRrguaS7*)rX%ZS%+iV&M(;c=+oEV7w>)wZ9ez^|NnjG-|Rd8dhfZ{`_8@o z{pVk7$NAWf3r;1+4_$h@<;2Um+aEoD`=fHs&49Wy{&lC19Xpo&@0KLcE`^dHzhIzt ze1IV)M*1yK?Q~BU$B>F!IRVjp%?3Q#o{D>3FEO~W`TPE-QVV^3X4T6?mOVN0bb)}V zM#GW|6JiTKvb#2XoI0a)(zP@T!(9f&@vFB-#u!D-%v}4BUz|_8HnxgI-sOr#;qutW zZqd8LPkT!3cz9~@Kaa;7F3P08Vz<9LeUo=`xYV9i>cXYnZT{dG2%YT_E k%siX|n*0tY@)_9}o^0e*b>G1_3+O}!Pgg&ebxsLQ05S^AJOBUy diff --git a/htdocs/yaml/add-ons/microformats/images/xfn/xfn-friend-met.png b/htdocs/yaml/add-ons/microformats/images/xfn/xfn-friend-met.png deleted file mode 100644 index 477f75178a3baaefa6ce105cfd47a8727129db68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 435 zcmeAS@N?(olHy`uVBq!ia0vp^;y}#D!3-on>y{q`QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%B?S0{xW=@f*GN3@;@!_9SKgUq z9$LBo+0Dmae*ONtaMxq?`2APze{w20{{R2~edk~AJ@&gSq_Fs6t z@!0eG&%b^8`g`4x=TkS{-*V#Rt~0OJ9)7mz_>2ALUsuk#aqQSJN2Sjo2Pu>U`2_>b z!3P*(Vx->!)von)aSW-rl{2B2uUUboC0b;wSLVf)zrX*zUlckgdXuAvzWkFak!e~+ z$4?}+N8XrnVu!=jL+`zmKSZTF?Gf8+t;dq0>)`R=*KzUdbCoU5v-evc@8y@AccCKY zsxasIwfVl=9`?1LzmoVoZ~85jo38~dJ|Fuf)_ng{z_;lJrgLu!I4*WwWpC+ilF>Wy z)UNr)>A$agZR-`;Q~&&reLIWy(lt6+$=z#K9nvz?)n{a5XmaFpW7k}M4CrtMPgg&e IbxsLQ06e+iK>z>% diff --git a/htdocs/yaml/add-ons/microformats/images/xfn/xfn-friend.png b/htdocs/yaml/add-ons/microformats/images/xfn/xfn-friend.png deleted file mode 100644 index 60563f678e6bcd8378de50605cdfeb747ce7feec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^LO{&N!3-otS@yI7DVB6cUq=RpYd5a=M;HP5k|nMY zCBgY=CFO}lsSJ)O`AMk?p1FzXsX?iUDV2pMQ*D5X5(0ceT<<>n8r^pO#rvNci3g5c zez))Z8{>>aHy?jdi{HO;|Fd7e|9<-Vd;X3`SMGoM|NsBK^RM@wd%f@6>y-zd?Z5EG zspR_niG+{9|rbuIIQ=X9>(SK3kbb7`fCXDaie$!F8gZro|c;8^GWvYF$7Lr%m~rFFO8 zJl8kT+i>Hn<(6;N4_R1Z&wO)uyoF=pKjE^}3G$X-xKg+l)ty+q!=Rz5toi$+qG$OF mU!^>3IdMiqD7Kc{fMHi7kLCmOt<7uaS6Q-}yKD&c9Yq z*uVGO>zj|i>^t{bBjG@7$N5iRf5&xRxcmHzdcuKw&%ZjAo>;i+@ux4pO|y?o*>Hc) z+1Ih17fxP#ck{{DirF`uN{+8P^4uir$lAltjvYJpkgZ%4Xp3A)kY6y+7Tkd0jf6}b zP-U~Hi(^Q|t(g8uJ{Cm|7tMgEx24~%{*EsWc-+qHsi@!T85ky*_D$zecZOPQ#)`L& zG4lBg*N@FuaxO!o>`F{=!|eYPcINT=K6zck_TbV437x5Bd;A_hOl<$&cV=pz?CQf( z`&aHh$5(K0W}Vfhr6m)8?afPG;Hs(Jz4YnH>Wxpteybl~IC_-1pFhsZ4(J>PPgg&e IbxsLQ09&QMMgRZ+ diff --git a/htdocs/yaml/add-ons/microformats/images/xfn/xfn-sweetheart-met.png b/htdocs/yaml/add-ons/microformats/images/xfn/xfn-sweetheart-met.png deleted file mode 100644 index 6982fa467d883e5f70f0599014a0540aa740d6b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 402 zcmeAS@N?(olHy`uVBq!ia0vp^;y}#D!3-on>y{q`QY`6?zK#qG*KS<#k1zuAB}-f* zN`mv#O3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%B?S0{xc;g-y7$~`r;_8UvHSiW zc^1`r?!mLK8VLt}IIa8MaPn8-p&O6B{Qvap)7Re%cRl{$xB377|NG9r*?8>v-wUsQ zMs7FBI`U`7qfN(OY&-d~V$O{}3$J&sxV3r4<+X>O{hojI*s){R%i>o6?NTTS@(Tv) z#RnK-Vx->!)%JM0IEGZ*>Y4DG@2~=g+eN>GtJ^lctNZ--{-zy%e=q9X^yGQ+!k zol<!)i!v#IEGZ*D(Sz;*KEMU!fR+YLAYxE&;R@1NQG>j+9jO5_~Mhqm04br z*AtDMv@^x)mj!!GD^I)k-RYa3c2?sp&o1{<29@j**iQU>^`M0;#gzfx@Mbbd4zRTJQEMYjn&*r#{#~&0^P#k M>FVdQ&MBb@01eN@qW}N^ diff --git a/htdocs/yaml/add-ons/microformats/microformats.css b/htdocs/yaml/add-ons/microformats/microformats.css deleted file mode 100644 index 05661bf..0000000 --- a/htdocs/yaml/add-ons/microformats/microformats.css +++ /dev/null @@ -1,147 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) YAML-Addon: Microformats Support - * (de) YAML-Addon: Unterstützung für Microformate - * - * @note Many thanks to Michael Jendryschik (http://jendryschik.de/) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* hCards + hCalendars */ - -.vcard, -.vevent { - border: 2px solid #e0e7b8 !important; - padding: 30px 5px 5px 5px !important; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; - border-radius: 8px; - margin: 5px 0 !important; - /* small IE-Fix for background images */ - zoom:1; -} - -span.vcard, -span.vevent { - padding: 2px 1px 2px 70px !important; - margin: 0 2px 0 !important; -} - - -.vcard { background:#f8f8ec url(images/hcard.png) 5px 5px no-repeat !important; } -.vcard a { padding-left: 11px; background:url(images/external_link.gif) top left no-repeat; color: #679A06; } -.vcard .adr { display: block; margin: 0.5em 0; } -.vcard .email { font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier; } - -.vevent { background:#f8f8ec url(images/hcalendar.png) 5px 5px no-repeat !important; } -.vevent a { padding-left: 11px; background:url(images/external_link.gif) top left no-repeat; color: #679A06; } -.vevent p { margin-bottom:0.5em; } - -.vevent .description { display: block; margin-top: 1em; } -.vevent .location { display: block; color: #679A06; } -.vevent .summary { display: block; color: #679A06; font-weight: bold; } - -/* XFN relationship */ - -a.xfnRelationship { - padding-right: 26px; background: url(images/xfn/xfn-small.png) no-repeat right; -} - -a.xfnRelationship[rel~="colleague"], -a.xfnRelationship[rel~="co-worker"] -{ - padding-right: 21px; - background: url(images/xfn/xfn-colleague.png) no-repeat right; -} - -a.xfnRelationship[rel~="met"] -{ - padding-right: 32px; - background: url(images/icon-xfn.png) no-repeat right; -} - - -a.xfnRelationship[rel~="colleague"][rel~="met"], -a.xfnRelationship[rel~="co-worker"][rel~="met"] -{ - padding-right: 26px; - background: url(images/xfn/xfn-colleague-met.png) no-repeat right; -} - -a.xfnRelationship[rel~="friend"] -{ - padding-right: 21px; - background: url(images/xfn/xfn-friend.png) no-repeat right; -} - -a.xfnRelationship[rel~="friend"][rel~="met"] -{ - padding-right: 26px; - background: url(images/xfn/xfn-friend-met.png) no-repeat right; -} - -a.xfnRelationship[rel~="sweetheart"] -{ - padding-right: 21px; - background: url(images/xfn/xfn-sweetheart.png) no-repeat right; -} - -a.xfnRelationship[rel~="sweetheart"][rel~="met"] -{ - padding-right: 26px; - background: url(images/xfn/xfn-sweetheart-met.png) no-repeat right; -} - -a.xfnRelationship[rel~="child"] -{ - padding-right: 21px; - background: url(images/xfn/xfn-child.png) no-repeat right; -} - -a.xfnRelationship[rel~="parent"] -{ - padding-right: 21px; - background: url(images/xfn/xfn-parent.png) no-repeat right; -} - -a.xfnRelationship[rel~="spouse"] -{ - padding-right: 21px; - background: url(images/xfn//xfn-spouse.png) no-repeat right; -} - -a.xfnRelationship[rel~="me"] -{ - padding-right: 21px; - background: url(images/xfn/xfn-me.png) no-repeat right; -} - - -/* rel-tag */ - -a[rel~="tag"] -{ - padding-right: 32px; - background: url(images/icon-rel-tag.png) no-repeat right; -} - - -/* geo */ - -abbr[class~="geo"] -{ - padding-right: 32px; - background: url(images/icon-geo.png) no-repeat right; - border: none; - cursor: default; -} diff --git a/htdocs/yaml/add-ons/rtl-support/core/base-rtl.css b/htdocs/yaml/add-ons/rtl-support/core/base-rtl.css deleted file mode 100644 index 2e85ca4..0000000 --- a/htdocs/yaml/add-ons/rtl-support/core/base-rtl.css +++ /dev/null @@ -1,92 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) YAML core RTL stylesheet - * (de) YAML Basis-RTL-Stylesheet - * - * Don't make any changes in this file! - * Your changes should be placed in any css-file in your own stylesheet folder. - * - * @note: Many thanks to Alexander Hass (http://www.yaml-fuer-drupal.de/) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /** - * @section browser reset - * @see http://www.yaml.de/en/documentation/css-components/base-stylesheet.html - * - * Changing direction of text flow, paddings & margins ... - */ - - option { padding: 0 0.4em 0 0; } - - body { - text-align: right; - direction: rtl; - } - - ul, ol, dl { margin: 0 1em 1em 0; } - li { - margin-left: 0; - margin-right: 0.8em; - } - - dd { margin: 0 0.8em 1em 0; } - blockquote, cite { margin: 0 0.8em 1em 0; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * @section base layout | Basis Layout - * @see http://www.yaml.de/en/documentation/css-components/base-stylesheet.html - * - * Changing positions of #topnav container when paced within #header - */ - - #header #topnav { - left: 10px; - right: 0; - text-align: left; - } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) skip links cause large horizontal scrollbars in RTL mode in several browsers - * (de) skip links erzeugen große horziontale Scrollbalken in verschiedenen Browserin im RTL-Modus - * - * @workaround - * @affected Firefox, Safari, IE 5.x - IE7 - * @css-for all - * @valid yes - */ - - .skip, .hideme, .print, dfn { - left: 0; - } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * @section miscellaneous - * - * (en) CSS-class for ltr-content (left to right) within a rtl website - * (de) Eine CSS-Klasse für ltr-Inhalte (left to right) innerhalb einer rtl-Seite - */ - - .text-ltr { - direction: ltr; - text-align: left; - } -} diff --git a/htdocs/yaml/add-ons/rtl-support/core/iehacks-rtl.css b/htdocs/yaml/add-ons/rtl-support/core/iehacks-rtl.css deleted file mode 100644 index 3c2bea7..0000000 --- a/htdocs/yaml/add-ons/rtl-support/core/iehacks-rtl.css +++ /dev/null @@ -1,37 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) YAML core RTL stylesheet - structure-independent bugfixes of IE/Win CSS-bugs - * (de) YAML Basis-RTL-Stylesheet - Strukturunabhängige Bugfixes von CSS-Bugs des IE/Win - * - * Don't make any changes in this file! - * Your changes should be added to a separate patch-file. - * - * @note: Many thanks to Alexander Hass (http://www.yaml-fuer-drupal.de/) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /** - * (en) Workaround for misplaced floating navigation lists - * (de) Workaround behebt deplatzierte floatende Navigationselemente - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - #nav { direction:ltr; } - #nav * { direction:rtl; } -} diff --git a/htdocs/yaml/add-ons/rtl-support/core/slim_base-rtl.css b/htdocs/yaml/add-ons/rtl-support/core/slim_base-rtl.css deleted file mode 100644 index e1ba4c3..0000000 --- a/htdocs/yaml/add-ons/rtl-support/core/slim_base-rtl.css +++ /dev/null @@ -1,15 +0,0 @@ -@charset "UTF-8"; -/* "Yet Another Multicolumn Layout" v3.1 (c) by Alexander Hass, Dirk Jesse (http://www.yaml.de) -* $Revision: 343 $ $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ */ -@media all { -option{padding:0 .4em 0 0} -body{text-align:right;direction:rtl} -ul,ol,dl{margin:0 1em 1em 0} -li{margin-left:0;margin-right:.8em} -dd{margin:0 .8em 1em 0} -blockquote,cite{margin:0 .8em 1em 0} -#header #topnav{left:10px;right:auto;text-align:left} -.skip,.hideme,.print,dfn{left:0} -.text-ltr{direction:ltr;text-align:left} -} - diff --git a/htdocs/yaml/add-ons/rtl-support/core/slim_iehacks-rtl.css b/htdocs/yaml/add-ons/rtl-support/core/slim_iehacks-rtl.css deleted file mode 100644 index 771a25c..0000000 --- a/htdocs/yaml/add-ons/rtl-support/core/slim_iehacks-rtl.css +++ /dev/null @@ -1,8 +0,0 @@ -@charset "UTF-8"; -/* "Yet Another Multicolumn Layout" v3.1 (c) by Alexander Hass, Dirk Jesse (http://www.yaml.de) -* $Revision: 343 $ $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ */ -@media all -{ -#nav{direction:ltr} -#nav *{direction:rtl} -} \ No newline at end of file diff --git a/htdocs/yaml/add-ons/rtl-support/navigation/nav_shinybuttons-rtl.css b/htdocs/yaml/add-ons/rtl-support/navigation/nav_shinybuttons-rtl.css deleted file mode 100644 index cb6248e..0000000 --- a/htdocs/yaml/add-ons/rtl-support/navigation/nav_shinybuttons-rtl.css +++ /dev/null @@ -1,49 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) RTL Horizontal list navigation "Shiny Buttons" - * (de) RTL Horizontale Navigationsliste "Shiny Buttons" - * - * @note: Many thanks to Alexander Hass (http://www.yaml-fuer-drupal.de/) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /** - * (en) Workaround disappearing list elements on hover - * (de) Workaround verhindert das Verschwinden der Listenelemente beim Hovern - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - .hlist * { direction:ltr !important; } - .hlist a, .hlist strong { direction:rtl !important; } - - /*------------------------------------------------------------------------------------------------------*/ - - .hlist ul { - position:relative; - float:right; - /* (en) Left margin of the first button */ - /* (de) Abstand des ersten Buttons vom linken Rand */ - margin-left: 0; /* Reset LTR */ - margin-right: 50px; - } - - .hlist ul li { - float: right; - } -} diff --git a/htdocs/yaml/add-ons/rtl-support/navigation/nav_slidingdoor-rtl.css b/htdocs/yaml/add-ons/rtl-support/navigation/nav_slidingdoor-rtl.css deleted file mode 100644 index 96d1423..0000000 --- a/htdocs/yaml/add-ons/rtl-support/navigation/nav_slidingdoor-rtl.css +++ /dev/null @@ -1,44 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) RTL Horizontal list navigation based on "Sliding Door II" from von "A List Apart" - * (de) RTL Horizontale Navigationsliste basierend auf "Sliding Door II" von "A List Apart" - * - * @note: Many thanks to Alexander Hass (http://www.yaml-fuer-drupal.de/) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /** - * (en) Workaround disappearing list elements on hover - * (de) Workaround verhindert das Verschwinden der Listenelemente beim Hovern - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - .hlist * { direction:ltr !important; } - .hlist a, .hlist strong { direction:rtl !important; } - - /*------------------------------------------------------------------------------------------------------*/ - - .hlist ul { - padding: 0 50px 0 0; - } - - .hlist li { - float: right; - } -} diff --git a/htdocs/yaml/add-ons/rtl-support/navigation/nav_vlist-rtl.css b/htdocs/yaml/add-ons/rtl-support/navigation/nav_vlist-rtl.css deleted file mode 100644 index 1197cb2..0000000 --- a/htdocs/yaml/add-ons/rtl-support/navigation/nav_vlist-rtl.css +++ /dev/null @@ -1,62 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) Vertical RTL list navigation "vlist" - * (de) Vertikale RTL-Navigationsliste "vlist" - * - * @note: Many thanks to Alexander Hass (http://www.yaml-fuer-drupal.de/) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /* Menu Title */ - h6.vlist { - padding-left: 0px; - padding-right: 10%; - } - - .vlist { text-align: right; } - .vlist li { float:right; } - - /* Level 1 */ - .vlist a, - .vlist strong, - .vlist span { - padding-left: 0px; - padding-right: 10%; - } - - /* Level 2 */ - .vlist li ul li a, - .vlist li ul li strong, - .vlist li ul li span { - padding-left: 0px; - padding-right: 20%; - } - - /* Level 3 */ - .vlist li ul li ul li a, - .vlist li ul li ul li strong, - .vlist li ul li ul li span { - padding-left: 0px; - padding-right: 30%; - } - - /* Level 4 */ - .vlist li ul li ul li ul li a, - .vlist li ul li ul li ul li strong, - .vlist li ul li ul li ul li span { - padding-left: 0px; - padding-right: 40%; - } -} diff --git a/htdocs/yaml/central_draft.css b/htdocs/yaml/central_draft.css deleted file mode 100644 index 6cc2c1b..0000000 --- a/htdocs/yaml/central_draft.css +++ /dev/null @@ -1,27 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) draft for a central stylesheet - * (de) Vorlage für ein zentrales Stylesheets - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import core styles | Basis-Stylesheets einbinden */ -@import url(/yaml/core/base.css); - -/* import screen layout | Screen-Layout einbinden */ -/* @import url(/yaml/navigation/nav_shinybuttons.css); - @import url(/css/screen/basemod.css); - @import url(/css/screen/content.css); */ - -/* import print layout | Druck-Layout einbinden */ -/* @import url(/css/print/print_003.css); */ \ No newline at end of file diff --git a/htdocs/yaml/core/base.css b/htdocs/yaml/core/base.css deleted file mode 100644 index d8c5bbf..0000000 --- a/htdocs/yaml/core/base.css +++ /dev/null @@ -1,223 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) YAML core stylesheet - * (de) YAML Basis-Stylesheet - * - * Don't make any changes in this file! - * Your changes should be placed in any css-file in your own stylesheet folder. - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - - /** - * @section browser reset - * @see http://www.yaml.de/en/documentation/css-components/base-stylesheet.html - */ - - /* (en) Global reset of paddings and margins for all HTML elements */ - /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */ - * { margin:0; padding: 0; } - - /* (en) Correction: margin/padding reset caused too small select boxes. */ - /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */ - option { padding-left: 0.4em; } /* LTR */ - select { padding: 1px; } - - /** - * (en) Global fix of the Italics bugs in IE 5.x and IE 6 - * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6 - * - * @bugfix - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid yes - */ - * html body * { overflow:visible; } - * html iframe, * html frame { overflow:auto; } - * html frameset { overflow:hidden; } - - /* (en) Forcing vertical scrollbars in Netscape, Firefox and Safari browsers */ - /* (de) Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */ - html { height: 100%; margin-bottom: 1px; } - body { - /* (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser */ - /* (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen */ - font-size: 100.01%; - - /* (en) Standard values for colors and text alignment */ - /* (de) Vorgabe der Standardfarben und Textausrichtung */ - color: #000; - background: #fff; - text-align: left; /* LTR */ - } - - /* (en) Clear borders for
and elements */ - /* (de) Rahmen für
und Elemente löschen */ - fieldset, img { border: 0 solid; } - - /* (en) new standard values for lists, blockquote and cite */ - /* (de) Neue Standardwerte für Listen & Zitate */ - ul, ol, dl { margin: 0 0 1em 1em } /* LTR */ - li { - margin-left: 0.8em; /* LTR */ - line-height: 1.5em; - } - - dt { font-weight: bold; } - dd { margin: 0 0 1em 0.8em; } /* LTR */ - - blockquote { margin: 0 0 1em 0.8em; } /* LTR */ - - blockquote:before, blockquote:after, - q:before, q:after { content: ""; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * @section base layout | Basis Layout - * @see http://www.yaml.de/en/documentation/css-components/base-stylesheet.html - * - * |-------------------------------| - * | #header | - * |-------------------------------| - * | #col1 | #col3 | #col2 | - * | 200 px | flexible | 200px | - * |-------------------------------| - * | #footer | - * |-------------------------------| - */ - - #header { position:relative; } - - /* (en) Text Alignment for #topnav content */ - /* (de) Textausrichtung für #topnav Inhalte */ - #topnav { text-align: right; } /* LTR */ - - /* (en) Absolute positioning only within #header */ - /* (de) Absolute Positionierung erfolgt nur innerhalb von #header */ - #header #topnav { - position:absolute; - top: 10px; - right: 10px; /* LTR */ - } - - /* (en) Backup for correct positioning */ - /* (de) Absicherung korrekte Positionierung */ - #header, #nav, #main, #footer { clear:both; } - - /* (en/de) Standard: 200 Pixel */ - #col1 { float: left; width: 200px } - /* (en/de) Standard: 200 Pixel */ - #col2 { float:right; width: 200px } - /* (en) Standard: center column with flexible width */ - /* (de) Standard: Flexible mittlere Spalte */ - #col3 { width:auto; margin: 0 200px } - - /* (en) Preparation for absolute positioning within content columns */ - /* (de) Vorbereitung für absolute Positionierungen innerhalb der Inhaltsspalten */ - #col1_content, #col2_content, #col3_content { position:relative; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * @section clearing methods - * @see http://yaml.de/en/documentation/basics/general.html - */ - - /* (en) clearfix method for clearing floats */ - /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */ - .clearfix:after { - content: "."; - display: block; - font-size:0; - height: 0; - clear: both; - visibility: hidden; - } - - /* (en) essential for Safari browser !! */ - /* (de) Diese Angabe benötigt der Safari-Browser zwingend !! */ - .clearfix { display: block; } - - /* (en) overflow method for clearing floats */ - /* (de) Overflow-Methode zum Clearen der Float-Umgebungen */ - .floatbox { overflow:hidden; } - - /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */ - /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */ - #ie_clearing { display: none; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * @section subtemplates - * @see http://www.yaml.de/en/documentation/practice/subtemplates.html - */ - - .subcolumns { width: 100%; overflow:hidden; } - - /* (en) alternative class for optional support of old Mozilla/Netscape browers */ - /* (de) Alternative Klasse zur optionalen Unterstützung alter Mozilla/Netscape-Brower */ - .subcolumns_oldgecko { width: 100%; float:left; } - - .c50l, .c25l, .c33l, .c38l, .c66l, .c75l, .c62l {float: left; } - .c50r, .c25r, .c33r, .c38r, .c66r, .c75r, .c62r {float: right; margin-left: -5px; } - - .c25l, .c25r { width: 25%; } - .c33l, .c33r { width: 33.333%; } - .c50l, .c50r { width: 50%; } - .c66l, .c66r { width: 66.666%; } - .c75l, .c75r { width: 75%; } - .c38l, .c38r { width: 38.2%; } - .c62l, .c62r { width: 61.8%; } - - .subc { padding: 0 0.5em; } - .subcl { padding: 0 1em 0 0; } - .subcr { padding: 0 0 0 1em; } - - .equalize, .equalize .subcolumns { overflow:visible; display:table; table-layout:fixed; } - .equalize .c50l,.equalize .c25l,.equalize .c33l,.equalize .c38l,.equalize .c66l, - .equalize .c75l,.equalize .c62l,.equalize .c50r,.equalize .c25r,.equalize .c33r, - .equalize .c38r,.equalize .c66r,.equalize .c75r,.equalize .c62r { - display:table-cell; vertical-align:top; - float:none; margin:0; overflow:hidden; - } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * @section hidden elements | Versteckte Elemente - * @see http://www.yaml.de/en/documentation/basics/skip-links.html - * - * (en) skip links and hidden content - * (de) Skip-Links und versteckte Inhalte - */ - - /* (en) classes for invisible elements in the base layout */ - /* (de) Klassen für unsichtbare Elemente im Basislayout */ - .skip, .hideme, .print, dfn { - position: absolute; - left: -1000em; /* LTR */ - top: -1000em; - } - - /* (en) make skip links visible when using tab navigation */ - /* (de) Skip-Links für Tab-Navigation sichtbar schalten */ - .skip:focus, .skip:active { - position: static; - left: 0; - top:0; - } -} diff --git a/htdocs/yaml/core/iehacks.css b/htdocs/yaml/core/iehacks.css deleted file mode 100644 index 676bf7d..0000000 --- a/htdocs/yaml/core/iehacks.css +++ /dev/null @@ -1,365 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) YAML core stylesheet - structure-independent bugfixes of IE/Win CSS-bugs - * (de) YAML Basis-Stylesheet - Strukturunabhängige Bugfixes von CSS-Bugs des IE/Win - * - * Don't make any changes in this file! - * Your changes should be added to a separate patch-file. - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - * @appdef yaml - */ - -@media all -{ - /** - * (en) Debugging: When you see a green background, IE is getting this stylesheet - * (de) Fehlersuche: Hintergrund leuchtet grün, wenn das Stylesheet korrekt geladen wurde - * - * @debug - * @app-yaml-default disabled - */ - - /* body { background: #0f0; background-image: none; } */ - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Forcing vertical scrollbars is not needed in IE (only for Firefox/Netscape/Safari) - * (de) Erzwingen vertikaler Scrollbalken im IE nicht benötigt (nur im Firefox/Netscape/Safari) - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - html { height: auto; margin-bottom:0; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Fixes IE5.x and IE6 overflow behavior of textarea and input elements elements - * (de) Korrigiert das fehlerhafte overflow-Verhalten von textarea und input-Elementen - * - * @workaround - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid no - */ - - * html textarea { overflow:scroll; overflow-x: hidden; } - * html input { overflow: hidden; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Stability fixes with 'position:relative' - * (de) Stabilitätsverbesserungen durch 'position:relative' - * - * @bugfix - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - body { position:relative; } /* Essential in IE7 for correct layout scaling ... */ - * html body { position:static; } /* ... but not for IE5.x and IE6 */ - #main { position: relative; } /* helpful for several problems in older IE versions*/ - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Clearfix Method for containing floats in IE - * (de) Clearfix-Anpassung für diverse IE-Versionen - * - * @workaround - * @see http://www.456bereastreet.com/archive/200603/new_clearing_method_needed_for_ie7/#comment28 - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - .clearfix { display: inline-block; } /* ... especial for IE7 */ - .clearfix { display: block; } /* ... für IE5,IE6,IE7 */ - * html .clearfix { height: 1%; } /* ... für IE5 + IE6/Win | hasLayout aktivieren */ - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Adjustment of .floatbox class for IE - * (de) Anpassung der .floatbox-Klasse für IE - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - .floatbox { width:100%; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Special class for oversized content element - * (de) Spezielle Klasse für übergroße Inhaltselemente - * - * @workaround - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid yes - */ - - .slidebox { - position:relative; - margin-right: -1000px; - height: 1%; - } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en): Bugfix for partially displayed column separators - * (de): Bugfix für unvollständige Darstellung der Spalteninhalte / Spaltentrenner - * - * @bugfix - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid yes - */ - - * html #col1, - * html #col2, - * html #col3 { position:relative; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Preventing several css bugs by forcing "hasLayout" - * (de) Vermeidung verschiedenster Bugs durch Erzwingen von "hasLayout" - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid no - */ - - body { height: 1%; } - #page_margins, #page, .page_margins, .page, #header, #nav, #main, #footer { zoom:1; } /* IE6 & IE7 */ - #page_margins, #page, .page_margins, .page { height: 1%; } /* IE 5.x */ - * html #header, * html #nav, * html #main, * html #footer { width: 100%; } /* IE 5.x & IE6 */ - * html #header, * html #nav, * html #main, * html #footer { wid\th: auto; } /* IE 6 */ - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Disappearing List-Background Bug - * @see http://www.positioniseverything.net/explorer/ie-listbug.html - * - * @bugfix - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid yes - */ - - * html ul, * html ol, * html dl { position: relative; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * List-Numbering Bug - * - * @bugfix - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - body ol li { display:list-item; } - - /** - * Form related bugfixes - * - * @bugfix - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid no - */ - fieldset, legend { position:relative; } - /* global fixes for YAML's form construction set */ - form.yform, - form.yform div, - form.yform div * { zoom:1; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * (en) Workaround for 'collapsing margin at #col3' when using CSS-property clear - * Left margin of #col3 collapses when using clear:both in 1-3-2 (or 2-3-1) layout and right column is the - * longest and left column is the shortest one. For IE6 and IE7 a special workaround was developed - * in YAML. - * - * (de) Workaround für 'kollabierenden Margin an #col3' bei Verwendung der CSS-Eigenschaft clear - * Der linke Margin von #col3 kollabiert bei der Verwendung von clear:both im 1-3-2 (oder 2-3-1) Layout - * wenn gleichzeitig die rechte Spalte die kürzeste und die rechte die Längste ist. Im IE6 und IE7 lässt - * sich der Bug durch eine speziell für YAML entwickelten Workaround umgehen. - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid no - */ - - html #ie_clearing { - /* (en) Only a small help for debugging */ - /* (de) Nur eine kleine Hilfe zur Fehlersuche */ - position:static; - - /* (en) Make container visible in IE */ - /* (de) Container sichtbar machen im IE */ - display:block; - - /* (en) No fix possible in IE5.x, normal clearing used instead */ - /* (de) Kein Fix im IE5.x möglich, daher normales Clearing */ - \clear:both; - - /* (en) forcing clearing-like behavior with a simple oversized container in IE6 & IE7*/ - /* (de) IE-Clearing mit 100%-DIV für IE6 bzw. übergroßem Container im IE7 */ - width: 100%; - font-size:0px; - margin: -2px 0 -1em 1px; - } - - * html #ie_clearing { margin: -2px 0 -1em 0; } - #col3_content {margin-bottom:-2px; } - - /* (en) avoid horizontal scrollbars in IE7 in borderless layouts because of negative margins */ - /* (de) Vermeidung horizontaler Scrollbalken bei randabfallenden Layouts im IE7 */ - html { margin-right: 1px; } - * html { margin-right: 0 } - - /* (en) Bugfix: Essential for IE7 */ - /* (de) Bugfix: Notwendig im IE7 */ - #col3 { position:relative; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * IE z-index-Fix - * brings #col1 and #col2 in front of #col3 - * - * @workaround - * @affected all IE - * @css-for all IE - * @valid yes - */ - - *+html #col3 { z-index: -1; } - * html #col1, * html #col2 { z-index: 1; } - * html #col3 { z-index:auto; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * IE/Win Guillotine Bug - * @see http://www.positioniseverything.net/explorer/guillotine.html - * - * @workaround - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid yes - */ - - * html body a, * html body a:hover { background-color: transparent; } - -} - -@media screen, projection -{ - /** - * (en) IE-Adjustments for content columns and subtemplates - * (de) IE-Anpassung für Spaltencontainer und Subtemplates - * - * Doubled Float-Margin Bug - * @see http://positioniseverything.net/explorer/doubled-margin.html - * - * @bugfix - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - #col1, #col2 { display:inline; } - - .c50l, .c25l, .c33l, .c38l, .c66l, .c75l, .c62l, - .c50r, .c25r, .c33r, .c38r, .c66r, .c75r, .c62r { display:inline; } - - /* Fix for: "Linking to anchors in elements within the containing block" Problem in IE5.x & IE 6.0 */ - * html .equalize, * html .equalize .subcolumns { overflow:visible; display:block; } - .equalize, .equalize .subcolumns { overflow:hidden; display:block; } - - /* transform CSS tables back into floats */ - .equalize .c25l,.equalize .c33l,.equalize .c38l,.equalize .c50l,.equalize .c66l,.equalize .c75l,.equalize .c62l { - float: left; display:inline; - padding-bottom: 32767px; - margin-bottom: -32767px; - } - .equalize .c25r,.equalize .c33r,.equalize .c38r,.equalize .c50r,.equalize .c66r,.equalize .c75r,.equalize .c62r { - float: right; margin-left: -5px; display:inline; - padding-bottom: 32767px; - margin-bottom: -32767px; - } - - .no-ie-padding .c25l,.no-ie-padding .c33l,.no-ie-padding .c38l,.no-ie-padding .c50l,.no-ie-padding .c66l,.no-ie-padding .c75l,.no-ie-padding .c62l, - .no-ie-padding .c25r,.no-ie-padding .c33r,.no-ie-padding .c38r,.no-ie-padding .c50r,.no-ie-padding .c66r,.no-ie-padding .c75r,.no-ie-padding .c62r { - padding-bottom: 0; - margin-bottom: 0; - } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Internet Explorer and the Expanding Box Problem - * @see http://www.positioniseverything.net/explorer/expandingboxbug.html - * - * @workaround - * @affected IE 5.x/Win, IE6 - * @css-for IE 5.x/Win, IE6 - * @valid yes - */ - - * html #col1_content, - * html #col2_content, - * html #col3_content { word-wrap: break-word; } - - /* trigger hasLayout to force containing content */ - .subc, .subcl, .subcr { height: 1%; } - - /* avoid growing widths */ - * html .subc, - * html .subcl, - * html .subcr { word-wrap: break-word; overflow:hidden; } -} - -@media print -{ - /** - * (en) Avoid unneeded page breaks of #col3 content in print layout. - * (de) Vermeiden von unnötigen Seitenumbrüchen beim Ausdruck der Spalte #col3. - * - * @bugfix - * @affected IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - #col3 { height: 1%; } -} diff --git a/htdocs/yaml/core/print_base.css b/htdocs/yaml/core/print_base.css deleted file mode 100644 index 81f4ab9..0000000 --- a/htdocs/yaml/core/print_base.css +++ /dev/null @@ -1,98 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) YAML core stylesheet - print layout - * (de) YAML Core-Stylesheet - Druck Layout - * - * Don't make any changes in this file! - * Your changes should be added to 'print_xyz_draft.css' drafts from 'yaml/print/' folder. - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media print -{ - /** - * @section basic layout preparation - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers */ - /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden */ - body { font-size: 10pt; } - - /* (en) Reset Scrollbar-Fix for FF in screenlayout */ - /* (de) Zurücksetzen des Scrollbar-Fix for FF aus dem Screenlayout */ - html { height: auto; margin-bottom: 0; } - - /* (en) Hide unneeded container of the screenlayout in print layout */ - /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */ - #topnav, #nav, #search { display: none; } - - /* (en) Disable background graphics of links */ - /* (de) Abschalten evlt. vorhandener Hintergrundgrafiken zur Linkkennzeichnung */ - body a[href^="http:"], - body a[href^="https:"] { - padding-left: 0; - background-image: none; - } - - /** - * (en) overflow:hidden Bug in print layouts - * (de) overflow:hidden Bug in Drucklayouts - * - * @bugfix - * @since 3.0 - * @affected FF2.0, FF3.0, IE7 - * @css-for all browsers - * @valid yes - */ - - .floatbox, - .subcolumns, - .subcolums_oldgecko { overflow:visible; display: table; } - - /* (en) Linearising subtemplates */ - /* (de) Linearisierung der Subtemplates */ - .c25l, .c33l, .c38l, .c50l, .c62l, .c66l, .c75l, - .c25r, .c33r, .c38r, .c50r, .c62r, .c66r, .c75r { - width: 100%; margin:0; padding: 0; float:none !important; overflow:visible; display:table !important; - } - .subc, .subcl, .subcr { margin: 0; padding: 0; } - - /* (en) make .print class visible */ - /* (de) .print-Klasse sichtbar schalten */ - .print { position: static; left: 0; } - - /* (en) generic class to hide elements for print */ - /* (de) Allgemeine CSS Klasse, um beliebige Elemente in der Druckausgabe auszublenden */ - .noprint { display:none !important; } - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) Avoid page breaks right after headings */ - /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */ - h1,h2,h3,h4,h5,h6 { page-break-after:avoid; } - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) Preparation for optional column labels */ - /* (de) optionale Spaltenauszeichnung */ - - #col1_content:before, #col2_content:before, #col3_content:before { - content: ""; - color:#888; - background:inherit; - display:block; - font-weight:bold; - font-size:1.5em; - } -} diff --git a/htdocs/yaml/core/slim_base.css b/htdocs/yaml/core/slim_base.css deleted file mode 100644 index 716fa36..0000000 --- a/htdocs/yaml/core/slim_base.css +++ /dev/null @@ -1,50 +0,0 @@ -@charset "UTF-8"; -/* "Yet Another Multicolumn Layout" v3.1 (c) by Dirk Jesse (http://www.yaml.de) -* $Revision: 343 $ $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ */ -@media all { -*{margin:0;padding:0} -option{padding-left:.4em} -select{padding:1px} -* html body *{overflow:visible} -* html iframe,* html frame{overflow:auto} -* html frameset{overflow:hidden} -html{height:100%;margin-bottom:1px} -body{font-size:100.01%;color:#000;background:#fff;text-align:left} -fieldset,img{border:0 solid} -ul,ol,dl{margin:0 0 1em 1em} -li{margin-left:.8em;line-height:1.5em} -dt{font-weight:700} -dd{margin:0 0 1em .8em} -blockquote{margin:0 0 1em .8em} -blockquote:before,blockquote:after,q:before,q:after{content:""} -#header{position:relative} -#topnav{text-align:right} -#header #topnav{position:absolute;top:10px;right:10px} -#header,#nav,#main,#footer{clear:both} -#col1{float:left;width:200px} -#col2{float:right;width:200px} -#col3{width:auto;margin:0 200px} -#col1_content,#col2_content,#col3_content{position:relative} -.clearfix:after{content:".";display:block;font-size:0;height:0;clear:both;visibility:hidden} -.clearfix{display:block} -.floatbox{overflow:hidden} -#ie_clearing{display:none} -.subcolumns{width:100%;overflow:hidden} -.subcolumns_oldgecko{width:100%;float:left} -.c50l,.c25l,.c33l,.c38l,.c66l,.c75l,.c62l{float:left} -.c50r,.c25r,.c33r,.c38r,.c66r,.c75r,.c62r{float:right;margin-left:-5px} -.c25l,.c25r{width:25%} -.c33l,.c33r{width:33.333%} -.c50l,.c50r{width:50%} -.c66l,.c66r{width:66.666%} -.c75l,.c75r{width:75%} -.c38l,.c38r{width:38.2%} -.c62l,.c62r{width:61.8%} -.subc{padding:0 .5em} -.subcl{padding:0 1em 0 0} -.subcr{padding:0 0 0 1em} -.equalize,.equalize .subcolumns{overflow:visible;display:table;table-layout:fixed} -.equalize .c50l,.equalize .c25l,.equalize .c33l,.equalize .c38l,.equalize .c66l,.equalize .c75l,.equalize .c62l,.equalize .c50r,.equalize .c25r,.equalize .c33r,.equalize .c38r,.equalize .c66r,.equalize .c75r,.equalize .c62r{display:table-cell;vertical-align:top;float:none;margin:0;overflow:hidden} -.skip,.hideme,.print,dfn{position:absolute;left:-1000em;top:-1000em} -.skip:focus,.skip:active{position:static;left:0;top:0} -} diff --git a/htdocs/yaml/core/slim_iehacks.css b/htdocs/yaml/core/slim_iehacks.css deleted file mode 100644 index 86a8366..0000000 --- a/htdocs/yaml/core/slim_iehacks.css +++ /dev/null @@ -1,47 +0,0 @@ -@charset "UTF-8"; -/* "Yet Another Multicolumn Layout" v3.1 (c) by Dirk Jesse (http://www.yaml.de) -* $Revision: 343 $ $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ */ -@media all { -html{height:auto;margin-bottom:0;margin-right:1px} -* html textarea{overflow:scroll;overflow-x:hidden} -* html input{overflow:hidden} -body{position:relative;height:1%} -* html body{position:static} -#main{position:relative} -.clearfix{display:block} -* html .clearfix{height:1%} -.floatbox{width:100%} -.slidebox{position:relative;margin-right:-1000px;height:1%} -* html #col1,* html #col2,* html #col3{position:relative} -#page_margins,#page,.page_margins,.page,#header,#nav,#main,#footer{zoom:1} -#page_margins,#page,.page_margins,.page{height:1%} -* html #header,* html #nav,* html #main,* html #footer{width:100%;wid\th:auto} -* html ul,* html ol,* html dl{position:relative} -body ol li{display:list-item} -fieldset,legend{position:relative} -form.yform,form.yform div,form.yform div *{zoom:1} -html #ie_clearing{position:static;display:block;\clear:both;width:100%;font-size:0;margin:-2px 0 -1em 1px} -* html #ie_clearing{margin:-2px 0 -1em} -#col3_content{margin-bottom:-2px} -* html{margin-right:0} -#col3{position:relative} -*+html #col3 {z-index:-1} -* html #col1,* html #col2 {z-index:1} -* html #col3 {z-index:auto} -* html body a,* html body a:hover{background-color:transparent} -} -@media screen,projection { -#col1,#col2{display:inline} -.c50l,.c25l,.c33l,.c38l,.c66l,.c75l,.c62l,.c50r,.c25r,.c33r,.c38r,.c66r,.c75r,.c62r{display:inline} -* html .equalize,* html .equalize .subcolumns{overflow:visible;display:block} -.equalize,.equalize .subcolumns{overflow:hidden;display:block} -.equalize .c25l,.equalize .c33l,.equalize .c38l,.equalize .c50l,.equalize .c66l,.equalize .c75l,.equalize .c62l{float:left;display:inline;padding-bottom:32767px;margin-bottom:-32767px} -.equalize .c25r,.equalize .c33r,.equalize .c38r,.equalize .c50r,.equalize .c66r,.equalize .c75r,.equalize .c62r{float:right;margin-left:-5px;display:inline;padding-bottom:32767px;margin-bottom:-32767px} -.no-ie-padding .c25l,.no-ie-padding .c33l,.no-ie-padding .c38l,.no-ie-padding .c50l,.no-ie-padding .c66l,.no-ie-padding .c75l,.no-ie-padding .c62l,.no-ie-padding .c25r,.no-ie-padding .c33r,.no-ie-padding .c38r,.no-ie-padding .c50r,.no-ie-padding .c66r,.no-ie-padding .c75r,.no-ie-padding .c62r{padding-bottom:0;margin-bottom:0} -* html #col1_content,* html #col2_content,* html #col3_content{word-wrap:break-word} -.subc,.subcl,.subcr{height:1%} -* html .subc,* html .subcl,* html .subcr{word-wrap:break-word;overflow:hidden} -} -@media print { -#col3{height:1%} -} diff --git a/htdocs/yaml/core/slim_print_base.css b/htdocs/yaml/core/slim_print_base.css deleted file mode 100644 index 3d81691..0000000 --- a/htdocs/yaml/core/slim_print_base.css +++ /dev/null @@ -1,16 +0,0 @@ -@charset "UTF-8"; -/* "Yet Another Multicolumn Layout" v3.1 (c) by Dirk Jesse (http://www.yaml.de) -* $Revision: 343 $ $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ */ -@media print { -body{font-size:10pt} -html{height:auto;margin-bottom:0} -#topnav,#nav,#search{display:none} -body a[href^="http:"],body a[href^="https:"]{padding-left:0;background-image:none} -.floatbox,.subcolumns,.subcolums_oldgecko{overflow:visible;display:table} -.c25l,.c33l,.c38l,.c50l,.c62l,.c66l,.c75l,.c25r,.c33r,.c38r,.c50r,.c62r,.c66r,.c75r{width:100%;margin:0;padding:0;float:none!important;overflow:visible;display:table!important} -.subc,.subcl,.subcr{margin:0;padding:0} -.print{position:static;left:0} -.noprint{display:none!important} -h1,h2,h3,h4,h5,h6{page-break-after:avoid} -#col1_content:before,#col2_content:before,#col3_content:before{content:"";color:#888;background:inherit;display:block;font-weight:700;font-size:1.5em} -} diff --git a/htdocs/yaml/debug/debug.css b/htdocs/yaml/debug/debug.css deleted file mode 100644 index 67fd8aa..0000000 --- a/htdocs/yaml/debug/debug.css +++ /dev/null @@ -1,197 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) YAML debugging stylesheet - * (de) YAML Stylesheet zur Fehlersuche - * - * Don't make any changes in this file! - * Your changes should be placed in any css-file in your own stylesheet folder. - * - * @note: Many thanks to Tomas Caspers (http://www.tomascaspers.de/) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /*------------------------------------------------------------------------------------------------------*/ - - /** - * @section layout preparation for debugging - * @see http://www.yaml.de/en/documentation/practice/drafting-and-debugging.html - */ - - /* Adding debugging background */ - body { padding-top: 10px !important; background: transparent url("images/grid_pattern.png") top left no-repeat fixed !important; } - - /* CSS-Warning, if core stylesheet 'iehacks.css' is missing in the layout */ - *+html #ie_clearing { display:block; } /* IE7 */ - * html #ie_clearing { display:block; } /* IE 5.x & 6 */ - - #ie_clearing { - width: 500px; - font-size: 25px; - position:absolute; - top: -2px; - left:0px; - background: url("images/warning_iehacks.png") top left no-repeat; - } - - /** - * @section pixel grid - */ - - .bg_grid { - background-image:url("images/grid_pattern.png") !important; - background-repeat:no-repeat; - background-position:top left !important; - } - - /** - * @section transparency - */ - - .transOFF { -moz-opacity: 1.0; opacity: 1.0; filter: alpha(Opacity=100);} - .trans50, - .transON { -moz-opacity: 0.5; opacity: 0.5; filter: alpha(Opacity=50);} - .trans25 { -moz-opacity: 0.25; opacity: 0.25; filter: alpha(Opacity=25);} - .trans75 { -moz-opacity: 0.75; opacity: 0.75; filter: alpha(Opacity=75);} - - /** - * @section colors - */ - - .bg_red { background-color: #f00 !important;} - .bg_blue { background-color: #00f !important;} - .bg_green { background-color: #0f0 !important;} - - /** - * @visualize semantic structure - * - */ - - div[id] { padding: 0 !important; margin: 0 -1px; border: 1px #000 solid !important; } - div[class] { padding: 0 !important; margin: 0 -1px; border: 1px #000 solid !important; } - - div[id]:before, - div[class]:before { - display:block; - text-align:left; - color: #fff; - padding: 2px; - font: normal 11px "Lucida console", monospace; - } - - div[id]:before { - background: #800; - content: "[div id='"attr(id)"']"; - } - - div[class]:before { - background: #a44; - content: "[div class='"attr(class)"']"; - } - - div[id][class]:before { - background: #800; - content: "[div id='"attr(id)"' class='"attr(class)"']"; - } - - - div[class="floatbox"] { background: #f4f4f4; } - div[class="floatbox"]:before { - display:block; - color: #fff; - padding: 2px; - font: normal 11px "Lucida console", monospace; - background: #66a; - content: "[div class='"attr(class)"']"; - } - - div[class="subcolumns"] { background: #f8f8f8; color: #000 !important; } - div[class="subcolumns"]:before { - display:block; - color: #fff; - padding: 2px; - font: normal 11px "Lucida console", monospace; - background: #444; - content: "[div ."attr(class)"]"; - } - - div[class="subcolumns"] > div:before { - display:block; - color: #fff; - padding: 2px; - font: normal 11px "Lucida console", monospace; - background: #080; - content: "[div ."attr(class)"]"; - } - - div[class="subc"], div[class="subcl"], div[class="subcr"] { background: #eee; } - div[class="subc"]:before, div[class="subcl"]:before, div[class="subcr"]:before { - display:block; - color: #fff; - padding: 2px; - font: normal 11px "Lucida console", monospace; - background: #6a6; - content: "[div ."attr(class)"]"; - } - - h1:before { content: "[h1] "; } - h2:before { content: "[h2] "; } - h3:before { content: "[h3] "; } - h4:before { content: "[h4] "; } - h5:before { content: "[h5] "; } - h6:before { content: "[h6] "; } - - - /* make link attributes href,title visible on hover ... */ - a:hover { color: #fff !important; background: #337; text-align: left;} - a:hover:after { color: #fff; background: #333; content: " (href='" attr(href) "' title='"attr(title)"')"; text-align: left; } - - a[class="skip"] { } - - a[id="navigation"]:before, - a[id="content"]:before { font: normal 11px "Lucida console", monospace; content: "[skip anchor: "attr(id)"]"; padding: 2px !important; } - - a[id="content"]:hover, - a[id="navigation"]:hover { background: #ff0; color: #000; } - - a[id="content"]:hover:after, - a[id="navigation"]:hover:after { content: ""; background: inherit; color: #000; } - - img:after { font: normal 11px "Lucida console", monospace; content:" ( alt='" attr(alt)"' ) "; } - - address, blockquote, dl, fieldset, form, h1, h2, h3, h4, ol, p, pre, ul { - border: 1px dotted #888; - margin: 2px; - padding: 2px; - display: block; - } - - /* Highlighting empty elements */ - div:empty, span:empty, p:empty, a:empty, td:empty, th:empty, li:empty, - b:empty, i:empty, em:empty {padding: 2px 4px; background: yellow;} - - /* Highlighting inline-Styles */ - *[style] {outline: 3px solid #f0f;} - *[style]:after { font: normal 11px "Lucida console", monospace; background: #f0f; color: #000; height: auto; visibility:visible; content: "Element contains inline styles!" !important; } - - /** - * @visualize inline elements - * - */ - - abbr, acronym { background: #d9eaff; } - q, cite, dfn, kbd { background: #ffe3f6; } - /* :lang(de), :lang(en), :lang(fr), :lang(es) { background: #d9efaa !important; } */ - -} diff --git a/htdocs/yaml/debug/images/grid_pattern.png b/htdocs/yaml/debug/images/grid_pattern.png deleted file mode 100644 index 55e65e477c61a692d8d9c9cafd4cd986097897db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 29833 zcmeFZ2UL??ur?ZuV!?m~Y!R>_f&z+w(osYN1QZCpBi#T}q(cxv1rwU+E4yN0SOL01cB_5H5L`Ub<4=y+T6;> z+~SyosOT{ZOLGI`yZR7_9X3qfP(gn5fFQnS{;Jetl%JHj9Nms%a#y`kv@cJy9^bh~ z^6~MgPjt5{_lk*ag};w{41N9_^_1@Rx!qp7I=2rVkAChR^Vq9)wcjzuw7mrXrJk7A zAvByi7nakwy<*4ifEyQYbE9@AU1iwY=U(%+x_^*e#BJ9p3&@@wId_g*5l&J-mRtk` z&Yq~)UIwACYo*!&sgMq-IDhmJiDv9-kU9nGAw`At%ga(bP_z&chv!%0AtKi)P+_l6 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 X2&FqUhJHVr00000NkvXXu0mjfh>%MR diff --git a/htdocs/yaml/markup_draft.html b/htdocs/yaml/markup_draft.html deleted file mode 100644 index ed3db5d..0000000 --- a/htdocs/yaml/markup_draft.html +++ /dev/null @@ -1,71 +0,0 @@ - - - -Your Page Title - - - - - - - - - - - diff --git a/htdocs/yaml/navigation/images/shiny_buttons/background.png b/htdocs/yaml/navigation/images/shiny_buttons/background.png deleted file mode 100644 index 2bad3bd081caed4b89a7eff4bf7213b52d1e2525..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 508 zcmVOjJeo_V)Gl_4M@g^Yioa^78TV@$m5Q?(XjG?d|L9>+0(2=;-L@=jY|+ z<>TYy;o;%n;Nafg-re2Z+}zyT+uPaM+1S|F*Vot9*4EY4)zs9~)6>(^($dk<(a_M) z&(F`!&d$xv&CJZq%gf8k%F4;f$;ima$H&LU#>U0P#l*zK!^6YE!otA7z`wu0zP`S_ zy}i4;ySlo%xw*NxxVX2sx3;#n&LyR900009a7bBm000XT000XT0n*)m`~Uy|7IZ~e zbVG7wVRUJ4ZXi@?ZDjy4F)uSPFEBVgdmg9&0010xMObuGZ)S9NVRB^vL1b@YWgtdr za%FdKa%*!SLsK*cveTdd005*(L_t(oh3(hHVFUpX1Hm>kGcz2RA^*@EMESWDfSw~w zyQn?XKJtJA)FJ8!b&NVeoubZA=co(RCF%-wjk-bIqV7=ls0Y*|>IwCX8llFh32KUZ zK_2jmdPBXVK9C1|qP|eys2|iX@}tVd!rjRA&I^S{7Vku!x;(b|U)Vuyqqb0+s14LQ yY7MoDT0t$NmQahR1=Kuh4mFFKK@A3j|M3T_d(qHS%_$N90000Ddu7)&kzm{j@u9Y9{{-r0(?ST zBO)Tg!^6YE!a_qsLqbA=gM)*Df&v2r0|Em4{r&y?{Cs_VeSCbpy}iA>ygWTUJv=W#&CJY9O-)Tq zOpJ|~b#--gbhNd#wY0P}H8nLfG}P7A)zs8fR8*9em6eo~ z6crWa<>lq%|Qh_N;T+t5e(FaUcKWbNyTI^D3q<|Kb@KtN}1{Au#{| diff --git a/htdocs/yaml/navigation/images/sliding_door/round/left.png b/htdocs/yaml/navigation/images/sliding_door/round/left.png deleted file mode 100644 index 329e919819c0fe6f8607179d3386d988c79b82cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2352 zcmdT__fr#y5)Q`+NI8TcM-jzFQ%WR?6s05qQF@aoqC^Q&;|onx%HabNK|RR9g(gT> z;1EI+L(>E$1xO&FNGAl25I{o{g1Pw1oA)o=4?8>i&Ca*8-_Gu0-CP_LWHn>~0Dywy zC8!4gAfYC<(=w7`#Q2@xKCzRGv~%>5k&*d4<2o%4yWE_-U|+XIU$#W6neRQ5S!l4e&QP{J+teHDX0(z9T0ZnQzwc}6rZ;xc2%Xf14oZD{Z!_^jWh)g| zR1+4RbUQ4@*~j0`(M{Y0H^_QL?DpTg1djv&yt500J4Cni!j$zwq#Il{n+jj|@)~GAcFz9SE?!gF*yq+XtfqV^QePNNtEGSgK*L z7yyuNcZAw{-7nx5hF>4DS4n;Tg!P)`L$cGqB~fcA^M`>9WnCnyMw;c*i3Pf*xUj6i zt+$Y26fjo`IVE;Zz4Tw@h}$7S=80GgAo? z5(d)L)a=U@P3Aq7Ra1*7IkSV=Gk3$UiqMqXb@aGY^KP*e6O zo?Ajr7CecodZ|rW19mUI#jE#g*~mR&CeP^V9Oarb-jIkGckW1Tf|)fZXkYZ4Q^q3k(c@b6Cvr6Cn(`gXef1O5nG#8uX7HW?TTpr!9XGwx>>bvNF21CyuPP*&V1SQ zJ+v0}?K}|jh$OrWJ`MVOHh~>u;L(7q|(yT7>7V5 zbqF_@xLV_ZXEVC0oOC#lbg2K{+{agCTx7FWJi;*bJSMKlCi8qEKGTE!o4;-a_zIAa z>O^{kFV;$^3buH>5&a^;gaTc4Qs^kcd|AlUSCK4M1N@kP4G8cRjkv3i7vK4=2; zoTwbF&qqTl^ORJ|VjONGu1}{VXTk3n*7-RH{D$Ce`Sb`>&k;Jm%XOkzrPo-$(9HTH z%0lm6YOzN$TksFBM9+uVg~ao#fYd?^$~=73B*4LBd4L*S=NI1kJi1UR@{ntr!=c?j zmzvAB$?^|BhH5^`S{-xl&*;ALK;ptA%##27mk0T6diNcTi~sJ_noRq3u7vnx-(IyX zg;Z8E)UYPEHf00I##>9?bH?Y}-k2KiSFh}s%5S=6aY=b_Ww+J}anVlb7lpBG9Sw#n zm`-@Pc}PbFnICjUur)x5WNgcRg7TRCSY@4iQKhpZ+`y4$ag4jF7vN3QNw4@$e_V)b zJbRqCfPr5j6{vtK{#eir_Jsuu#lyE=yq{*@AzLqle?d+&NS zExdI;(0mEFyG3ihG<^mh^Nn+$taw}B=xb?_75dzN%Y&bO?O|gP!t!1fZEg)o?re*! z!R*OQWbS-WP>8pEDM14i1T8Ja3zB`j3oCS7zw}nAmJZyrp0 zzyfP$D|hqePwDVTk`PA$A0e}F+J;rk>*bBrTd#2K4P{0cc@QrJPwo9UKOdN;^XCL* zj=szL>uG+1DkA6cHS8>ozVi7r6K?qFmF3L zd>&tGy*+$bpX68RVR-*Yy|B;!@$s#9&IurhQENt3;!43y+O?y|WrZA-f7Raq??iQp YQU!V!&ulT{#Sb6g2y=n{Wp^w2AH<_ZaR2}S diff --git a/htdocs/yaml/navigation/images/sliding_door/round/left_on.png b/htdocs/yaml/navigation/images/sliding_door/round/left_on.png deleted file mode 100644 index fed4c398979a86903f93134d69b5ce2870d9cd75..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1457 zcmeAS@N?(olHy`uVBq!ia0y~yU}OPe9S&xoh>)gjGLT{}cJd72;NZCZ(EkCDn;hU1 z;`;yp|9}7f{r&s*&!0cPfB*jV>(|epKY#rA@%{VvZ{NOs{rdIGmoJ|`fBy98)5nh= zKYaM`{{8!R@7}$A`}WbJMMq3vzYinzL6H8HXDIQ)v zCT5WBFZfTp04dG_kH}&M25un`X1sK_?hjBIQ+eo=O@f^)D5+osD47#LV)d%8G= zRLpsM@pY0=Iz!7t*U1Y4qc8idwzc|RKh<}c!t&O;B9DAh=h-*f*7U4r{_yhq{))S7 zf4&`m9xo?XcdMde)6XwoZ?9{=oMu;4@#stSWT?|6bH)Z(qNs>hOL0{}q}2$ItDPN_@bde%t!fALiqAiLcLhvKIT@inNk_c=*(h ztB0*W*UtEICa`+@bDkSDk`{ZP*Ss%}eYC^-OqBGGcXxkhe;0Z9ig!Rg`Fviyz0kw6g2A8v9oA;s946bJ zuq{T<|6a`QBl)~BX*YkH*9kMffA{6#yQMy|c3)q!mrqZBXIoSG02pPD@88zF9dACr zJkGi>_xy{#kGF;O-`bRY`1oK#@@hA~ke2tC&z?PdMxFiM6_1wd|8M=<^Y}<+JHKpg z-MO8Qw_giCwoTUd&6C5-{`dCrb$xiXScO%l%SP4rALFWwY~6XE*nJ^MAs| z@6SdX6@0z(==QH&7c=)d2%5D`ooMcN=huE|i!1*Yee@Ra+-J8sAzv1th za}Or|?@9k7eC*>J;eE^{{2mV98(2oE!5;)Vd>ST9QjSuLy$ZbzZWG)bls%Le2rd!4 oz;THqgCq-n%Ue|RCUmc{K8wa0@ESe!9k%+rrM;!Ohvg%-Fxn*S^Zuy~)+Q$ke;X)4Imexy8}A z#L&0H&$hzOwZYA_z|6D1%d)=8vAxN)yTYis%#)w2Y;}NRZFfypUP4Jw00006at>wy z000SaNLh0L01FZT01FZU(%pXi0000MbVXQnLvm$dbZKvHAXI5>WdJcTFEcPNFgQJX z9;g5S0338hSaefwW^{L9a%BKPWN%_+AVz6&Wp{6KYjYq&Q#1y$)1UwV0l!H^K~z|U z?blmZ6EPIU@r`#-)H;BI6))vpz)QVAX^-FkTX`l)XOirbLYGUQ@_$G(zcr72*aJzM z-(2tRBJ0)F&D7yqmt(n(WYN{kz|A??+`ZD`7JjG>sm5ac9#A z8tyM}OA~Byf^DvVJBv*0E8uIcfNwa#UR!wD^94*R;9IVM?}n5jr?^iE-naG8J_Sq@ zeDIkVC-}&f@DnA-V5Idp>JyAO!9kpfzJP~GfC6}s2lK+ZxHIw$*FjO%dR7A}G@CpeE& z(KADz$BVY}?k2e43V6v0KKo3JE8rJS@YTd96GH|3mSm!<#mQun;M1& diff --git a/htdocs/yaml/navigation/images/sliding_door/round/right_on.png b/htdocs/yaml/navigation/images/sliding_door/round/right_on.png deleted file mode 100644 index 5f62f76c0176aec192aeb8d7dce21cf29a2e93d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 432 zcmeAS@N?(olHy`uVBq!ia0vp^A`A?SIvmVE))&rXZy?27?Bp53!NGC+q5lIQH#5K| z#P$FG|Ns8|`}_CrpFe+o|Ni~!*RP*HfByLK7!uL?_GGx&AqA0^hl0{#Yi|6$`(Menvy)LzM*P7a{?8wHRo)faR`r+OU6xzE zD>jPf)_%T-mFLQJLT{^!S#@5p{O-71_)KZjOud7da~It5oUC&b1=g&WX{`|?4Cof;VeE9I;=g*%nT)6P=-MgnxpI*Is z_1m{^*REar@ZrOqJ9mEn{{8FMF9rsNw6ruJNeoc@$pTiU10q3oGO%hdQ0aS;JWD`j qp8qPZj9n&+q)nZIoY?{`_%1RT78o$_2r4}ckYVDQ6e7gLU=08h4M02q diff --git a/htdocs/yaml/navigation/images/vlist/square/node_minus.gif b/htdocs/yaml/navigation/images/vlist/square/node_minus.gif deleted file mode 100644 index e17953bc1b01870eef68f244d1660b73cf887010..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmZ?wbhEHbC&aopFdx_cJ2K6^Y7okfBEv|g$oy+K7IP|;lnFet~`12 zSFc|E_U+r9J9mEn{{8FMF9rsNw6ruJNeoc@$pTiU10q3oGO%hdQ0aS;JWD`j qp8qPZj9UUqB6qh3IXgC5@C7C>EZ|_^x%lWof&?4qq!1w{25SH!cS5uP diff --git a/htdocs/yaml/navigation/images/vlist/square/node_plus.gif b/htdocs/yaml/navigation/images/vlist/square/node_plus.gif deleted file mode 100644 index 7ed5e30477610d96bbaea028301eb2c80dc7326b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174 zcmZ?wbhEHbC&YO7cQJXfBy65&kr9yeDdVUhYug#y?gic>C>xMuYUXX z?b@|#ckbNz{rmT?U%wa_7}C8@9-5Wg# diff --git a/htdocs/yaml/navigation/images/vlist/square/subnode.gif b/htdocs/yaml/navigation/images/vlist/square/subnode.gif deleted file mode 100644 index bb378f4e11eab61ec135cb7803bd4da3420b2536..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 107 zcmZ?wbhEHbWM^P!*v!E2^y$+_j~=~z`SS7O$G2|Xx_({T(ojZ5;?%g+U-n@PL zmVtqxqoV^zLV)5=7BE8xM1ssB%2g>XKHeQ3Yz+dfB0NV61439BtO4>w BE4%;z diff --git a/htdocs/yaml/navigation/images/vlist/square/subnode_plus.gif b/htdocs/yaml/navigation/images/vlist/square/subnode_plus.gif deleted file mode 100644 index 536c0c97b06df90e564656ba8b4af9a1fcb8b851..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 107 zcmZ?wbhEHbWM^P!*v!E2^y$+_j~=~z`SR}FySHxLx_B%2lN;KHe4{>>EVdL ul a, - .hlist > ul strong { width: auto; } /* for other browsers */ - - .hlist ul li:focus, - .hlist ul li:hover, - .hlist ul li:active { - /* (en) Repeat the main color from the image */ - /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */ - background-color: #c4d0dc; - background-position: 0 -150px; - } - - .hlist li:focus a, - .hlist li:hover a, - .hlist li:active a { background-position: 100% -150px; } - - .hlist a:focus, - .hlist a:hover, - .hlist a:active { background-color: transparent; color: #223; } - - .hlist li.active, - .hlist ul li.active:focus, - .hlist ul li.active:hover, - .hlist ul li.active:active { - /* (en) Repeat the main color from the image */ - /* (de) Wiederholung der Hauptfarbe aus der Bilddatei */ - background: white url("images/sliding_door/round/left_on.png") no-repeat top left; - border: 0 none; - } - - .hlist li.active strong { - /* (en) This image is mainly transparent */ - /* (de) Dieses Bild ist größtenteils transparent */ - background: transparent url("images/sliding_door/round/right_on.png") no-repeat top right; - color: #334; - font-weight: bold; - padding-bottom: 4px; - padding-top: 5px; - } - -} diff --git a/htdocs/yaml/navigation/nav_vlist.css b/htdocs/yaml/navigation/nav_vlist.css deleted file mode 100644 index 21e41c9..0000000 --- a/htdocs/yaml/navigation/nav_vlist.css +++ /dev/null @@ -1,123 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) Vertical list navigation "vlist" - * (de) Vertikale Navigationsliste "vlist" - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /* title */ - h6.vlist { - font-family: Arial, Helvetica, sans-serif; - font-weight: bold; - font-size: 100%; - width: 90%; - padding: 3px 0px 3px 10%; /* LTR */ - margin:0; - color: #444; - background-color: #fff; - border-top: 2px #ddd solid; - border-bottom: 4px #888 solid; - } - - .vlist { - width: 100%; - overflow: hidden; - margin: 0 0 1.5em 0; - list-style-type: none; - border-bottom: 2px #ddd solid; - } - - .vlist ul { - list-style-type: none; - margin:0; - padding: 0; - } - - .vlist li { - float:left; /* LTR */ - width: 100%; - margin:0; - padding: 0; - } - - .vlist a, - .vlist strong, - .vlist span { - display:block; - padding: 3px 0px 3px 10%; - text-decoration: none; - border-bottom: 1px #ddd solid; - } - - .vlist a, - .vlist a:visited { - color: #444; - } - - .vlist li span { - display:block; - font-weight: bold; - border-bottom: 1px #ddd solid; - } - - /* active list element */ - .vlist li.active { - color: #fff; - background-color:#800; - font-weight: bold; - } - - /* Level 1 */ - .vlist li a, - .vlist li strong, - .vlist li span { width: 90%; padding-left: 10%; } /* LTR */ - - .vlist li a:focus, - .vlist li a:hover, - .vlist li a:active { background-color:#a88; color: #fff; } - - /* Level 2 */ - .vlist li ul li a, - .vlist li ul li strong, - .vlist li ul li span { width: 80%; padding-left: 20%; } /* LTR */ - - .vlist li ul li a, - .vlist li ul li a:visited { background-color:#f8f8f8; color: #333; } - .vlist li ul li a:focus, - .vlist li ul li a:hover, - .vlist li ul li a:active { background-color:#a88; color: #fff; } - - /* Level 3 */ - .vlist li ul li ul li a, - .vlist li ul li ul li strong, - .vlist li ul li ul li span { width: 70%; padding-left: 30%; } /* LTR */ - - .vlist li ul li ul li a, - .vlist li ul li ul li a:visited{ background-color:#f0f0f0; color: #222; } - .vlist li ul li ul li a:focus, - .vlist li ul li ul li a:hover, - .vlist li ul li ul li a:active { background-color:#a88; color: #fff; } - - /* Level 4 */ - .vlist li ul li ul li ul li a, - .vlist li ul li ul li ul li strong, - .vlist li ul li ul li ul li span { width: 60%; padding-left: 40%; } /* LTR */ - - .vlist li ul li ul li ul li a, - .vlist li ul li ul li ul li a:visited { background-color:#e8e8e8; color: #111; } - .vlist li ul li ul li ul li a:focus, - .vlist li ul li ul li ul li a:hover, - .vlist li ul li ul li ul li a:active { background-color:#a88; color: #fff; } -} diff --git a/htdocs/yaml/patches/patch_layout_draft.css b/htdocs/yaml/patches/patch_layout_draft.css deleted file mode 100644 index 6c4585f..0000000 --- a/htdocs/yaml/patches/patch_layout_draft.css +++ /dev/null @@ -1,29 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) Example of a patch stylesheet for the Internet Explorer - * (de) Beispiel für ein Anpassungs-Stylesheet für den Internet Explorer - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* Layout independent adjustments | Layout-unabhängige Anpassungen ----------------------------------- */ -@import url(/yaml/core/iehacks.css); - -/* Box model adjustments for vlist navigation | Box-Modell-Anpassungen für vlist-Navigation */ -/* @import url(/yaml/patches/patch_nav_vlist.css); */ - -/* Layout-dependent adjustments | Layout-abhängige Anpassungen --------------------------------------- */ -@media screen, projection -{ - /* add your adjustments here | Fügen Sie Ihre Anpassungen hier ein */ - -} diff --git a/htdocs/yaml/patches/patch_nav_vlist.css b/htdocs/yaml/patches/patch_nav_vlist.css deleted file mode 100644 index 8f11d7e..0000000 --- a/htdocs/yaml/patches/patch_nav_vlist.css +++ /dev/null @@ -1,60 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) IE adjustment stylesheet for YAML vlist navigation - * Import this file within the IE-patch-file if needed in your layout - * - * (de) IE Anpassungs-Stylesheet für YAML vlist-Navigation - * Einbindung ins Layout erfolgt über den Import innerhalb des IE-Anspassungs-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media screen, projection -{ - /** - * Box Model Bug - * (en) Adjustment of width values for list elements of the menu in IE 5.x/Win. - * Note: If IE6 is running in quirks mode, it also needs 100% values! - * - * (de) Korrektur der Breitenangaben der Listenelemente des Submenüs im IE 5.x/Win. - * Hinweis: Befindet sich der IE6 im Quirks Mode, so benötigt er ebenfalls 100%-Werte ! - * - * @bugfix - * @affected IE 5.x/Win (IE6 in Quirks-Mode) - * @css-for IE 5.x/Win, IE6 - * @valid no - */ - - - /* title */ - * html h6.vlist { width: 100%; w\idth: 90%; } - - /* level 1 */ - * html .vlist li a, - * html .vlist li strong, - * html .vlist li span { width: 100%; w\idth: 90%; } - - /* level 2 */ - * html .vlist li ul li a, - * html .vlist li ul li strong, - * html .vlist li ul li span { width: 100%; w\idth: 80%; } - - /* level 3 */ - * html .vlist li ul li ul li a, - * html .vlist li ul li ul li strong, - * html .vlist li ul li ul li span { width: 100%; w\idth: 70%; } - - /* level 4 */ - * html .vlist li ul li ul li ul li a, - * html .vlist li ul li ul li ul li strong, - * html .vlist li ul li ul li ul li span { width: 100%; w\idth: 60%; } -} diff --git a/htdocs/yaml/print/print_003_draft.css b/htdocs/yaml/print/print_003_draft.css deleted file mode 100644 index 059a2bf..0000000 --- a/htdocs/yaml/print/print_003_draft.css +++ /dev/null @@ -1,56 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /** - * @section column selection - * (en) individually switch on/off any content column for printing - * (de) (De)aktivierung der Contentspalten für den Ausdruck - * - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - #col1 { display:none; } - #col2 { display:none; } - #col3, #col3_content { width: 100%; margin:0; padding: 0; border:0; } - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} diff --git a/htdocs/yaml/print/print_020_draft.css b/htdocs/yaml/print/print_020_draft.css deleted file mode 100644 index 903b9a1..0000000 --- a/htdocs/yaml/print/print_020_draft.css +++ /dev/null @@ -1,56 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /** - * @section column selection - * (en) individually switch on/off any content column for printing - * (de) (De)aktivierung der Contentspalten für den Ausdruck - * - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - #col1 { display:none; } - #col2, #col2_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col3 { display:none; } - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} diff --git a/htdocs/yaml/print/print_023_draft.css b/htdocs/yaml/print/print_023_draft.css deleted file mode 100644 index 6f278a5..0000000 --- a/htdocs/yaml/print/print_023_draft.css +++ /dev/null @@ -1,62 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /** - * @section column selection - * (en) individually switch on/off any content column for printing - * (de) (De)aktivierung der Contentspalten für den Ausdruck - * - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - #col1 { display:none; } - #col2, #col2_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col3, #col3_content {width: 100%; margin:0; padding: 0; border:0; } - - /* Optional Column Labels | Optionale Spaltenauszeichnung - #col2_content:before { content:" [ left | middle | right column ]"; } - #col3_content:before { content:" [ left | middle | right column ]"; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} - diff --git a/htdocs/yaml/print/print_100_draft.css b/htdocs/yaml/print/print_100_draft.css deleted file mode 100644 index 82e006f..0000000 --- a/htdocs/yaml/print/print_100_draft.css +++ /dev/null @@ -1,56 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /** - * @section column selection - * (en) individually switch on/off any content column for printing - * (de) (De)aktivierung der Contentspalten für den Ausdruck - * - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - #col1, #col1_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col2 { display:none; } - #col3 { display:none; } - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} diff --git a/htdocs/yaml/print/print_103_draft.css b/htdocs/yaml/print/print_103_draft.css deleted file mode 100644 index ffbaf78..0000000 --- a/htdocs/yaml/print/print_103_draft.css +++ /dev/null @@ -1,61 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /** - * @section column selection - * (en) individually switch on/off any content column for printing - * (de) (De)aktivierung der Contentspalten für den Ausdruck - * - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - #col1, #col1_content {float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col2 { display:none; } - #col3, #col3_content { width: 100%; margin:0; padding: 0; border:0; } - - /* Optional Column Labels | Optionale Spaltenauszeichnung - #col1_content:before { content:" [ left | middle | right column ]"; } - #col3_content:before { content:" [ left | middle | right column ]"; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} diff --git a/htdocs/yaml/print/print_120_draft.css b/htdocs/yaml/print/print_120_draft.css deleted file mode 100644 index dbf60ea..0000000 --- a/htdocs/yaml/print/print_120_draft.css +++ /dev/null @@ -1,61 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /** - * @section column selection - * (en) individually switch on/off any content column for printing - * (de) (De)aktivierung der Contentspalten für den Ausdruck - * - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - #col1, #col1_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col2, #col2_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col3 { display:none; } - - /* Optional Column Labels | Optionale Spaltenauszeichnung - #col1_content:before { content:" [ left | middle | right column ]"; } - #col2_content:before { content:" [ left | middle | right column ]"; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} diff --git a/htdocs/yaml/print/print_123_draft.css b/htdocs/yaml/print/print_123_draft.css deleted file mode 100644 index 6a6db85..0000000 --- a/htdocs/yaml/print/print_123_draft.css +++ /dev/null @@ -1,62 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /** - * @section column selection - * (en) individually switch on/off any content column for printing - * (de) (De)aktivierung der Contentspalten für den Ausdruck - * - * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html - */ - - #col1, #col1_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col2, #col2_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; } - #col3, #col3_content { width: 100%; margin:0; padding: 0; border:0; } - - /* Optional Column Labels | Optionale Spaltenauszeichnung - #col1_content:before { content:" [ left | middle | right column ]"; } - #col2_content:before { content:" [ left | middle | right column ]"; } - #col3_content:before { content:" [ left | middle | right column ]"; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} diff --git a/htdocs/yaml/print/print_draft.css b/htdocs/yaml/print/print_draft.css deleted file mode 100644 index 5c96bc2..0000000 --- a/htdocs/yaml/print/print_draft.css +++ /dev/null @@ -1,49 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) print stylesheet - * (de) Druck-Stylesheet - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 302 $ - * @lastmodified $Date: 2008-12-14 11:23:55 +0100 (So, 14. Dez 2008) $ - */ - -/* import print base styles | Basisformatierung für Drucklayout einbinden */ -@import url(../core/print_base.css); - -@media print -{ - /*------------------------------------------------------------------------------------------------------*/ - /* add your print styles here */ - - - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional output of acronyms and abbreviations*/ - /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */ - - /* - abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; } - */ - - /*------------------------------------------------------------------------------------------------------*/ - - /* (en) optional URL output of hyperlinks in print layout */ - /* (de) optionale Ausgabe der URLs von Hyperlinks */ - /* - a[href]:after { - content:" "; - color:#444; - background:inherit; - font-style:italic; - } - */ -} diff --git a/htdocs/yaml/screen/basemod_draft.css b/htdocs/yaml/screen/basemod_draft.css deleted file mode 100644 index e1f0356..0000000 --- a/htdocs/yaml/screen/basemod_draft.css +++ /dev/null @@ -1,70 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) Template for designing a screen layout - * (de) Gestaltungsvorlage für die Erstellung eines Screenlayouts - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media screen, projection -{ - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Design of the Basic Layout | Gestaltung des YAML Basis-Layouts - * - * @section layout-basics - */ - - /* Page margins and background | Randbereiche & Seitenhintergrund */ - body { } - - /* Layout: Width, Background, Border | Layout: Breite, Hintergrund, Rahmen */ - #page_margins { } - #page{ } - - /* Design of the Main Layout Elements | Gestaltung der Hauptelemente des Layouts */ - #header { } - #topnav { } - - #main { } - - #footer { } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Formatting of the Content Area | Formatierung der Inhaltsbereichs - * - * @section layout-main - */ - - #col1 { } - #col1_content { } - - #col2 { } - #col2_content { } - - #col3 { } - #col3_content { } - - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Design of Additional Layout Elements | Gestaltung weiterer Layoutelemente - * - * @section layout-misc - */ - - -} \ No newline at end of file diff --git a/htdocs/yaml/screen/content_default.css b/htdocs/yaml/screen/content_default.css deleted file mode 100644 index 47a7bdf..0000000 --- a/htdocs/yaml/screen/content_default.css +++ /dev/null @@ -1,218 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) Uniform design of standard content elements - * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - * @appdef yaml - */ - -@media all -{ - /** - * Fonts - * - * (en) global settings of font-families and font-sizes - * (de) Globale Einstellungen für Zeichensatz und Schriftgrößen - * - * @section content-global-settings - */ - - /* (en) reset font size for all elements to standard (16 Pixel) */ - /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */ - html * { font-size: 100.01%; } - - /** - * (en) reset monospaced elements to font size 16px in all browsers - * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen - * - * @see: http://webkit.org/blog/67/strange-medium/ - */ - - textarea, pre, code, kbd, samp, var, tt { - font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier; - } - - /* (en) base layout gets standard font size 12px */ - /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */ - body { - font-family: Arial, Helvetica, sans-serif; - font-size: 75.00%; - color: #444; - } - - /*--- Headings | Überschriften ------------------------------------------------------------------------*/ - - h1,h2,h3,h4,h5,h6 { - font-family: "Times New Roman", Times, serif; - font-weight:normal; - color:#222; - margin: 0 0 0.25em 0; - } - - h1 { font-size: 250%; } /* 30px */ - h2 { font-size: 200%; } /* 24px */ - h3 { font-size: 150%; } /* 18px */ - h4 { font-size: 133.33%; } /* 16px */ - h5 { font-size: 116.67%; } /* 14px */ - h6 { font-size: 116.67%; } /* 14px */ - - /* --- Lists | Listen -------------------------------------------------------------------------------- */ - - ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em; } - ul li { list-style-type: disc; } - ul ul li { list-style-type: circle; } - - ol li { list-style-type: decimal; } - ol ol li { list-style-type: lower-latin; } - - li { margin-left: 0.8em; line-height: 1.5em; } - - dt { font-weight: bold; } - dd { margin: 0 0 1em 0.8em; } - - /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */ - - p { line-height: 1.5em; margin: 0 0 1em 0; } - - blockquote, cite,q { - font-family: Georgia, "Times New Roman", Times, serif; - font-style:italic; - } - blockquote { margin: 0 0 1em 1.6em; color: #666; } - - strong,b { font-weight: bold; } - em,i { font-style: italic; } - - pre, code, kbd, tt, samp, var { font-size: 100%; } - pre, code { color: #800; } - pre { line-height: 1.5em; margin: 0 0 1em 0; } - kbd, samp, var { color: #666; } - var { font-style: italic; } - - acronym, abbr { - border-bottom: 1px #aaa dotted; - font-variant: small-caps; - letter-spacing: .07em; - cursor: help; - } - - sub, sup { font-size: 91.6667%; } - - hr { - color: #fff; - background:transparent; - margin: 0 0 0.5em 0; - padding: 0 0 0.5em 0; - border:0; - border-bottom: 1px #eee solid; - } - - /*--- Links ----------------------------------------------------------------------------------------- */ - - a { color: #4D87C7; background:transparent; text-decoration:none; } - a:visited { color: #036; } - - a:focus, - a:hover, - a:active { color:#182E7A; text-decoration:underline; } - - /* --- images (with optional captions) | Bilder (mit optionaler Bildunterschrift) ------------------ */ - - p.icaption_left { float:left; display:inline; margin: 0 1em 0.15em 0; } - p.icaption_right { float:right; display:inline; margin: 0 0 0.15em 1em; } - - p.icaption_left img, - p.icaption_right img { padding:0; border: 1px #888 solid; } - - p.icaption_left strong, - p.icaption_right strong { display:block; overflow:hidden; margin-top: 2px; padding: 0.3em 0.5em; background: #eee; font-weight: normal; font-size: 91.667%; } - - /** - * ------------------------------------------------------------------------------------------------- # - * - * Generic Content Classes - * - * (en) standard classes for positioning and highlighting - * (de) Standardklassen zur Positionierung und Hervorhebung - * - * @section content-generic-classes - */ - - .highlight { color: #f60; } - .dimmed { color: #888; } - - .info { background: #f8f8f8; color: #666; padding: 10px; margin-bottom: 0.5em; font-size: 91.7%; } - - .note { background: #efe; color: #040; border: 2px #484 solid; padding: 10px; margin-bottom: 1em; } - .important { background: #ffe; color: #440; border: 2px #884 solid; padding: 10px; margin-bottom: 1em; } - .warning { background: #fee; color: #400; border: 2px #844 solid; padding: 10px; margin-bottom: 1em; } - - .float_left { float: left; display:inline; margin-right: 1em; margin-bottom: 0.15em; } - .float_right { float: right; display:inline; margin-left: 1em; margin-bottom: 0.15em; } - .center { display:block; text-align:center; margin: 0.5em auto; } - - /** - * ------------------------------------------------------------------------------------------------- # - * - * Tables | Tabellen - * - * (en) Generic classes for table-width and design definition - * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen - * - * @section content-tables - */ - - table { width: auto; border-collapse:collapse; margin-bottom: 0.5em; border-top: 2px #888 solid; border-bottom: 2px #888 solid; } - table caption { font-variant:small-caps; } - table.full { width: 100%; } - table.fixed { table-layout:fixed; } - - th,td { padding: 0.5em; } - thead th { color: #000; border-bottom: 2px #800 solid; } - tbody th { background: #e0e0e0; color: #333; } - tbody th[scope="row"], tbody th.sub { background: #f0f0f0; } - - tbody th { border-bottom: 1px solid #fff; text-align: left; } - tbody td { border-bottom: 1px solid #eee; } - - tbody tr:hover th[scope="row"], - tbody tr:hover tbody th.sub { background: #f0e8e8; } - tbody tr:hover td { background: #fff8f8; } - - /** - * ------------------------------------------------------------------------------------------------- # - * - * Miscellaneous | Sonstiges - * - * @section content-misc - */ - - /** - * (en) Emphasizing external Hyperlinks via CSS - * (de) Hervorhebung externer Hyperlinks mit CSS - * - * @section content-external-links - * @app-yaml-default disabled - */ - - /* - #main a[href^="http://www.my-domain.com"], - #main a[href^="https://www.my-domain.com"] - { - padding-left: 12px; - background-image: url('your_image.gif'); - background-repeat: no-repeat; - background-position: 0 0.45em; - } - */ -} diff --git a/htdocs/yaml/screen/forms.css b/htdocs/yaml/screen/forms.css deleted file mode 100644 index 8503e0e..0000000 --- a/htdocs/yaml/screen/forms.css +++ /dev/null @@ -1,253 +0,0 @@ -@charset "UTF-8"; -/** - * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework - * - * (en) CSS-component for creating vertical forms - * (de) CSS-Baustein zur Erstellung von Formularen mit untereinander angeordneten Elementen - * - * @note Many thanks to Ansgar Hein (http://www.anatom5.de) for contribution - * - * @copyright Copyright 2005-2009, Dirk Jesse - * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), - * YAML-C (http://www.yaml.de/en/license/license-conditions.html) - * @link http://www.yaml.de - * @package yaml - * @version 3.1 - * @revision $Revision: 343 $ - * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $ - */ - -@media all -{ - /** - * YAML Forms - visual styling - * - * (en) visual form styling area - * (de) Festlegung des optischen Erscheinungsbildes - */ - - form.yform { - background: #f4f4f4; - border: 1px #ddd solid; - margin: 0 0 1em 0; - padding: 10px; - } - - form.yform fieldset { - border: 1px #ddd solid; - background: #fafafa; - margin: 0 0 1em 0; - padding: 0.5em 1em; - } - - form.yform legend { - font-size: 125%; font-weight: normal; color: #000; - } - - form.yform label { - color: #666; - } - - form.yform .type-text input, - form.yform .type-text textarea, - form.yform .type-select select { - font-family: Arial, Helvetica, sans-serif; /* proportional fonts for all form elements */ - border: 1px solid #ddd; - } - - /* :hover and :focus status on form fields | Effekt zur Hervorhebung von Formularfeldern bei :hover oder :focus */ - form.yform div input:focus, - form.yform div select:focus, - form.yform div textarea:focus, - form.yform div input:hover, - form.yform div select:hover, - form.yform div textarea:hover, - form.yform div input:active, - form.yform div select:active, - form.yform div textarea:active { - border: 1px #a66 solid; - background: #fff; - } - - /* Styling of buttons | Gestaltung von Buttons */ - form.yform .type-button input { - border-top: 1px #ddd solid; - border-left: 1px #ddd solid; - border-right: 1px #444 solid; - border-bottom: 1px #444 solid; - color: #000; - background: #454545 url(images/button_gray.png) top left repeat-x; - padding: .5em 1.2em; - } - - form.yform .type-button input#reset { color: #300; background: #661717 url(images/button_red.png) top left repeat-x; } - form.yform .type-button input#submit { color: #330; background: #5e5607 url(images/button_yellow.png) top left repeat-x; } - - /* :hover and :focus status on buttons | Effekt zur Hervorhebung von Schaltern bei :hover oder :focus */ - form.yform div.type-button input:focus, - form.yform div.type-button input:hover, - form.yform div.type-button input:active { - border-top: 1px #444 solid; - border-left: 1px #444 solid; - border-right: 1px #ddd solid; - border-bottom: 1px #ddd solid; - color: #fff; - background: #555; - } - - form.yform div.type-button input#reset:focus, - form.yform div.type-button input#reset:hover, - form.yform div.type-button input#reset:active { - background: #800; color: #fff; - } - - form.yform div.type-button input#submit:focus, - form.yform div.type-button input#submit:hover, - form.yform div.type-button input#submit:active { - background: #880; color: #fff; - } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Vertical-Forms - technical base (standard) - * - * |-------------------------------| - * | fieldset | - * |-------------------------------| - * | label | - * | input / select / textarea | - * |-------------------------------| - * | /fieldset | - * |-------------------------------| - * - * (en) Styling of forms where both label and input/select/textarea are styled with display: block; - * (de) Formulargestaltung, bei der sowohl label als auch input/select/textarea mit display: block; gestaltet werden - * - * WARNING: This part contains several IE-stability-fixes. Don't edit this part if you are not sure, what you're doing! - */ - - /* General form styling | Allgemeine Formatierung des Formulars */ - form.yform { overflow: hidden; } - form.yform fieldset { overflow: hidden; } - form.yform legend { background: transparent; border: 0; } - form.yform label { display:block; cursor: pointer; } - form.yform .message { display: block; margin-bottom: 0.5em; color: #666; } - - /* Hiding of hidden fields (otherwise ugly spaces in Firefox) | Versteckte Felder wirklich verstecken (sonst ggf. häßliche Lücken im Firefox) */ - form.yform input[type=hidden] { display: none !important; } - - /* Highlight mandatory fields | Pflichtfeldkennzeichnung hervorheben */ - form.yform sup { color: #800; font-weight: bold; } - - /* styling containing DIV elements | Gestaltung der kapselnden DIV-Elemente */ - form.yform div.type-text, - form.yform div.type-select, - form.yform div.type-check, - form.yform div.type-button { - margin: 0.5em 0; - position: relative; - overflow: hidden; - } - - /* styling standard form elements with 'almost' equal flexible width | Gestaltung der einzelnen Formularelemente mit annähend gleicher Breite */ - form.yform .type-text input, - form.yform .type-text textarea { - display: block; - position: relative; - padding: 0.3em 0.3em; - width: 58.5%; - } - - form.yform .type-select select { - display: block; - position: relative; - padding: 0.3em 2px 0.3em 1px; - width: 60%; - cursor: pointer; - } - form.yform .type-select select optgroup { - font-style: normal; - font-weight: bold; - } - - form.yform .type-check input { cursor: pointer; } - form.yform .type-check label { display: inline; } - - /* Styling of buttons | Gestaltung von Buttons */ - form.yform .type-button input { - width: auto; - cursor: pointer; - } - - /* Styling of error-messages | Fehlermeldungen */ - form.yform div.error { - border: 1px #a00 dashed; - background: #faf4f4; - padding: 0.5em; - } - - form.yform div.error label { color: #000; font-weight:bold; } - form.yform div.error .message { color: #800; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Columnar forms display - technical base (optional) - * - * |-------------------------------------------| - * | fieldset | - * |-------------------------------------------| - * | | - * | label | input / select / textarea | - * | | - * |-------------------------------------------| - * | /fieldset | - * |-------------------------------------------| - * - * (en) Styling of forms where label floats left of form-elements - * (de) Formulargestaltung, bei der die label-Elemente nach links fließen - * - * WARNING: This part contains several IE-stability-fixes. Don't edit this part if you are not sure, what you're doing! - */ - - /* Columnar display | Spalten-Darstellung */ - .columnar .type-text label, - .columnar .type-select label { - float: left; - width: 30%; /* Can be fixed width too | Kann auch eine fixe Angabe sein */ - } - - /* Indent Checkbox fields to match label-width | Checkboxen um den gleichen Wert einrücken, wie die Breite der labels */ - .columnar div.type-check { padding-left: 30%; } - .columnar div.error .message { margin-left: 30%; } - - .columnar div.type-text input, - .columnar div.type-text textarea { width: 67.8%; } - .columnar div.type-select select { width: 69.4%; } - - /* width adjustments for IE 5.x & IE6 | Breitenanpassung für Internet Explorer 5.x und 6.0 */ - * html .columnar div.type-text input, - * html .columnar div.type-text textarea { width: 67.2%; } - * html .columnar div.type-select select { width: 68.8%; } - - /*------------------------------------------------------------------------------------------------------*/ - - /** - * Forms Fieldset/Legend-Bug in IE - * @see http://www.mattheerema.com/web-design/2006/04/getting-fieldset-backgrounds-and-legends-to-behave-in-ie/ - * - * @workaround - * @affected IE 5.x/Win, IE6, IE7 - * @css-for IE 5.x/Win, IE6, IE7 - * @valid yes - */ - - /* IE5.x & IE6 */ - * html form.yform legend { position:absolute; top: -.5em; left: .5em; } - * html form.yform fieldset { overflow:visible; height: 1%; margin-top:1.5em; padding-top:1.5em; } - - /* IE7 */ - *+html form.yform legend { position:absolute; top: -.5em; left: .5em; } - *+html form.yform fieldset { overflow:visible; height:1%; margin-top:1.5em; padding-top:1.5em; } -} diff --git a/htdocs/yaml/screen/images/button_gray.png b/htdocs/yaml/screen/images/button_gray.png deleted file mode 100644 index a36926e4e4ea27ba8b4858ecaef92cd5a3aef4bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmV;d0aN~oP)lCQ6?@bK`6h=`b&n2n8% zY;0_wpP#?Kzow?9tE;QjL{+>1004wZL_t(|+HApv0fGPk0Kr%6M6p{8u)FqO%mx0A zo1iP`3#NjP;4CNzdV-E15^Mya;40V&euA;!D`*QQg12BKXb2vHncyN=3!Z|S;4T;l z4uVwB5^M!UK`f{Unu3$yCD;qff|8&rNCZPcPOuOx1$DtnkQdAafgmHu3e-{j1sDKU WMu8<9Paq!v0000FfV|@}$Gk zvdh|flC$&q?(XyR<{c<3ELKrDKWEOF+S-|3Ugu}dToM|3yrSa#^yzKp=DBim=O<1) zKV{1K{{H0=5qtCUrh9m-i;rI!6;-3F+iPdHIVGh^Tl@UNg>!s;&v$lCb#u#CP&nV( zda|l2TSjJEdU~Ug(V^nvg+W23YHAshl7&i2N6X4q$Hbhguiu@MlO`^{F)8VMQ&Y2v z$gaqysDxG4(LX@sNK@|v)g7E!O=}fIVpysjBMk)Zu*y4X&ETBZH1UC!1oy9|We*g7 za7}C4m7o#9$<;JJLF)u}QPZ{ux;HpCHFYNFo#5ze>Uy9P!L8(|6rg_4`46iEgT6?k UYK2p>KF|RSp00i_>zopr0HZLXMgRZ+ diff --git a/htdocs/yaml/screen/images/button_yellow.png b/htdocs/yaml/screen/images/button_yellow.png deleted file mode 100644 index f65ea9b2b4e716a7b08fb2e876039c0529b9c79b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmV;d0aN~oP)Rh)HC7IF_VV}%e)(_od;)L2WVgiZe<6wrU#pk z2hzhLzpxK^ZU?-r46dLDesl-f$|<*~2bGBjb7}{Sfd|OB7;t9?pOOd7z8%oPAjY>A z=Gt7Sng@Y)2gJ1$iGBw);jym(004wZL_t(|+HApv0fGPk0Kr%6M6p{8u)FqO%mx0A zj^HH-1#Ll9FcgdgV?kZe6-0u)peJYu)`ExNE|>}~f~Vjs7zj3kM9>r*1hJqcNCh*& zTTl{I1UJD-P!Jpi6G2UI7W@P`K~eA#>;z@OR*)5(1XsaQkQXcjb3sO+0zqH=1sDLO W9DyZ`-w=NQ0000 Date: Wed, 27 May 2009 19:28:43 +0200 Subject: [PATCH 16/17] updated for v0.7, which will now be released. --- CHANGELOG | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ff1d029..5239fda 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,15 +2,16 @@ Mumble-Django changelog ======================= -Version 0.7, 19 May 2009: +Version 0.7, 27 May 2009: ------------------------------ * Added copyright information about the Icons in the channel viewer to COPYRIGHT. * Fixed bug that prevented various settings from being applied to Murmur. * Fixed Python 2.4 incompatibility. * Various minor bug fixes. -* Added setting users' textures -* Added Mumble icon as favicon +* Added setting users' textures. +* Added Mumble icon as favicon. +* Replaced YAML by a self-written template due to license problems. Version 0.6, 02. May 2009: ------------------------------
-
- - - - - -
- -
-
-
- - -
-
-
- - -
-
- -
- -
 
-
- -
- - - - -
-