--- /dev/null
+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.
--- /dev/null
+<?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>
--- /dev/null
+//
+// Ç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_ */
--- /dev/null
+<html>
+ <head>
+ <title><#ComponentName /></title>
+ </head>
+ <body>
+ The template of Web Component <em><#ComponentName /></em> has not been edited, yet.
+ </body>
+</html>
--- /dev/null
+//
+// ÇFILENAMEÈ: Implementation file for Web Component 'ÇFILEBASENAMEÈ'
+// Project ÇPROJECTNAMEÈ
+//
+// Created by ÇUSERNAMEÈ on ÇDATEÈ
+//
+
+
+#include "ÇFILEBASENAMEÈ.h"
+
+
+@implementation ÇFILEBASENAMEÈ
+
+@end
--- /dev/null
+ComponentName: WOString {
+ value = name;
+}
--- /dev/null
+<?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>
--- /dev/null
+//
+// Ç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_ */
--- /dev/null
+//
+// ÇFILENAMEÈ: Implementation file for Web Component 'ÇFILEBASENAMEÈ'
+// Project ÇPROJECTNAMEÈ
+//
+// Created by ÇUSERNAMEÈ on ÇDATEÈ
+//
+
+
+#include "ÇFILEBASENAMEÈ.h"
+
+
+@implementation ÇFILEBASENAMEÈ
+
+@end
--- /dev/null
+<?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
--- /dev/null
+# $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.