Plugin Directory

Changeset 3113209

Timestamp:
07/05/2024 04:44:29 PM (5 weeks ago)
Author:
jonsurrell
Message:

Release v0.5

Use regular REST API result response shape.
Display text content of "atomic" HTML API nodes like textarea or xmp.

Location:
html-api-debugger
Files:
3 edited
9 copied

Legend:

Unmodified
Added
Removed
  • html-api-debugger/tags/0.5/html-api-debugger.php

    r3105816 r3113209  
    44 * Plugin URI:        https://github.com/sirreal/html-api-debugger
    55 * Description:       Add a page to wp-admin for debugging the HTML API.
    6  * Version:           0.4
     6 * Version:           0.
    77 * Requires at least: 6.5
    8  * Tested up to:      6.5
     8 * Tested up to:      6.
    99 * Author:            Jon Surrell
    1010 * Author URI:        https://profiles.wordpress.org/jonsurrell/
     
    116116
    117117        return array(
     118
    118119            'result' => array_merge(
    119120                $result,
     
    122123        );
    123124    } catch ( Exception $e ) {
    124         return array( 'error' => (string) $e );
     125        return array(
     126            'error'  => (string) $e,
     127            'result' => null,
     128        );
    125129    }
    126130}
  • html-api-debugger/tags/0.5/html-api-integration.php

    r3105816 r3113209  
    250250                );
    251251
     252
     253
     254
     255
     256
     257
     258
     259
     260
     261
     262
     263
     264
     265
    252266                $current['childNodes'][] = $self;
    253267
  • html-api-debugger/tags/0.5/readme.txt

    r3105816 r3113209  
    44Requires at least: 6.5
    55Tested up to: 6.5
    6 Stable tag: 0.4
     6Stable tag: 0.
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2626* Improve debugger visibility controls.
    2727* Add handling for real/virtual nodes.
     28
     29
     30
     31
  • html-api-debugger/trunk/html-api-debugger.php

    r3105816 r3113209  
    44 * Plugin URI:        https://github.com/sirreal/html-api-debugger
    55 * Description:       Add a page to wp-admin for debugging the HTML API.
    6  * Version:           0.4
     6 * Version:           0.
    77 * Requires at least: 6.5
    8  * Tested up to:      6.5
     8 * Tested up to:      6.
    99 * Author:            Jon Surrell
    1010 * Author URI:        https://profiles.wordpress.org/jonsurrell/
     
    116116
    117117        return array(
     118
    118119            'result' => array_merge(
    119120                $result,
     
    122123        );
    123124    } catch ( Exception $e ) {
    124         return array( 'error' => (string) $e );
     125        return array(
     126            'error'  => (string) $e,
     127            'result' => null,
     128        );
    125129    }
    126130}
  • html-api-debugger/trunk/html-api-integration.php

    r3105816 r3113209  
    250250                );
    251251
     252
     253
     254
     255
     256
     257
     258
     259
     260
     261
     262
     263
     264
     265
    252266                $current['childNodes'][] = $self;
    253267
  • html-api-debugger/trunk/readme.txt

    r3105816 r3113209  
    44Requires at least: 6.5
    55Tested up to: 6.5
    6 Stable tag: 0.4
     6Stable tag: 0.
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2626* Improve debugger visibility controls.
    2727* Add handling for real/virtual nodes.
     28
     29
     30
     31
Note: See TracChangeset for help on using the changeset viewer.