Plugin Directory

Changeset 1557610


Ignore:
Timestamp:
12/19/2016 02:35:38 PM (9 years ago)
Author:
msnewton
Message:

Check in version 1.7.3

Location:
prospect/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • prospect/trunk/README.md

    r1526052 r1557610  
    44* Tags: Data Visualization, Digital Humanities
    55* Requires at least: 3.9.0
    6 * Tested up to: 4.6.1
     6* Tested up to: 4.7
    77* License: GPLv2 or later
    88* License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • prospect/trunk/README.txt

    r1526052 r1557610  
    44Tags: Data Visualization, Digital Humanities
    55Requires at least: 3.9.0
    6 Tested up to: 4.6.1
     6Tested up to: 4.7
    77Stable tag: trunk
    88License: GPLv2 or later
  • prospect/trunk/php/class-prospect-admin.php

    r1529667 r1557610  
    11891189        fwrite($fp, '"tmplt-def": '.$the_template->meta_def.",\n");
    11901190        fwrite($fp, '"tmplt-joins": '.$the_template->meta_joins.",\n");
    1191         fwrite($fp, '"tmplt-view": '.$the_template->meta_view." \n}");
    1192         fwrite($fp, '"tmplt-pview": '.$the_template->meta_pview." \n}");
     1191        fwrite($fp, '"tmplt-view": '.$the_template->meta_view);
     1192            // Format will depend on existence of template view data
     1193        if ($the_template->meta_pview != null && $the_template->meta_pview != '') {
     1194            fwrite($fp, ",\n ".'"tmplt-pview": '.$the_template->meta_pview." \n}");
     1195        } else {
     1196            fwrite($fp, " }");
     1197        }
    11931198    } // write_template_data()
    11941199
     
    30823087
    30833088
    3084         // PURPOSE: Returns Geonames API results 
     3089        // PURPOSE: Returns Geonames API results
    30853090        // INPUT: $_POST['query'] = name query from Geonames dialog
    30863091    public function prsp_get_geonames() {
    30873092        $content = @file_get_contents('http://api.geonames.org/searchJSON?q='. $_POST['query'] .'&maxRows=10&username=UNCDIL');
    3088        
     3093
    30893094        if ($content === false) {
    30903095            $result = 'Error';
  • prospect/trunk/php/scripts/english-us/view-exhibit.php

    r1537928 r1557610  
    9797    <div id="dialog-about" title=<?php _e('"About Prospect&#8482;"', 'prospect'); ?>>
    9898        <div class="scroll-container">
    99             <p>Prospect&#8482; 1.7.2</p>
     99            <p>Prospect&#8482; 1.7.3</p>
    100100            <img class="logo"/>
    101101            <p><?php _e('From the', 'prospect'); ?>
  • prospect/trunk/php/scripts/english-us/view-volume.php

    r1537928 r1557610  
    155155    <div id="dialog-about" title=<?php _e('"About Prospect&#8482;"', 'prospect'); ?>>
    156156        <div class="scroll-container">
    157             <p>Prospect&#8482; 1.7.2</p>
     157            <p>Prospect&#8482; 1.7.3</p>
    158158            <img class="logo"/>
    159159            <p><?php _e('From the', 'prospect'); ?>
  • prospect/trunk/prospect.php

    r1537928 r1557610  
    44 * Plugin URI:        https://prospect.web.unc.edu/
    55 * Description:       Digital Humanities platform for visualizing curated collections
    6  * Version:           1.7.2
     6 * Version:           1.7.3
    77 * Author:            msnewton, kvnjcby, Breon Williams, Digital Innovation Lab, UNC-CH
    88 * Text Domain:       prospect
Note: See TracChangeset for help on using the changeset viewer.