--- /dev/null
+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
--- /dev/null
+/*
+ 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>
-// $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;