ObjFW  Check-in [694da470d4]

Overview
Comment:A few minor documentation fixes
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 694da470d4a88bbfd96da9aca4300dea7e9b1bb6dc2a2b658d6c33f48128222a
User & Date: js on 2022-10-03 22:18:40
Other Links: manifest | tags
Context
2022-10-04
20:50
Add of-zip: URI handler check-in: bcff1dfd70 user: js tags: trunk
2022-10-03
22:18
A few minor documentation fixes check-in: 694da470d4 user: js tags: trunk
21:17
OFMutableURI: Always lowercase the scheme check-in: a7356069cc user: js tags: trunk
Changes

Modified src/OFFileManager.h from [e4a86375d1] to [1cfc8cfdf6].

650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
- (void)createSymbolicLinkAtPath: (OFString *)path
	     withDestinationPath: (OFString *)target;
#endif

/**
 * @brief Creates a symbolic link for an item.
 *
 * The destination uRL must have a full path, which means it must include the
 * name of the item.
 *
 * This method is not available for all URIs.
 *
 * @note On Windows, this requires at least Windows Vista and administrator
 *	 privileges!
 *







|







650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
- (void)createSymbolicLinkAtPath: (OFString *)path
	     withDestinationPath: (OFString *)target;
#endif

/**
 * @brief Creates a symbolic link for an item.
 *
 * The destination URI must have a full path, which means it must include the
 * name of the item.
 *
 * This method is not available for all URIs.
 *
 * @note On Windows, this requires at least Windows Vista and administrator
 *	 privileges!
 *

Modified src/OFMutableURI.h from [361cff56c9] to [7f2d699377].

16
17
18
19
20
21
22
23

24
25
26
27
28
29
30
#import "OFURI.h"

OF_ASSUME_NONNULL_BEGIN

/**
 * @class OFMutableURI OFMutableURI.h ObjFW/OFMutableURI.h
 *
 * @brief A class for parsing URIs and accessing parts of it.

 */
@interface OFMutableURI: OFURI
{
	OF_RESERVE_IVARS(OFMutableURI, 4)
}

/**







|
>







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#import "OFURI.h"

OF_ASSUME_NONNULL_BEGIN

/**
 * @class OFMutableURI OFMutableURI.h ObjFW/OFMutableURI.h
 *
 * @brief A class for parsing URIs as per RFC 3986 and accessing and modifying
 *	  parts of it.
 */
@interface OFMutableURI: OFURI
{
	OF_RESERVE_IVARS(OFMutableURI, 4)
}

/**

Modified src/OFURI.h from [ef45469449] to [63067c2093].

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@class OFNumber;
@class OFPair OF_GENERIC(FirstType, SecondType);
@class OFString;

/**
 * @class OFURI OFURI.h ObjFW/OFURI.h
 *
 * @brief A class for parsing URIs and accessing parts of it.
 */
@interface OFURI: OFObject <OFCopying, OFMutableCopying, OFSerialization>
{
	OFString *_Nullable _percentEncodedScheme;
	OFString *_Nullable _percentEncodedHost;
	OFNumber *_Nullable _port;
	OFString *_Nullable _percentEncodedUser;







|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@class OFNumber;
@class OFPair OF_GENERIC(FirstType, SecondType);
@class OFString;

/**
 * @class OFURI OFURI.h ObjFW/OFURI.h
 *
 * @brief A class for parsing URIs as per RFC 3986 and accessing parts of it.
 */
@interface OFURI: OFObject <OFCopying, OFMutableCopying, OFSerialization>
{
	OFString *_Nullable _percentEncodedScheme;
	OFString *_Nullable _percentEncodedHost;
	OFNumber *_Nullable _port;
	OFString *_Nullable _percentEncodedUser;