|
From: <ma...@us...> - 2010-12-13 21:51:23
|
Revision: 218
http://openautomation.svn.sourceforge.net/openautomation/?rev=218&view=rev
Author: mayerch
Date: 2010-12-13 21:51:18 +0000 (Mon, 13 Dec 2010)
Log Message:
-----------
Initial commit for setting up the transform infrastructure
Modified Paths:
--------------
CometVisu/trunk/visu/index.html
Modified: CometVisu/trunk/visu/index.html
===================================================================
--- CometVisu/trunk/visu/index.html 2010-12-13 21:50:25 UTC (rev 217)
+++ CometVisu/trunk/visu/index.html 2010-12-13 21:51:18 UTC (rev 218)
@@ -14,6 +14,8 @@
<script src="designs/structure_pure.js" type="text/javascript"></script>
<script src="designs/structure_custom.js" type="text/javascript"></script>
<script src="lib/templateengine.js" type="text/javascript"></script>
+ <script src="transforms/transform_default.js" type="text/javascript"></script>
+ <script src="transforms/transform_knx.js" type="text/javascript"></script>
<style type="text/css">
.loading { display: none; }
</style>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2011-11-05 20:03:48
|
Revision: 500
http://openautomation.svn.sourceforge.net/openautomation/?rev=500&view=rev
Author: mayerch
Date: 2011-11-05 20:03:42 +0000 (Sat, 05 Nov 2011)
Log Message:
-----------
Compatability improvement for iPad
Modified Paths:
--------------
CometVisu/trunk/visu/index.html
Modified: CometVisu/trunk/visu/index.html
===================================================================
--- CometVisu/trunk/visu/index.html 2011-11-04 17:22:40 UTC (rev 499)
+++ CometVisu/trunk/visu/index.html 2011-11-05 20:03:42 UTC (rev 500)
@@ -4,7 +4,9 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CometVisu-Client</title>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0; webkit-user-select: none;" />
+ <meta name="apple-mobile-web-app-capable" content="yes" />
+ <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<script src="lib/compatibility.js" type="text/javascript"></script>
<script src="lib/jquery.js" type="text/javascript"></script>
<script src="lib/jquery-ui.js" type="text/javascript"></script>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <net...@us...> - 2012-10-31 08:50:27
|
Revision: 1086
http://openautomation.svn.sourceforge.net/openautomation/?rev=1086&view=rev
Author: netsrac69
Date: 2012-10-31 08:50:18 +0000 (Wed, 31 Oct 2012)
Log Message:
-----------
Added Apple iOS application icons
Modified Paths:
--------------
CometVisu/trunk/visu/index.html
Modified: CometVisu/trunk/visu/index.html
===================================================================
--- CometVisu/trunk/visu/index.html 2012-10-31 08:49:51 UTC (rev 1085)
+++ CometVisu/trunk/visu/index.html 2012-10-31 08:50:18 UTC (rev 1086)
@@ -6,9 +6,14 @@
<title>CometVisu-Client</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="icon" href="icon/comet_16x16_000000.png" type="image/png" />
+ <link rel="apple-touch-icon" sizes="57x57" href="icon/comet_webapp_icon_114.png" />
+ <link rel="apple-touch-icon" sizes="114x114" href="icon/comet_webapp_icon_114.png" />
+ <link rel="apple-touch-icon" sizes="72x72" href="icon/comet_webapp_icon_144.png" />
+ <link rel="apple-touch-icon" sizes="144x144" href="icon/comet_webapp_icon_144.png" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0; webkit-user-select: none;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
+ <meta name="apple-mobile-web-app-status-bar-style" content="black" />
+
<script src="dependencies/jquery.js" type="text/javascript"></script>
<script src="lib/compatibility.js" type="text/javascript"></script>
<script src="dependencies/jquery-ui.js" type="text/javascript"></script>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2013-02-02 21:22:06
|
Revision: 1390
http://openautomation.svn.sourceforge.net/openautomation/?rev=1390&view=rev
Author: mayerch
Date: 2013-02-02 21:22:00 +0000 (Sat, 02 Feb 2013)
Log Message:
-----------
Last check in can't be the solution - new try...
Modified Paths:
--------------
CometVisu/trunk/visu/index.html
Modified: CometVisu/trunk/visu/index.html
===================================================================
--- CometVisu/trunk/visu/index.html 2013-02-02 21:18:46 UTC (rev 1389)
+++ CometVisu/trunk/visu/index.html 2013-02-02 21:22:00 UTC (rev 1390)
@@ -27,7 +27,6 @@
"lib/iconhandler.js",
"structure/pure/_common.js",
"designs/structure_custom.js",
- "lib/templateengine.js",
"structure/pure/break.js",
"structure/pure/group.js",
"structure/pure/rgb.js",
@@ -56,7 +55,8 @@
"transforms/transform_oh.js",
"dependencies/Three.js",
"dependencies/poly2tri.js",
- "dependencies/jsfloorplan.js"
+ "dependencies/jsfloorplan.js",
+ "lib/templateengine.js"
]);
</script>
<style type="text/css">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|