aboutsummaryrefslogtreecommitdiff
path: root/js/io/templates
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-05-11 14:41:20 -0700
committerJose Antonio Marquez2012-05-11 14:41:20 -0700
commitc87e538fdc337639bc4d54bb087dbf2b4f20297f (patch)
treebbbcf496841932261b21f977061fd41c01c0e0a6 /js/io/templates
parentf10bec0c594c6404eec51dc1a005f7f17570ba52 (diff)
downloadninja-c87e538fdc337639bc4d54bb087dbf2b4f20297f.tar.gz
Adding support for new templates
This is supported for NEW and OPEN, SAVE is not supported yet by I/O. Saving works, but it will not be a banner template.
Diffstat (limited to 'js/io/templates')
-rw-r--r--js/io/templates/descriptor.json59
-rwxr-xr-xjs/io/templates/files/banner.txt13
2 files changed, 68 insertions, 4 deletions
diff --git a/js/io/templates/descriptor.json b/js/io/templates/descriptor.json
index 21c4b58c..0b2b70e5 100644
--- a/js/io/templates/descriptor.json
+++ b/js/io/templates/descriptor.json
@@ -1,13 +1,21 @@
1{ 1{
2 "categories":{ 2 "categories":{
3 "children":["/"] 3 "children":["/basic", "/template"]
4 }, 4 },
5 "/":{ 5
6 "/basic":{
6 "name":"Blank File", 7 "name":"Blank File",
7 "uri":"/", 8 "uri":"/basic",
8 "type":"directory", 9 "type":"directory",
9 "children":["js/io/templates/files/html.txt", "js/io/templates/files/js.txt", "js/io/templates/files/css.txt", "js/io/templates/files/json.txt", "js/io/templates/files/php.txt", "js/io/templates/files/pl.txt", "js/io/templates/files/py.txt", "js/io/templates/files/rb.txt", "js/io/templates/files/xml.txt"] 10 "children":["js/io/templates/files/html.txt", "js/io/templates/files/js.txt", "js/io/templates/files/css.txt", "js/io/templates/files/json.txt", "js/io/templates/files/php.txt", "js/io/templates/files/pl.txt", "js/io/templates/files/py.txt", "js/io/templates/files/rb.txt", "js/io/templates/files/xml.txt"]
10 }, 11 },
12 "/template":{
13 "name":"Template",
14 "uri":"/template",
15 "type":"directory",
16 "children":["js/io/templates/files/banner.txt"]
17 },
18
11 "js/io/templates/files/html.txt":{ 19 "js/io/templates/files/html.txt":{
12 "name":"HTML", 20 "name":"HTML",
13 "uri":"js/io/templates/files/html.txt", 21 "uri":"js/io/templates/files/html.txt",
@@ -75,6 +83,49 @@
75 "name": "Basic", 83 "name": "Basic",
76 "uri": "defaultTemplate", 84 "uri": "defaultTemplate",
77 "type":"file" 85 "type":"file"
86 },
87
88 "js/io/templates/files/banner.txt":{
89 "name":"Banner",
90 "uri":"js/io/templates/files/banner.txt",
91 "type":"file",
92 "fileExtension":".html",
93 "children":["120x600", "160x600", "200x200", "250x250", "300x250", "336x280", "550x400"]
94 },
95
96 "120x600":{
97 "name": "Skyscraper",
98 "uri": "120x600",
99 "type":"file"
100 },
101 "160x600":{
102 "name": "Wide Skyscraper",
103 "uri": "160x600",
104 "type":"file"
105 },
106 "200x200":{
107 "name": "Small Square",
108 "uri": "200x200",
109 "type":"file"
110 },
111 "250x250":{
112 "name": "Square",
113 "uri": "250x250",
114 "type":"file"
115 },
116 "300x250":{
117 "name": "Medium Rectangle",
118 "uri": "300x250",
119 "type":"file"
120 },
121 "336x280":{
122 "name": "Large Rectangle",
123 "uri": "336x280",
124 "type":"file"
125 },
126 "550x400":{
127 "name": "Animation Default",
128 "uri": "550x400",
129 "type":"file"
78 } 130 }
79
80} \ No newline at end of file 131} \ No newline at end of file
diff --git a/js/io/templates/files/banner.txt b/js/io/templates/files/banner.txt
new file mode 100755
index 00000000..fdafe4f6
--- /dev/null
+++ b/js/io/templates/files/banner.txt
@@ -0,0 +1,13 @@
1<!DOCTYPE html>
2
3<div class="ninja-banner">
4
5 <!-- Created with Motorola Mobility Ninja -->
6
7 <!-- Ninja-Banner Dimensions@@@ -->
8
9 <style type="text/css">
10 .ninja-banner {}
11 </style>
12
13</div> \ No newline at end of file