Plugin Directory

Changeset 1522886


Ignore:
Timestamp:
10/27/2016 06:31:34 AM (9 years ago)
Author:
chen420
Message:

tagging version 0.2.3

Location:
tinywebdb-api
Files:
3 edited
6 copied

Legend:

Unmodified
Added
Removed
  • tinywebdb-api/tags/0.2.3/readme.txt

    r1510808 r1522886  
    11===  TinyWebDB API  ===
    22Contributors: chen420
    3 Plugin URI: http://edu2web.com/tinywebdb-api/
    4 Author URI: http://digilib.net/
     3Plugin URI: https://github.com/edu2web/tinywebdb-api
     4Author URI: http://edu2web.com/tinywebdb-api/
    55Donate link: http://edu2web.com/tinywebdb-api/donate/
    66Tags: appinventor, tinywebdb, api
    77Requires at least: 4.0
    8 Tested up to: 4.4
    9 Stable tag: 0.2.2
     8Tested up to: 4.6.1
     9Stable tag: 0.2.3
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727    TinyWebDB API 0.1.0 implemented Get Value Action.
    2828    TinyWebDB API 0.2.0 will implement Store A Value Action.
    29       TinyWebDB API 0.3.0 will implement Authentication.
    30       TinyWebDB API 1.0.0 Full release.
     29    TinyWebDB API 0.3.0 will implement Authentication.
     30    TinyWebDB API 1.0.0 Full release.
    3131
    3232Visit Plugin URI for detail.
  • tinywebdb-api/tags/0.2.3/tinywebdb-api.php

    r1510808 r1522886  
    22/*
    33Plugin Name: Wp TinyWebDB API
    4 Plugin URI: http://edu2web.com/tinywebdb-api/
     4Plugin URI: https://github.com/edu2web/tinywebdb-api
    55Description: a AppInventor TinyWebDB API plugin, use you WordPress as a TinyWebDB web service.
    66    Action        URL                      Post Parameters  Response
     
    88    Store A Value {ServiceURL}/storeavalue tag,value        JSON: ["STORED", "{tag}", {value}]
    99Author: Hong Chen
    10 Author URI: http://digilib.net/
    11 Version: 0.2.2
     10Author URI: http://edu2web.com/tinywebdb-api/
     11Version: 0.2.3
    1212*/
    1313
    1414
    1515define("TINYWEBDB", "tools.php?page=tinywebdb-api/tinywebdb-api.php");
    16 define("TINYWEBDB_VER", "0.2.2");
     16define("TINYWEBDB_VER", "0.2.3");
    1717
    1818//***** Hooks *****
  • tinywebdb-api/tags/0.2.3/tinywebdb.php

    r1510808 r1522886  
    119119      if (is_null($tagValue)) $tagValue = $bedtag;  //reports a get_post failure
    120120      // $tagName = wp_tinywebdb_api_get_tagName($postid);
    121       return $tagValue->post_content;
     121      return $tagValue;
    122122    }
    123123 
  • tinywebdb-api/trunk/readme.txt

    r1510808 r1522886  
    11===  TinyWebDB API  ===
    22Contributors: chen420
    3 Plugin URI: http://edu2web.com/tinywebdb-api/
    4 Author URI: http://digilib.net/
     3Plugin URI: https://github.com/edu2web/tinywebdb-api
     4Author URI: http://edu2web.com/tinywebdb-api/
    55Donate link: http://edu2web.com/tinywebdb-api/donate/
    66Tags: appinventor, tinywebdb, api
    77Requires at least: 4.0
    8 Tested up to: 4.4
    9 Stable tag: 0.2.2
     8Tested up to: 4.6.1
     9Stable tag: 0.2.3
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727    TinyWebDB API 0.1.0 implemented Get Value Action.
    2828    TinyWebDB API 0.2.0 will implement Store A Value Action.
    29       TinyWebDB API 0.3.0 will implement Authentication.
    30       TinyWebDB API 1.0.0 Full release.
     29    TinyWebDB API 0.3.0 will implement Authentication.
     30    TinyWebDB API 1.0.0 Full release.
    3131
    3232Visit Plugin URI for detail.
  • tinywebdb-api/trunk/tinywebdb-api.php

    r1510808 r1522886  
    22/*
    33Plugin Name: Wp TinyWebDB API
    4 Plugin URI: http://edu2web.com/tinywebdb-api/
     4Plugin URI: https://github.com/edu2web/tinywebdb-api
    55Description: a AppInventor TinyWebDB API plugin, use you WordPress as a TinyWebDB web service.
    66    Action        URL                      Post Parameters  Response
     
    88    Store A Value {ServiceURL}/storeavalue tag,value        JSON: ["STORED", "{tag}", {value}]
    99Author: Hong Chen
    10 Author URI: http://digilib.net/
    11 Version: 0.2.2
     10Author URI: http://edu2web.com/tinywebdb-api/
     11Version: 0.2.3
    1212*/
    1313
    1414
    1515define("TINYWEBDB", "tools.php?page=tinywebdb-api/tinywebdb-api.php");
    16 define("TINYWEBDB_VER", "0.2.2");
     16define("TINYWEBDB_VER", "0.2.3");
    1717
    1818//***** Hooks *****
  • tinywebdb-api/trunk/tinywebdb.php

    r1510808 r1522886  
    119119      if (is_null($tagValue)) $tagValue = $bedtag;  //reports a get_post failure
    120120      // $tagName = wp_tinywebdb_api_get_tagName($postid);
    121       return $tagValue->post_content;
     121      return $tagValue;
    122122    }
    123123 
Note: See TracChangeset for help on using the changeset viewer.