|
From: <ma...@us...> - 2011-03-06 20:46:52
|
Revision: 315
http://openautomation.svn.sourceforge.net/openautomation/?rev=315&view=rev
Author: mayerch
Date: 2011-03-06 20:46:46 +0000 (Sun, 06 Mar 2011)
Log Message:
-----------
Move diagram a bit to the right to avoid overlaping tick labels (at least till a new Flot version fixes that)
Cf. bug ID 3175343
Modified Paths:
--------------
CometVisu/trunk/visu/designs/discreet/basic.css
CometVisu/trunk/visu/designs/pure/basic.css
Modified: CometVisu/trunk/visu/designs/discreet/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/discreet/basic.css 2011-03-06 12:09:26 UTC (rev 314)
+++ CometVisu/trunk/visu/designs/discreet/basic.css 2011-03-06 20:46:46 UTC (rev 315)
@@ -353,6 +353,7 @@
}
.diagram_inline {
+ margin-left: 1em;
width: 320px;
height: 180px;
}
Modified: CometVisu/trunk/visu/designs/pure/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/pure/basic.css 2011-03-06 12:09:26 UTC (rev 314)
+++ CometVisu/trunk/visu/designs/pure/basic.css 2011-03-06 20:46:46 UTC (rev 315)
@@ -313,6 +313,10 @@
cursor: pointer;
}
+.diagram_inline {
+ margin-left: 1em;
+}
+
#diagramTooltip {
z-index: 1000;
color: black;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <j-...@us...> - 2011-05-29 16:01:07
|
Revision: 349
http://openautomation.svn.sourceforge.net/openautomation/?rev=349&view=rev
Author: j-n-k
Date: 2011-05-29 16:01:00 +0000 (Sun, 29 May 2011)
Log Message:
-----------
changed infotrigger "info"-position, updated css
Modified Paths:
--------------
CometVisu/trunk/visu/designs/pure/basic.css
CometVisu/trunk/visu/designs/structure_pure.js
Modified: CometVisu/trunk/visu/designs/pure/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/pure/basic.css 2011-05-28 23:19:24 UTC (rev 348)
+++ CometVisu/trunk/visu/designs/pure/basic.css 2011-05-29 16:01:00 UTC (rev 349)
@@ -216,26 +216,16 @@
.switchInvisible
{
- border-style: solid;
- border-width: 1px;
- border-color: #000 #000 #000 #000;
- -moz-border-radius: 7px;
- -webkit-border-radius: 7px;
- border-radius: 7px;
- padding: 1px;
+ border: none;
+ padding: 1px;
}
.switchInvisible div
{
- border-style: solid;
- border-width: 1px;
- border-color: #000 #000 #000 #000;
+ border: none;
padding: 5px;
width: 5em;
float: left;
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border-radius: 5px;
}
.ui-slider { position: relative; text-align: left; }
Modified: CometVisu/trunk/visu/designs/structure_pure.js
===================================================================
--- CometVisu/trunk/visu/designs/structure_pure.js 2011-05-28 23:19:24 UTC (rev 348)
+++ CometVisu/trunk/visu/designs/structure_pure.js 2011-05-29 16:01:00 UTC (rev 349)
@@ -652,13 +652,13 @@
var buttons = $('<div style="float:left;"/>');
var buttonCount = 2;
- var actor = '<div class="actor switchUnpressed '
+ var actordown = '<div class="actor switchUnpressed '
if ( $p.attr( 'align' ) )
- actor += $p.attr( 'align' );
- actor += '">';
- actor += '<div class="value">' + ($p.attr('downlabel') ? $p.attr('downlabel') : '-') + '</div>';
- actor += '</div>';
- var $actor = $(actor).data( {
+ actordown += $p.attr( 'align' );
+ actordown += '">';
+ actordown += '<div class="value">' + ($p.attr('downlabel') ? $p.attr('downlabel') : '-') + '</div>';
+ actordown += '</div>';
+ var $actordown = $(actordown).data( {
'address' : address,
'mapping' : $p.attr('mapping'),
'styling' : $p.attr('styling'),
@@ -666,15 +666,14 @@
'align' : $p.attr('align'),
'type' : 'switch'
} ).bind( 'click', this.action );
- buttons.append( $actor );
-
- var actor = '<div class="actor switchUnpressed '
+
+ var actorup = '<div class="actor switchUnpressed '
if ( $p.attr( 'align' ) )
- actor += $p.attr( 'align' );
- actor += '">';
- actor += '<div class="value">' + ($p.attr('uplabel') ? $p.attr('uplabel') : '+') + '</div>';
- actor += '</div>';
- var $actor = $(actor).data( {
+ actorup += $p.attr( 'align' );
+ actorup += '">';
+ actorup += '<div class="value">' + ($p.attr('uplabel') ? $p.attr('uplabel') : '+') + '</div>';
+ actorup += '</div>';
+ var $actorup = $(actorup).data( {
'address' : address,
'mapping' : $p.attr('mapping'),
'styling' : $p.attr('styling'),
@@ -682,18 +681,31 @@
'align' : $p.attr('align'),
'type' : 'switch'
} ).bind( 'click', this.action );
- buttons.append( $actor );
- var actor = '<div class="actor switchInvisible "><div class="value">-</div></div>';
- var $actor = $(actor).data({
+ var actorinfo = '<div class="actor switchInvisible"><div class="value">-</div></div>';
+ var $actorinfo = $(actorinfo).data({
'address' : addrread,
'format' : $p.attr('format'),
'mapping' : $p.attr('mapping'),
'styling' : $p.attr('styling'),
+ 'align' : $p.attr('align'),
});
- for( var addr in addrread ) $actor.bind( addr, this.update );
- buttons.append( $actor );
+ for( var addr in addrread ) $actorinfo.bind( addr, this.update );
+ if ( $p.attr('infoposition' )==1 ) {
+ buttons.append( $actordown );
+ buttons.append( $actorinfo );
+ buttons.append( $actorup );
+ } else if ( $p.attr('infoposition' )==2 ) {
+ buttons.append( $actordown );
+ buttons.append( $actorup );
+ buttons.append( $actorinfo );
+ } else {
+ buttons.append( $actorinfo );
+ buttons.append( $actordown );
+ buttons.append( $actorup );
+ }
+
ret_val.append( buttons );
return ret_val;
},
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <pan...@us...> - 2011-07-12 21:57:49
|
Revision: 386
http://openautomation.svn.sourceforge.net/openautomation/?rev=386&view=rev
Author: panzaeron
Date: 2011-07-12 21:57:38 +0000 (Tue, 12 Jul 2011)
Log Message:
-----------
Design Alaska und Alaska_Slim hinzugef?\195?\188gt
Modified Paths:
--------------
CometVisu/trunk/visu/designs/structure_custom.js
Added Paths:
-----------
CometVisu/trunk/visu/designs/alaska/
CometVisu/trunk/visu/designs/alaska/basic.css
CometVisu/trunk/visu/designs/alaska/colors.css
CometVisu/trunk/visu/designs/alaska/fonts/
CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS
CometVisu/trunk/visu/designs/alaska/fonts/COPYING
CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog
CometVisu/trunk/visu/designs/alaska/fonts/License.txt
CometVisu/trunk/visu/designs/alaska/fonts/README
CometVisu/trunk/visu/designs/alaska/fonts/TODO
CometVisu/trunk/visu/designs/alaska/fonts/alaska_black_nocaps.ttf
CometVisu/trunk/visu/designs/alaska/fonts/alaska_light_nocaps.ttf
CometVisu/trunk/visu/designs/alaska/mobile.css
CometVisu/trunk/visu/designs/alaska_slim/
CometVisu/trunk/visu/designs/alaska_slim/basic.css
CometVisu/trunk/visu/designs/alaska_slim/colors.css
CometVisu/trunk/visu/designs/alaska_slim/fonts/
CometVisu/trunk/visu/designs/alaska_slim/fonts/AUTHORS
CometVisu/trunk/visu/designs/alaska_slim/fonts/COPYING
CometVisu/trunk/visu/designs/alaska_slim/fonts/ChangeLog
CometVisu/trunk/visu/designs/alaska_slim/fonts/License.txt
CometVisu/trunk/visu/designs/alaska_slim/fonts/README
CometVisu/trunk/visu/designs/alaska_slim/fonts/TODO
CometVisu/trunk/visu/designs/alaska_slim/fonts/alaska_black_nocaps.ttf
CometVisu/trunk/visu/designs/alaska_slim/fonts/alaska_light_nocaps.ttf
CometVisu/trunk/visu/designs/alaska_slim/mobile.css
Added: CometVisu/trunk/visu/designs/alaska/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/alaska/basic.css (rev 0)
+++ CometVisu/trunk/visu/designs/alaska/basic.css 2011-07-12 21:57:38 UTC (rev 386)
@@ -0,0 +1,377 @@
+@import "colors.css";
+@font-face { font-family: Liberation; src:url(fonts/alaska_light_nocaps.ttf); }
+@font-face { font-family: Liberation; font-weight: bold; src:url(fonts/alaska_black_nocaps.ttf); }
+
+body
+{
+ font-family: Liberation;
+ font-size: 5.5mm;
+ overflow: hidden;
+ margin:0;
+}
+
+h1
+{
+ font-size: 1.5em;
+ padding-left: 15px;
+}
+
+h2
+{
+ font-size: 1.1em;
+ margin-left: 15px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+}
+
+body hr
+{
+ clear:both;
+ height: 1px;
+ border: none;
+ padding: 0;
+ margin:0.1em;
+}
+
+#pages hr
+{
+ /* margin: 15px 0.1em 15px 0.1em; */
+ margin: 4px 1px 4px 1px;
+ border: 0; /* for Firefox and Opera */
+ border-top-style: solid;
+ border-top-width: 1px;
+ border-bottom: transparent;
+ clear: both;
+}
+
+
+body br
+{
+ clear:both;
+}
+
+div#top {
+ padding-top: 8px;
+ border-bottom-style: solid;
+ border-width: 1px;
+ padding-bottom: 2px;
+}
+
+.page h1
+{
+ margin-top: 0;
+ padding-top: 1em;
+}
+
+.nav_path
+{
+ margin-left: 15px;
+}
+
+.nav_path a
+{
+ text-decoration:none;
+}
+
+.footer, .footer *
+{
+ font-size: 0.9em;
+ vertical-align: middle;
+ border-top-style: solid;
+ border-width: 1px;
+}
+
+.footer *
+{
+ border-style: none;
+ text-decoration: none;
+}
+
+.widget
+{
+ float:left;
+ width:48%;
+ margin: 0.2em;
+ padding: 0.2em;
+ border-style: solid none none none; /* oben rechts unten links */
+ border-width: 1px;
+ min-height: 2em;
+ background: transparent;
+}
+
+.widget .widget
+{
+ width:98%;
+}
+
+.text > div, .link > a
+{
+ float:left;
+ text-align:left;
+ padding-left: 1em;
+}
+
+.widget .label, .widget.info .actor, .text > div, .link > a
+{
+ line-height: 2em;
+}
+
+.widget .label
+{
+ float:left;
+ width:49%;
+ text-align:left;
+ padding-left: 1em;
+}
+.widget .actor
+{
+ float:left;
+ margin-left:1em;
+ text-align:left;
+}
+.widget .actor div
+{
+ float:left;
+ white-space: pre-wrap;
+}
+
+.link a
+{
+ width: 49%;
+}
+
+.page
+{
+ float:left;
+ width: 900px;
+ overflow: auto;
+ position: relative;
+}
+
+.switchPressed, .switchUnpressed
+{
+ overflow: hidden;
+ text-align: center;
+ font: 14px/100%;
+ padding: 1px;
+ -webkit-border-radius: .5em;
+ -moz-border-radius: .5em;
+ border-radius: .5em;
+ border-style: solid;
+ border-width: 1px;
+ margin: 5px;
+}
+
+.switchPressed, .switchUnpressed:active,
+{
+ position: relative;
+ top: 1px;
+}
+.switchPressed:active
+{
+ position: relative;
+ top: 2px;
+}
+
+.switchUnpressed div, .switchPressed div
+{
+ padding: 2px;
+ width: 6em;
+ float: left;
+ background: transparent;
+ text-align: center;
+ cursor: pointer;
+}
+
+
+.ui-slider { position: relative; text-align: left;}
+.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.6em; height: 1.6em; cursor: default; }
+.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }
+
+.ui-slider-horizontal { height: .8em; }
+.ui-slider-horizontal .ui-slider-handle { top: -.5em; margin-left: -.8em; }
+.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
+.ui-slider-horizontal .ui-slider-range-min { left: 0; }
+.ui-slider-horizontal .ui-slider-range-max { right: 0; }
+
+.ui-slider-vertical { width: .8em; height: 100px; }
+.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
+.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
+.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
+.ui-slider-vertical .ui-slider-range-max { top: 0; }
+.ui-widget-content
+{
+ border-style: solid;
+ border-width: 1px;
+}
+.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
+{
+ border-style: solid;
+ border-width: 1px;
+ font-weight: bold;
+}
+.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { text-decoration: none; }
+
+.dim .actor
+{
+ width: 3em;
+}
+
+.widget .ui-slider
+{
+ width: 30%;
+ float: left;
+ margin-left: 1em;
+ margin-top: 0.5em;
+ border-style: solid;
+ border-width: 1px;
+ -webkit-border-radius: .5em;
+ -moz-border-radius: .5em;
+ border-radius: .5em;
+}
+
+.widget .ui-slider-handle
+{
+ padding: 1px;
+ /*height: 0.9em; /* Slider small */
+ /* width: 0.9em; /* Slider small */
+ /* margin: 0em 0em 0em -0.4em; /* Slider small top */
+ /* margin: 0.38em 0em 0em -0.4em; /* Slider small middle */
+ -webkit-border-radius: 50%;
+ -moz-border-radius: 50%;
+ border-radius: 50%;
+ border-style: solid;
+ border-width: 1px;
+}
+/* Clearfix */
+.clearfix:after
+{
+ content: ".";
+ display: block;
+ clear: both;
+ visibility: hidden;
+ line-height: 0;
+ height: 0;
+}
+
+.clearfix
+{
+ display: inline-block;
+ -webkit-border-radius: .5em;
+ -moz-border-radius: .5em;
+ border-radius: .5em;
+ border-style: solid;
+ border-width: 1px;
+}
+
+html[xmlns] .clearfix
+{
+ display: block;
+}
+
+*:first-child+html .clearfix
+{
+ min-height: 0;
+}
+
+* html .clearfix
+{
+ height: 1%;
+}
+
+* html>body .clearfix
+{
+ display: inline-block;
+ width: 100%;
+}
+
+* html .clearfix
+{
+ /* Hides from IE-mac \*/
+ height: 1%;
+ /* End hide from IE-mac */
+}
+
+.loading
+{
+ display: block !important;
+}
+
+div#loading
+{
+ display: none !important;
+}
+
+.popup, .popup_background
+{
+ position: absolute;
+ width: 90%;
+ height: 90%;
+ top: 5%;
+ left: 5%;
+}
+
+.popup
+{
+ z-index: 101;
+ background: transparent;
+}
+
+
+.popup_background
+{
+ z-index: 100;
+ -webkit-border-radius: .5em;
+ -moz-border-radius: .5em;
+ border-radius: .5em;
+ border-style: solid;
+ border-width: 1px;
+ opacity: .98;
+}
+
+.popup div
+{
+ margin: 4px;
+}
+
+.popup div.head
+{
+ border-bottom-style: solid;
+ border-bottom-width: 1px;
+}
+
+.clickable
+{
+ cursor: pointer;
+}
+
+.diagram_inline
+{
+ width: 320px;
+ height: 180px;
+}
+
+.diagram_preview
+{
+ width: 240px;
+ height: 2em;
+}
+
+#diagramTooltip
+{
+ z-index: 1000;
+ border-style: solid;
+ border-width: 1px;
+ padding: 2px;
+ opacity: 0.80;
+}
+
+.widget IFRAME
+{
+ -webkit-border-radius: .5em;
+ -moz-border-radius: .5em;
+ border-radius: .5em;
+ border-style: solid;
+ border-width: 1px;
+}
+
Added: CometVisu/trunk/visu/designs/alaska/colors.css
===================================================================
--- CometVisu/trunk/visu/designs/alaska/colors.css (rev 0)
+++ CometVisu/trunk/visu/designs/alaska/colors.css 2011-07-12 21:57:38 UTC (rev 386)
@@ -0,0 +1,115 @@
+body, .nav_path, .nav_path a, .link a, .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, .ui-widget-content a, .footer *
+{
+ color: #686868;
+}
+
+.switchPressed
+{
+ color: #999;
+}
+
+.green.switchPressed, .green.switchUnpressed
+{
+ color: #e8f0de;
+}
+
+.green.switchPressed:active, .green.switchUnpressed:active
+{
+ color: #a9c08c;
+}
+
+.red.switchPressed, .red.switchUnpressed
+{
+ color: #faddde;
+}
+
+.red.switchPressed:active, .red.switchUnpressed:active
+{
+ color: #de898c;
+}
+
+.red
+{
+ color:white;
+}
+
+.green
+{
+ color:white;
+}
+
+.blue
+{
+ color:#44f;
+}
+
+.purple
+{
+ color:#f4f;
+}
+
+/* gradient */
+body, div#top, .switchUnpressed, .switchPressed:active, .widget .ui-slider-handle, .popup_background, .clearfix
+{
+ background: #fff;
+ background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
+ background: -moz-linear-gradient(top, #fff, #ededed);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
+}
+
+.page h1, .switchPressed, .switchUnpressed:active, .footer
+{
+ background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
+ background: -moz-linear-gradient(top, #ededed, #fff);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
+}
+
+.green.switchPressed, .green.switchUnpressed
+{
+ background: #64991e;
+ background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
+ background: -moz-linear-gradient(top, #7db72f, #4e7d0e);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
+}
+
+.green.switchPressed:active, .green.switchUnpressed:active
+{
+ background: -webkit-gradient(linear, left top, left bottom, from(#4e7d0e), to(#7db72f));
+ background: -moz-linear-gradient(top, #4e7d0e, #7db72f);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
+}
+
+.red.switchPressed, .red.switchUnpressed
+{
+ background: #d81b21;
+ background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
+ background: -moz-linear-gradient(top, #ed1c24, #aa1317);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
+}
+
+.red.switchPressed:active, .red.switchUnpressed:active
+{
+ background: -webkit-gradient(linear, left top, left bottom, from(#aa1317), to(#ed1c24));
+ background: -moz-linear-gradient(top, #aa1317, #ed1c24);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa1317', endColorstr='#ed1c24');
+}
+
+/* border */
+div#top, .ui-state-default, .ui-widget-content, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, #pages .hr, .widget, .switchPressed, .switchUnpressed, .widget .ui-slider, .widget .ui-slider-handle, .popup_background, #diagramTooltip, .widget IFRAME, .clearfix
+{
+ border-color: #686868;
+}
+
+.ui-widget-content, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, #diagramTooltip
+{
+ background: #ececec;
+}
+
+/* shadow */
+.switchPressed, .switchUnpressed, .widget .ui-slider, .clearfix, .popup_background, .widget IFRAME
+{
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
+ -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
+ box-shadow: 0 1px 2px rgba(0,0,0,.2);
+}
+
Added: CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS (rev 0)
+++ CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS 2011-07-12 21:57:38 UTC (rev 386)
@@ -0,0 +1,23 @@
+AUTHORS
+
+Current Contributors (sorted alphabetically):
+
+ - Caius 'kaio' Chance <caius.chance at gmail.com>
+ Project Owner
+ Red Hat, Inc.
+
+ - Denis Jacquerye <moyogo at gmail.com>
+ Project Contributor
+
+ - Herbert Duerr <duerr at sun.com>
+ Narrow Fonts Contributor
+ Oracle, Inc.
+
+Previous Contributors
+
+ - Steve Matteson
+ Original Designer (support period expired)
+ Ascender, Inc.
+
+ - Mark Webbink <mwebbink AT redhat.com>
+ Release coordinator, Red Hat Inc.
Added: CometVisu/trunk/visu/designs/alaska/fonts/COPYING
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/COPYING (rev 0)
+++ CometVisu/trunk/visu/designs/alaska/fonts/COPYING 2011-07-12 21:57:38 UTC (rev 386)
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an in...
[truncated message content] |
|
From: <j-...@us...> - 2011-10-26 17:03:53
|
Revision: 475
http://openautomation.svn.sourceforge.net/openautomation/?rev=475&view=rev
Author: j-n-k
Date: 2011-10-26 17:03:47 +0000 (Wed, 26 Oct 2011)
Log Message:
-----------
Fixes rendering problem 3423019 and unreported rendering problem with infotrigger in discreet_slim design
Modified Paths:
--------------
CometVisu/trunk/visu/designs/discreet_slim/basic.css
CometVisu/trunk/visu/designs/structure_pure.js
Modified: CometVisu/trunk/visu/designs/discreet_slim/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/discreet_slim/basic.css 2011-10-26 11:18:59 UTC (rev 474)
+++ CometVisu/trunk/visu/designs/discreet_slim/basic.css 2011-10-26 17:03:47 UTC (rev 475)
@@ -84,7 +84,7 @@
border-color: #020202;
border-style: solid;
border-width: 1px 0px 0px 1px;
- min-height: 2em;
+ min-height: 2.1em;
background-color: #101010;
}
@@ -215,6 +215,19 @@
margin-top: -1px;
}
+.switchInvisible
+{
+ border: none;
+ padding: 1px;
+}
+
+.switchInvisible div
+{
+ border: none;
+ padding: 5px;
+ width: 5em;
+ float: left;
+}
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.6em; height: 1.6em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
Modified: CometVisu/trunk/visu/designs/structure_pure.js
===================================================================
--- CometVisu/trunk/visu/designs/structure_pure.js 2011-10-26 11:18:59 UTC (rev 474)
+++ CometVisu/trunk/visu/designs/structure_pure.js 2011-10-26 17:03:47 UTC (rev 475)
@@ -768,7 +768,10 @@
'type' : 'switch'
} ).bind( 'click', this.action );
- var actorinfo = '<div class="actor switchInvisible"><div class="value">-</div></div>';
+ var actorinfo = '<div class="actor switchInvisible" ';
+ if ( $p.attr( 'align' ) )
+ actorinfo += 'style="text-align: '+$p.attr( 'align' )+'" ';
+ actorinfo += '" ><div class="value">-</div></div>';
var $actorinfo = $(actorinfo).data({
'address' : addrread,
'format' : $p.attr('format'),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <pan...@us...> - 2011-11-06 23:12:57
|
Revision: 509
http://openautomation.svn.sourceforge.net/openautomation/?rev=509&view=rev
Author: panzaeron
Date: 2011-11-06 23:12:49 +0000 (Sun, 06 Nov 2011)
Log Message:
-----------
change font for alaska visu
Modified Paths:
--------------
CometVisu/trunk/visu/designs/alaska/basic.css
CometVisu/trunk/visu/designs/alaska_slim/basic.css
Added Paths:
-----------
CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS
CometVisu/trunk/visu/designs/alaska/fonts/COPYING
CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog
CometVisu/trunk/visu/designs/alaska/fonts/License.txt
CometVisu/trunk/visu/designs/alaska/fonts/README
CometVisu/trunk/visu/designs/alaska/fonts/TODO
CometVisu/trunk/visu/designs/alaska/fonts/alaska_black_nocaps.ttf
CometVisu/trunk/visu/designs/alaska/fonts/alaska_light_nocaps.ttf
CometVisu/trunk/visu/designs/alaska_slim/fonts/AUTHORS
CometVisu/trunk/visu/designs/alaska_slim/fonts/COPYING
CometVisu/trunk/visu/designs/alaska_slim/fonts/ChangeLog
CometVisu/trunk/visu/designs/alaska_slim/fonts/License.txt
CometVisu/trunk/visu/designs/alaska_slim/fonts/README
CometVisu/trunk/visu/designs/alaska_slim/fonts/TODO
CometVisu/trunk/visu/designs/alaska_slim/fonts/alaska_black_nocaps.ttf
CometVisu/trunk/visu/designs/alaska_slim/fonts/alaska_light_nocaps.ttf
Removed Paths:
-------------
CometVisu/trunk/visu/designs/alaska/fonts/License&ExtrasNewCicle.pdf
CometVisu/trunk/visu/designs/alaska/fonts/new_cicle_fina.ttf
CometVisu/trunk/visu/designs/alaska/fonts/new_cicle_gordita.ttf
CometVisu/trunk/visu/designs/alaska/fonts/new_cicle_semi.ttf
CometVisu/trunk/visu/designs/alaska_slim/fonts/License&ExtrasNewCicle.pdf
CometVisu/trunk/visu/designs/alaska_slim/fonts/new_cicle_fina.ttf
CometVisu/trunk/visu/designs/alaska_slim/fonts/new_cicle_gordita.ttf
CometVisu/trunk/visu/designs/alaska_slim/fonts/new_cicle_semi.ttf
Modified: CometVisu/trunk/visu/designs/alaska/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/alaska/basic.css 2011-11-06 21:44:15 UTC (rev 508)
+++ CometVisu/trunk/visu/designs/alaska/basic.css 2011-11-06 23:12:49 UTC (rev 509)
@@ -1,10 +1,10 @@
@import "colors.css";
-@font-face { font-family: new_cicle; src:url(fonts/new_cicle_fina.ttf); }
-@font-face { font-family: new_cicle; font-weight: bold; src:url(fonts/new_cicle_gordita.ttf); }
+@font-face { font-family: alaska; src:url(fonts/alaska_light_nocaps.ttf); }
+@font-face { font-family: alaska; font-weight: bold; src:url(fonts/alaska_black_nocaps.ttf); }
body
{
- font-family: new_cicle,sans-serif;
+ font-family: alaska,sans-serif;
font-size: 5.5mm;
overflow: hidden;
margin:0;
Added: CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS (rev 0)
+++ CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS 2011-11-06 23:12:49 UTC (rev 509)
@@ -0,0 +1,23 @@
+AUTHORS
+
+Current Contributors (sorted alphabetically):
+
+ - Caius 'kaio' Chance <caius.chance at gmail.com>
+ Project Owner
+ Red Hat, Inc.
+
+ - Denis Jacquerye <moyogo at gmail.com>
+ Project Contributor
+
+ - Herbert Duerr <duerr at sun.com>
+ Narrow Fonts Contributor
+ Oracle, Inc.
+
+Previous Contributors
+
+ - Steve Matteson
+ Original Designer (support period expired)
+ Ascender, Inc.
+
+ - Mark Webbink <mwebbink AT redhat.com>
+ Release coordinator, Red Hat Inc.
Added: CometVisu/trunk/visu/designs/alaska/fonts/COPYING
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/COPYING (rev 0)
+++ CometVisu/trunk/visu/designs/alaska/fonts/COPYING 2011-11-06 23:12:49 UTC (rev 509)
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
Added: CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog (rev 0)
+++ CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog 2011-11-06 23:12:49 UTC (rev 509)
@@ -0,0 +1,224 @@
+* Wed Jul 21 2010 Pravin Satpute <psa...@re...>
+- Update for New Release 1.06
+- Added New Family Narrow (Contribution from Herbert Duerr <her...@or...>)
+- updated version of fonts
+
+* Mon 10 May 2010 Caius 'kaio' Chance <me at kaio.net>
+- Fixed Romanian glyphs, U+021A, 021B, 0218, 0219, 0162, 0163, 015E, 015F,
+ 2010, 2011. (rhbz#440992)
+- Fixed height of arrows U+2190, 2192, 2194. (Issue #2)
+
+* Thu 06 May 2010 Caius 'kaio' Chance <me at kaio.net>
+- Cleaned up points and auto-instructed hinting of 'u', 'v', 'w', 'y'.
+(rhbz#463036)
+- Created the first project icon. (Issue #5)
+
+* Wed May 05 2010 Caius 'kaio' Chance <k at kaio.net>
+- Incorrect cent sign glyph (U+00A2) in Sans and Mono
+style in Liberation fonts. (rhbz#474522)
+
+* Wed 28 Apr 2010 Caius 'kaio' Chance <me at kaio.net>
+- rhbz#510174: Corrected version number of all SFD files.
+- Corrected license exceptions to GPLv2.
+- Updated README file.
+
+* Tue 27 Apr 2010 Caius 'kaio' Chance <me at kaio.net>
+- Renamed Narrow Fonts.
+- Updated list of contributors.
+- Released version 1.05.3.
+
+* Thu 22 Apr 2010 Herbert Duerr <duerr at sun.com>
+- Contributed Liberation Sans Narrow Fonts.
+
+* Fri 12 Mar 2010 Caius 'kaio' Chance <me at kaio.me>
+- Migrated to Google Code.
+- Updated AUTHORS.
+- Upgraded license to GPLv3+exceptions.
+
+* Sun 27 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
+- Fixed ttf pack preparation error.
+
+* Tue 21 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
+- Fixed 'wrongly encoded glyphs after U+10000' (rhbz#525498),
+ provided by Denis Jacquerye <moyogo at gmail.com>.
+
+* Tue 21 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
+- Fixed fontforge script sfd2ttf.pe.
+- Include traditional kern table for Sans and Serif.
+
+* Tue 14 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
+- Generated TTFs with tradition kern table, with fontforge ver 20090408.
+- Added make target alias dist-src as dist-sfd.
+
+* Mon 13 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
+- Updated for generation of traditional kern table via scripts.
+
+* Mon 06 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
+- Reconverted SFDs from original TTFs with traditional kern table.
+- Updated "clean" target in Makefile.
+
+* Tue 30 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
+- Reconverted SFDs from original TTFs with traditional kern table.
+- Updated "clean" target in Makefile.
+
+* Tue 30 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
+- Generated cleaner SFD from original TTFs.
+- Include Makefile in sources tarball.
+
+* Wed 24 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
+- Makefile: pack SFD files as source tarball.
+- Makefile: pack TTF files as ttf packs.
+- Tidy up repository.
+- Updated documents.
+
+* Mon 12 Jan 2009 Caius Chance <cchance at redhat.com>
+- Fixed copyright holder name typo for Sans Regular font (rhbz#479521).
+
+* Tue 09 Dec 2008 Caius Chance <cchance at redhat.com>
+- Changed cent sign glyph (U+00A2) to be coressed in Sans and Mono
+ (rhbz#474522).
+
+* Wed 03 Dec 2008 Caius Chance <cchance at redhat.com>
+- Started 1.04.93.devel.
+- Fixed blurriness of U+03BC for Sans Regular font (rhbz#473481).
+- Fixed src tarball mis-inclusion of dist files in Makefile.
+
+* Fri 28 Nov 2008 Caius Chance <cchance at redhat.com>
+- Corrected version number in Makefile.
+- Fixed make target of source tarball.
+- Uploaded 1.04.92 source tarball to release area.
+
+* Wed 15 Oct 2008 Caius Chance <cchance at redhat.com>
+- Fixed blurred 'u' and 'W' for Sans Bold font (rhbz#463036).
+- Released as version 1.04.92
+
+* Wed 17 Sep 2008 Caius Chance <cchance at redhat.com>
+- Fixed missing hinting instructions for all Mono fonts (rhbz#460090).
+- Fixed missing hinting instructions for all Sans fonts (rhbz#460090).
+- Fixed missing hinting instructions for all Serif fonts (rhbz#460090).
+- Released as version 1.04.91
+
+* Tue 09 Sep 2008 Caius Chance <cchance at redhat.com>
+- Backed up all released files in ./dist directory.
+
+* Fri 05 Sep 2008 Caius Chance <cchance at redhat.com>
+- Fixed incorrect glyph points and missing hinting instructions for:
+ Mono Bold Italic (up to U+2012) (rhbz#460090).
+
+* Mon 25 Aug 2008 Caius Chance <cchance at redhat.com>
+- Fixed incorrect glyph points and missing hinting instructions for:
+ U+0079, U+03BC, U+0431, U+2010..2012, U+1114117 (rhbz#458592).
+- Released as version 1.04.90.
+
+* Thu 13 Jul 2008 Caius Chance <cchance at redhat.com>
+- Released as version 1.04.
+
+* Thu 12 Jun 2008 Caius Chance <cchance at redhat.com>
+- Released as version 1.04.beta2 (1.03.99).
+- Added ZIP package building for non-tar users.
+- rhbz#440992:
+ - Created Romanian "T/t/S/s with comma below" (U+0218..021B) on all fonts.
+ - Fixed "T/s with cedilla below" (U+0162/0163) on all fonts.
+ - Created "Hyphen" and "Non-Breaking Hyphen" (U+2010..2011) on all fonts.
+
+* Wed 11 Jun 2008 Caius Chance <cchance at redhat.com>
+- Added last Version 1.03 from original manufacturer.
+- Renamed directory 'archive' to 'sandbox'.
+- Added directory description in hosting home directory.
+- Created ZIP packages for Version 1.03 and 1.04.beta.
+
+* Tue 04 Jun 2008 Caius Chance <cchance at redhat.com>
+- rhbz#440992:
+ - Created "Hyphen" and "Non-Breaking Hyphen" (U+2010..2011) on Sans Regular.
+
+* Mon 03 Jun 2008 Caius Chance <cchance at redhat.com>
+- rhbz#440992:
+ - Created Romanian "T/t/S/s with comma below" (U+0218..021B) on Sans Regular.
+ - Fixed "T/s with cedilla below" (U+0162/0163) on Sans Regular.
+
+* Fri 30 May 2008 Caius Chance <cchance at redhat.com>
+- Release Version 1.04.beta (liberation-fonts-1_04_beta).
+
+* Thu 29 May 2008 Caius Chance <cchance at redhat.com>
+- Correct SFD version numbers in "TTF Info" categor for correct version
+ number during export to TTFs.
+
+* Wed 28 May 2008 Caius Chance <cchance at redhat.com>
+- Reencoded with "Glyph Order" by FontForge.
+- Corrected font name for all Regular fonts.
+- Generated TTFs (experimantal, in "archive") with old stle kern and dummy
+ DSIG table.
+- Updated README in 1.04b TTFs (experimental, in "archive").
+
+* Tue 27 May 2008 Caius Chance <cchance at redhat.com>
+- Fixed Unicode name mis-mapping of Sans and Serif TTF files.
+- Regenerate SFD files from Unicode name mis-mapping fixed Sans and Serif TTF
+ files.
+
+* Mon 26 May 2008 Caius Chance <cchance at redhat.com>
+- Fixed Unicode name mis-mapping of Mono TTF files.
+- Regenerate SFD files from Unicode name mis-mapping fixed Mono TTF files.
+==========
+- Applied following patches submitted by Nicolas Spalinger
+ <nicolas_spalinger sil org>:
+ - We-need-versioned-tarballs.
+ - Add-ignore-file-so-the-VCS-does-not-track-the-folder.
+ - Adjust-path-for-various-Makefile-targets-subfolders.
+ - Fix-versionning-mismatch-in-the-binary-font-metadata.
+ - Add-some-description-and-extra-lines-to-the-build-ta.
+ - Reword-and-restructure-maintainers-recommendations.
+ - Some-rewording-of-the-readme-file.
+==========
+
+* Thu May 22 2008 Caius Chance <cchance at redhat.com>
+- Added latest (1.03) TTF files from Ascender. (in 'archive')
+
+* Fri May 16 2008 Caius Chance <cchance at redhat.com>
+- Change source tree as 'trunk', 'tags', 'branches'.
+==========
+- Applied following patches submitted by Nicolas Spalinger
+ <nicolas_spalinger sil org>:
+ - Add-more-information-about-the-upstream-designer.
+ - Minor-typo-and-layout-fixes.
+ - Adjust-fontforge-path-with-env-as-a-source-build.
+==========
+
+* Wed May 14 2008 Caius Chance <cchance at redhat.com>
+- Renamed target 'ttf' to 'build'.
+- Removed 'Re-Package' chapter from README and refine contents.
+- Changed AUTHORS contents.
+- Created maintainer documentation MAINTAINER.
+
+* Tue May 06 2008 Caius Chance <cchance at redhat.com>
+- Refined clean target.
+- R...
[truncated message content] |
|
From: <pan...@us...> - 2011-12-26 22:05:45
|
Revision: 612
http://openautomation.svn.sourceforge.net/openautomation/?rev=612&view=rev
Author: panzaeron
Date: 2011-12-26 22:05:37 +0000 (Mon, 26 Dec 2011)
Log Message:
-----------
Change the font for alaska visu
Modified Paths:
--------------
CometVisu/trunk/visu/designs/alaska/basic.css
CometVisu/trunk/visu/designs/alaska_slim/basic.css
Added Paths:
-----------
CometVisu/trunk/visu/designs/alaska/fonts/LICENSE.txt
CometVisu/trunk/visu/designs/alaska/fonts/Tuffy.ttf
CometVisu/trunk/visu/designs/alaska/fonts/Tuffy_Bold.ttf
Removed Paths:
-------------
CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS
CometVisu/trunk/visu/designs/alaska/fonts/COPYING
CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog
CometVisu/trunk/visu/designs/alaska/fonts/License.txt
CometVisu/trunk/visu/designs/alaska/fonts/README
CometVisu/trunk/visu/designs/alaska/fonts/TODO
CometVisu/trunk/visu/designs/alaska/fonts/alaska_black_nocaps.ttf
CometVisu/trunk/visu/designs/alaska/fonts/alaska_light_nocaps.ttf
CometVisu/trunk/visu/designs/alaska_slim/fonts/
Modified: CometVisu/trunk/visu/designs/alaska/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/alaska/basic.css 2011-12-26 21:33:53 UTC (rev 611)
+++ CometVisu/trunk/visu/designs/alaska/basic.css 2011-12-26 22:05:37 UTC (rev 612)
@@ -1,10 +1,10 @@
@import "colors.css";
-@font-face { font-family: alaska; src:url(fonts/alaska_light_nocaps.ttf); }
-@font-face { font-family: alaska; font-weight: bold; src:url(fonts/alaska_black_nocaps.ttf); }
+@font-face { font-family: Tuffy; src:url(fonts/Tuffy.ttf); }
+@font-face { font-family: Tuffy; font-weight: bold; src:url(fonts/Tuffy_Bold.ttf); }
body
{
- font-family: alaska,sans-serif;
+ font-family: Tuffy,sans-serif;
font-size: 5.5mm;
overflow: hidden;
margin:0;
@@ -414,4 +414,4 @@
div#demo_3 {
display: none;
-}
\ No newline at end of file
+}
Deleted: CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS 2011-12-26 21:33:53 UTC (rev 611)
+++ CometVisu/trunk/visu/designs/alaska/fonts/AUTHORS 2011-12-26 22:05:37 UTC (rev 612)
@@ -1,23 +0,0 @@
-AUTHORS
-
-Current Contributors (sorted alphabetically):
-
- - Caius 'kaio' Chance <caius.chance at gmail.com>
- Project Owner
- Red Hat, Inc.
-
- - Denis Jacquerye <moyogo at gmail.com>
- Project Contributor
-
- - Herbert Duerr <duerr at sun.com>
- Narrow Fonts Contributor
- Oracle, Inc.
-
-Previous Contributors
-
- - Steve Matteson
- Original Designer (support period expired)
- Ascender, Inc.
-
- - Mark Webbink <mwebbink AT redhat.com>
- Release coordinator, Red Hat Inc.
Deleted: CometVisu/trunk/visu/designs/alaska/fonts/COPYING
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/COPYING 2011-12-26 21:33:53 UTC (rev 611)
+++ CometVisu/trunk/visu/designs/alaska/fonts/COPYING 2011-12-26 22:05:37 UTC (rev 612)
@@ -1,339 +0,0 @@
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.) You can apply it to
-your programs, too.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
- To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
- For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have. You must make sure that they, too, receive or can get the
-source code. And you must show them these terms so they know their
-rights.
-
- We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
- Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
- Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
- 1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
- 2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
-
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
- 3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable. However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
- 4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
- 5. You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
- 6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
- 7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all. For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices. Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
- 8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded. In such case, this License incorporates
-the limitation as if written in the body of this License.
-
- 9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation. If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
- 10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission. For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this. Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
- NO WARRANTY
-
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
- <one line to give the program's name and a brief idea of what it does.>
- Copyright (C) <year> <name of author>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary. Here is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- <signature of Ty Coon>, 1 April 1989
- Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.
Deleted: CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog
===================================================================
--- CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog 2011-12-26 21:33:53 UTC (rev 611)
+++ CometVisu/trunk/visu/designs/alaska/fonts/ChangeLog 2011-12-26 22:05:37 UTC (rev 612)
@@ -1,224 +0,0 @@
-* Wed Jul 21 2010 Pravin Satpute <psa...@re...>
-- Update for New Release 1.06
-- Added New Family Narrow (Contribution from Herbert Duerr <her...@or...>)
-- updated version of fonts
-
-* Mon 10 May 2010 Caius 'kaio' Chance <me at kaio.net>
-- Fixed Romanian glyphs, U+021A, 021B, 0218, 0219, 0162, 0163, 015E, 015F,
- 2010, 2011. (rhbz#440992)
-- Fixed height of arrows U+2190, 2192, 2194. (Issue #2)
-
-* Thu 06 May 2010 Caius 'kaio' Chance <me at kaio.net>
-- Cleaned up points and auto-instructed hinting of 'u', 'v', 'w', 'y'.
-(rhbz#463036)
-- Created the first project icon. (Issue #5)
-
-* Wed May 05 2010 Caius 'kaio' Chance <k at kaio.net>
-- Incorrect cent sign glyph (U+00A2) in Sans and Mono
-style in Liberation fonts. (rhbz#474522)
-
-* Wed 28 Apr 2010 Caius 'kaio' Chance <me at kaio.net>
-- rhbz#510174: Corrected version number of all SFD files.
-- Corrected license exceptions to GPLv2.
-- Updated README file.
-
-* Tue 27 Apr 2010 Caius 'kaio' Chance <me at kaio.net>
-- Renamed Narrow Fonts.
-- Updated list of contributors.
-- Released version 1.05.3.
-
-* Thu 22 Apr 2010 Herbert Duerr <duerr at sun.com>
-- Contributed Liberation Sans Narrow Fonts.
-
-* Fri 12 Mar 2010 Caius 'kaio' Chance <me at kaio.me>
-- Migrated to Google Code.
-- Updated AUTHORS.
-- Upgraded license to GPLv3+exceptions.
-
-* Sun 27 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
-- Fixed ttf pack preparation error.
-
-* Tue 21 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
-- Fixed 'wrongly encoded glyphs after U+10000' (rhbz#525498),
- provided by Denis Jacquerye <moyogo at gmail.com>.
-
-* Tue 21 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
-- Fixed fontforge script sfd2ttf.pe.
-- Include traditional kern table for Sans and Serif.
-
-* Tue 14 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
-- Generated TTFs with tradition kern table, with fontforge ver 20090408.
-- Added make target alias dist-src as dist-sfd.
-
-* Mon 13 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
-- Updated for generation of traditional kern table via scripts.
-
-* Mon 06 Jul 2009 Caius 'kaio' Chance <me at kaio.me>
-- Reconverted SFDs from original TTFs with traditional kern table.
-- Updated "clean" target in Makefile.
-
-* Tue 30 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
-- Reconverted SFDs from original TTFs with traditional kern table.
-- Updated "clean" target in Makefile.
-
-* Tue 30 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
-- Generated cleaner SFD from original TTFs.
-- Include Makefile in sources tarball.
-
-* Wed 24 Jun 2009 Caius 'kaio' Chance <me at kaio.me>
-- Makefile: pack SFD files as source tarball.
-- Makefile: pack TTF files as ttf packs.
-- Tidy up repository.
-- Updated documents.
-
-* Mon 12 Jan 2009 Caius Chance <cchance at redhat.com>
-- Fixed copyright holder name typo for Sans Regular font (rhbz#479521).
-
-* Tue 09 Dec 2008 Caius Chance <cchance at redhat.com>
-- Changed cent sign glyph (U+00A2) to be coressed in Sans and Mono
- (rhbz#474522).
-
-* Wed 03 Dec 2008 Caius Chance <cchance at redhat.com>
-- Started 1.04.93.devel.
-- Fixed blurriness of U+03BC for Sans Regular font (rhbz#473481).
-- Fixed src tarball mis-inclusion of dist files in Makefile.
-
-* Fri 28 Nov 2008 Caius Chance <cchance at redhat.com>
-- Corrected version number in Makefile.
-- Fixed make target of source tarball.
-- Uploaded 1.04.92 source tarball to release area.
-
-* Wed 15 Oct 2008 Caius Chance <cchance at redhat.com>
-- Fixed blurred 'u' and 'W' for Sans Bold font (rhbz#463036).
-- Released as version 1.04.92
-
-* Wed 17 Sep 2008 Caius Chance <cchance at redhat.com>
-- Fixed missing hinting instructions for all Mono fonts (rhbz#460090).
-- Fixed missing hinting instructions for all Sans fonts (rhbz#460090).
-- Fixed missing hinting instructions for all Serif fonts (rhbz#460090).
-- Released as version 1.04.91
-
-* Tue 09 Sep 2008 Caius Chance <cchance at redhat.com>
-- Backed up all released files in ./dist directory.
-
-* Fri 05 Sep 2008 Caius Chance <cchance at redhat.com>
-- Fixed incorrect glyph points and missing hinting instructions for:
- Mono Bold Italic (up to U+2012) (rhbz#460090).
-
-* Mon 25 Aug 2008 Caius Chance <cchance at redhat.com>
-- Fixed incorrect glyph points and missing hinting instructions for:
- U+0079, U+03BC, U+0431, U+2010..2012, U+1114117 (rhbz#458592).
-- Released as version 1.04.90.
-
-* Thu 13 Jul 2008 Caius Chance <cchance at redhat.com>
-- Released as version 1.04.
-
-* Thu 12 Jun 2008 Caius Chance <cchance at redhat.com>
-- Released as version 1.04.beta2 (1.03.99).
-- Added ZIP package building for non-tar users.
-- rhbz#440992:
- - Created Romanian "T/t/S/s with comma below" (U+0218..021B) on all fonts.
- - Fixed "T/s with cedilla below" (U+0162/0163) on all fonts.
- - Created "Hyphen" and "Non-Breaking Hyphen" (U+2010..2011) on all fonts.
-
-* Wed 11 Jun 2008 Caius Chance <cchance at redhat.com>
-- Added last Version 1.03 from original manufacturer.
-- Renamed directory 'archive' to 'sandbox'.
-- Added directory description in hosting home directory.
-- Created ZIP packages for Version 1.03 and 1.04.beta.
-
-* Tue 04 Jun 2008 Caius Chance <cchance at redhat.com>
-- rhbz#440992:
- - Created "Hyphen" and "Non-Breaking Hyphen" (U+2010..2011) on Sans Regular.
-
-* Mon 03 Jun 2008 Caius Chance <cchance at redhat.com>
-- rhbz#440992:
- - Created Romanian "T/t/S/s with comma below" (U+0218..021B) on Sans Regular.
- - Fixed "T/s with cedilla below" (U+0162/0163) on Sans Regular.
-
-* Fri 30 May 2008 Caius Chance <cchance at redhat.com>
-- Release Version 1.04.beta (liberation-fonts-1_04_beta).
-
-* Thu 29 May 2008 Caius Chance <cchance at redhat.com>
-- Correct SFD version numbers in "TTF Info" categor for correct version
- number during export to TTFs.
-
-* Wed 28 May 2008 Caius Chance <cchance at redhat.com>
-- Reencoded with "Glyph Order" by FontForge.
-- Corrected font name for all Regular fonts.
-- Generated TTFs (experimantal, in "archive") with old stle kern and dummy
- DSIG table.
-- Updated README in 1.04b TTFs (experimental, in "archive").
-
-* Tue 27 May 2008 Caius Chance <cchance at redhat.com>
-- Fixed Unicode name mis-mapping of Sans and Serif TTF files.
-- Regenerate SFD files from Unicode name mis-mapping fixed Sans and Serif TTF
- files.
-
-* Mon 26 May 2008 Caius Chance <cchance at redhat.com>
-- Fixed Unicode name mis-mapping of Mono TTF files.
-- Regenerate SFD files from Unicode name mis-mapping fixed Mono TTF files.
-==========
-- Applied following patches submitted by Nicolas Spalinger
- <nicolas_spalinger sil org>:
- - We-need-versioned-tarballs.
- - Add-ignore-file-so-the-VCS-does-not-track-the-folder.
- - Adjust-path-for-various-Makefile-targets-subfolders.
- - Fix-versionning-mismatch-in-the-binary-font-metadata.
- - Add-some-description-and-extra-lines-to-the-build-ta.
- - Reword-and-restructure-maintainers-recommendations.
- - Some-rewording-of-the-readme-file.
-==========
-
-* Thu May 22 2008 Caius Chance <cchance at redhat.com>
-- Added latest (1.03) TTF files from Ascender. (in 'archive')
-
-* Fri May 16 2008 Caius Chance <cchance at redhat.com>
-- Change source tree as 'trunk', 'tags', 'branches'.
-==========
-- Applied following patches submitted by Nicolas Spalinger
- <nicolas_spalinger sil org>:
- - Add-more-information-about-the-upstream-designer.
- - Minor-typo-and-layout-fixes.
- - Adjust-fontforge-path-with-env-as-a-source-build.
-==========
-
-* Wed May 14 2008 Caius Chance <cchance at redhat.com>
-- Renamed target 'ttf' to 'build'.
-- Removed 'Re-Package' chapter from README and refine contents.
-- Changed AUTHORS contents.
-- Created maintainer documentation MAINTAINER.
-
-* Tue May 06 2008 Caius Chance <cchance at redhat.com>
-- Refined clean target.
-- Removed TTFs from git.
-
-* Fri May 02 2008 Caius Chance <cchance at redhat.com>
-- Imported into fedorahosted.org repository and be hosted.
- https://fedorahosted.org/liberation-fonts/
-- Modified source root directory name definition in Makefile.
-- Created 'dist' target for binary TTF tarball and 'src' for source tarball.
-- Corrected Regular fonts filenames.
-- Added TTF -> SFD make target.
-
-* Thu May 01 2008 Caius Chance <cchance at redhat.com>
-- Converted previous TTF files into SFD files to be open source.
-- Created fontforge SFD -> TTF scripts.
-- Created Makefile.
-- Added documentations: AUTHORS, ChangeLog, README.
-
-* Thu Apr 10 2008 Caius Chance <cchance at redhat.com>
-- Fixed exchanged and incomplete glyphs (from Ascender).
-- Repac...
[truncated message content] |
|
From: <j-...@us...> - 2012-02-05 18:41:46
|
Revision: 688
http://openautomation.svn.sourceforge.net/openautomation/?rev=688&view=rev
Author: j-n-k
Date: 2012-02-05 18:41:40 +0000 (Sun, 05 Feb 2012)
Log Message:
-----------
Initial commit of pitchblack-design, still work in progress (pre-beta)
Added Paths:
-----------
CometVisu/trunk/visu/designs/pitchblack/
CometVisu/trunk/visu/designs/pitchblack/README
CometVisu/trunk/visu/designs/pitchblack/basic.css
CometVisu/trunk/visu/designs/pitchblack/images/
CometVisu/trunk/visu/designs/pitchblack/images/fenster_einfach_auf.png
CometVisu/trunk/visu/designs/pitchblack/images/fenster_einfach_zu.png
CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_auf.png
CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_linksauf.png
CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_rechtsauf.png
CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_zu.png
CometVisu/trunk/visu/designs/pitchblack/images/jal_down.png
CometVisu/trunk/visu/designs/pitchblack/images/jal_stop.png
CometVisu/trunk/visu/designs/pitchblack/images/jal_up.png
CometVisu/trunk/visu/designs/pitchblack/images/licht-an.png
CometVisu/trunk/visu/designs/pitchblack/images/licht-aus.png
Added: CometVisu/trunk/visu/designs/pitchblack/README
===================================================================
--- CometVisu/trunk/visu/designs/pitchblack/README (rev 0)
+++ CometVisu/trunk/visu/designs/pitchblack/README 2012-02-05 18:41:40 UTC (rev 688)
@@ -0,0 +1,5 @@
+Design-Guidelines:
+------------------
+
+ - <label>-elements, use <text>-Widgets instead (exception: in <diagram_*> and <rsslog> the labels are used as caption)
+ - define proper stylings for switch/trigger widget (example will be added)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/README
___________________________________________________________________
Added: svn:executable
+ *
Added: CometVisu/trunk/visu/designs/pitchblack/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/pitchblack/basic.css (rev 0)
+++ CometVisu/trunk/visu/designs/pitchblack/basic.css 2012-02-05 18:41:40 UTC (rev 688)
@@ -0,0 +1,407 @@
+@font-face { font-family: Verdana,Helvetica,sans-serif; }
+
+/* all text-color definitions */
+
+body, .nav_path a, .link > div, .link a {
+ color: /* normaltext */ #D0D0D0;
+}
+
+.footer, .footer *, #diagramTooltip {
+ color: /* black */ #000000;
+}
+
+/* all background definitions */
+
+body, body hr, #pages hr {
+ background: /* background */ #121212;
+}
+
+.popup_background {
+ opacity: 0.98;
+}
+
+.popup_background .error {
+ background: #800000;
+}
+
+#diagramTooltip {
+ background: #fee;
+ opacity: 0.80;
+}
+
+div#top, .widget, .popup_background {
+ background: -moz-linear-gradient(top, #606060, #0D0D0D .3em ) transparent;
+ background: -webkit-linear-gradient(top, #606060, #0D0D0D .3em);
+}
+
+/* border definitions */
+
+div#top , .widget, .popup_background {
+ border-color: /* border */ #202020;
+ border-style: solid;
+ border-width: 0 0.05em 0.05em 0.05em;
+}
+
+#pages hr, body hr {
+ border: none;
+}
+
+.popup > div.head {
+ border-bottom: 1px solid;
+}
+
+.popup_background.error {
+ border: #f00;
+}
+
+#diagramTooltip {
+ border: 1px solid #fdd;
+}
+
+/* margins */
+
+body , body hr, #pages hr{
+ margin: 0;
+}
+
+div#top, .widget {
+ margin: .2em .1em 0 .1em;
+}
+
+.nav_path , .widget .actor, .diagram_inline {
+ margin-left: .2em;
+}
+
+.popup > div.head {
+ margin: 0.3em .2em 0 0.2em;
+}
+
+.popup > div.main {
+ margin: 1em auto 4px auto !important;
+}
+
+h2 {
+ margin: 5px 15px 5px 0;
+}
+
+.image .actor {
+ margin-top: 0.3em;
+}
+
+.lighton, .lightoff, .jalup, .jaldown, .jalstop , /* for all image buttons, top-margin=gradient-height */
+ .singlewindowopen, .singlewindowclosed, .doublewindowbothopen, .doublewindowbothclosed,
+ .doublewindowleftopen, .doublewindowrightopen {
+ margin: 0.3em 0 0 0 !important;
+ width: 100%;
+ height: 100%;
+}
+
+/* paddings */
+
+.lighton, .lightoff { /* image-buttons */
+ padding: 0 !important;
+ background-size: 2.6em 2.6em !important;
+}
+
+.widget, div#top {
+ padding: 0.3em;
+}
+
+.text >div, .rsslog .label, .popup >div.head {
+ padding-left: 0.3em;
+}
+
+#diagramTooltip {
+ padding: 2px;
+}
+
+/*
+ * fonts
+*/
+
+body {
+ font-family: Verdana;
+ font-size: 5.5mm;
+ overflow: hidden;
+}
+
+h2 {
+ font-size: 1.25em;
+}
+
+.rsslogRow, div#jqclock_head, .footer, .footer * {
+ font-size:80%;
+}
+
+.lighton > div, .lightoff > div, .jalup > div, .jaldown > div, /* image-buttons */
+ .jalstop > div, .singlewindowopen > div, .singlewindowclosed > div, .doublewindowleftopen > div,
+ .doublewindowrightopen >div, .doublewindowbothclosed >div, .doublewindowbothopen >div {
+ font-size:0%;
+}
+
+/*
+ * images
+*/
+
+.lighton {
+ background: url(images/licht-an.png) no-repeat center center;
+}
+
+.lightoff {
+ background: url(images/licht-aus.png) no-repeat center center;
+}
+
+.jalup {
+ background: url(images/jal_up.png) no-repeat center center;
+}
+
+.jaldown {
+ background: url(images/jal_down.png) no-repeat center center;
+}
+
+.jalstop {
+ background: url(images/jal_stop.png) no-repeat center center;
+}
+
+.singlewindowopen {
+ background: url(images/fenster_einfach_auf.png) no-repeat center center;
+}
+
+.singlewindowclosed {
+ background: url(images/fenster_einfach_zu.png) no-repeat center center;
+}
+
+.doublewindowleftopen {
+ background: url(images/fenster_zweifach_linksauf.png) no-repeat center center;
+}
+
+.doublewindowrightopen {
+ background: url(images/fenster_zweifach_rechtsauf.png) no-repeat center center;
+}
+
+.doublewindowbothopen {
+ background: url(images/fenster_zweifach_auf.png) no-repeat center center;
+}
+
+.doublewindowbothclosed {
+ background: url(images/fenster_zweifach_zu.png) no-repeat center center;
+}
+
+/*
+ * layout definitions
+*/
+
+body {
+ overflow: hidden;
+}
+
+
+body hr, body br, #pages hr {
+ clear: both;
+}
+
+body hr {
+ height: 1px;
+}
+
+#pages hr {
+ height: .3em;
+}
+
+.page h1, div#loading {
+ display: none !important;
+}
+
+.label {
+ display: none;
+}
+
+.rsslog .label {
+ display: inline-block;
+}
+
+.rsslogRow {
+ line-height: 1.3em;
+}
+
+.center {
+ text-align: center !important;
+}
+
+.nav_path, .widget_container, .text > div, .widget .label, .widget .actor,
+ .widget .actor div, .page {
+ float:left;
+}
+
+.nav_path a, .link a {
+ text-decoration:none;
+}
+
+.footer, .footer * {
+ vertical-align: middle;
+}
+
+.widget_container {
+ width: 8.33333%;
+}
+
+.widget_container .widget_container, .link > div, .link a , .switchPressed,
+ .switchUnpressed, * html>body .clearfix, .info > div, .actor .value , .text>div{
+ width: 100%;
+}
+
+.widget, div#top {
+ min-height: 2.4em;
+}
+
+.widget .label, .widget .info .actor, .text > div, .link > div, .link a,
+ div#top, .value, .popup >div.head {
+ line-height: 2.4em;
+}
+
+.text > div, .widget .label, .widget .actor {
+ text-align:left;
+}
+
+.widget .info .actor, .link > div, .link a, .value {
+ text-align: center;
+}
+
+.link > div, .link a, .clearfix {
+ display: inline-block;
+}
+
+.widget .label {
+ width: 49%;
+}
+
+.widget .actor {
+ line-height: 2.0em;
+}
+.widget .actor div {
+ white-space: pre-wrap;
+}
+
+.page {
+ width: 900px;
+ overflow: auto;
+ position: relative;
+}
+
+ .ui-slider { position: relative; text-align: left; }
+.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: .4em; height: 1.2em; cursor: default; }
+.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
+
+ .ui-slider-horizontal { height: .8em; }
+.ui-slider-horizontal .ui-slider-handle { top: -.40em; margin-left: -0.4em;}
+.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
+.ui-slider-horizontal .ui-slider-range-min { left: 0; }
+.ui-slider-horizontal .ui-slider-range-max { right: 0; }
+
+ .ui-widget-content { border: 1px solid #707070; background: #000000 ; color: #000000; }
+ .ui-widget-content a { color: #333333; }
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #000 ; font-weight: bold; color: #1c94c4; }
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
+
+
+.widget .ui-slider
+{
+ width: 90%;
+ margin: 0.9em 5% 0 5%;
+ border-color: #D0D0D0;
+ background: #121212;
+ vertical-align:middle;
+}
+
+.widget .ui-slider-handle
+{
+ border-style: solid;
+ padding: 1px;
+ background: #121212;
+ border-width: 3px;
+ border-color: #D0D0D0;
+}
+
+/* Clearfix */
+.clearfix:after {
+ content: ".";
+ clear: both;
+ visibility: hidden;
+ line-height: 0;
+ height: 0;
+}
+
+html[xmlns] .clearfix, .clearfix:after {
+ display: block;
+}
+
+*:first-child+html .clearfix {
+ min-height: 0;
+}
+
+* html .clearfix {
+ height: 1%;
+}
+
+* html>body .clearfix {
+ display: inline-block;
+}
+
+.loading {
+ display: block !important;
+}
+
+.popup, .popup_background {
+ position: absolute;
+ width: 90%;
+ height: 90%;
+ top: 5%;
+ left: 5%;
+}
+
+.popup {
+ z-index: 101;
+ background: transparent;
+}
+
+.popup_background {
+ z-index: 100;
+}
+
+.clickable {
+ cursor: pointer;
+}
+
+.diagram_inline {
+ width: 320px;
+ height: 180px;
+}
+
+.diagram_preview {
+ width: 240px;
+ height: 2em;
+}
+
+#diagramTooltip {
+ z-index: 1000;
+}
+
+/* styles for the preview */
+div#demo_1, div#demo_2 {
+ width: 100%;
+ height: 44px;
+}
+
+div#demo_1 {
+ background-color: black;
+}
+
+div#demo_2 {
+ height: 2px;
+ background-color: white;
+}
+
+div#demo_3 {
+ background-color: #1d1d1d;
+}
+
Property changes on: CometVisu/trunk/visu/designs/pitchblack/basic.css
___________________________________________________________________
Added: svn:executable
+ *
Added: CometVisu/trunk/visu/designs/pitchblack/images/fenster_einfach_auf.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/fenster_einfach_auf.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/fenster_einfach_zu.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/fenster_einfach_zu.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_auf.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_auf.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_linksauf.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_linksauf.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_rechtsauf.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_rechtsauf.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_zu.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/fenster_zweifach_zu.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/jal_down.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/jal_down.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/jal_stop.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/jal_stop.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/jal_up.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/jal_up.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/licht-an.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/licht-an.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: CometVisu/trunk/visu/designs/pitchblack/images/licht-aus.png
===================================================================
(Binary files differ)
Property changes on: CometVisu/trunk/visu/designs/pitchblack/images/licht-aus.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <j-...@us...> - 2012-02-15 18:12:05
|
Revision: 706
http://openautomation.svn.sourceforge.net/openautomation/?rev=706&view=rev
Author: j-n-k
Date: 2012-02-15 18:11:56 +0000 (Wed, 15 Feb 2012)
Log Message:
-----------
Test fix for reported problem with colspan and groups in 2-column designs
Groups can handle more than 1 column inside the border
Modified Paths:
--------------
CometVisu/trunk/visu/designs/pure/basic.css
CometVisu/trunk/visu/designs/structure_pure.js
Modified: CometVisu/trunk/visu/designs/pure/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/pure/basic.css 2012-02-13 22:13:43 UTC (rev 705)
+++ CometVisu/trunk/visu/designs/pure/basic.css 2012-02-15 18:11:56 UTC (rev 706)
@@ -62,16 +62,17 @@
vertical-align: middle;
}
-.colspan0 { /* multiple of 8.33333% ! */
- width: 49.9998%;
-}
.widget_container {
float: left;
}
-.widget_container .widget_container {
+/*.widget_container .widget_container {
width: 100%;
+}*/
+
+.colspan0 { /* multiple of 8.33333% ! */
+ width: 49.9998%;
}
.widget
Modified: CometVisu/trunk/visu/designs/structure_pure.js
===================================================================
--- CometVisu/trunk/visu/designs/structure_pure.js 2012-02-13 22:13:43 UTC (rev 705)
+++ CometVisu/trunk/visu/designs/structure_pure.js 2012-02-15 18:11:56 UTC (rev 706)
@@ -155,7 +155,9 @@
} else { // default is visible
ret_val = $('<div class="widget clearfix link pagelink"/>');
ret_val.setWidgetLayout($p);
- ret_val.append( '<div ' + wstyle + '><a href="javascript:scrollToPage(\''+path+'\')">' + name + '</a></div>' );
+ var tst = $('<div ' + wstyle + '><a href="javascript:scrollToPage(\''+path+'\')">' + name + '</a></div>');
+
+ ret_val.append(tst );
}
var childs = $p.children();
@@ -230,6 +232,7 @@
var hstyle = ''; // heading style
if( $p.attr('align') ) hstyle += 'text-align:' + $p.attr('align') + ';';
if( hstyle != '' ) hstyle = 'style="' + hstyle + '"';
+ ret_val.setWidgetLayout($p);
var childs = $p.children();
var container = $( '<div class="clearfix"/>' );
if( $p.attr('name') ) container.append( '<h2 ' + hstyle + '>' + $p.attr('name') + '</h2>' );
@@ -243,6 +246,8 @@
attributes: {
align: { type: 'string', required: false },
flavour:{ type: 'string', required: false },
+ colspan: { type: 'numeric', required: false },
+ rowspan: { type: 'numeric', required: false },
name: { type: 'string', required: true }
},
elements: {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2012-05-31 19:17:30
|
Revision: 848
http://openautomation.svn.sourceforge.net/openautomation/?rev=848&view=rev
Author: mayerch
Date: 2012-05-31 19:17:23 +0000 (Thu, 31 May 2012)
Log Message:
-----------
Update of planet design
Modified Paths:
--------------
CometVisu/trunk/visu/designs/planet/basic.css
CometVisu/trunk/visu/designs/planet/design_setup.js
CometVisu/trunk/visu/designs/structure_custom.js
Modified: CometVisu/trunk/visu/designs/planet/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/planet/basic.css 2012-05-30 18:28:39 UTC (rev 847)
+++ CometVisu/trunk/visu/designs/planet/basic.css 2012-05-31 19:17:23 UTC (rev 848)
@@ -129,9 +129,29 @@
}
#navbarLeft {
- width: 10em; /* left bar width */
+ width: 11em; /* left bar width */
+ overflow-y: hidden;
+ margin-left: 0; /* overwrite the margin-left of .page */
+}
+
+#navbarLeft:after {
+ content: "";
+ display: block;
+ height: 100%;
background-color: #cc6699;
+ width: 10em; /* size of the knee */
+ margin-top: 0.1em;
}
+
+#navbarLeft .widget, #navbarLeft hr {
+ margin-left: 0;
+ margin-right: 1em;
+}
+
+#navbarLeft .switch, #navbarLeft .trigger, #navbarLeft .multitrigger {
+ margin-right: 0em;
+}
+
#centerContainer {
}
@@ -146,6 +166,7 @@
width: 900px;
overflow: auto;
position: relative;
+ margin-left: 1em; /* to stay out of the knee */
}
.colspan0 {
@@ -247,7 +268,7 @@
.widget, .widget.group {
margin: .1em .0em 0.0em .1em;
padding: 0.1em;
- min-height: 1em;
+ min-height: 2em;
}
.widget {
@@ -259,6 +280,9 @@
}
body hr, body br, #pages hr {
- margin: 0;
+ margin: .1em .0em 0.0em .1em;
clear: both;
+ border: none;
+ background: #9cf;
+ height: 0.2em;
}
Modified: CometVisu/trunk/visu/designs/planet/design_setup.js
===================================================================
--- CometVisu/trunk/visu/designs/planet/design_setup.js 2012-05-30 18:28:39 UTC (rev 847)
+++ CometVisu/trunk/visu/designs/planet/design_setup.js 2012-05-31 19:17:23 UTC (rev 848)
@@ -22,7 +22,7 @@
//////////////////////////////////////////////////////////////////////////////
//$('head').data('colspanDefault', 1 ); // 6 is already the default
-$('#navbarLeft').data({'columns': 6, 'size': '10em'} );
+$('#navbarLeft').data({'columns': 6, 'size': '11em'} );
$('#main').data('columns', 12 );
$('#navbarRight').data('columns', 1 );
Modified: CometVisu/trunk/visu/designs/structure_custom.js
===================================================================
--- CometVisu/trunk/visu/designs/structure_custom.js 2012-05-30 18:28:39 UTC (rev 847)
+++ CometVisu/trunk/visu/designs/structure_custom.js 2012-05-31 19:17:23 UTC (rev 848)
@@ -63,7 +63,7 @@
'type' : 'toggle'
})
.bind('click', function() {
- var designs = [ 'pure', 'discreet', 'discreet_sand', 'discreet_slim', 'alaska', 'alaska_slim' ];
+ var designs = [ 'pure', 'discreet', 'discreet_sand', 'discreet_slim', 'alaska', 'alaska_slim', 'planet' ];
var oldDesign = $('.value',this).text();
var newDesign = designs[ (designs.indexOf(oldDesign) + 1) % designs.length ];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <pe...@us...> - 2012-08-09 19:55:00
|
Revision: 930
http://openautomation.svn.sourceforge.net/openautomation/?rev=930&view=rev
Author: peuter
Date: 2012-08-09 19:54:52 +0000 (Thu, 09 Aug 2012)
Log Message:
-----------
initial checkin of new design: metal
Added Paths:
-----------
CometVisu/trunk/visu/designs/metal/
CometVisu/trunk/visu/designs/metal/basic.css
CometVisu/trunk/visu/designs/metal/custom.css
CometVisu/trunk/visu/designs/metal/design_setup.js
CometVisu/trunk/visu/designs/metal/fonts/
CometVisu/trunk/visu/designs/metal/fonts/Dosis-Medium.ttf
CometVisu/trunk/visu/designs/metal/fonts/FONTLOG.txt
CometVisu/trunk/visu/designs/metal/fonts/OFL.txt
CometVisu/trunk/visu/designs/metal/images/
CometVisu/trunk/visu/designs/metal/images/active_page.png
CometVisu/trunk/visu/designs/metal/images/active_page24.png
CometVisu/trunk/visu/designs/metal/images/audio_play.png
CometVisu/trunk/visu/designs/metal/images/button_bg.png
CometVisu/trunk/visu/designs/metal/images/dot_green.png
CometVisu/trunk/visu/designs/metal/images/dot_grey.png
CometVisu/trunk/visu/designs/metal/images/dot_red.png
CometVisu/trunk/visu/designs/metal/images/dot_white.png
CometVisu/trunk/visu/designs/metal/images/gradient.png
CometVisu/trunk/visu/designs/metal/images/head_bg.png
CometVisu/trunk/visu/designs/metal/images/hr_bg.png
CometVisu/trunk/visu/designs/metal/mobile.css
CometVisu/trunk/visu/designs/metal/visu_config_metal.xml
Added: CometVisu/trunk/visu/designs/metal/basic.css
===================================================================
--- CometVisu/trunk/visu/designs/metal/basic.css (rev 0)
+++ CometVisu/trunk/visu/designs/metal/basic.css 2012-08-09 19:54:52 UTC (rev 930)
@@ -0,0 +1,536 @@
+@font-face {
+ font-family: "Dosis";
+ font-style: normal;
+ font-weight: 400;
+ src: url("fonts/Dosis-Medium.ttf");
+}
+body
+{
+ color: white;
+ font-family: Dosis, Helvetica, Arial, sans-serif;
+ font-size: 5.5mm;
+ overflow: hidden;
+ margin:0;
+ color: #fff /*{a-body-color}*/;
+ text-shadow: 0 /*{a-body-shadow-x}*/ 1px /*{a-body-shadow-y}*/ 1px /*{a-body-shadow-radius}*/ #111 /*{a-body-shadow-color}*/;
+ background: #222 /*{a-body-background-color}*/;
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #444 /*{a-body-background-start}*/), to( #222 /*{a-body-background-end}*/)); /* Saf4+, Chrome */
+ background-image: -webkit-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
+ background-image: -moz-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* FF3.6 */
+ background-image: -ms-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* IE10 */
+ background-image: -o-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Opera 11.10+ */
+ background-image: linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/);
+}
+
+h1
+{
+ font-size: 2em;
+ padding-left: 15px;
+}
+
+h2
+{
+ font-size: 1.25em;
+ margin-left: 15px;
+ margin-top: 5px;
+ margin-bottom: 5px;
+}
+
+body hr
+{
+ clear:both;
+ color: #81664b;
+ background-color: #81664b;
+ height: 1px;
+ border:none;
+ padding:0px;
+ margin:0.1em;
+}
+
+#pages hr {
+ border: 0; height: 30px; margin: 0 .1em;
+ background: transparent url(images/hr_bg.png) 50% repeat-x;
+ clear: both;
+}
+
+
+body br
+{
+ clear:both;
+}
+
+div#top {
+ padding-top: 8px;
+ border-top: 3px solid #1d1d1d;
+ border-bottom: 1px solid #0a0a0a;
+ background-color: #121212;
+ padding-bottom: 2px;
+}
+
+.page h1 {
+ display: none;
+ margin-top: 0;
+ padding-top: 1em;
+ background: #121212 url(images/head_bg.png) scroll repeat-x bottom;
+}
+
+.nav_path
+{
+ color: #81664b;
+ margin-left: 15px;
+}
+.nav_path a
+{
+ color: white;
+ text-decoration:none;
+}
+
+.footer,
+.footer *
+{
+ color: #000000;
+ font-size: 0.9em;
+ vertical-align: middle;
+}
+
+.colspandefault { /* in units of 1/12 screen width */
+ width: 6px;
+}
+
+.widget_container {
+ float: left;
+}
+.widget
+{
+ margin: 0;
+ padding: 0.3em;
+ /* border:yellow 1px solid; */
+ border-color: #020202;
+ border-style: solid;
+ border-width: 2px 0px 0px 2px;
+
+ min-height: 2em;
+ text-shadow: 0 1px 1px #111;
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#2d2d2d)); /* Saf4+, Chrome */
+ background-image: -webkit-linear-gradient(#444444, #2d2d2d); /* Chrome 10+, Saf5.1+ */
+ background-image: -moz-linear-gradient(#444444, #2d2d2d); /* FF3.6 */
+ background-image: -ms-linear-gradient(#444444, #2d2d2d); /* IE10 */
+ background-image: -o-linear-gradient(#444444, #2d2d2d); /* Opera 11.10+ */
+ background-image: linear-gradient(#444444, #2d2d2d);
+}
+.pagejump:hover,.pagelink:hover,.pagejump.active {
+ background: #444444;
+ font-weight: bold;
+ color: #fff;
+ text-shadow: 0 1px 1px #111;
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#555555), to(#383838)); /* Saf4+, Chrome */
+ background-image: -webkit-linear-gradient(#555555, #383838); /* Chrome 10+, Saf5.1+ */
+ background-image: -moz-linear-gradient(#555555, #383838); /* FF3.6 */
+ background-image: -ms-linear-gradient(#555555, #383838); /* IE10 */
+ background-image: -o-linear-gradient(#555555, #383838); /* Opera 11.10+ */
+ background-image: linear-gradient(#555555, #383838);
+}
+.pagejump.active { background: url(images/active_page24.png) no-repeat center right; }
+.text > div,
+.link > a {
+ float:left;
+ text-align:left;
+ padding-left: 0.2em;
+}
+
+.widget .label,
+.widget.info .actor,
+.text > div,
+.link > a {
+ line-height: 2em;
+}
+
+.widget .label
+{
+ float:left;
+ width:49%;
+ text-align:left;
+ padding-left: 0.2em;
+}
+.widget .label img { vertical-align: middle; }
+.widget .switchPressed img.icon, .widget .switchUnpressed img.icon { height: 1.1em !important; }
+/*.widget .actor img.icon { height: 1.1em !important; }*/
+.widget_container > .pagejump > .label {
+ width: auto;
+ display: inline;
+ padding-left: 0;
+ line-height: 1em;
+}
+.widget .actor
+{
+ float:left;
+ margin-left:0.2em;
+ text-align:left;
+}
+.widget .actor div
+{
+ float:left;
+ /*white-space: pre-wrap;*/
+}
+.widget.group { padding: 0; }
+.group div.widget_container:first-child, .group div.widget_container:first-child .widget {
+ border-top-left-radius: 1em;
+}
+
+ iframe { border: none; }
+
+.navbar .widget .label {
+ float: none;
+ width: auto;
+ position: absolute;
+ left: 0.2em;
+}
+.navbar .switchPressed, .navbar .switchUnpressed {
+ width: 100% !important;
+}
+.navbar .switchPressed .value, .navbar .switchUnpressed .value {
+ padding-left: 2em;
+}
+
+.green.switchPressed div, .green.switchUnpressed div {
+ background: transparent url(images/dot_green.png) no-repeat center center;
+ /*background: transparent url(images/dot_white.png) no-repeat center center;*/
+ color: white !important;
+ text-shadow: 0;
+}
+.red.switchPressed div, .red.switchUnpressed div{
+ background: transparent url(images/dot_grey.png) no-repeat center center;
+ color: grey !important;
+}
+
+
+.red
+{
+ color:#f44;
+ font-weight:bold;
+}
+
+.green
+{
+ color:#4f4;
+}
+
+.blue
+{
+ color:#44f;
+}
+
+.purple
+{
+ color:#f4f;
+}
+
+.link a
+{
+ line-height: 2em;
+ color: #81664b;
+ width: 49%;
+ padding-left: 0.2em;
+}
+
+.page
+{
+ float:left;
+ overflow: auto;
+ position: relative;
+}
+
+.switchPressed, .switchUnpressed {
+ border-style: solid;
+ -moz-border-radius: 12px;
+ -webkit-border-radius: 12px;
+ border-radius: 12px;
+ padding: 1px;
+ background:none;
+}
+
+.switchUnpressed
+{
+ border-width: 1px 2px 2px 1px;
+ border-color: #282828 #010101 #010101 #282828;
+ margin-top: 0px;
+ background-color: #3A3A3A;
+ background-position: center +2px;
+}
+.switchUnpressed div, .switchPressed div
+{
+ padding: 5px;
+ width: 3em;
+ float: left;
+ background: transparent;
+ text-align: center;
+ cursor: pointer;
+}
+
+.pagejump > .switchUnpressed, .pagejump > .switchPressed {
+ width: auto;
+ background-color: transparent;
+ border: none;
+ background: none;
+ margin-left:0;
+ margin-right: 0;
+ float: left;
+}
+.group
+.pagejump .switchUnpressed div, .group .pagejump .switchPressed div {
+ width: auto;
+ text-align: left;
+ margin-left: 0.2em;
+}
+.group {
+ margin: 0.2em 0.5em;
+ border: 2px solid #B3B3B3;
+ border-radius: 1em;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+ /*padding-bottom: 1em;
+ background: #eeeeee;*/
+}
+.navbar .group {
+ margin: 0.2em 0 0.1em 0;
+ border-radius: 0;
+ border-top-right-radius: 1em;
+ border-bottom-right-radius: 1em;
+ border-left: none;
+}
+.group > div > h2 {
+ font-size: 0.8em;
+ padding: 0 1em;
+ margin: 0;
+ border: none;
+ border-radius: 1.1em;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+ color: #FFF;
+ font-weight: bold;
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#999), to(#666)); /* Saf4+, Chrome */
+ background-image: -webkit-linear-gradient(#999, #666); /* Chrome 10+, Saf5.1+ */
+ background-image: -moz-linear-gradient(#999, #666); /* FF3.6 */
+ background-image: -ms-linear-gradient(#999, #666); /* IE10 */
+ background-image: -o-linear-gradient(#999, #666); /* Opera 11.10+ */
+ background-image: linear-gradient(#999, #666);
+}
+.navbar .group > div > h2 {
+ border-radius: 0;
+ border-top-right-radius: 1em;
+ text-shadow: none;
+ background-color: #eeeeee;
+ color: #3E3E3E;
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#ddd)); /* Saf4+, Chrome */
+ background-image: -webkit-linear-gradient(#f0f0f0, #ddd); /* Chrome 10+, Saf5.1+ */
+ background-image: -moz-linear-gradient(#f0f0f0, #ddd); /* FF3.6 */
+ background-image: -ms-linear-gradient(#f0f0f0, #ddd); /* IE10 */
+ background-image: -o-linear-gradient(#f0f0f0, #ddd); /* Opera 11.10+ */
+ background-image: linear-gradient(#f0f0f0, #ddd);
+}
+.navbar .group .clearfix div.widget_container:last-child, .navbar .group .clearfix div.widget_container:last-child .widget {
+ border-bottom-right-radius: 1em;
+}
+.pagejump {
+ background: #333333;
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #444444 /*{c-bar-background-start}*/), to( #2D2D2D /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
+ background-image: -webkit-linear-gradient( #444444 /*{c-bar-background-start}*/, #2D2D2D /*{c-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
+ background-image: -moz-linear-gradient( #444444 /*{c-bar-background-start}*/, #2D2D2D /*{c-bar-background-end}*/); /* FF3.6 */
+ background-image: -ms-linear-gradient( #444444 /*{c-bar-background-start}*/, #2D2D2D /*{c-bar-background-end}*/); /* IE10 */
+ background-image: -o-linear-gradient( #444444 /*{c-bar-background-start}*/, #2D2D2D /*{c-bar-background-end}*/); /* Opera 11.10+ */
+ background-image: linear-gradient( #444444 /*{c-bar-background-start}*/, #2D2D2D /*{c-bar-background-end}*/);
+ margin: 0;
+}
+
+.switchPressed
+{
+ border-width: 2px 1px 1px 2px;
+ border-color: #010101 #282828 #282828 #010101;
+ margin-top: 1px;
+ background-position: center -2px;
+}
+
+.switchUnpressed div {
+ margin-left: -1px;
+}
+
+.switchPressed div {
+ margin-top: -1px;
+}
+
+.ui-slider { position: relative; text-align: left; }
+.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.6em; height: 1.6em; cursor: default; }
+.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
+
+.ui-slider-horizontal { height: .8em; }
+.ui-slider-horizontal .ui-slider-handle { top: -.5em; margin-left: -.8em; }
+.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
+.ui-slider-horizontal .ui-slider-range-min { left: 0; }
+.ui-slider-horizontal .ui-slider-range-max { right: 0; }
+
+.ui-slider-vertical { width: .8em; height: 100px; }
+.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
+.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
+.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
+.ui-slider-vertical .ui-slider-range-max { top: 0; }
+.ui-widget-content { border: 1px solid #dddddd; background: #000 ; color: #000; }
+.ui-widget-content a { color: #333333; }
+.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #000 ; font-weight: bold; color: #1c94c4; }
+.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
+.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
+
+.dim .actor
+{
+ width: 3em;
+}
+.widget .ui-slider
+{
+ width: 45%;
+ float: left;
+ margin-left: 10px;
+ margin-left: 1em;
+ margin-top: 0.5em;
+ border-color: #010101 #282828 #282828 #010101;
+ background: url(images/gradient.png) #a7a7a7 repeat-y;
+}
+
+.widget .ui-slider-handle
+{
+ border-style: solid;
+ -moz-border-radius: 12px;
+ -webkit-border-radius: 12px;
+ border-radius: 12px;
+ padding: 1px;
+ background: url(images/button_bg.png) #171717 repeat-x;
+ border-width: 1px 2px 2px 1px;
+ border-color: #282828 #010101 #010101 #282828;
+}
+/* Clearfix */
+.clearfix:after {
+ content: ".";
+ display: block;
+ clear: both;
+ visibility: hidden;
+ line-height: 0;
+ height: 0;
+}
+
+.clearfix {
+ display: inline-block;
+}
+
+html[xmlns] .clearfix {
+ display: block;
+}
+
+*:first-child+html .clearfix {
+ min-height: 0;
+}
+
+* html .clearfix {
+ height: 1%;
+}
+
+* html>body .clearfix {
+ display: inline-block;
+ width: 100%;
+}
+
+* html .clearfix {
+ /* Hides from IE-mac \*/
+ height: 1%;
+ /* End hide from IE-mac */
+}
+
+.loading {
+ display: block !important;
+}
+
+div#loading {
+ display: none !important;
+}
+
+
+.popup,
+.popup_background {
+ position: absolute;
+ width: 90%;
+ height: 90%;
+ top: 5%;
+ left: 5%;
+}
+
+.popup {
+ z-index: 101;
+ background: transparent;
+}
+
+
+.popup_background {
+ z-index: 100;
+ border-color: #020202;
+ border-style: solid;
+ border-width: 2px 0px 0px 2px;
+ -moz-border-radius: 8px;
+ -webkit-border-radius: 8px;
+ border-radius: 8px;
+ background: #101010;
+ opacity: .98;
+}
+
+.popup div {
+ margin: 4px;
+}
+
+.popup div.head {
+ border-bottom: 1px solid;
+}
+
+.popup_background.error {
+ background: #800000;
+ border: #f00;
+}
+
+.clickable {
+ cursor: pointer;
+}
+
+.diagram_inline {
+ margin-left: 1em;
+ width: 320px;
+ height: 180px;
+}
+
+.diagram_preview {
+ width: 240px;
+ height: 2em;
+}
+
+#diagramTooltip {
+ z-index: 1000;
+ color: black;
+ border: 1px solid #fdd;
+ padding: 2px;
+ background-color: #fee;
+ opacity: 0.80;
+}
+
+/* styles for the preview */
+div#demo_1, div#demo_2 {
+ width: 100%;
+ height: 44px;
+}
+
+div#demo_1 {
+ background-color: black;
+}
+
+div#demo_2 {
+ height: 2px;
+ background-color: white;
+}
+
+div#demo_3 {
+ background-color: #1d1d1d;
+}
+.iframe .actor { width: 98%; }
Property changes on: CometVisu/trunk/visu/designs/metal/basic.css
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: CometVisu/trunk/visu/designs/metal/custom.css
===================================================================
--- CometVisu/trunk/visu/designs/metal/custom.css (rev 0)
+++ CometVisu/trunk/visu/designs/metal/custom.css 2012-08-09 19:54:52 UTC (rev 930)
@@ -0,0 +1,3 @@
+/*
+ * custom local css to overload declarations in each design (basic.css)
+ */
Property changes on: CometVisu/trunk/visu/designs/metal/custom.css
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: CometVisu/trunk/visu/designs/metal/design_setup.js
===================================================================
--- CometVisu/trunk/visu/designs/metal/design_setup.js (rev 0)
+++ CometVisu/trunk/visu/designs/metal/design_setup.js 2012-08-09 19:54:52 UTC (rev 930)
@@ -0,0 +1,339 @@
+//
+// Design setup for the pure design
+//
+// Copyright (C) 2012 by Christian Mayer
+// cometvisu (at) ChristianMayer.de
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the
+// Free Software Foundation, Inc.,
+// 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+//
+//////////////////////////////////////////////////////////////////////////////
+//$(".value < img").css("padding", "0");
+$('#navbarLeft').data({'columns': 6} );
+
+
+function getOffsetCorners(elem) {
+ return {
+ top_left: {top: Math.round(elem.offset().top), left: Math.round(elem.offset().left) },
+ bottom_left: {top: Math.round(elem.offset().top+elem.height()), left: Math.round(elem.offset().left) },
+ top_right: {top: Math.round(elem.offset().top), left: Math.round(elem.offset().left+elem.width()) },
+ bottom_right: {top: Math.round(elem.offset().top+elem.height()), left: Math.round(elem.offset().left+elem.width()) },
+ };
+}
+function roundCorners() {
+ // find elements in each groups corners
+ $('.group:visible').each(function(i){
+ var group = $(this);
+ // do not use this in navbars
+ if (group.parents('.navbar').size()>0) return;
+
+ var groupCorners = getOffsetCorners(group);
+
+ // if the group has a headline (=name) we must not round the upper corners
+ var roundUpperCorners = ($(this).find('.widget_container:first-child').size()>0);
+ var threshold=5;
+ $(this).find('.widget_container').each(function (i) {
+ var elemCorners = getOffsetCorners($(this));
+ if (roundUpperCorners) {
+ // upper left corner is done by regular css-rule
+ // upper right corner
+ if (Math.abs(elemCorners.top_right.top-groupCorners.top_right.top)<threshold && Math.abs(elemCorners.top_right.left-groupCorners.top_right.left)<threshold) {
+ $(this).css({'border-top-right-radius': '1em'});
+ $(this).children().css({'border-top-right-radius': '1em'});
+ }
+ }
+ if (Math.abs(elemCorners.bottom_right.top-groupCorners.bottom_right.top)<threshold && Math.abs(elemCorners.bottom_right.left-groupCorners.bottom_right.left)<threshold) {
+ $(this).css({'border-bottom-right-radius': '1em'});
+ $(this).children().css({'border-bottom-right-radius': '1em'});
+ }
+ if (Math.abs(elemCorners.bottom_left.top-groupCorners.bottom_left.top)<threshold && Math.abs(elemCorners.bottom_left.left-groupCorners.bottom_left.left)<threshold) {
+ $(this).css({'border-bottom-left-radius': '1em'});
+ $(this).children().css({'border-bottom-left-radius': '1em'});
+ }
+ });
+ });
+}
+//$(window).bind('resize',function() {
+// roundCorners();
+//});
+
+icons.insert({
+ 'CometVisu' : { '*' : '128',
+ '16' : { '*' : 'sodium' ,
+ 'black' : { 'uri': 'icon/comet_16_000000.png' },
+ 'white' : { 'uri': 'icon/comet_16_ffffff.png' },
+ 'antimony' : { 'uri': 'icon/comet_16_00ddff.png' },
+ 'boron' : { 'uri': 'icon/comet_16_00ff11.png' },
+ 'lithium' : { 'uri': 'icon/comet_16_ff0000.png' },
+ 'potassium' : { 'uri': 'icon/comet_16_d00055.png' },
+ 'sodium' : { 'uri': 'icon/comet_16_ff8000.png' } },
+ '32' : { '*' : 'sodium' ,
+ 'black' : { 'uri': 'icon/comet_32_000000.png' },
+ 'white' : { 'uri': 'icon/comet_32_ffffff.png' },
+ 'antimony' : { 'uri': 'icon/comet_32_00ddff.png' },
+ 'boron' : { 'uri': 'icon/comet_32_00ff11.png' },
+ 'lithium' : { 'uri': 'icon/comet_32_ff0000.png' },
+ 'potassium' : { 'uri': 'icon/comet_32_d00055.png' },
+ 'sodium' : { 'uri': 'icon/comet_32_ff8000.png' } },
+ '64' : { '*' : 'sodium' ,
+ 'black' : { 'uri': 'icon/comet_64_000000.png' },
+ 'white' : { 'uri': 'icon/comet_64_ffffff.png' },
+ 'antimony' : { 'uri': 'icon/comet_64_00ddff.png' },
+ 'boron' : { 'uri': 'icon/comet_64_00ff11.png' },
+ 'lithium' : { 'uri': 'icon/comet_64_ff0000.png' },
+ 'potassium' : { 'uri': 'icon/comet_64_d00055.png' },
+ 'sodium' : { 'uri': 'icon/comet_64_ff8000.png' } },
+ '128': { '*' : 'sodium' ,
+ 'black' : { 'uri': 'icon/comet_128_000000.png' },
+ 'white' : { 'uri': 'icon/comet_128_ffffff.png' },
+ 'antimony' : { 'uri': 'icon/comet_128_00ddff.png' },
+ 'boron' : { 'uri': 'icon/comet_128_00ff11.png' },
+ 'lithium' : { 'uri': 'icon/comet_128_ff0000.png' },
+ 'potassium' : { 'uri': 'icon/comet_128_d00055.png' },
+ 'sodium' : { 'uri': 'icon/comet_128_ff8000.png' } } },
+ 'audio_audio' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_audio.png' , 'style': 'height: 2em;' },
+ 'sodium' : { 'uri': 'icon/knx-uf-iconset/128x128_or/audio_audio.png' , 'style': 'height: 2em;' } } },
+ 'audio_eject' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_eject.png' , 'style': 'height: 2em;' } } },
+ 'audio_ff' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_ff.png' , 'style': 'height: 2em;' } } },
+ 'audio_mute' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_mute.png' , 'style': 'height: 2em;' } } },
+ 'audio_pause' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_pause.png' , 'style': 'height: 2em;' } } },
+ 'audio_playliste' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_playliste.png' , 'style': 'height: 2em;' } } },
+ 'audio_play' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_play.png' , 'style': 'height: 2em;' } } },
+ 'audio_rec' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_rec.png' , 'style': 'height: 2em;' } } },
+ 'audio_rew' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_rew.png' , 'style': 'height: 2em;' } } },
+ 'audio_sound' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_sound.png' , 'style': 'height: 2em;' } } },
+ 'audio_stop' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/audio_stop.png' , 'style': 'height: 2em;' } } },
+ 'fts_fenster_gekippt' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_fenster_gekippt.png' , 'style': 'height: 2em;' } } },
+ 'fts_fenster_offen' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_fenster_offen.png' , 'style': 'height: 2em;' } } },
+ 'fts_fenster' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_fenster.png' , 'style': 'height: 2em;' } } },
+ 'fts_garage' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_garage.png' , 'style': 'height: 2em;' } } },
+ 'fts_markise' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_markise.png' , 'style': 'height: 2em;' } } },
+ 'fts_rollo' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_rollo.png' , 'style': 'height: 2em;' } } },
+ 'fts_tuer_offen' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_tuer_offen.png' , 'style': 'height: 2em;' } } },
+ 'fts_tuer' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/fts_tuer.png' , 'style': 'height: 2em;' } } },
+ 'it_fernsehen' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_fernsehen.png' , 'style': 'height: 2em;' } } },
+ 'it_funk_dcf77' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_funk_dcf77.png' , 'style': 'height: 2em;' } } },
+ 'it_internet' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_internet.png' , 'style': 'height: 2em;' } } },
+ 'it_kamera' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_kamera.png' , 'style': 'height: 2em;' } } },
+ 'it_nas' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_nas.png' , 'style': 'height: 2em;' } } },
+ 'it_netz' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_netz.png' , 'style': 'height: 2em;' } } },
+ 'it_netzwerk' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_netzwerk.png' , 'style': 'height: 2em;' } } },
+ 'it_pc' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_pc.png' , 'style': 'height: 2em;' } } },
+ 'it_radio' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_radio.png' , 'style': 'height: 2em;' } } },
+ 'it_router' : { '*': { '*' : 'white',
+ 'white' : { 'uri': 'icon/knx-uf-iconset/128x128_ws/it_router.p...
[truncated message content] |