Changeset 1225380
- Timestamp:
- 08/19/2015 05:02:51 PM (11 years ago)
- Location:
- ancient-world-linked-data-for-wordpress/trunk
- Files:
-
- 3 edited
-
inc/widgets/widget-awld-index.php (modified) (1 diff)
-
readme.txt (modified) (6 diffs)
-
wp-awld-js.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ancient-world-linked-data-for-wordpress/trunk/inc/widgets/widget-awld-index.php
r1010123 r1225380 29 29 30 30 /* Create the widget. */ 31 $this->WP_Widget('wp_awld_js_index', $this->awld_widget_name, $widget_ops);31 parent::__construct( 'wp_awld_js_index', $this->awld_widget_name, $widget_ops ); 32 32 } 33 33 /** @see WP_Widget */ -
ancient-world-linked-data-for-wordpress/trunk/readme.txt
r1156902 r1225380 4 4 Tags: links, data, linked data, semantic, isaw, lawdi, awld, awld-js, ancient world, history, science, wikipedia, loc, library of congress, opencontext, pleiades, perseus, pelagios, finds-org, worldcat, nomisma, arachne, trismegistos, papyri, eol, yale, numismatics, archive-org, geonames-org 5 5 Requires at least: 3.9 6 Tested up to: 4. 2.27 Stable tag: 0.2. 06 Tested up to: 4.3 7 Stable tag: 0.2.1 8 8 License: GPLv3 9 9 … … 63 63 = Automatic installation = 64 64 65 Log in to your WordPress admin panel, navigate to the Plugins menu and use the search form to search for this plugin. Click Install and WordPress will automatically complete the installation. 65 Log in to your WordPress admin panel, navigate to the Plugins menu and use the search form to search for this plugin. Click Install and WordPress will automatically complete the installation. 66 66 67 67 = Manual installation = … … 71 71 3. Log in to your WordPress admin panel and activate the plugin from the Plugins menu. 72 72 73 == Frequently Asked Questions == 73 == Frequently Asked Questions == 74 74 75 75 = Where can I find documentation? = … … 101 101 == Changelog == 102 102 103 = 0.2.0 - 19/10/2014 = 103 = 0.2.1 - 19/08/2015 = 104 * Use PHP 5 style constructor 105 106 = 0.2.0 - 19/10/2014 = 104 107 * code cleanup 105 108 * Add GeoNames support … … 107 110 * requires WP 3.9 or higher 108 111 109 = 0.1.3 - 02/03/2013 = 112 = 0.1.3 - 02/03/2013 = 110 113 * Minor update 111 114 * code cleanup 112 115 * 3.5+ admin interface 113 116 114 = 0.1.2 - 09/06/2012 = 117 = 0.1.2 - 09/06/2012 = 115 118 * new module: Internet Archive (archive.org) 116 119 * updated papyri.info module … … 118 121 * updated admin documentation (Munzkabinett Berlin, numismatics.org and sudoc modules) 119 122 120 = 0.1.1 - 03/06/2012 = 123 = 0.1.1 - 03/06/2012 = 121 124 * Initial release 0.1.1 122 125 123 126 == Upgrade Notice == 127 128 = 0.2.1 = 129 Minor update, WP 4.3 compatibility. 124 130 125 131 = 0.2.0 = -
ancient-world-linked-data-for-wordpress/trunk/wp-awld-js.php
r1010123 r1225380 6 6 Plugin URI: http://peterherrel.com/wordpress/plugins/wp-awld-js/ 7 7 Description: Awld.js is a javascript library for Ancient World Linked Data. This WordPress plugin uses the Awld.js library to add functionality and visual elements to your WordPress powered website, based on links to stable URIs relevant to the study of the Ancient World. 8 Version: 0.2. 08 Version: 0.2.1 9 9 Author: Peter J. Herrel 10 10 Author URI: http://peterherrel.com/ … … 17 17 Copyright (c) 2012-2014 Peter J. Herrel <peterherrel - gmail> 18 18 19 Ancient World Linked Data for WordPress is free software; you can redistribute it and/or modify 19 Ancient World Linked Data for WordPress is free software; you can redistribute it and/or modify 20 20 it under the terms of the GNU Lesser General Public License as published by the Free 21 21 Software Foundation; either version 3 of the License, or (at your option) any later version. 22 22 23 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 23 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 24 24 without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 25 25 See the GNU Lesser General Public License for more details. … … 44 44 * Neither the name of the New York University nor the names of its contributors may be used to 45 45 endorse or promote products derived from this software without specific prior written permission. 46 47 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 48 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 49 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 50 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 51 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 52 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 53 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 54 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 46 47 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 48 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 49 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 50 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 51 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 52 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 53 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 54 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 55 55 OF SUCH DAMAGE. 56 56 … … 73 73 { 74 74 // vars 75 public $version = '0.2. 0';75 public $version = '0.2.1'; 76 76 public $version_wp = '3.9'; 77 77 public $plugin_dir_url = ''; … … 321 321 deactivate_plugins( plugin_basename( __FILE__ ) ); 322 322 323 wp_die( 323 wp_die( 324 324 sprintf( __( 'The Ancient World Linked Data plugin requires WordPress %s or higher.', 'wp_awld_js' ), $this->version_wp ) 325 325 ,__( 'Ancient World Linked Data plugin activation error.', 'wp_awld_js' )
Note: See TracChangeset
for help on using the changeset viewer.