Searched refs:revprops (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-10.3-release/contrib/subversion/subversion/libsvn_subr/
H A Dcompat.c75 svn_compat_log_revprops_clear(apr_hash_t *revprops) argument
77 if (revprops)
79 svn_hash_sets(revprops, SVN_PROP_REVISION_AUTHOR, NULL);
80 svn_hash_sets(revprops, SVN_PROP_REVISION_DATE, NULL);
81 svn_hash_sets(revprops, SVN_PROP_REVISION_LOG, NULL);
88 apr_array_header_t *revprops = apr_array_make(pool, 3, sizeof(char *)); local
90 APR_ARRAY_PUSH(revprops, const char *) = SVN_PROP_REVISION_AUTHOR;
91 APR_ARRAY_PUSH(revprops, const char *) = SVN_PROP_REVISION_DATE;
92 APR_ARRAY_PUSH(revprops, const char *) = SVN_PROP_REVISION_LOG;
94 return revprops;
98 svn_compat_log_revprops_out(const char **author, const char **date, const char **message, apr_hash_t *revprops) argument
[all...]
H A Dlog.c210 const apr_array_header_t *revprops, apr_pool_t *pool)
239 if (revprops == NULL)
240 svn_stringbuf_appendcstr(options, " revprops=all");
241 else if (revprops->nelts > 0)
243 svn_stringbuf_appendcstr(options, " revprops=(");
244 for (i = 0; i < revprops->nelts; i++)
246 const char *name = APR_ARRAY_IDX(revprops, i, const char *);
204 svn_log__log(const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, apr_pool_t *pool) argument
H A Dtypes.c301 if (log_entry->revprops)
302 new_entry->revprops = svn_prop_hash_dup(log_entry->revprops, pool);
/freebsd-10.3-release/contrib/subversion/subversion/include/
H A Dsvn_compat.h56 /** Clear svn:author, svn:date, and svn:log from @a revprops if not NULL.
63 svn_compat_log_revprops_clear(apr_hash_t *revprops);
66 * retrieve the pre-1.5 set of revprops: svn:author, svn:date, and svn:log.
74 * svn:author, svn:date, and svn:log revprops from @a revprops. If @a
75 * revprops is NULL, all return values are NULL. Any return value may be
76 * NULL if the corresponding property is not set in @a revprops.
82 const char **message, apr_hash_t *revprops);
H A Dsvn_opt.h575 * @a revprops, making copies of both with @a pool. If @a revprops is
576 * @c NULL, allocate a new apr_hash_t in it. @a revprops maps
583 svn_opt_parse_revprop(apr_hash_t **revprops, const char *revprop_spec,
H A Dsvn_types.h884 * would contain no revprops. Maps (const char *) property name to
886 apr_hash_t *revprops;
868 apr_hash_t *revprops; member in struct:svn_log_entry_t
H A Dsvn_client.h2661 * If @a revprops is NULL, retrieve all revision properties; else, retrieve
2680 const apr_array_header_t *revprops,
2703 const apr_array_header_t *revprops,
2712 * include_merged_revisions is set to @c FALSE and @a revprops is
3924 * @a discover_changed_paths and @a revprops are the same as for
3946 const apr_array_header_t *revprops,
3968 const apr_array_header_t *revprops,
3989 const apr_array_header_t *revprops,
4010 const apr_array_header_t *revprops,
4842 * This is to help clients support interactive editing of revprops
[all...]
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_ra_serf/
H A Dlog.c81 const apr_array_header_t *revprops;
86 members are collected by individual states. revprops and paths are
157 collect_revprop(apr_hash_t *revprops,
162 apr_pool_t *result_pool = apr_hash_pool_get(revprops);
184 svn_hash_sets(revprops, propname, decoded);
290 /* ... and same story for the collected revprops. */
291 log_entry->revprops = log_ctx->collect_revprops;
457 if (log_ctx->revprops)
460 for (i = 0; i < log_ctx->revprops->nelts; i++)
462 char *name = APR_ARRAY_IDX(log_ctx->revprops,
79 const apr_array_header_t *revprops; member in struct:log_context_t
154 collect_revprop(apr_hash_t *revprops, const char *propname, const svn_string_t *cdata, const char *encoding) argument
502 svn_ra_serf__get_log(svn_ra_session_t *ra_session, const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, svn_log_entry_receiver_t receiver, void *receiver_baton, apr_pool_t *pool) argument
[all...]
H A Dproperty.c917 apr_hash_t *revprops = baton;
918 apr_pool_t *result_pool = apr_hash_pool_get(revprops);
938 svn_hash_sets(revprops, prop_name, val);
945 svn_ra_serf__select_revprops(apr_hash_t **revprops,
952 *revprops = apr_hash_make(result_pool);
956 select_revprops, *revprops,
915 apr_hash_t *revprops = baton; local
943 svn_ra_serf__select_revprops(apr_hash_t **revprops, const char *name, svn_revnum_t rev, apr_hash_t *all_revprops, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
/freebsd-10.3-release/contrib/subversion/subversion/svn/
H A Dlog-cmd.c340 svn_compat_log_revprops_out(&author, &date, &message, log_entry->revprops);
535 svn_compat_log_revprops_out(&author, &date, &message, log_entry->revprops);
653 svn_compat_log_revprops_clear(log_entry->revprops);
654 if (log_entry->revprops && apr_hash_count(log_entry->revprops) > 0)
656 svn_xml_make_open_tag(&sb, pool, svn_xml_normal, "revprops", NULL);
657 SVN_ERR(svn_cmdline__print_xml_prop_hash(&sb, log_entry->revprops,
660 svn_xml_make_close_tag(&sb, pool, "revprops");
684 apr_array_header_t *revprops;
690 _("'with-all-revprops' optio
683 apr_array_header_t *revprops; local
[all...]
H A Dmergeinfo-cmd.c311 apr_array_header_t *revprops;
314 revprops = apr_array_make(pool, 0, sizeof(const char *));
321 TRUE, depth, revprops, ctx,
326 apr_array_header_t *revprops;
329 revprops = apr_array_make(pool, 0, sizeof(const char *));
336 TRUE, depth, revprops, ctx,
309 apr_array_header_t *revprops; local
324 apr_array_header_t *revprops; local
H A Dprops.c235 static const char *const revprops[] =
239 static const apr_size_t revprops_len = sizeof(revprops)/sizeof(*revprops);
241 const char *const *const proplist = (revprop ? revprops : nodeprops);
233 static const char *const revprops[] = local
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_client/
H A Dlog.c153 *revprops in log entries */
157 /* ra session for retrieving revprops from old servers */
159 /* caller's list of requested revprops, receiver, and baton */
162 const apr_array_header_t *revprops;
175 /* If only some revprops are requested, get them one at a time on the
177 svn_ra_rev_proplist. This avoids getting unrequested revprops (which
180 if (rb->revprops)
185 for (i = 0; i < rb->revprops->nelts; i++)
187 const char *name = APR_ARRAY_IDX(rb->revprops, i, const char *);
191 log_entry->revprops i
161 const apr_array_header_t *revprops; member in struct:pre_15_receiver_baton_t
602 run_ra_get_log(apr_array_header_t *revision_ranges, apr_array_header_t *paths, apr_array_header_t *log_segments, svn_client__pathrev_t *actual_loc, svn_ra_session_t *ra_session, const apr_array_header_t *targets, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, svn_log_entry_receiver_t real_receiver, void *real_receiver_baton, svn_client_ctx_t *ctx, apr_pool_t *scratch_pool) argument
801 svn_client_log5(const apr_array_header_t *targets, const svn_opt_revision_t *peg_revision, const apr_array_header_t *opt_rev_ranges, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, svn_log_entry_receiver_t real_receiver, void *real_receiver_baton, svn_client_ctx_t *ctx, apr_pool_t *pool) argument
[all...]
H A Dmergeinfo.c1515 const apr_array_header_t *revprops,
1578 revprops,
1687 const apr_array_header_t *revprops,
2184 revprops,
2207 const apr_array_header_t *revprops,
2217 discover_changed_paths, depth, revprops,
1505 logs_for_mergeinfo_rangelist(const char *source_url, const apr_array_header_t *merge_source_fspaths, svn_boolean_t filtering_merged, const svn_rangelist_t *rangelist, svn_boolean_t oldest_revs_first, svn_mergeinfo_catalog_t target_mergeinfo_catalog, const char *target_fspath, svn_boolean_t discover_changed_paths, const apr_array_header_t *revprops, svn_log_entry_receiver_t log_receiver, void *log_receiver_baton, svn_client_ctx_t *ctx, svn_ra_session_t *ra_session, apr_pool_t *scratch_pool) argument
1672 svn_client__mergeinfo_log(svn_boolean_t finding_merged, const char *target_path_or_url, const svn_opt_revision_t *target_peg_revision, svn_mergeinfo_catalog_t *target_mergeinfo_catalog, const char *source_path_or_url, const svn_opt_revision_t *source_peg_revision, const svn_opt_revision_t *source_start_revision, const svn_opt_revision_t *source_end_revision, svn_log_entry_receiver_t log_receiver, void *log_receiver_baton, svn_boolean_t discover_changed_paths, svn_depth_t depth, const apr_array_header_t *revprops, svn_client_ctx_t *ctx, svn_ra_session_t *ra_session, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
2193 svn_client_mergeinfo_log2(svn_boolean_t finding_merged, const char *target_path_or_url, const svn_opt_revision_t *target_peg_revision, const char *source_path_or_url, const svn_opt_revision_t *source_peg_revision, const svn_opt_revision_t *source_start_revision, const svn_opt_revision_t *source_end_revision, svn_log_entry_receiver_t log_receiver, void *log_receiver_baton, svn_boolean_t discover_changed_paths, svn_depth_t depth, const apr_array_header_t *revprops, svn_client_ctx_t *ctx, apr_pool_t *scratch_pool) argument
/freebsd-10.3-release/contrib/subversion/subversion/include/private/
H A Dsvn_repos_private.h99 apr_hash_t *revprops,
H A Dsvn_log.h169 const apr_array_header_t *revprops, apr_pool_t *pool);
H A Dsvn_ra_private.h229 apr_hash_t *revprops,
H A Dsvn_client_private.h328 const apr_array_header_t *revprops,
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_repos/
H A Dlog.c1030 const apr_array_header_t *revprops,
1080 /* User is allowed to see at least some revprops. */
1082 if (revprops == NULL)
1084 /* Requested all revprops... */
1088 log_entry->revprops = svn_hash__make(pool);
1089 svn_hash_sets(log_entry->revprops, SVN_PROP_REVISION_AUTHOR,
1091 svn_hash_sets(log_entry->revprops, SVN_PROP_REVISION_DATE,
1096 log_entry->revprops = r_props;
1100 /* Requested only some revprops... */
1102 for (i = 0; i < revprops
1024 fill_log_entry(svn_log_entry_t *log_entry, svn_revnum_t rev, svn_fs_t *fs, apr_hash_t *prefetched_changes, svn_boolean_t discover_changed_paths, const apr_array_header_t *revprops, svn_repos_authz_func_t authz_read_func, void *authz_read_baton, apr_pool_t *pool) argument
1150 send_log(svn_revnum_t rev, svn_fs_t *fs, apr_hash_t *prefetched_changes, svn_mergeinfo_t log_target_history_as_mergeinfo, apr_hash_t *nested_merges, svn_boolean_t discover_changed_paths, svn_boolean_t subtractive_merge, svn_boolean_t handling_merged_revision, const apr_array_header_t *revprops, svn_boolean_t has_children, svn_log_entry_receiver_t receiver, void *receiver_baton, svn_repos_authz_func_t authz_read_func, void *authz_read_baton, apr_pool_t *pool) argument
1680 handle_merged_revisions(svn_revnum_t rev, svn_fs_t *fs, svn_mergeinfo_t log_target_history_as_mergeinfo, apr_hash_t *nested_merges, svn_mergeinfo_t processed, svn_mergeinfo_t added_mergeinfo, svn_mergeinfo_t deleted_mergeinfo, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, const apr_array_header_t *revprops, svn_log_entry_receiver_t receiver, void *receiver_baton, svn_repos_authz_func_t authz_read_func, void *authz_read_baton, apr_pool_t *pool) argument
1888 do_logs(svn_fs_t *fs, const apr_array_header_t *paths, svn_mergeinfo_t log_target_history_as_mergeinfo, svn_mergeinfo_t processed, apr_hash_t *nested_merges, svn_revnum_t hist_start, svn_revnum_t hist_end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, svn_boolean_t subtractive_merge, svn_boolean_t handling_merged_revisions, svn_boolean_t ignore_missing_locations, const apr_array_header_t *revprops, svn_boolean_t descending_order, svn_log_entry_receiver_t receiver, void *receiver_baton, svn_repos_authz_func_t authz_read_func, void *authz_read_baton, apr_pool_t *pool) argument
2235 svn_repos_get_logs4(svn_repos_t *repos, const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, svn_repos_authz_func_t authz_read_func, void *authz_read_baton, svn_log_entry_receiver_t receiver, void *receiver_baton, apr_pool_t *pool) argument
[all...]
H A Dcommit.c1313 apr_hash_t *revprops,
1324 revprops_array = svn_prop_hash_to_array(revprops, scratch_pool);
1339 apr_hash_t *revprops,
1373 author = svn_hash_gets(revprops, SVN_PROP_REVISION_AUTHOR);
1389 SVN_ERR(apply_revprops(repos->fs, eb->txn_name, revprops, scratch_pool));
1307 apply_revprops(svn_fs_t *fs, const char *txn_name, apr_hash_t *revprops, apr_pool_t *scratch_pool) argument
1330 svn_repos__get_commit_ev2(svn_editor_t **editor, svn_repos_t *repos, svn_authz_t *authz, const char *authz_repos_name, const char *authz_user, apr_hash_t *revprops, svn_commit_callback2_t commit_cb, void *commit_baton, svn_cancel_func_t cancel_func, void *cancel_baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
H A Dfs-wrap.c118 apr_array_header_t *revprops;
140 revprops = svn_prop_hash_to_array(revprop_table, pool);
141 err = svn_repos_fs_change_txn_props(txn, revprops, pool);
116 apr_array_header_t *revprops; local
/freebsd-10.3-release/contrib/subversion/subversion/svnmucc/
H A Dsvnmucc.c167 svn_node_kind_t kind; /* to copy, mkdir, put or set revprops */
726 apr_hash_t *revprops,
755 if (! svn_hash_gets(revprops, SVN_PROP_REVISION_LOG))
771 TRUE, NULL, apr_hash_pool_get(revprops)));
774 svn_hash_sets(revprops, SVN_PROP_REVISION_LOG, msg);
877 SVN_ERR(svn_ra_get_commit_editor3(session, &editor, &editor_baton, revprops,
1012 sanitize_log_sources(apr_hash_t *revprops, argument
1016 apr_pool_t *hash_pool = apr_hash_pool_get(revprops);
1021 if (svn_hash_gets(revprops, SVN_PROP_REVISION_LOG))
1032 svn_hash_sets(revprops, SVN_PROP_REVISION_LO
724 execute(const apr_array_header_t *actions, const char *anchor, apr_hash_t *revprops, const char *username, const char *password, const char *config_dir, const apr_array_header_t *config_options, svn_boolean_t non_interactive, svn_boolean_t trust_server_cert, svn_boolean_t no_auth_cache, svn_revnum_t base_revision, apr_pool_t *pool) argument
1095 apr_hash_t *revprops = apr_hash_make(pool); local
[all...]
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Dfs_fs.c77 rev and revprops directory. The number below is somewhat arbitrary,
101 process got aborted and that we have re-read revprops. */
1340 "### pack file may be much smaller and revprops of a single revision may be" NL
1344 "### latency and CPU usage reading and changing individual revprops. They" NL
1354 "### revprops tend to allow for very effective compression. Reading and" NL
1357 "### unless you often modify revprops after packing." NL
1358 "### Compressing packed revprops is disabled by default." NL
1499 /* first, pack all revprops shards to match the packed revision shards */
1542 /* delete the non-packed revprops shards afterwards */
1618 *and* the FS has been sharded, pack the revprops u
3644 get_revprop_packname(svn_fs_t *fs, packed_revprops_t *revprops, apr_pool_t *pool, apr_pool_t *scratch_pool) argument
3715 parse_packed_revprops(svn_fs_t *fs, packed_revprops_t *revprops, apr_pool_t *pool, apr_pool_t *scratch_pool) argument
3832 read_pack_revprop(packed_revprops_t **revprops, svn_fs_t *fs, svn_revnum_t rev, apr_int64_t generation, apr_pool_t *pool) argument
4105 repack_revprops(svn_fs_t *fs, packed_revprops_t *revprops, int start, int end, int changed_index, svn_stringbuf_t *new_serialized, apr_off_t new_total_size, apr_file_t *file, apr_pool_t *pool) argument
4176 repack_file_open(apr_file_t **file, svn_fs_t *fs, packed_revprops_t *revprops, int start, int end, apr_array_header_t **files_to_delete, apr_pool_t *pool) argument
4244 packed_revprops_t *revprops; local
[all...]
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_ra_svn/
H A Dclient.c1004 /* If we're sending revprops other than svn:log, make sure the server won't
1492 const apr_array_header_t *revprops,
1519 if (revprops)
1522 SVN_ERR(svn_ra_svn__write_tuple(conn, pool, "!w(!", "revprops"));
1523 for (i = 0; i < revprops->nelts; i++)
1525 name = APR_ARRAY_IDX(revprops, i, char *);
1537 SVN_ERR(svn_ra_svn__write_tuple(conn, pool, "!w())", "all-revprops"));
1576 /* Caller asked for custom revprops, but server is too old. */
1578 _("Server does not support custom revprops"
1649 &log_entry->revprops));
1483 perform_ra_svn_log(svn_error_t **outer_error, svn_ra_session_t *session, const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, svn_log_entry_receiver_t receiver, void *receiver_baton, apr_pool_t *pool) argument
1708 ra_svn_log(svn_ra_session_t *session, const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, svn_log_entry_receiver_t receiver, void *receiver_baton, apr_pool_t *pool) argument
[all...]
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_ra_local/
H A Dra_plugin.c766 /* Copy the revprops table so we can add the username. */
978 const apr_array_header_t *revprops,
1014 revprops,
1622 apr_hash_t *revprops,
1662 revprops = apr_hash_copy(scratch_pool, revprops);
1663 svn_hash_sets(revprops, SVN_PROP_REVISION_AUTHOR,
1669 revprops,
966 svn_ra_local__get_log(svn_ra_session_t *session, const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, svn_log_entry_receiver_t receiver, void *receiver_baton, apr_pool_t *pool) argument
1615 svn_ra_local__get_commit_ev2(svn_editor_t **editor, svn_ra_session_t *session, apr_hash_t *revprops, svn_commit_callback2_t commit_cb, void *commit_baton, apr_hash_t *lock_tokens, svn_boolean_t keep_locks, svn_ra__provide_base_cb_t provide_base_cb, svn_ra__provide_props_cb_t provide_props_cb, svn_ra__get_copysrc_kind_cb_t get_copysrc_kind_cb, void *cb_baton, svn_cancel_func_t cancel_func, void *cancel_baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument

Completed in 215 milliseconds

12