-
-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
55,435 additions
and
39,737 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
|
||
/* | ||
* This migration adds a dxped_url-key to the options table, to configure | ||
* the endpoint, from where the dxpedition-data is being loaded. | ||
*/ | ||
|
||
class Migration_add_dxped_url_option extends CI_Migration { | ||
|
||
public function up() | ||
{ | ||
$data = array( | ||
array('option_name' => "dxped_url", 'option_value' => "https://cdn.cloudlog.org/read_ng3k_dxped_list.php", 'autoload' => "yes"), | ||
); | ||
|
||
$this->db->insert_batch('options', $data); | ||
} | ||
|
||
public function down() | ||
{ | ||
// No option to down | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
|
||
/* | ||
* Tag Cloudlog as 2.6.9 | ||
*/ | ||
|
||
class Migration_tag_2_6_9 extends CI_Migration { | ||
|
||
public function up() | ||
{ | ||
|
||
// Tag Cloudlog 2.6.3 | ||
$this->db->where('option_name', 'version'); | ||
$this->db->update('options', array('option_value' => '2.6.9')); | ||
|
||
// Trigger Version Info Dialog | ||
$this->db->where('option_type', 'version_dialog'); | ||
$this->db->where('option_name', 'confirmed'); | ||
$this->db->update('user_options', array('option_value' => 'false')); | ||
|
||
} | ||
|
||
public function down() | ||
{ | ||
$this->db->where('option_name', 'version'); | ||
$this->db->update('options', array('option_value' => '2.6.8')); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ | |
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/sections/eqslcharcounter.js"></script> | ||
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/sections/version_dialog.js"></script> | ||
|
||
<script src="https://unpkg.com/htmx.[email protected]"></script> | ||
<script src="<?php echo base_url(); ?>assets/js/htmx.min.js"></script> | ||
|
||
<script> | ||
// Reinitialize tooltips after new content has been loaded | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.