View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001166 | SOGo | SOPE | public | 2011-03-03 18:27 | 2011-06-16 15:38 |
Reporter | buzzdee | Assigned To | ludovic | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 1.3.5 | ||||
Target Version | 1.3.8 | Fixed in Version | 1.3.8 | ||
Summary | 0001166: WOHTTPURLHandle.m doesn't implement cachedHandleForURL | ||||
Description | I'm right now testing opengroupware against sope-1.3.5. since it is not implemented in WOHTTPURLHandle, OGo freaks out ;) I took a look what NSHTTPURLHandle is doing, and found that it returns nil, if it cannot find sth. in its cache. | ||||
Additional Information | I guess SOGo is not using WOHTTPURLHandle, but please review this patch and add it or sth. similar for the 1.3.6 release of SOPE. | ||||
Tags | No tags attached. | ||||
2011-03-03 18:27
|
patch-sope-appserver_NGObjWeb_WOHTTPURLHandle_m (695 bytes)
$OpenBSD$ Implement missing subclass, trying to fix exception when clicking the map button on ogo contacts --- sope-appserver/NGObjWeb/WOHTTPURLHandle.m.orig Thu Mar 3 15:10:02 2011 +++ sope-appserver/NGObjWeb/WOHTTPURLHandle.m Thu Mar 3 15:12:28 2011 @@ -50,6 +50,14 @@ return [[_url scheme] isEqualToString:@"http"]; } ++ (NSURLHandle*) cachedHandleForURL: (NSURL*)newUrl +{ + NSURLHandle *obj = nil; + NSLog(@"NOTE: WOHTTPURLHandle.m: cachedHandleForURL: caching not yet not yet implemented"); + return obj; +} + + - (id)initWithURL:(NSURL *)_url cached:(BOOL)_flag { if (![[_url scheme] hasPrefix:@"http"]) { NSLog(@"%s: invalid URL scheme %@ for WOHTTPURLHandle !", |
could this be reviewed and commented, or even included if its fine? Shortly after a release is a good time to add new stuff, since the plenty of time for testing till the next release ;) |
|
Patch pushed: http://mtn.inverse.ca/revision/diff/b904302ec7f7663496c7a17492fc8767c1a1b674/with/856965845eee02997e104f46f22a199238f9ed24 |
|
Date Modified | Username | Field | Change |
---|---|---|---|
2011-03-03 18:27 | buzzdee | New Issue | |
2011-03-03 18:27 | buzzdee | File Added: patch-sope-appserver_NGObjWeb_WOHTTPURLHandle_m | |
2011-03-04 00:33 | ludovic | Status | new => assigned |
2011-03-04 00:33 | ludovic | Assigned To | => ludovic |
2011-04-13 11:37 | buzzdee | Note Added: 0002374 | |
2011-06-15 20:56 | ludovic | Target Version | => 1.3.8 |
2011-06-16 15:38 | ludovic | Note Added: 0002590 | |
2011-06-16 15:38 | ludovic | Status | assigned => resolved |
2011-06-16 15:38 | ludovic | Fixed in Version | => 1.3.8 |
2011-06-16 15:38 | ludovic | Resolution | open => fixed |