diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-28 00:44:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:05 +0200 |
commit | 928b8640c0d1a9c49249100efbdd70f8c1090b07 (patch) | |
tree | d4f2388c89d137d62bced7b9e8339f964d3632ad /udkapi/com/sun/star/uri | |
parent | 6e1d239ae04bbb1b639ae8d04c59d3375f867712 (diff) |
*api: convert <TRUE/> <FALSE/> <VOID/> <NULL/>
sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g'
Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
Diffstat (limited to 'udkapi/com/sun/star/uri')
-rw-r--r-- | udkapi/com/sun/star/uri/XUriReference.idl | 12 | ||||
-rw-r--r-- | udkapi/com/sun/star/uri/XUriReferenceFactory.idl | 30 | ||||
-rw-r--r-- | udkapi/com/sun/star/uri/XUriSchemeParser.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl | 4 |
6 files changed, 27 insertions, 27 deletions
diff --git a/udkapi/com/sun/star/uri/XUriReference.idl b/udkapi/com/sun/star/uri/XUriReference.idl index 5a555fc6256b..147eaba79f2e 100644 --- a/udkapi/com/sun/star/uri/XUriReference.idl +++ b/udkapi/com/sun/star/uri/XUriReference.idl @@ -55,7 +55,7 @@ published interface XUriReference: com::sun::star::uno::XInterface { returns whether this URI reference is absolute or relative. @returns - <TRUE/> if this URI reference is absolute, <FALSE/> if it is relative. + `TRUE` if this URI reference is absolute, `FALSE` if it is relative. */ boolean isAbsolute(); @@ -93,7 +93,7 @@ published interface XUriReference: com::sun::star::uno::XInterface { always hierarchical.</p> @returns - <TRUE/> if this URI reference is hierarchical, <FALSE/> if it is opaque. + `TRUE` if this URI reference is hierarchical, `FALSE` if it is opaque. */ boolean isHierarchical(); @@ -101,7 +101,7 @@ published interface XUriReference: com::sun::star::uno::XInterface { returns whether this (hierarchical) URI reference has an authority part. @returns - <TRUE/> if this URI reference is hierarchical and has an authority part. + `TRUE` if this URI reference is hierarchical and has an authority part. */ boolean hasAuthority(); @@ -130,7 +130,7 @@ published interface XUriReference: com::sun::star::uno::XInterface { returns whether this (relative) URI reference has a relative path. @returns - <TRUE/> if this URI reference is relative and has a relative path. + `TRUE` if this URI reference is relative and has a relative path. */ boolean hasRelativePath(); @@ -169,7 +169,7 @@ published interface XUriReference: com::sun::star::uno::XInterface { returns whether this (hierarchical) URI reference has a query part. @returns - <TRUE/> if this URI reference is hierarchical and has a query part. + `TRUE` if this URI reference is hierarchical and has a query part. */ boolean hasQuery(); @@ -188,7 +188,7 @@ published interface XUriReference: com::sun::star::uno::XInterface { returns whether this URI reference has a fragment part. @returns - <TRUE/> if this URI reference has a fragment part. + `TRUE` if this URI reference has a fragment part. */ boolean hasFragment(); diff --git a/udkapi/com/sun/star/uri/XUriReferenceFactory.idl b/udkapi/com/sun/star/uri/XUriReferenceFactory.idl index 5f3c56a3fbd5..145ee66c159c 100644 --- a/udkapi/com/sun/star/uri/XUriReferenceFactory.idl +++ b/udkapi/com/sun/star/uri/XUriReferenceFactory.idl @@ -45,7 +45,7 @@ published interface XUriReferenceFactory: com::sun::star::uno::XInterface { an object that supports com::sun::star::uri::XUriReference (and possibly also additional, scheme-specific interfaces), if the given input can be parsed - into a URI reference; otherwise, <NULL/> is returned. + into a URI reference; otherwise, `NULL` is returned. */ XUriReference parse([in] string uriReference); @@ -64,10 +64,10 @@ published interface XUriReferenceFactory: com::sun::star::uno::XInterface { URI references. @param processSpecialBaseSegments - if <TRUE/>, special segments (“<code>.</code>” and + if `TRUE`, special segments (“<code>.</code>” and “<code>..</code>”) within the path of the base URI (except for the last, cut-off segment) are processed as suggested by - RFC 2396. If <FALSE/>, special segments within the path of the base + RFC 2396. If `FALSE`, special segments within the path of the base URI are treated like ordinary segments. @param excessParentSegments @@ -80,10 +80,10 @@ published interface XUriReferenceFactory: com::sun::star::uno::XInterface { additional, scheme-specific interfaces), if the given <code>uriReference</code> is either already absolute, or can be resolved to an absolute URI reference, relative to the given - <code>baseUriReference</code>; otherwise, <NULL/> is returned. - Especially, if <code>baseUriReference</code> is <NULL/>, or is not an + <code>baseUriReference</code>; otherwise, `NULL` is returned. + Especially, if <code>baseUriReference</code> is `NULL`, or is not an absolute, hierarchical URI reference, or if <code>uriReference</code> is - <NULL/>, then <NULL/> is always returned. + `NULL`, then `NULL` is always returned. */ XUriReference makeAbsolute( [in] XUriReference baseUriReference, [in] XUriReference uriReference, @@ -106,9 +106,9 @@ published interface XUriReferenceFactory: com::sun::star::uno::XInterface { <code>uriReference</code> (e.g., “<code>scheme://auth//c/d</code>”) have the same scheme and authority components, and the path component of <code>uriReference</code> - starts with “<code>//</code>”. If <TRUE/>, the generated + starts with “<code>//</code>”. If `TRUE`, the generated relative URI reference includes an authority component (e.g., - “<code>//auth//c/d</code>”); if <FALSE/>, the generated + “<code>//auth//c/d</code>”); if `FALSE`, the generated relative URI reference has a relative path (e.g., “<code>..//c/d</code>”). @@ -119,12 +119,12 @@ published interface XUriReferenceFactory: com::sun::star::uno::XInterface { <code>uriReference</code> (e.g., “<code>scheme://auth/c/d</code>”) have the same scheme and authority components (if present), but share no common path segments. If - <TRUE/>, the generated relative URI reference has an absolute path (e.g., - “<code>/c/d</code>”); if <FALSE/>, the generated relative URI + `TRUE`, the generated relative URI reference has an absolute path (e.g., + “<code>/c/d</code>”); if `FALSE`, the generated relative URI reference has a relative path (e.g., “<code>../c/d</code>”). @param encodeRetainedSpecialSegments - if <TRUE/>, special segments (“<code>.</code>” and + if `TRUE`, special segments (“<code>.</code>” and “<code>..</code>”) that are already present in the path component of the given <code>uriReference</code> and which end up in a relative path returned from this method, are encoded (as @@ -138,10 +138,10 @@ published interface XUriReferenceFactory: com::sun::star::uno::XInterface { hierarchical, or is of a different scheme than the given <code>baseUriReference</code>, or can be changed to a relative URI reference, relative to the given <code>baseUriReference</code>; - otherwise, <NULL/> is returned. Especially, if - <code>baseUriReference</code> is <NULL/>, or is not an absolute, - hierarchical URI reference, or if <code>uriReference</code> is <NULL/>, - then <NULL/> is always returned. + otherwise, `NULL` is returned. Especially, if + <code>baseUriReference</code> is `NULL`, or is not an absolute, + hierarchical URI reference, or if <code>uriReference</code> is `NULL`, + then `NULL` is always returned. */ XUriReference makeRelative( [in] XUriReference baseUriReference, [in] XUriReference uriReference, diff --git a/udkapi/com/sun/star/uri/XUriSchemeParser.idl b/udkapi/com/sun/star/uri/XUriSchemeParser.idl index 881c19a2dd09..0794ba803f80 100644 --- a/udkapi/com/sun/star/uri/XUriSchemeParser.idl +++ b/udkapi/com/sun/star/uri/XUriSchemeParser.idl @@ -57,7 +57,7 @@ published interface XUriSchemeParser: com::sun::star::uno::XInterface { an object that supports com::sun::star::uri::XUriReference (and possibly also additional, scheme-specific interfaces), if the given input can be parsed - into an absolute URI; otherwise, <NULL/> is returned. + into an absolute URI; otherwise, `NULL` is returned. */ XUriReference parse([in] string scheme, [in] string schemeSpecificPart); }; diff --git a/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl b/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl index a8ac8280dc58..72f87c031565 100644 --- a/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl +++ b/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl @@ -50,7 +50,7 @@ published interface XVndSunStarExpandUrl { returns the expanded content of this URL. @param expander - a macro expander; must not be <NULL/>. + a macro expander; must not be `NULL`. @returns the expanded content of this URL. diff --git a/udkapi/com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.idl b/udkapi/com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.idl index a7ba3e68fe3d..03b58b718564 100644 --- a/udkapi/com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.idl +++ b/udkapi/com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.idl @@ -39,9 +39,9 @@ published interface XVndSunStarPkgUrlReferenceFactory { no fragment.</p> @param authority the authority of the created URL reference; must not be - <NULL/>, and should be an absolute URI reference with no fragment + `NULL`, and should be an absolute URI reference with no fragment - @return a new “vnd.sun.star.pkg” URL reference, or <NULL/> if + @return a new “vnd.sun.star.pkg” URL reference, or `NULL` if the given authority is either not an absolute URI reference or has a fragment */ diff --git a/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl b/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl index 6a55b5155955..15161ddb0098 100644 --- a/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl +++ b/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl @@ -85,8 +85,8 @@ published interface XVndSunStarScriptUrl: com::sun::star::uno::XInterface { a non-escaped key. @returns - <TRUE/> if this URL has at least one parameter with the given key. In - particular, if <code>key</code> is an empty `string`, <FALSE/> + `TRUE` if this URL has at least one parameter with the given key. In + particular, if <code>key</code> is an empty `string`, `FALSE` is returned. */ boolean hasParameter([in] string key); |