mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-03 01:50:55 +00:00
Create stub class when libxml2 is not available.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39111 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ec7d62b183
commit
4c6b98aea7
2 changed files with 194 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/NSXMLDocument.m: When libxml2 is not enabled, create a
|
||||||
|
stub class which will raise an exception on instantiation.
|
||||||
|
|
||||||
2015-10-31 Richard Frith-Macdonald <rfm@gnu.org>
|
2015-10-31 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/NSString.m: Fix for fastpath code for literal string
|
* Source/NSString.m: Fix for fastpath code for literal string
|
||||||
|
|
|
@ -529,4 +529,193 @@ GS_PRIVATE_INTERNAL(NSXMLDocument)
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
@implementation NSXMLDocument
|
||||||
|
|
||||||
|
+ (Class) replacementClassForClass: (Class)cls
|
||||||
|
{
|
||||||
|
return cls;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSString*) characterEncoding
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSXMLDocumentContentKind) documentContentKind
|
||||||
|
{
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSXMLDTD*) DTD
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) init
|
||||||
|
{
|
||||||
|
NSString *className = NSStringFromClass([self class]);
|
||||||
|
|
||||||
|
DESTROY(self);
|
||||||
|
[NSException raise: NSGenericException
|
||||||
|
format: @"%@ - no libxml2 at configure time", className];
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) initWithContentsOfURL: (NSURL*)url
|
||||||
|
options: (NSUInteger)mask
|
||||||
|
error: (NSError**)error
|
||||||
|
{
|
||||||
|
return [self init];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) initWithData: (NSData*)data
|
||||||
|
options: (NSUInteger)mask
|
||||||
|
error: (NSError**)error
|
||||||
|
{
|
||||||
|
return [self init];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) initWithKind: (NSXMLNodeKind)theKind options: (NSUInteger)theOptions
|
||||||
|
{
|
||||||
|
return [self init]
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) initWithRootElement: (NSXMLElement*)element
|
||||||
|
{
|
||||||
|
return [self init];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) initWithXMLString: (NSString*)string
|
||||||
|
options: (NSUInteger)mask
|
||||||
|
error: (NSError**)error
|
||||||
|
{
|
||||||
|
return [self init];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL) isStandalone
|
||||||
|
{
|
||||||
|
return NO;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSString*) MIMEType
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSXMLElement*) rootElement
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setCharacterEncoding: (NSString*)encoding
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setDocumentContentKind: (NSXMLDocumentContentKind)theContentKind
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setDTD: (NSXMLDTD*)documentTypeDeclaration
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setMIMEType: (NSString*)theMIMEType
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setRootElement: (NSXMLNode*)root
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setStandalone: (BOOL)standalone
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setURI: (NSString*)URI
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSString*) URI
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setVersion: (NSString*)version
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSString*) version
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) insertChild: (NSXMLNode*)child atIndex: (NSUInteger)index
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) insertChildren: (NSArray*)children atIndex: (NSUInteger)index
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) removeChildAtIndex: (NSUInteger)index
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setChildren: (NSArray*)children
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) addChild: (NSXMLNode*)child
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) replaceChildAtIndex: (NSUInteger)index withNode: (NSXMLNode*)theNode
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSData*) XMLData
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSData *) XMLDataWithOptions: (NSUInteger)theOptions
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) objectByApplyingXSLT: (NSData*)xslt
|
||||||
|
arguments: (NSDictionary*)arguments
|
||||||
|
error: (NSError**)error
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) objectByApplyingXSLTString: (NSString*)xslt
|
||||||
|
arguments: (NSDictionary*)arguments
|
||||||
|
error: (NSError**)error
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) objectByApplyingXSLTAtURL: (NSURL*)xsltURL
|
||||||
|
arguments: (NSDictionary*)arguments
|
||||||
|
error: (NSError**)error
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL) validateAndReturnError: (NSError**)error
|
||||||
|
{
|
||||||
|
return NO;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) copyWithZone: (NSZone *)zone
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL) isEqual: (id)other
|
||||||
|
{
|
||||||
|
return NO;
|
||||||
|
}
|
||||||
|
@end
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue