mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-31 09:11:11 +00:00
o handle isRefusingThisRequest
o handle pathQuery o fix languages stuff o fix _synchronizeForDistribution git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18182 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3cd2aaf501
commit
493694319a
2 changed files with 201 additions and 32 deletions
|
@ -67,14 +67,12 @@
|
|||
NSMutableSet* _docStructureElements;
|
||||
#endif
|
||||
NSMutableDictionary* _userInfo;
|
||||
NSArray* _languages;
|
||||
BOOL _isRefusingThisRequest;
|
||||
};
|
||||
|
||||
-(id)init;
|
||||
-(void)dealloc;
|
||||
+(GSWContext*)contextWithRequest:(GSWRequest*)aRequest;
|
||||
|
||||
-(id)copyWithZone:(NSZone*)zone;
|
||||
|
||||
-(void)setInForm:(BOOL)flag;
|
||||
-(BOOL)isInForm;
|
||||
-(GSWElementIDString*)elementID;
|
||||
|
@ -88,6 +86,8 @@
|
|||
-(NSString*)senderID;
|
||||
-(NSString*)contextID;
|
||||
-(id)initWithRequest:(GSWRequest*)aRequest;
|
||||
-(BOOL)_isRefusingThisRequest;
|
||||
-(void)_setIsRefusingThisRequest:(BOOL)yn;
|
||||
|
||||
#ifndef NDEBUG
|
||||
-(void)incrementLoopLevel; //ForDebugging purpose: each repetition increment and next decrement it
|
||||
|
@ -105,6 +105,13 @@
|
|||
queryDictionary:(NSDictionary*)queryDictionary;
|
||||
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
||||
queryDictionary:(NSDictionary*)queryDictionary
|
||||
pathQueryDictionary:(NSDictionary*)pathQueryDictionary;
|
||||
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
||||
queryDictionary:(NSDictionary*)queryDictionary
|
||||
isSecure:(BOOL)isSecure;
|
||||
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
||||
queryDictionary:(NSDictionary*)queryDictionary
|
||||
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
||||
isSecure:(BOOL)isSecure;
|
||||
-(GSWDynamicURLString*)componentActionURL;
|
||||
-(GSWDynamicURLString*)componentActionURLIsSecure:(BOOL)isSecure;
|
||||
|
@ -147,10 +154,26 @@
|
|||
queryDictionary:(NSDictionary*)dict
|
||||
isSecure:(BOOL)isSecure
|
||||
url:(id)anURL;
|
||||
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
||||
queryDictionary:(NSDictionary*)dict
|
||||
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
||||
isSecure:(BOOL)isSecure
|
||||
url:(id)anURL;
|
||||
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
||||
queryDictionary:(NSDictionary*)dict
|
||||
url:(id)url;
|
||||
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
||||
queryDictionary:(NSDictionary*)dict
|
||||
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
||||
url:(id)url;
|
||||
/** Returns array of languages
|
||||
First try session languages, if none, try self language
|
||||
If none, try request languages
|
||||
**/
|
||||
-(NSArray*)languages;
|
||||
|
||||
-(void)_setLanguages:(NSArray*)languages;
|
||||
|
||||
-(GSWComponent*)_pageComponent;
|
||||
-(GSWElement*)_pageElement;
|
||||
-(void)_setPageElement:(GSWElement*)element;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue