remove *.template

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16504 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sergii Stoian 2003-04-21 15:06:00 +00:00
parent cbda1249f8
commit 7efcf289e5
15 changed files with 11 additions and 191 deletions

View file

@ -1,8 +1,11 @@
2002-04-21 Serg Stoyan <stoyan@hologr.com>
* *.h, *.m: Replace #import with #include and add #ifndefs.
* GNUmakefile: Set BUNDLE_INSTALL_DIR to
$(GNUSTEP_SYSTEM_ROOT)/Library/ProjectCenter
* h.template and m.template removed.
2002-06-01 15:53 probert

View file

@ -1,16 +0,0 @@
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#ifndef _$FILENAMESANSEXTENSION$_H
#define _$FILENAMESANSEXTENSION$_H
#include <AppKit/AppKit.h>
@interface $FILENAMESANSEXTENSION$ : NSObject
{
}
@end
#endif

View file

@ -1,18 +0,0 @@
$$ Lines starting with $$ are not inserted into newly created files
$$ The following substitutions are made:
$$
$$ $FILENAME$ e.g. foo.m
$$ $FILENAMESANSEXTENSION$ e.g. foo
$$ $DIRECTORY$ e.g. /tmp/MyNewApp
$$ $PROJECTNAME$ e.g. MyNewApp
$$ $SUBPROJECTNAME$ e.g. TheGoodPart.subproj
$$ $USERNAME$ e.g. mwagner
$$ $DATE$ e.g. Jan-1-1994
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#include "$FILENAMESANSEXTENSION$.h"
@implementation $FILENAMESANSEXTENSION$
@end

View file

@ -4,6 +4,8 @@
* .h, .m: Replace #import with #include and add #ifndefs.
* h.template and m.template removed.
2002-11-27 15:45 probert
* Mac OS X port using Cocoa

View file

@ -1,11 +0,0 @@
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#include <AppKit/AppKit.h>
@interface $FILENAMESANSEXTENSION$ : NSObject
{
}
@end

View file

@ -1,18 +0,0 @@
$$ Lines starting with $$ are not inserted into newly created files
$$ The following substitutions are made:
$$
$$ $FILENAME$ e.g. foo.m
$$ $FILENAMESANSEXTENSION$ e.g. foo
$$ $DIRECTORY$ e.g. /tmp/MyNewApp
$$ $PROJECTNAME$ e.g. MyNewApp
$$ $SUBPROJECTNAME$ e.g. TheGoodPart.subproj
$$ $USERNAME$ e.g. mwagner
$$ $DATE$ e.g. Jan-1-1994
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#import "$FILENAMESANSEXTENSION$.h"
@implementation $FILENAMESANSEXTENSION$
@end

View file

@ -12,6 +12,8 @@
(_createComponentView): Install and Options buttons added. Move
target popup into _createOptionsPanel.
(_createOptionsPanel): Added.
* h.template and m.template removed.
2003-01-25 Daniel Luederwald <das_flip@gmx.de>

View file

@ -1,34 +0,0 @@
/*
GNUstep ProjectCenter - http://www.projectcenter.ch
Copyright (C) 2000-2002 Philippe C.D. Robert
Author: Philippe C.D. Robert <probert@siggraph.org>
This file is part of ProjectCenter.
This application is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This application is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
$Id$
*/
#include <Foundation/Foundation.h>
@interface $FILENAMESANSEXTENSION$ : NSObject
{
}
@end

View file

@ -1,31 +0,0 @@
/*
GNUstep ProjectCenter - http://www.projectcenter.ch
Copyright (C) 2000-2002 Philippe C.D. Robert
Author: Philippe C.D. Robert < probert@siggraph.org >
This file is part of ProjectCenter.
This application is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This application is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
$Id$
*/
#include "$FILENAMESANSEXTENSION$.h"
@implementation $FILENAMESANSEXTENSION$
@end

View file

@ -4,6 +4,8 @@
* .h, .m: Replace #import with #include and add #ifndefs.
* h.template and m.template removed.
2002-11-27 15:45 probert
* Mac OS X port using Cocoa

View file

@ -1,16 +0,0 @@
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#ifndef $FILENAME$_H_
#define $FILENAME$_H_
#import <AppKit/AppKit.h>
@interface $FILENAMESANSEXTENSION$ : NSObject
{
}
@end
#endif // $FILENAME$_H_

View file

@ -1,18 +0,0 @@
$$ Lines starting with $$ are not inserted into newly created files
$$ The following substitutions are made:
$$
$$ $FILENAME$ e.g. foo.m
$$ $FILENAMESANSEXTENSION$ e.g. foo
$$ $DIRECTORY$ e.g. /tmp/MyNewApp
$$ $PROJECTNAME$ e.g. MyNewApp
$$ $SUBPROJECTNAME$ e.g. TheGoodPart.subproj
$$ $USERNAME$ e.g. mwagner
$$ $DATE$ e.g. Jan-1-1994
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#import "$FILENAMESANSEXTENSION$.h"
@implementation $FILENAMESANSEXTENSION$
@end

View file

@ -4,6 +4,8 @@
* .h, .m: Replace #import with #include and add #ifndefs.
* h.template and m.template removed.
2002-11-27 15:45 probert
* Mac OS X port using Cocoa

View file

@ -1,11 +0,0 @@
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#import <AppKit/AppKit.h>
@interface $FILENAMESANSEXTENSION$ : NSObject
{
}
@end

View file

@ -1,18 +0,0 @@
$$ Lines starting with $$ are not inserted into newly created files
$$ The following substitutions are made:
$$
$$ $FILENAME$ e.g. foo.m
$$ $FILENAMESANSEXTENSION$ e.g. foo
$$ $DIRECTORY$ e.g. /tmp/MyNewApp
$$ $PROJECTNAME$ e.g. MyNewApp
$$ $SUBPROJECTNAME$ e.g. TheGoodPart.subproj
$$ $USERNAME$ e.g. mwagner
$$ $DATE$ e.g. Jan-1-1994
$$
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
#import "$FILENAMESANSEXTENSION$.h"
@implementation $FILENAMESANSEXTENSION$
@end