mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
4cad525cfd
Summary: We need to remove quoted text completely from bodies in a composer. Unfortunately, that makes it very difficult to determine how to put it back in. For now the scheme is to append the quoted text at the end. However, that means that we need to only pull out quoted text at the end of a message. Unfortunately there are lots of places that quoted text appears inline with regular text. Determining whether or not some content is at the "end" of a message turned out to be non-trivial. We now have a new `DOMUtils` that looks for empty areas at the end. We also have a new quoted HTML parser that finds trailing quotes. Fixes T2335 Test Plan: lots of new quoted text tests Reviewers: bengotow Reviewed By: bengotow Maniphest Tasks: T2335 Differential Revision: https://phab.nylas.com/D1773
70 lines
No EOL
1.7 KiB
HTML
70 lines
No EOL
1.7 KiB
HTML
<head></head><body>
|
||
<div>
|
||
Hi,<br>
|
||
<blockquote class="foo">
|
||
On Tue, 2011-03-01 at 18:02 +0530, Abhishek Kona wrote:
|
||
<div>
|
||
> Hi folks <br>
|
||
> <br>
|
||
> What is the best way to clear a Riak bucket of all key, values after
|
||
<br>
|
||
> running a test? <br>
|
||
> I am currently using the Java HTTP API. <br>
|
||
</div>
|
||
</blockquote>
|
||
|
||
<p>
|
||
You can list the keys for the bucket and call delete for each. Or if you
|
||
put the keys (and kept track of them in your test) you can delete them
|
||
one at a time (without incurring the cost of calling list first.)
|
||
</p>
|
||
<p>
|
||
Something like:
|
||
<br>
|
||
</p><pre>
|
||
String bucket = "my_bucket";
|
||
BucketResponse bucketResponse = riakClient.listBucket(bucket);
|
||
RiakBucketInfo bucketInfo = bucketResponse.getBucketInfo();
|
||
|
||
for(String key : bucketInfo.getKeys()) {
|
||
riakClient.delete(bucket, key);
|
||
}
|
||
</pre>
|
||
<p></p>
|
||
|
||
<p>
|
||
would do it.
|
||
<br>
|
||
See also
|
||
<br>
|
||
http://wiki.basho.com/REST-API.html#Bucket-operations
|
||
<br>
|
||
which says
|
||
<br>
|
||
"At the moment there is no straightforward way to delete an entire
|
||
Bucket. There is, however, an open ticket for the feature. To delete all
|
||
the keys in a bucket, you’ll need to delete them all individually."
|
||
</p>
|
||
|
||
<blockquote>
|
||
<div>
|
||
> <br>
|
||
> -Abhishek Kona <br>
|
||
> <br>
|
||
> <br>
|
||
> _______________________________________________ <br>
|
||
> riak-users mailing list <br>
|
||
> riak-users@lists.basho.com <br>
|
||
> http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com <br>
|
||
</div>
|
||
</blockquote>
|
||
<br>
|
||
<br>
|
||
<br>
|
||
<br>
|
||
_______________________________________________
|
||
riak-users mailing list
|
||
riak-users@lists.basho.com
|
||
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
|
||
|
||
</div></body> |