Plugin Directory

Changeset 906890


Ignore:
Timestamp:
05/02/2014 02:07:59 PM (12 years ago)
Author:
markzero
Message:

fix numbering list in readme; improve readme in 0.1.0 tag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-on-routes/tags/0.1.0/readme.txt

    r906880 r906890  
    11=== WordPress on Routes ===
    2 
    32Contributors: markzero
    4 
    53Tags: routes, path, HTTP method, custom paths, custom parameters, query, headers, exclude header, agent, filter agents
    6 
    74Requires at least: 3.8
    8 
    95Tested up to: 3.9
    10 
    116Stable tag: 0.1.0
    12 
    13 
    147
    158This plugin adds API-like functionality to your WordPress instance.
    169
    17 
    18 
    1910== Description ==
    2011
     12WordPress on Routes is a plugin for WordPress, inspired mainly by Ruby micro-frameworks. It adds ability to add custom routes to your WordPress instance. Useful for form submissions, API-like features, etc.
     13
    2114This plugin allows you to:
     15
    22161. Add custom routes to your WordPress installation
    23 2. Set method GET/POST/DELETE etc.
    24 3. Set body (as text, or template) or action (using add/do_action). If both are defined, `action` takes precedence over `body`.
    25 4. Set header (e.g. 'Content-Type' => 'text/html; charset=UTF-8')
    26 5. Exclude header (e.g. 'Set-Cookie')
    27 6. Set parameter like '/my/route/:param1/:param2'
    28 7. Add agents or filter by agents, using regular expressions
    29 8. Agent filter for negative logic (e.g. /^((?!Firefox).)*$/, which tells "every browser except Firefox")
    30 9. Include header and footer
     171. Set method GET/POST/DELETE etc.
     181. Set body (as text, or template) or action (using add/do_action). If both are defined, `action` takes precedence over `body`.
     191. Set header (e.g. 'Content-Type' => 'text/html; charset=UTF-8')
     201. Exclude header (e.g. 'Set-Cookie')
     211. Set parameter like '/my/route/:param1/:param2'
     221. Add agents or filter by agents, using regular expressions
     231. Agent filter for negative logic (e.g. /^((?!Firefox).)*$/, which tells "every browser except Firefox")
     241. Include header and footer
     25
     26== Installation ==
     27
     28Good old plugin installation applies here too - download it / clone it to `plugins/` dir, activate.
     29
     30No UI involved.
     31
Note: See TracChangeset for help on using the changeset viewer.