From 466e1eac125bbd4d951195e8a83c6752f1495b4a Mon Sep 17 00:00:00 2001 From: helge Date: Fri, 20 Aug 2004 17:59:46 +0000 Subject: [PATCH] added some missing sopex templates git-svn-id: http://svn.opengroupware.org/SOPE/trunk@7 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- sopex/Templates/ChangeLog | 28 +++++++++++++++++++ .../TemplateInfo.plist | 28 +++++++++++++++++++ .../Web Component (wo).pbfiletemplate/wo.h | 22 +++++++++++++++ .../Web Component (wo).pbfiletemplate/wo.html | 8 ++++++ .../Web Component (wo).pbfiletemplate/wo.m | 14 ++++++++++ .../Web Component (wo).pbfiletemplate/wo.wod | 3 ++ .../TemplateInfo.plist | 21 ++++++++++++++ .../Web Component (wox).pbfiletemplate/wox.h | 22 +++++++++++++++ .../Web Component (wox).pbfiletemplate/wox.m | 14 ++++++++++ .../wox.wox | 15 ++++++++++ sopex/Templates/README | 21 ++++++++++++++ 11 files changed, 196 insertions(+) create mode 100644 sopex/Templates/ChangeLog create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/TemplateInfo.plist create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.h create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.html create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.m create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.wod create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/TemplateInfo.plist create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.h create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.m create mode 100644 sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.wox create mode 100644 sopex/Templates/README diff --git a/sopex/Templates/ChangeLog b/sopex/Templates/ChangeLog new file mode 100644 index 00000000..261e12cb --- /dev/null +++ b/sopex/Templates/ChangeLog @@ -0,0 +1,28 @@ +2004-08-18 Marcus Mueller + + * README: fixed location 1), reported by + Sungjin Chun + +2004-05-26 Marcus Mueller + + * 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 + + * 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 index 00000000..fb7cd5ff --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/TemplateInfo.plist @@ -0,0 +1,28 @@ + + + + + Description + Web Component consisting of .html and .wod files. + EnclosingGroupName + %@ + FileToDisplay + %@.wo/%1$@.html + ImplicitCounterpartTemplateFiles + + wo.h + %@.h + wo.m + %@.m + wo.wo + %@.wo + + ImplicitExtraTemplateFiles + + wo.html + %@.wo/%1$@.html + wo.wod + %@.wo/%1$@.wod + + + 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 index 00000000..17b411ed --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.h @@ -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 + + +@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 index 00000000..cd07cc73 --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.html @@ -0,0 +1,8 @@ + + + <#ComponentName /> + + + The template of Web Component <#ComponentName /> has not been edited, yet. + + 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 index 00000000..9307712e --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.m @@ -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 index 00000000..0dc4d2c2 --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wo).pbfiletemplate/wo.wod @@ -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 index 00000000..9bfde791 --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/TemplateInfo.plist @@ -0,0 +1,21 @@ + + + + + Description + Web Component consisting of .wox file + EnclosingGroupName + %@ + FileToDisplay + %@.wox + ImplicitCounterpartTemplateFiles + + wox.h + %@.h + wox.m + %@.m + wox.wox + %@.wox + + + 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 index 00000000..17b411ed --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.h @@ -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 + + +@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 index 00000000..9307712e --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.m @@ -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 index 00000000..48ca0086 --- /dev/null +++ b/sopex/Templates/File Templates/SOPE/Web Component (wox).pbfiletemplate/wox.wox @@ -0,0 +1,15 @@ + + + + + <var:string value="name"/> + + + + The template of Web Component has not been edited, yet. + + \ No newline at end of file diff --git a/sopex/Templates/README b/sopex/Templates/README new file mode 100644 index 00000000..0e974b4a --- /dev/null +++ b/sopex/Templates/README @@ -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. -- 2.39.5