From 4fda3af17e55c0afff35b3f3ebbe5b4fd1ffad7e Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Fri, 14 Sep 2012 19:24:39 +0100 Subject: working nicely multiscreen --- liveengine/bin/data/american_football.xml | 68 +++++++++++++++ liveengine/bin/data/birds.xml | 67 +++++++++++++++ liveengine/bin/data/crests.xml | 68 +++++++++++++++ liveengine/bin/data/cricket.xml | 68 +++++++++++++++ liveengine/bin/data/dancing.xml | 118 +++++++++++++++----------- liveengine/bin/data/makeplaylist.py | 28 +++++++ liveengine/bin/data/military_ethnic.xml | 68 +++++++++++++++ liveengine/bin/data/military_ladies.xml | 51 ------------ liveengine/bin/data/miltary_ladies.xml | 68 +++++++++++++++ liveengine/bin/data/organs.xml | 132 +++++++++++++++--------------- liveengine/bin/data/teamsports.xml | 68 +++++++++++++++ liveengine/bin/data/test.svg | 76 ----------------- 12 files changed, 639 insertions(+), 241 deletions(-) create mode 100644 liveengine/bin/data/american_football.xml create mode 100644 liveengine/bin/data/birds.xml create mode 100644 liveengine/bin/data/crests.xml create mode 100644 liveengine/bin/data/cricket.xml create mode 100755 liveengine/bin/data/makeplaylist.py create mode 100644 liveengine/bin/data/military_ethnic.xml delete mode 100644 liveengine/bin/data/military_ladies.xml create mode 100644 liveengine/bin/data/miltary_ladies.xml create mode 100644 liveengine/bin/data/teamsports.xml delete mode 100644 liveengine/bin/data/test.svg (limited to 'liveengine/bin') diff --git a/liveengine/bin/data/american_football.xml b/liveengine/bin/data/american_football.xml new file mode 100644 index 0000000..16b5588 --- /dev/null +++ b/liveengine/bin/data/american_football.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/birds.xml b/liveengine/bin/data/birds.xml new file mode 100644 index 0000000..9326acf --- /dev/null +++ b/liveengine/bin/data/birds.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/crests.xml b/liveengine/bin/data/crests.xml new file mode 100644 index 0000000..011936b --- /dev/null +++ b/liveengine/bin/data/crests.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/cricket.xml b/liveengine/bin/data/cricket.xml new file mode 100644 index 0000000..ff7925a --- /dev/null +++ b/liveengine/bin/data/cricket.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/dancing.xml b/liveengine/bin/data/dancing.xml index a9e7b7e..0106af8 100644 --- a/liveengine/bin/data/dancing.xml +++ b/liveengine/bin/data/dancing.xml @@ -1,50 +1,68 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/makeplaylist.py b/liveengine/bin/data/makeplaylist.py new file mode 100755 index 0000000..92ff865 --- /dev/null +++ b/liveengine/bin/data/makeplaylist.py @@ -0,0 +1,28 @@ +#!/usr/bin/python + +from lxml import etree +import sys,os + +if len(sys.argv)<2: + print "usage: makeplaylist source_directory" + sys.exit(0) + +sourcedir=sys.argv[1] + +page = etree.Element('playlist') +doc = etree.ElementTree(page) + +dirList=sorted(os.listdir(sourcedir)) +note = 36 +while note<100: + for fname in dirList: + pageElement = etree.SubElement(page, 'svglayer', + note=str(note), + file=sourcedir+"/"+fname) + note +=1 + if note>100: + break + +file= open(sourcedir+".xml", "w") +doc.write(file, xml_declaration=True, encoding='utf-8',pretty_print=True) +file.close() \ No newline at end of file diff --git a/liveengine/bin/data/military_ethnic.xml b/liveengine/bin/data/military_ethnic.xml new file mode 100644 index 0000000..babad30 --- /dev/null +++ b/liveengine/bin/data/military_ethnic.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/military_ladies.xml b/liveengine/bin/data/military_ladies.xml deleted file mode 100644 index f61bece..0000000 --- a/liveengine/bin/data/military_ladies.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/liveengine/bin/data/miltary_ladies.xml b/liveengine/bin/data/miltary_ladies.xml new file mode 100644 index 0000000..4cabbd4 --- /dev/null +++ b/liveengine/bin/data/miltary_ladies.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/organs.xml b/liveengine/bin/data/organs.xml index 59b5d15..dba72d4 100644 --- a/liveengine/bin/data/organs.xml +++ b/liveengine/bin/data/organs.xml @@ -1,64 +1,68 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/teamsports.xml b/liveengine/bin/data/teamsports.xml new file mode 100644 index 0000000..3c7ff16 --- /dev/null +++ b/liveengine/bin/data/teamsports.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/liveengine/bin/data/test.svg b/liveengine/bin/data/test.svg deleted file mode 100644 index 8869411..0000000 --- a/liveengine/bin/data/test.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - -- cgit v1.2.3