From 689f9830b50ac6b7a673ce467626c6d2deef645c Mon Sep 17 00:00:00 2001 From: "Damien F. Katz" Date: Wed, 23 Apr 2008 00:25:23 +0000 Subject: Replicator optmizations and fix for unnecessary document copy during re-replication git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@650705 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/replicator.html | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'share') diff --git a/share/www/replicator.html b/share/www/replicator.html index 684826ce..25ede91d 100644 --- a/share/www/replicator.html +++ b/share/www/replicator.html @@ -82,12 +82,8 @@ specific language governing permissions and limitations under the License. $.couch.replicate(source, target, { success: function(resp) { $.each(resp.history, function(idx, record) { - $("" + - "") - .find("th").text(record.start_time).end() - .find("td.seq").text(record.start_last_seq + "–" + record.end_last_seq).end() - .find("td.read").text(record.docs_read + " (" + record.read_errors + " errors)").end() - .find("td.copied").text(record.docs_copied + " (" + record.copy_errors + " errors)").end() + $("") + .find("th").text(JSON.stringify(record)).end() .appendTo("#records tbody.content"); }); $("#records tbody tr").removeClass("odd").filter(":odd").addClass("odd"); @@ -136,10 +132,7 @@ specific language governing permissions and limitations under the License. - - - - + @@ -148,5 +141,6 @@ specific language governing permissions and limitations under the License.
Replication History
WhenSequencesDocuments readDocuments copiedEvent
+
-- cgit v1.2.3