diff --git a/reference/svn/functions/svn-checkout.xml b/reference/svn/functions/svn-checkout.xml index 395a984be4..9815a8c538 100644 --- a/reference/svn/functions/svn-checkout.xml +++ b/reference/svn/functions/svn-checkout.xml @@ -1,5 +1,5 @@ - + svn_checkout @@ -13,6 +13,7 @@ stringrepos stringtargetpath intrevision + intflags Checks out a working copy from the repository at repos @@ -50,6 +51,15 @@ + + flags + + + Any combination of SVN_NON_RECURSIVE and + SVN_IGNORE_EXTERNALS. + + + diff --git a/reference/svn/functions/svn-log.xml b/reference/svn/functions/svn-log.xml index f743b80f37..c38505680a 100644 --- a/reference/svn/functions/svn-log.xml +++ b/reference/svn/functions/svn-log.xml @@ -1,5 +1,5 @@ - + svn_log @@ -11,13 +11,16 @@ arraysvn_log stringrepos_url - intrevision_no + intstart_revision + intend_revision + intlimit + intflags svn_log returns the complete history of the item at the repository URL repos_url, or the history of a specific revision - if revision_no is set. This function is equivalent - to svn log --verbose -r $revision_no $repos_url. + if start_revision is set. This function is equivalent + to svn log --verbose -r $start_revision $repos_url. @@ -25,7 +28,7 @@ be quite large (one array item for every revision of the item). This function does not support the --limit NUM flag, nor does it support revision - ranges (revision_no must be an integer). + ranges (start_revision must be an integer). @@ -43,15 +46,44 @@ - revision_no + start_revision - Revision number of the log to retrieve. Use - SVN_REVISON_HEAD to retrieve the log for + Revision number of the first log to retrieve. Use + SVN_REVISON_HEAD to retrieve the log from the most recent revision. + + end_revision + + + Revision number of the last log to retrieve. Defaults to + start_revision if specified or to + SVN_REVISION_INITIAL otherwise. + + + + + limit + + + Number of logs to retrieve. + + + + + flags + + + Any combination of SVN_OMIT_MESSAGES, + SVN_DISCOVER_CHANGED_PATHS and + SVN_STOP_ON_COPY, defaults to + SVN_DISCOVER_CHANGED_PATHS | SVN_STOP_ON_COPY. + + + diff --git a/reference/svn/functions/svn-ls.xml b/reference/svn/functions/svn-ls.xml index a4061bbff4..0fe9ede404 100644 --- a/reference/svn/functions/svn-ls.xml +++ b/reference/svn/functions/svn-ls.xml @@ -1,5 +1,5 @@ - + svn_ls @@ -11,6 +11,7 @@ arraysvn_ls stringrepos_url intrevision_no + boolrecurse This function queries the repository URL and returns a list of @@ -48,6 +49,14 @@ + + recurse + + + Enables recursion. + + + diff --git a/reference/svn/functions/svn-status.xml b/reference/svn/functions/svn-status.xml index 2ff50cfbf7..edb438adae 100644 --- a/reference/svn/functions/svn-status.xml +++ b/reference/svn/functions/svn-status.xml @@ -1,5 +1,5 @@ - + svn_status @@ -11,10 +11,7 @@ arraysvn_status stringpath - boolrecursive - boolget_all - boolupdate - boolno_ignore + intflags Returns the status of working copy files and directories, giving modifications, @@ -36,40 +33,15 @@ - recursive + flags - Whether or not to recursively descend into directories to - retrieve status. Default is &true;. - - - - - get_all - - - Whether or not to return all items, regardless of modification - status. Default is &false;. - - - - - update - - - Whether or not to return information from the server on - whether or not the working copy is up-to-date (specifically, - entries will be added for items that are out-of-date along with - the regular modification checks). Default is &false;. - - - - - no_ignore - - - Whether or not to disregard svn:ignore properties when scanning - for new files. Default is &false;. + Any combination of SVN_NON_RECURSIVE, + SVN_ALL (regardless of modification status), + SVN_SHOW_UPDATES (entries will be added for items + that are out-of-date), SVN_NO_IGNORE (disregard + svn:ignore properties when scanning for new files) + and SVN_IGNORE_EXTERNALS.