mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 19:51:13 +00:00
o added _pathQueryDictionary and _pathQueryDictionary handling
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18732 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6450b64759
commit
a0095e0b04
2 changed files with 8 additions and 0 deletions
|
@ -63,6 +63,7 @@
|
||||||
GSWAssociation* _key;
|
GSWAssociation* _key;
|
||||||
NSDictionary* _otherPathQueryAssociations;
|
NSDictionary* _otherPathQueryAssociations;
|
||||||
GSWAssociation* _urlPrefix;
|
GSWAssociation* _urlPrefix;
|
||||||
|
GSWAssociation* _pathQueryDictionary;
|
||||||
// }
|
// }
|
||||||
GSWElement* _children;
|
GSWElement* _children;
|
||||||
};
|
};
|
||||||
|
|
|
@ -78,6 +78,10 @@ RCS_ID("$Id$")
|
||||||
withDefaultObject:[_queryDictionary autorelease]] retain];
|
withDefaultObject:[_queryDictionary autorelease]] retain];
|
||||||
NSDebugMLLog(@"gswdync",@"queryDictionary=%@",_queryDictionary);
|
NSDebugMLLog(@"gswdync",@"queryDictionary=%@",_queryDictionary);
|
||||||
|
|
||||||
|
_pathQueryDictionary = [[anAssociationsDict objectForKey:pathQueryDictionary__Key
|
||||||
|
withDefaultObject:[_pathQueryDictionary autorelease]] retain];
|
||||||
|
NSDebugMLLog(@"gswdync",@"pathQueryDictionary=%@",_pathQueryDictionary);
|
||||||
|
|
||||||
_actionClass = [[anAssociationsDict objectForKey:actionClass__Key
|
_actionClass = [[anAssociationsDict objectForKey:actionClass__Key
|
||||||
withDefaultObject:[_actionClass autorelease]] retain];
|
withDefaultObject:[_actionClass autorelease]] retain];
|
||||||
NSDebugMLLog(@"gswdync",@"actionClass=%@",_actionClass);
|
NSDebugMLLog(@"gswdync",@"actionClass=%@",_actionClass);
|
||||||
|
@ -153,6 +157,7 @@ RCS_ID("$Id$")
|
||||||
[tmpOtherAssociations removeObjectForKey:mimeType__Key];
|
[tmpOtherAssociations removeObjectForKey:mimeType__Key];
|
||||||
[tmpOtherAssociations removeObjectForKey:key__Key];
|
[tmpOtherAssociations removeObjectForKey:key__Key];
|
||||||
[tmpOtherAssociations removeObjectForKey:urlPrefix__Key];
|
[tmpOtherAssociations removeObjectForKey:urlPrefix__Key];
|
||||||
|
[tmpOtherAssociations removeObjectForKey:pathQueryDictionary__Key];
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!WOStrictFlag)
|
if (!WOStrictFlag)
|
||||||
|
@ -250,6 +255,7 @@ RCS_ID("$Id$")
|
||||||
DESTROY(_mimeType);
|
DESTROY(_mimeType);
|
||||||
DESTROY(_key);
|
DESTROY(_key);
|
||||||
DESTROY(_urlPrefix);
|
DESTROY(_urlPrefix);
|
||||||
|
DESTROY(_pathQueryDictionary);
|
||||||
DESTROY(_children);
|
DESTROY(_children);
|
||||||
[super dealloc];
|
[super dealloc];
|
||||||
}
|
}
|
||||||
|
@ -542,6 +548,7 @@ RCS_ID("$Id$")
|
||||||
NSDebugMLLog(@"gswdync",@"_directActionName=%@",_directActionName);
|
NSDebugMLLog(@"gswdync",@"_directActionName=%@",_directActionName);
|
||||||
actionString=[(GSWHTMLDynamicElement*)self computeActionStringWithActionClassAssociation:_actionClass
|
actionString=[(GSWHTMLDynamicElement*)self computeActionStringWithActionClassAssociation:_actionClass
|
||||||
directActionNameAssociation:_directActionName
|
directActionNameAssociation:_directActionName
|
||||||
|
pathQueryDictionaryAssociation:_pathQueryDictionary
|
||||||
otherPathQueryAssociations:_otherPathQueryAssociations
|
otherPathQueryAssociations:_otherPathQueryAssociations
|
||||||
inContext:context];
|
inContext:context];
|
||||||
NSDebugMLLog(@"gswdync",@"actionString=%@",actionString);
|
NSDebugMLLog(@"gswdync",@"actionString=%@",actionString);
|
||||||
|
|
Loading…
Reference in a new issue