| 64 | } |
| 65 | |
| 66 | DAV_DECLARE(void) dav_add_all_liveprop_xmlns(apr_pool_t *p, |
| 67 | apr_text_header *phdr) |
| 68 | { |
| 69 | apr_hash_index_t *idx = apr_hash_first(p, dav_liveprop_uris); |
| 70 | |
| 71 | for ( ; idx != NULL; idx = apr_hash_next(idx) ) { |
| 72 | const void *key; |
| 73 | void *val; |
| 74 | const char *s; |
| 75 | |
| 76 | apr_hash_this(idx, &key, NULL, &val); |
| 77 | |
| 78 | s = apr_psprintf(p, " xmlns:lp%ld=\"%s\"", (long)val, (const char *)key); |
| 79 | apr_text_append(p, phdr, s); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | DAV_DECLARE(int) dav_do_find_liveprop(const char *ns_uri, const char *name, |
| 84 | const dav_liveprop_group *group, |
no outgoing calls
no test coverage detected