Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-24 14:08:26 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-24 14:08:26 (GMT)
commite4ab26766d0e69078dbd58e69fc4689ba448b34f (patch)
treec0bc1481d382d59aab7a133db5220da71e01bb8f
Initial commitHEADmaster
-rw-r--r--activity/activity-html-demo.svg7
-rw-r--r--activity/activity.info8
-rw-r--r--index.html3
-rwxr-xr-xsetup.py21
4 files changed, 39 insertions, 0 deletions
diff --git a/activity/activity-html-demo.svg b/activity/activity-html-demo.svg
new file mode 100644
index 0000000..ac406ff
--- /dev/null
+++ b/activity/activity-html-demo.svg
@@ -0,0 +1,7 @@
+<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
+ <!ENTITY stroke_color "#010101">
+ <!ENTITY fill_color "#FFFFFF">
+]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="activity-browse">
+ <circle cx="27.375" cy="27.5" display="inline" fill="&fill_color;" r="19.903" stroke="&stroke_color;" stroke-width="3.5"/>
+</g></svg>
+
diff --git a/activity/activity.info b/activity/activity.info
new file mode 100644
index 0000000..b36abc4
--- /dev/null
+++ b/activity/activity.info
@@ -0,0 +1,8 @@
+[Activity]
+name = HTMLDemo
+activity_version = 1
+bundle_id = org.sugarlabs.HTMLDemo
+icon = activity-html-demo
+exec = sugar-activity-html
+license = GPLv2+
+summary = Hello world!
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..92630eb
--- /dev/null
+++ b/index.html
@@ -0,0 +1,3 @@
+<html><body>
+ Hello world!
+</body></html>
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..c60f4d0
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
+
+from sugar3.activity import bundlebuilder
+
+bundlebuilder.start()