summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xservices/python/calculator.py8
-rwxr-xr-xservices/python/hello-world.py8
-rw-r--r--web-gui/calculator/source/class/calculator/Application.js7
-rw-r--r--web-gui/calculator/source/class/calculator/test/DemoTest.js7
-rw-r--r--web-gui/calculator/source/class/calculator/theme/Appearance.js7
-rw-r--r--web-gui/calculator/source/class/calculator/theme/Color.js9
-rw-r--r--web-gui/calculator/source/class/calculator/theme/Decoration.js9
-rw-r--r--web-gui/calculator/source/class/calculator/theme/Font.js7
-rw-r--r--web-gui/calculator/source/class/calculator/theme/Theme.js9
-rw-r--r--web-gui/hello-world/source/class/hello_world/Application.js7
-rw-r--r--web-gui/hello-world/source/class/hello_world/test/DemoTest.js7
-rw-r--r--web-gui/hello-world/source/class/hello_world/theme/Appearance.js9
-rw-r--r--web-gui/hello-world/source/class/hello_world/theme/Color.js9
-rw-r--r--web-gui/hello-world/source/class/hello_world/theme/Decoration.js9
-rw-r--r--web-gui/hello-world/source/class/hello_world/theme/Font.js7
-rw-r--r--web-gui/hello-world/source/class/hello_world/theme/Theme.js9
16 files changed, 79 insertions, 49 deletions
diff --git a/services/python/calculator.py b/services/python/calculator.py
index cebcee4..859933f 100755
--- a/services/python/calculator.py
+++ b/services/python/calculator.py
@@ -1,4 +1,12 @@
#!/usr/bin/env python2.5
+#
+# json dbus bridge examples
+#
+# Copyright (c) 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
+#
+# To the extent possible under law, Pengutronix e.K. has waived all copyright
+# and related or neighboring rights to JSON-DBus-Bridge Demo Code.
+#
import gobject
diff --git a/services/python/hello-world.py b/services/python/hello-world.py
index 9669f3c..92450ea 100755
--- a/services/python/hello-world.py
+++ b/services/python/hello-world.py
@@ -1,4 +1,12 @@
#!/usr/bin/env python2.5
+#
+# json dbus bridge examples
+#
+# Copyright (c) 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
+#
+# To the extent possible under law, Pengutronix e.K. has waived all copyright
+# and related or neighboring rights to JSON-DBus-Bridge Demo Code.
+#
import gobject
diff --git a/web-gui/calculator/source/class/calculator/Application.js b/web-gui/calculator/source/class/calculator/Application.js
index 3041bea..0e3652a 100644
--- a/web-gui/calculator/source/class/calculator/Application.js
+++ b/web-gui/calculator/source/class/calculator/Application.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
diff --git a/web-gui/calculator/source/class/calculator/test/DemoTest.js b/web-gui/calculator/source/class/calculator/test/DemoTest.js
index ac0b7c4..e43274b 100644
--- a/web-gui/calculator/source/class/calculator/test/DemoTest.js
+++ b/web-gui/calculator/source/class/calculator/test/DemoTest.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
diff --git a/web-gui/calculator/source/class/calculator/theme/Appearance.js b/web-gui/calculator/source/class/calculator/theme/Appearance.js
index 1f5758c..f675f6c 100644
--- a/web-gui/calculator/source/class/calculator/theme/Appearance.js
+++ b/web-gui/calculator/source/class/calculator/theme/Appearance.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
diff --git a/web-gui/calculator/source/class/calculator/theme/Color.js b/web-gui/calculator/source/class/calculator/theme/Color.js
index 8636762..eebf256 100644
--- a/web-gui/calculator/source/class/calculator/theme/Color.js
+++ b/web-gui/calculator/source/class/calculator/theme/Color.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
@@ -15,4 +16,4 @@ qx.Theme.define("calculator.theme.Color",
colors :
{
}
-}); \ No newline at end of file
+});
diff --git a/web-gui/calculator/source/class/calculator/theme/Decoration.js b/web-gui/calculator/source/class/calculator/theme/Decoration.js
index cfa2c0f..6f21956 100644
--- a/web-gui/calculator/source/class/calculator/theme/Decoration.js
+++ b/web-gui/calculator/source/class/calculator/theme/Decoration.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
@@ -15,4 +16,4 @@ qx.Theme.define("calculator.theme.Decoration",
decorations :
{
}
-}); \ No newline at end of file
+});
diff --git a/web-gui/calculator/source/class/calculator/theme/Font.js b/web-gui/calculator/source/class/calculator/theme/Font.js
index 7382377..64149ae 100644
--- a/web-gui/calculator/source/class/calculator/theme/Font.js
+++ b/web-gui/calculator/source/class/calculator/theme/Font.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
diff --git a/web-gui/calculator/source/class/calculator/theme/Theme.js b/web-gui/calculator/source/class/calculator/theme/Theme.js
index aa59d7d..2ca1f35 100644
--- a/web-gui/calculator/source/class/calculator/theme/Theme.js
+++ b/web-gui/calculator/source/class/calculator/theme/Theme.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
@@ -18,4 +19,4 @@ qx.Theme.define("calculator.theme.Theme",
icon : qx.theme.icon.Tango,
appearance : calculator.theme.Appearance
}
-}); \ No newline at end of file
+});
diff --git a/web-gui/hello-world/source/class/hello_world/Application.js b/web-gui/hello-world/source/class/hello_world/Application.js
index 72240c7..088a294 100644
--- a/web-gui/hello-world/source/class/hello_world/Application.js
+++ b/web-gui/hello-world/source/class/hello_world/Application.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
diff --git a/web-gui/hello-world/source/class/hello_world/test/DemoTest.js b/web-gui/hello-world/source/class/hello_world/test/DemoTest.js
index 2333e41..7735b75 100644
--- a/web-gui/hello-world/source/class/hello_world/test/DemoTest.js
+++ b/web-gui/hello-world/source/class/hello_world/test/DemoTest.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
diff --git a/web-gui/hello-world/source/class/hello_world/theme/Appearance.js b/web-gui/hello-world/source/class/hello_world/theme/Appearance.js
index ee5a135..1cb1675 100644
--- a/web-gui/hello-world/source/class/hello_world/theme/Appearance.js
+++ b/web-gui/hello-world/source/class/hello_world/theme/Appearance.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
@@ -15,4 +16,4 @@ qx.Theme.define("hello_world.theme.Appearance",
appearances :
{
}
-}); \ No newline at end of file
+});
diff --git a/web-gui/hello-world/source/class/hello_world/theme/Color.js b/web-gui/hello-world/source/class/hello_world/theme/Color.js
index 1cd7692..3f37a86 100644
--- a/web-gui/hello-world/source/class/hello_world/theme/Color.js
+++ b/web-gui/hello-world/source/class/hello_world/theme/Color.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
@@ -15,4 +16,4 @@ qx.Theme.define("hello_world.theme.Color",
colors :
{
}
-}); \ No newline at end of file
+});
diff --git a/web-gui/hello-world/source/class/hello_world/theme/Decoration.js b/web-gui/hello-world/source/class/hello_world/theme/Decoration.js
index 9dc79bc..0083360 100644
--- a/web-gui/hello-world/source/class/hello_world/theme/Decoration.js
+++ b/web-gui/hello-world/source/class/hello_world/theme/Decoration.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
@@ -15,4 +16,4 @@ qx.Theme.define("hello_world.theme.Decoration",
decorations :
{
}
-}); \ No newline at end of file
+});
diff --git a/web-gui/hello-world/source/class/hello_world/theme/Font.js b/web-gui/hello-world/source/class/hello_world/theme/Font.js
index a73b328..712c86f 100644
--- a/web-gui/hello-world/source/class/hello_world/theme/Font.js
+++ b/web-gui/hello-world/source/class/hello_world/theme/Font.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
diff --git a/web-gui/hello-world/source/class/hello_world/theme/Theme.js b/web-gui/hello-world/source/class/hello_world/theme/Theme.js
index 3c07b4c..68ad492 100644
--- a/web-gui/hello-world/source/class/hello_world/theme/Theme.js
+++ b/web-gui/hello-world/source/class/hello_world/theme/Theme.js
@@ -1,10 +1,11 @@
/* ************************************************************************
- Copyright:
+ Copyright: 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
License:
-
- Authors:
+ To the extent possible under law, Pengutronix e.K. has
+ waived all copyright and related or neighboring rights to
+ JSON-DBus-Bridge Demo Code.
************************************************************************ */
@@ -18,4 +19,4 @@ qx.Theme.define("hello_world.theme.Theme",
icon : qx.theme.icon.Tango,
appearance : hello_world.theme.Appearance
}
-}); \ No newline at end of file
+});