]> err.no Git - sope/commitdiff
minor cleanups
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 10 Oct 2004 12:21:18 +0000 (12:21 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 10 Oct 2004 12:21:18 +0000 (12:21 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@237 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/samples/README [new file with mode: 0644]
sope-appserver/samples/TestPages/Main.m
sope-appserver/samples/davpropget/README
sope-appserver/samples/davpropget/common.h [new file with mode: 0644]
sope-appserver/samples/davpropget/davpropget.m
sope-appserver/samples/iCalPortal/README
sope-appserver/samples/parsedav/README

diff --git a/sope-appserver/samples/README b/sope-appserver/samples/README
new file mode 100644 (file)
index 0000000..99697c2
--- /dev/null
@@ -0,0 +1,25 @@
+sope-appserver samples
+======================
+
+HelloWorld
+- simple SOPE application with a single .wo wrapper template
+
+TestPages
+- small app for testing NGObjWeb bugs
+
+TestSite
+- test site for use with the 'sope' tool
+
+WOxExtTest
+- an XML template (.wox) based application which shows the use of various
+  WEExtensions/WOExtensions reusable components
+
+davpropget
+- simple example to retrieve the properties of a WebDAV URL using
+  WOHTTPConnection.
+
+iCalPortal
+- pre-SOPE attempt to write a small iCal calendaring portal
+
+parsedav
+- a small tool to test the NGObjWeb WebDAV parser
index f974aa71692fa6a3ab162db34a7263448a763344..ce5923da9f9c04580568c4704dc42ce327d22030 100644 (file)
@@ -18,7 +18,6 @@
   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.
 */
-// $Id$
 
 #include <NGObjWeb/WOComponent.h>
 
index 7ccc851faef31b77efd52cece7a833467c9632b3..63566ef68b736650408f6948868241dfcac1e7a0 100644 (file)
@@ -1,10 +1,8 @@
-# $Id$
+davpropget
+==========
 
 Note: you need to use the "simple" HTTP parser:
   Defaults write davpropget WOHTTPConnectionUseSimpleParser YES
 
-davpropget
-==========
-
 Simple example to retrieve the properties of a WebDAV URL using
 WOHTTPConnection.
diff --git a/sope-appserver/samples/davpropget/common.h b/sope-appserver/samples/davpropget/common.h
new file mode 100644 (file)
index 0000000..a950b8c
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+  Copyright (C) 2004 SKYRIX Software AG
+
+  This file is part of OpenGroupware.org.
+
+  OGo is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  OGo 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 Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with OGo; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
+*/
+
+#import <Foundation/Foundation.h>
+#include <NGExtensions/NGExtensions.h>
index 4688889683e2fa458339881b6a139130b569879a..e37b23ed0051cb9a30af0addce112dec59a272c5 100644 (file)
@@ -1,15 +1,28 @@
-// $Id$
+/*
+  Copyright (C) 2004 SKYRIX Software AG
 
-#import <Foundation/Foundation.h>
-#include <NGExtensions/NGExtensions.h>
-#include <NGObjWeb/WOHTTPConnection.h>
-#include <NGObjWeb/WORequest.h>
-#include <NGObjWeb/WOResponse.h>
-#include <SaxObjC/SaxObjC.h>
-#include <SaxObjC/XMLNamespaces.h>
-#include <NGObjWeb/SaxDAVHandler.h>
+  This file is part of OpenGroupware.org.
 
-#define DEFAULT_NS @"DAV:"
+  OGo is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  OGo 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 Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with OGo; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
+*/
+
+#import <Foundation/NSObject.h>
+
+@class NSString, NSURL;
+@class WOHTTPConnection;
 
 @interface DavPropGetTool : NSObject
 {
 
 @end
 
+#include "common.h"
+#include <NGObjWeb/WOHTTPConnection.h>
+#include <NGObjWeb/WORequest.h>
+#include <NGObjWeb/WOResponse.h>
+#include <SaxObjC/SaxObjC.h>
+#include <SaxObjC/XMLNamespaces.h>
+#include <NGObjWeb/SaxDAVHandler.h>
+
+#define DEFAULT_NS @"DAV:"
+
 @implementation DavPropGetTool
 
 static id<NSObject,SaxXMLReader> xmlParser = nil;
index 37e3e504aaaada25e1ab3ec087325b20f4760ff8..7626443a2c43237a1d5fa9d97dec876ed3c3778a 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-
 iCalPortal
 ==========
 
index 5881232f7f2011fb5e282d83f896caa1601f1a50..c4f6ba169c11dfcfd16c7a5c38e24803911937c7 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-
 parsedav
 ========