]> err.no Git - sope/blob - sope-appserver/SoOFS/OFSResourceManager.h
ivar extensions to NGObjWeb core classes, moved SoOFS to separate project
[sope] / sope-appserver / SoOFS / OFSResourceManager.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id: OFSResourceManager.h 4 2004-08-20 17:04:31Z helge $
22
23 #ifndef __SoOFS_OFSResourceManager_H__
24 #define __SoOFS_OFSResourceManager_H__
25
26 #include <NGObjWeb/WOResourceManager.h>
27
28 /*
29   OFSResourceManager
30   
31   OFSResourceManager is an NGObjWeb resource manager which locates resources
32   by traversing the OFS hierarchy.
33 */
34
35 @interface OFSResourceManager : WOResourceManager
36 {
37   id baseObject; /* non-retained ! */
38   id context;    /* non-retained ! */
39 }
40
41 - (id)initWithBaseObject:(id)_object inContext:(id)_ctx;
42
43 /* lookup */
44
45 - (NSString *)pathForResourceNamed:(NSString *)_name
46   inFramework:(NSString *)_frameworkName
47   languages:(NSArray *)_languages;
48
49 - (NSString *)urlForResourceNamed:(NSString *)_name
50   inFramework:(NSString *)_frameworkName
51   languages:(NSArray *)_languages
52   request:(WORequest *)_request;
53
54 /* operations */
55
56 - (void)invalidate;
57
58 @end
59
60 #endif /* __SoOFS_OFSResourceManager_H__ */