]> err.no Git - sope/blob - sope-appserver/NGObjWeb/DynamicElements/WOxXULElemBuilder.m
added some WebDrive WebDAV properties
[sope] / sope-appserver / NGObjWeb / DynamicElements / WOxXULElemBuilder.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE 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   SOPE 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 SOPE; 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
22 #import <NGObjWeb/WOxElemBuilder.h>
23
24 /*
25   This builder builds all standard elements which are defined in the 
26   XUL namespace.
27
28   Supported tags:
29     - all other tags are represented using either WOGenericElement or
30       WOGenericContainer, so this builder is "final destination" for
31       all XUL related tags.
32   
33     <iframe .../>     maps to WOIFrame
34     <entity .../>     maps to WOEntity
35 */
36
37 @interface WOxXULElemBuilder : WOxTagClassElemBuilder
38 {
39 }
40
41 @end
42
43 #include "decommon.h"
44 #include <SaxObjC/XMLNamespaces.h>
45
46 @implementation WOxXULElemBuilder
47
48 - (Class)classForElement:(id<DOMElement>)_element {
49   NSString *nsuri;
50   NSString *tag;
51   unsigned tl;
52
53   if ((nsuri = [_element namespaceURI]) == nil)
54     return Nil;
55   
56   if (![nsuri isEqualToString:XMLNS_XUL])
57     return Nil;
58   
59   tag = [_element tagName];
60   
61   if ((tl = [tag length]) == 0)
62     return Nil;
63   
64   switch (tl) {
65     default:
66       if ([tag isEqualToString:@"iframe"])
67         return NSClassFromString(@"WOIFrame");
68       if ([tag isEqualToString:@"entity"])
69         return NSClassFromString(@"WOEntity");
70       break;
71   }
72   
73   if ([_element hasChildNodes])
74     return NSClassFromString(@"WOGenericContainer");
75   else
76     return NSClassFromString(@"WOGenericElement");
77 }
78
79 @end /* WOxXULElemBuilder */