Differences From Artifact [40d9847175]:
- File
src/OFURLHandler.m
— part of check-in
[a0fd103a0b]
at
2021-03-07 02:36:04
on branch trunk
— Style change: Allow more than 1 argument per line
This is only migrating some places, others will be migrated as they are
touched. (user: js, size: 3740) [annotate] [blame] [check-ins using]
To Artifact [227a2dfab0]:
- File src/OFURLHandler.m — part of check-in [1b82d3bf4f] at 2021-03-07 20:25:21 on branch trunk — *.m: Fold methods into one line where it fits (user: js, size: 3708) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
53 54 55 56 57 58 59 | handlers = [[OFMutableDictionary alloc] init]; #ifdef OF_HAVE_THREADS mutex = [[OFMutex alloc] init]; atexit(releaseMutex); #endif #ifdef OF_HAVE_FILES | | < | < | < | < | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
handlers = [[OFMutableDictionary alloc] init];
#ifdef OF_HAVE_THREADS
mutex = [[OFMutex alloc] init];
atexit(releaseMutex);
#endif
#ifdef OF_HAVE_FILES
[self registerClass: [OFFileURLHandler class] forScheme: @"file"];
#endif
#if defined(OF_HAVE_SOCKETS) && defined(OF_HAVE_THREADS)
[self registerClass: [OFHTTPURLHandler class] forScheme: @"http"];
[self registerClass: [OFHTTPURLHandler class] forScheme: @"https"];
#endif
}
+ (bool)registerClass: (Class)class forScheme: (OFString *)scheme
{
#ifdef OF_HAVE_THREADS
[mutex lock];
@try {
#endif
OFURLHandler *handler;
|
| ︙ | ︙ | |||
135 136 137 138 139 140 141 |
- (void)dealloc
{
[_scheme release];
[super dealloc];
}
| | < | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
- (void)dealloc
{
[_scheme release];
[super dealloc];
}
- (OFStream *)openItemAtURL: (OFURL *)URL mode: (OFString *)mode
{
OF_UNRECOGNIZED_SELECTOR
}
- (of_file_attributes_t)attributesOfItemAtURL: (OFURL *)URL
{
OF_UNRECOGNIZED_SELECTOR
|
| ︙ | ︙ | |||
177 178 179 180 181 182 183 |
}
- (void)removeItemAtURL: (OFURL *)URL
{
OF_UNRECOGNIZED_SELECTOR
}
| | < | < | < | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
}
- (void)removeItemAtURL: (OFURL *)URL
{
OF_UNRECOGNIZED_SELECTOR
}
- (void)linkItemAtURL: (OFURL *)source toURL: (OFURL *)destination
{
OF_UNRECOGNIZED_SELECTOR
}
- (void)createSymbolicLinkAtURL: (OFURL *)destination
withDestinationPath: (OFString *)source
{
OF_UNRECOGNIZED_SELECTOR
}
- (bool)copyItemAtURL: (OFURL *)source toURL: (OFURL *)destination
{
return false;
}
- (bool)moveItemAtURL: (OFURL *)source toURL: (OFURL *)destination
{
return false;
}
@end
|