mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-30 08:41:24 +00:00
* GSWExtensions.framework/GSWKeyValueConditional.m
([GSWKeyValueConditional condition]): Declare all variables at top of block to be able to compile with gcc 2.95. * GSWeb.framework/GSWBaseParser.m (_ParserDebugLogBuffer):Ditto. * GSWeb.framework/GSWDisplayGroup.m ([GSWDisplayGroup _deleteObjects]), ([GSWDisplayGroup displayBatchContainingSelectedObject]), ([GSWDisplayGroup setDefaultStringMatchFormat:]), ([GSWDisplayGroup _setUpForNewDataSource]): Ditto. * GSWeb.framework/GSWHTMLDynamicElement.m ([GSWHTMLDynamicElement computeActionStringWithActionClassAssociation: directActionNameAssociation:pathQueryDictionaryAssociation: otherPathQueryAssociations:inContext:]): Ditto. * GSWeb.framework/GSWHTMLRawParser.m ([GSWHTMLRawParser tagPropertiesForType:betweenIndex:andIndex:]), ([GSWHTMLRawParser parseHTML]): Ditto. * GSWeb.framework/GSWRequest.m ([GSWRequest valuesFromHeaderString:], [GSWRequest initWithString:]), ([GSWRequest cookies]): Ditto. * GSWeb.framework/GSWStatisticsStore.m ([GSWStatisticsStore _sessionTerminating:]): Ditto. * GSWeb.framework/GSWTemporaryElement.m ([GSWTemporaryElement _elementWithDeclaration:name:properties: template:languages:]): Ditto. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19171 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
50fa069aea
commit
702ac875fa
9 changed files with 80 additions and 29 deletions
|
@ -835,6 +835,10 @@ attributeAssociations:(NSDictionary*)attributeAssociations
|
|||
if ([pathQueryDictionary count]>0 || [otherPathQueryAssociations count]>0)
|
||||
{
|
||||
NSMutableDictionary* pathKV=nil;
|
||||
NSArray* keys;
|
||||
unsigned int count;
|
||||
unsigned int i;
|
||||
|
||||
if ([otherPathQueryAssociations count]>0)
|
||||
{
|
||||
NSEnumerator* enumerator = [otherPathQueryAssociations keyEnumerator];
|
||||
|
@ -861,9 +865,9 @@ attributeAssociations:(NSDictionary*)attributeAssociations
|
|||
NSDebugMLLog(@"gswdync",@"pathKV=%@",pathKV);
|
||||
|
||||
// We sort keys so URL are always the same for same parameters
|
||||
NSArray* keys=[[pathKV allKeys]sortedArrayUsingSelector:@selector(compare:)];
|
||||
int count=[keys count];
|
||||
int i=0;
|
||||
keys=[[pathKV allKeys]sortedArrayUsingSelector:@selector(compare:)];
|
||||
count=[keys count];
|
||||
|
||||
NSDebugMLLog(@"gswdync",@"pathKV=%@",pathKV);
|
||||
for(i=0;i<count;i++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue