From d30160af9da0f939b8006742aa21b3f49fb55724 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 27 Sep 2011 00:04:22 +0100 Subject: [PATCH 1/7] Added awards tab to "Add QSOs" pending coding the backend --- application/views/qso/index.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 1d3ffea9..e825a005 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -189,6 +189,7 @@ function settime () {
  • Satellite
  • Station
  • QSL
  • +
  • Awards
  • Partial Callsign Check
    @@ -255,6 +256,17 @@ function settime () { +
    + + + + + + +
    IOTA
    + +
    +
    From bbe2bd944e0a73c04acd8ec3711dae17b3caae08 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 27 Sep 2011 00:10:04 +0100 Subject: [PATCH 2/7] Updated readme --- README | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README b/README index b9887b38..8310ed8d 100644 --- a/README +++ b/README @@ -1,3 +1,7 @@ -HRD Web Frontend += HRD Web Frontend (Cloudlog) -Website front end to support Ham Radio Deluxe Logbooks MySQL backend Table to allow logging from any location. \ No newline at end of file +Website front end to support Ham Radio Deluxe Logbooks MySQL backend Table to allow logging from any location. + +== Copyright + +Copyright (c) 2011 Peter goodhall. See LICENSE.txt for further details. \ No newline at end of file From 225b7da43dbbe5cd5376296e9115b5c6239871ef Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 27 Sep 2011 01:11:48 +0200 Subject: [PATCH 3/7] Edited README via GitHub --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 8310ed8d..0991579d 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ -= HRD Web Frontend (Cloudlog) +=HRD Web Frontend (Cloudlog) Website front end to support Ham Radio Deluxe Logbooks MySQL backend Table to allow logging from any location. -== Copyright +==Copyright Copyright (c) 2011 Peter goodhall. See LICENSE.txt for further details. \ No newline at end of file From 3484f5fed7eb7f4aff1f3c35611330b97c05e57f Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 27 Sep 2011 11:33:47 +0100 Subject: [PATCH 4/7] Added ability to track iota reference numbers in the logging interfaces --- application/models/logbook_model.php | 2 ++ application/views/qso/edit.php | 5 +++++ application/views/qso/index.php | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/application/models/logbook_model.php b/application/models/logbook_model.php index 35702640..8b3385f2 100644 --- a/application/models/logbook_model.php +++ b/application/models/logbook_model.php @@ -45,6 +45,7 @@ class Logbook_model extends CI_Model { 'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_method'), 'COL_OPERATOR' => $this->session->userdata('user_callsign'), 'COL_PROP_MODE' => $prop_mode, + 'COL_IOTA' => $this->input->post('iota_ref'), ); // Add QSO to database @@ -74,6 +75,7 @@ class Logbook_model extends CI_Model { 'COL_QSL_RCVD' => $this->input->post('qsl_recv'), 'COL_QSL_SENT_VIA' => $this->input->post('qsl_sent_method'), 'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_method'), + 'COL_IOTA' => $this->input->post('iota_ref'), ); $this->db->where('COL_PRIMARY_KEY', $this->input->post('id')); diff --git a/application/views/qso/edit.php b/application/views/qso/edit.php index eca88cbc..af0c832b 100644 --- a/application/views/qso/edit.php +++ b/application/views/qso/edit.php @@ -73,6 +73,11 @@ + + IOTA + + +

    QSLing

    diff --git a/application/views/qso/index.php b/application/views/qso/index.php index e825a005..e8614204 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -261,7 +261,7 @@ function settime () { - +
    IOTA e.g: EU-005
    From 8c2939873d0b6182f37460667fd778ed438d81cd Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 27 Sep 2011 20:18:19 +0100 Subject: [PATCH 5/7] Styled Logbook Pager System --- application/views/layout/header.php | 13 +++++++++++++ application/views/view_log/index.php | 6 +++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/application/views/layout/header.php b/application/views/layout/header.php index 2a0c4669..795dba0f 100644 --- a/application/views/layout/header.php +++ b/application/views/layout/header.php @@ -127,6 +127,19 @@ .ui-widget-content { border: none; } .ui-widget-header { background: none; border: none; border-bottom: 1px solid #DDD; } + .pager { + margin-top: 5px; + margin-bottom: 5px; + font-size: 12px; + } + .pager a, strong { + border: 1px solid #D7D7D7; + padding: 5px; + } + .pager a:hover { + background-color: azure; + } +