You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Daniel Shahaf <d....@daniel.shahaf.name> on 2012/10/10 21:35:19 UTC

Re: svn commit: r1396744 - in /subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ ra_serf: ra_serf.h xml.c

cmpilato@apache.org wrote on Wed, Oct 10, 2012 at 19:07:58 -0000:
> + * Add the appropriate serf buckets to AGG_BUCKET representing xml tag open
> + * with name TAG and attributes ATTRS.  XML-escape attributes as necessary.

> +svn_ra_serf__add_open_tag_attrs_buckets(serf_bucket_t *agg_bucket,
> +                                        serf_bucket_alloc_t *bkt_alloc,
> +                                        const char *tag,
> +                                        apr_hash_t *attrs);
> +
...
> +      apr_hash_this(hi, &key, &klen, &val);
> +
> +      tmp = SERF_BUCKET_SIMPLE_STRING(val, bkt_alloc);
> +      serf_bucket_aggregate_append(agg_bucket, tmp);

It doesn't seem to be XML-escaping the value as promised in the
docstring?  (Maybe that's intended for a subsequent commit...?)

Re: svn commit: r1396744 - in /subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ ra_serf: ra_serf.h xml.c

Posted by "C. Michael Pilato" <cm...@collab.net>.
On 10/10/2012 03:35 PM, Daniel Shahaf wrote:
> cmpilato@apache.org wrote on Wed, Oct 10, 2012 at 19:07:58 -0000:
>> + * Add the appropriate serf buckets to AGG_BUCKET representing xml tag open
>> + * with name TAG and attributes ATTRS.  XML-escape attributes as necessary.
> 
>> +svn_ra_serf__add_open_tag_attrs_buckets(serf_bucket_t *agg_bucket,
>> +                                        serf_bucket_alloc_t *bkt_alloc,
>> +                                        const char *tag,
>> +                                        apr_hash_t *attrs);
>> +
> ...
>> +      apr_hash_this(hi, &key, &klen, &val);
>> +
>> +      tmp = SERF_BUCKET_SIMPLE_STRING(val, bkt_alloc);
>> +      serf_bucket_aggregate_append(agg_bucket, tmp);
> 
> It doesn't seem to be XML-escaping the value as promised in the
> docstring?  (Maybe that's intended for a subsequent commit...?)

Heh.  Copy-and-pasted that whole function from the one above it
(svn_ra_serf__add_open_tag_buckets), which promises the same but similarly
appears to not follow through.  It would seem at first blush that this is a
bug on trunk, too, then.  Thanks for pointing it out!

-- 
C. Michael Pilato <cm...@collab.net>
CollabNet   <>   www.collab.net   <>   Enterprise Cloud Development


Re: svn commit: r1396744 - in /subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ ra_serf: ra_serf.h xml.c

Posted by "C. Michael Pilato" <cm...@collab.net>.
On 10/10/2012 03:35 PM, Daniel Shahaf wrote:
> cmpilato@apache.org wrote on Wed, Oct 10, 2012 at 19:07:58 -0000:
>> + * Add the appropriate serf buckets to AGG_BUCKET representing xml tag open
>> + * with name TAG and attributes ATTRS.  XML-escape attributes as necessary.
> 
>> +svn_ra_serf__add_open_tag_attrs_buckets(serf_bucket_t *agg_bucket,
>> +                                        serf_bucket_alloc_t *bkt_alloc,
>> +                                        const char *tag,
>> +                                        apr_hash_t *attrs);
>> +
> ...
>> +      apr_hash_this(hi, &key, &klen, &val);
>> +
>> +      tmp = SERF_BUCKET_SIMPLE_STRING(val, bkt_alloc);
>> +      serf_bucket_aggregate_append(agg_bucket, tmp);
> 
> It doesn't seem to be XML-escaping the value as promised in the
> docstring?  (Maybe that's intended for a subsequent commit...?)

Heh.  Copy-and-pasted that whole function from the one above it
(svn_ra_serf__add_open_tag_buckets), which promises the same but similarly
appears to not follow through.  It would seem at first blush that this is a
bug on trunk, too, then.  Thanks for pointing it out!

-- 
C. Michael Pilato <cm...@collab.net>
CollabNet   <>   www.collab.net   <>   Enterprise Cloud Development