From patchwork Mon Aug 1 16:17:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael-Doyle Hudson X-Patchwork-Id: 3207 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id BC0C623F51 for ; Mon, 1 Aug 2011 16:17:17 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id 6D1B5A182B3 for ; Mon, 1 Aug 2011 16:17:17 +0000 (UTC) Received: by qyk10 with SMTP id 10so1299130qyk.11 for ; Mon, 01 Aug 2011 09:17:17 -0700 (PDT) Received: by 10.229.183.84 with SMTP id cf20mr862234qcb.121.1312215435463; Mon, 01 Aug 2011 09:17:15 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.6.73 with SMTP id 9cs97864qcy; Mon, 1 Aug 2011 09:17:14 -0700 (PDT) Received: from mr.google.com ([10.227.96.140]) by 10.227.96.140 with SMTP id h12mr8189666wbn.95.1312215434785 (num_hops = 1); Mon, 01 Aug 2011 09:17:14 -0700 (PDT) Received: by 10.227.96.140 with SMTP id h12mr6137922wbn.95.1312215433829; Mon, 01 Aug 2011 09:17:13 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id fw18si9559940wbb.105.2011.08.01.09.17.13; Mon, 01 Aug 2011 09:17:13 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QnvB3-0005qe-8J for ; Mon, 01 Aug 2011 16:17:13 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 3C2C12E84FB for ; Mon, 1 Aug 2011 16:17:13 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-scheduler X-Launchpad-Branch: ~linaro-validation/lava-scheduler/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 57 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 57: use http://www.datatables.net/plug-ins/sorting#numbers_html to make sort by id work as expected Message-Id: <20110801161713.15445.92063.launchpad@loganberry.canonical.com> Date: Mon, 01 Aug 2011 16:17:13 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13543"; Instance="initZopeless config overlay" X-Launchpad-Hash: d075928f0a3187eedc4e7279129fd7fb31c7a8cd ------------------------------------------------------------ revno: 57 committer: Michael-Doyle Hudson branch nick: trunk timestamp: Mon 2011-08-01 17:15:44 +0100 message: use http://www.datatables.net/plug-ins/sorting#numbers_html to make sort by id work as expected modified: lava_scheduler_app/templates/lava_scheduler_app/_content.html lava_scheduler_app/templates/lava_scheduler_app/alljobs.html lava_scheduler_app/templates/lava_scheduler_app/index.html --- lp:lava-scheduler https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk You are subscribed to branch lp:lava-scheduler. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription === modified file 'lava_scheduler_app/templates/lava_scheduler_app/_content.html' --- lava_scheduler_app/templates/lava_scheduler_app/_content.html 2011-07-20 03:15:42 +0000 +++ lava_scheduler_app/templates/lava_scheduler_app/_content.html 2011-08-01 16:15:44 +0000 @@ -5,6 +5,23 @@ + {% endblock %} === modified file 'lava_scheduler_app/templates/lava_scheduler_app/alljobs.html' --- lava_scheduler_app/templates/lava_scheduler_app/alljobs.html 2011-07-26 05:31:52 +0000 +++ lava_scheduler_app/templates/lava_scheduler_app/alljobs.html 2011-08-01 16:15:44 +0000 @@ -38,7 +38,7 @@ $("table.data").dataTable({ "bJQueryUI": true, "aoColumnDefs": [ - { "sType": "numeric", "aTargets": [ "id" ] } + { "sType": "num-html", "aTargets": [ "id" ] } ] }); } === modified file 'lava_scheduler_app/templates/lava_scheduler_app/index.html' --- lava_scheduler_app/templates/lava_scheduler_app/index.html 2011-07-24 21:58:58 +0000 +++ lava_scheduler_app/templates/lava_scheduler_app/index.html 2011-08-01 16:15:44 +0000 @@ -55,7 +55,7 @@ $("table.data").dataTable({ "bJQueryUI": true, "aoColumnDefs": [ - { "sType": "numeric", "aTargets": [ "id" ] } + { "sType": "num-html", "aTargets": [ "id" ] } ] }); }