]> err.no Git - sope/commitdiff
added some missing sopex templates
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 20 Aug 2004 17:59:46 +0000 (17:59 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 20 Aug 2004 17:59:46 +0000 (17:59 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@7 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sopex/Templates/ChangeLog [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/TemplateInfo.plist [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.h [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.html [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.m [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.wod [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/TemplateInfo.plist [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.h [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.m [new file with mode: 0644]
sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.wox [new file with mode: 0644]
sopex/Templates/README [new file with mode: 0644]

diff --git a/sopex/Templates/ChangeLog b/sopex/Templates/ChangeLog
new file mode 100644 (file)
index 0000000..261e12c
--- /dev/null
@@ -0,0 +1,28 @@
+2004-08-18  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * README: fixed location 1), reported by
+         Sungjin Chun <chunsj@embian.com>
+
+2004-05-26  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * Project Templates/SOPE/Web Application/GNUmakefile: bugfix
+
+       * Project Templates/SOPE/Web Application/{COPYING, COPYRIGHT, TODO,
+         NOTES, PROJECTLEAD, Version}: added templates which are
+         common in OGo
+
+       * Project Templates/SOPE/Web Application/WebApp.xcode: added new
+         files, renamed "GNUstep Makefiles" as "Makefiles"
+
+2004-04-09  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * Project Templates/SOPE/Web Application/GNUmakefile*: added for
+         GNUstep. It's now possible to easily deploy SOPE:X applications
+         on non-Mac OS X targets.
+
+       * Project Templates/SOPE/Web Application/WebApp_main.m: provided
+         definition for SOPEXMain if WITHOUT_SOPEX is defined. This is
+         done by the GNUmakefile.preamble if the build is not done
+         on Mac OS X.
+
+       * ChangeLog: created.
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/TemplateInfo.plist b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/TemplateInfo.plist
new file mode 100644 (file)
index 0000000..fb7cd5f
--- /dev/null
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+       <key>Description</key>
+       <string>Web Component consisting of .html and .wod files.</string>
+       <key>EnclosingGroupName</key>
+       <string>%@</string>
+       <key>FileToDisplay</key>
+       <string>%@.wo/%1$@.html</string>
+       <key>ImplicitCounterpartTemplateFiles</key>
+       <dict>
+               <key>wo.h</key>
+               <string>%@.h</string>
+               <key>wo.m</key>
+               <string>%@.m</string>
+               <key>wo.wo</key>
+               <string>%@.wo</string>
+       </dict>
+       <key>ImplicitExtraTemplateFiles</key>
+       <dict>
+               <key>wo.html</key>
+               <string>%@.wo/%1$@.html</string>
+               <key>wo.wod</key>
+               <string>%@.wo/%1$@.wod</string>
+       </dict>
+</dict>
+</plist>
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.h b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.h
new file mode 100644 (file)
index 0000000..17b411e
--- /dev/null
@@ -0,0 +1,22 @@
+//
+// ÇFILENAMEÈ: Header file for Web Component 'ÇFILEBASENAMEÈ'
+// Project ÇPROJECTNAMEÈ
+//
+// Created by ÇUSERNAMEÈ on ÇDATEÈ
+//
+
+
+#ifndef        __ÇFILEBASENAMEÈ_H_
+#define        __ÇFILEBASENAMEÈ_H_
+
+#include <NGObjWeb/NGObjWeb.h>
+
+
+@interface ÇFILEBASENAMEÈ : WOComponent
+{
+
+}
+
+@end
+
+#endif /* __ÇFILEBASENAMEÈ_H_ */
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.html b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.html
new file mode 100644 (file)
index 0000000..cd07cc7
--- /dev/null
@@ -0,0 +1,8 @@
+<html>
+  <head>
+    <title><#ComponentName /></title>
+  </head>
+  <body>
+  The template of Web Component <em><#ComponentName /></em> has not been edited, yet.
+  </body>
+</html>
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.m b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.m
new file mode 100644 (file)
index 0000000..9307712
--- /dev/null
@@ -0,0 +1,14 @@
+//
+// ÇFILENAMEÈ: Implementation file for Web Component 'ÇFILEBASENAMEÈ'
+// Project ÇPROJECTNAMEÈ
+//
+// Created by ÇUSERNAMEÈ on ÇDATEÈ
+//
+
+
+#include "ÇFILEBASENAMEÈ.h"
+
+
+@implementation ÇFILEBASENAMEÈ
+
+@end
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.wod b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.wod
new file mode 100644 (file)
index 0000000..0dc4d2c
--- /dev/null
@@ -0,0 +1,3 @@
+ComponentName: WOString {
+  value = name;
+}
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/TemplateInfo.plist b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/TemplateInfo.plist
new file mode 100644 (file)
index 0000000..9bfde79
--- /dev/null
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+       <key>Description</key>
+       <string>Web Component consisting of .wox file</string>
+       <key>EnclosingGroupName</key>
+       <string>%@</string>
+       <key>FileToDisplay</key>
+       <string>%@.wox</string>
+       <key>ImplicitCounterpartTemplateFiles</key>
+       <dict>
+               <key>wox.h</key>
+               <string>%@.h</string>
+               <key>wox.m</key>
+               <string>%@.m</string>
+               <key>wox.wox</key>
+               <string>%@.wox</string>
+       </dict>
+</dict>
+</plist>
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.h b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.h
new file mode 100644 (file)
index 0000000..17b411e
--- /dev/null
@@ -0,0 +1,22 @@
+//
+// ÇFILENAMEÈ: Header file for Web Component 'ÇFILEBASENAMEÈ'
+// Project ÇPROJECTNAMEÈ
+//
+// Created by ÇUSERNAMEÈ on ÇDATEÈ
+//
+
+
+#ifndef        __ÇFILEBASENAMEÈ_H_
+#define        __ÇFILEBASENAMEÈ_H_
+
+#include <NGObjWeb/NGObjWeb.h>
+
+
+@interface ÇFILEBASENAMEÈ : WOComponent
+{
+
+}
+
+@end
+
+#endif /* __ÇFILEBASENAMEÈ_H_ */
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.m b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.m
new file mode 100644 (file)
index 0000000..9307712
--- /dev/null
@@ -0,0 +1,14 @@
+//
+// ÇFILENAMEÈ: Implementation file for Web Component 'ÇFILEBASENAMEÈ'
+// Project ÇPROJECTNAMEÈ
+//
+// Created by ÇUSERNAMEÈ on ÇDATEÈ
+//
+
+
+#include "ÇFILEBASENAMEÈ.h"
+
+
+@implementation ÇFILEBASENAMEÈ
+
+@end
diff --git a/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.wox b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.wox
new file mode 100644 (file)
index 0000000..48ca008
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version='1.0' standalone='yes'?>
+
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:var="http://www.skyrix.com/od/binding"
+      xmlns:const="http://www.skyrix.com/od/constant"
+      xmlns:rsrc="OGo:url"
+>
+  <head>
+    <title><var:string value="name"/></title>
+  </head>
+
+  <body>
+  The template of Web Component <em><var:string value="name"/></em> has not been edited, yet.
+  </body>
+</html>
\ No newline at end of file
diff --git a/sopex/Templates/README b/sopex/Templates/README
new file mode 100644 (file)
index 0000000..0e974b4
--- /dev/null
@@ -0,0 +1,21 @@
+# $Id: README 1 2004-08-20 11:17:52Z znek $
+
+
+Templates
+=========
+
+XCode project template and several file templates.
+
+
+INSTALLATION
+============
+
+There are two places where you can install the templates contained
+in this directory:
+
+1) /Library/Application Support/Apple/Developer Tools/
+2) ~/Library/Application Support/Apple/Developer Tools/
+
+Templates installed in 1) are available for all developers working
+on this machine. Templates installed in 2) are available for you,
+only.