|
11 | 11 |
|
12 | 12 | <active>yes</active>
|
13 | 13 | </lead>
|
14 |
| - <date>2016-11-07</date> |
15 |
| - <time>03:50:39</time> |
| 14 | + <date>2017-05-22</date> |
| 15 | + <time>15:41:15</time> |
16 | 16 | <version>
|
17 | 17 | <release>1.0.0b6</release>
|
18 | 18 | <api>1.0.0</api>
|
|
37 | 37 | - newRequest()
|
38 | 38 | * Script::escapeString() no longer escapes bytes above 0x7F. This means that parameter string values are now influenced by charset settings, and thus no additional conversion is necessary. A new second argument can be set to TRUE to escape all bytes, including the previously untouched ASCII alphanumeric characters and underscores.
|
39 | 39 | * Stream parameters in Script::append() (and inherently, Script::prepare() and Util::exec()) now have ALL bytes escaped.
|
| 40 | +* Script::escapeValue() converts NULL to "nil" instead of "nothing". |
| 41 | +* The $params array in Script::append() can declare variables with a value of type "nothing" by using numeric keys, and the variable names as values. |
40 | 42 | * Script::parseValue() now supports letter notation for time (1h2m3s), not just double colon notation (01:02:03), modeled after RouterOS. Related to that is also that leading zeroes, and zero minutes and seconds are now optional (e.g. "1:" is a valid way of saying 1 hour). Sub-second information is rounded up to the nearest second on current PHP versions (future versions are expected to support sub-second information in DateInterval by allowing seconds to be a double; The code currently attempts to give DateInterval a double, falling back to rounding to a second).
|
41 | 43 | * Script::parseValue() now recognizes dates in the "M/d/Y H:i:s" format (used across RouterOS), and turns that into a DateTime object for that time (or midnight in UTC if the time part is omitted).
|
42 | 44 | * Util::getAll() now throws a NotSupportedException if the arguments "follow", "follow-only" or "count-only" are used. The first two, because PHP would hang (since Client::sendSync() is used under the hood), and the last one because it's unredable in the returned output (use Util::count() instead).
|
|
58 | 60 | </file>
|
59 | 61 | </dir>
|
60 | 62 | <dir name="docs" baseinstalldir="/">
|
| 63 | + <dir name="wiki"> |
| 64 | + <file role="doc" name="Approaches-with-Client.md"/> |
| 65 | + <file role="doc" name="Getting-started.md"/> |
| 66 | + <file role="doc" name="Home.md"/> |
| 67 | + <file role="doc" name="Manipulating-RouterOS-data-using-Client.md"/> |
| 68 | + <file role="doc" name="Optional-features.md"/> |
| 69 | + <file role="doc" name="Roscon.md"/> |
| 70 | + <file role="doc" name="Script-composition-and-parsing.md"/> |
| 71 | + <file role="doc" name="Shortcuts.md"/> |
| 72 | + <file role="doc" name="Using-queries.md"/> |
| 73 | + <file role="doc" name="Util-basics.md"/> |
| 74 | + <file role="doc" name="Util-extras.md"/> |
| 75 | + <file role="doc" name="_Footer.md"/> |
| 76 | + <file role="doc" name="_Sidebar.md"/> |
| 77 | + </dir> |
61 | 78 | <file role="doc" name="apigen.neon">
|
62 | 79 | <tasks:replace type="pear-config" to="php_dir" from="../src"/>
|
63 | 80 | </file>
|
|
79 | 96 | <file role="doc" name="sync-request-arguments.php"/>
|
80 | 97 | <file role="doc" name="sync-request-simple.php"/>
|
81 | 98 | </dir>
|
| 99 | + <dir name="Script"> |
| 100 | + <file role="doc" name="parseValue.php"/> |
| 101 | + <file role="doc" name="prepare.php"/> |
| 102 | + </dir> |
82 | 103 | <dir name="Util">
|
83 | 104 | <file role="doc" name="add.php"/>
|
84 | 105 | <file role="doc" name="count.php"/>
|
| 106 | + <file role="doc" name="edit.php"/> |
85 | 107 | <file role="doc" name="enable_disable_remove.php"/>
|
86 | 108 | <file role="doc" name="exec-basic.php"/>
|
87 | 109 | <file role="doc" name="exec-params.php"/>
|
|
94 | 116 | <file role="doc" name="get-number.php"/>
|
95 | 117 | <file role="doc" name="getAll.php"/>
|
96 | 118 | <file role="doc" name="move.php"/>
|
97 |
| - <file role="doc" name="parseValue.php"/> |
98 | 119 | <file role="doc" name="set-multiple.php"/>
|
99 | 120 | <file role="doc" name="set-single.php"/>
|
100 | 121 | </dir>
|
|
381 | 402 | <package>
|
382 | 403 | <name>PEAR2_Console_CommandLine</name>
|
383 | 404 | <channel>pear2.php.net</channel>
|
384 |
| - <min>0.2.1</min> |
| 405 | + <min>0.2.2</min> |
385 | 406 | </package>
|
386 | 407 | <package>
|
387 | 408 | <name>PEAR2_Console_Color</name>
|
|
400 | 421 | <install name="docs/doxygen.ini" as="doxygen.ini"/>
|
401 | 422 | <install name="docs/phpdoc.dist.xml" as="phpdoc.dist.xml"/>
|
402 | 423 | <install name="docs/sami.php" as="sami.php"/>
|
| 424 | + <install name="docs/wiki/Approaches-with-Client.md" as="wiki/Approaches-with-Client.md"/> |
| 425 | + <install name="docs/wiki/Getting-started.md" as="wiki/Getting-started.md"/> |
| 426 | + <install name="docs/wiki/Home.md" as="wiki/Home.md"/> |
| 427 | + <install name="docs/wiki/Manipulating-RouterOS-data-using-Client.md" as="wiki/Manipulating-RouterOS-data-using-Client.md"/> |
| 428 | + <install name="docs/wiki/Optional-features.md" as="wiki/Optional-features.md"/> |
| 429 | + <install name="docs/wiki/Roscon.md" as="wiki/Roscon.md"/> |
| 430 | + <install name="docs/wiki/Script-composition-and-parsing.md" as="wiki/Script-composition-and-parsing.md"/> |
| 431 | + <install name="docs/wiki/Shortcuts.md" as="wiki/Shortcuts.md"/> |
| 432 | + <install name="docs/wiki/Using-queries.md" as="wiki/Using-queries.md"/> |
| 433 | + <install name="docs/wiki/Util-basics.md" as="wiki/Util-basics.md"/> |
| 434 | + <install name="docs/wiki/Util-extras.md" as="wiki/Util-extras.md"/> |
| 435 | + <install name="docs/wiki/_Footer.md" as="wiki/_Footer.md"/> |
| 436 | + <install name="docs/wiki/_Sidebar.md" as="wiki/_Sidebar.md"/> |
403 | 437 | <install name="examples/Client/callback-and-loop.php" as="examples/Client/callback-and-loop.php"/>
|
404 | 438 | <install name="examples/Client/loop-and-extract.php" as="examples/Client/loop-and-extract.php"/>
|
405 | 439 | <install name="examples/Client/send-and-complete.php" as="examples/Client/send-and-complete.php"/>
|
406 | 440 | <install name="examples/Client/send-and-forget.php" as="examples/Client/send-and-forget.php"/>
|
407 | 441 | <install name="examples/Client/sync-request-arguments.php" as="examples/Client/sync-request-arguments.php"/>
|
408 | 442 | <install name="examples/Client/sync-request-simple.php" as="examples/Client/sync-request-simple.php"/>
|
| 443 | + <install name="examples/Script/parseValue.php" as="examples/Script/parseValue.php"/> |
| 444 | + <install name="examples/Script/prepare.php" as="examples/Script/prepare.php"/> |
409 | 445 | <install name="examples/Util/add.php" as="examples/Util/add.php"/>
|
410 | 446 | <install name="examples/Util/count.php" as="examples/Util/count.php"/>
|
| 447 | + <install name="examples/Util/edit.php" as="examples/Util/edit.php"/> |
411 | 448 | <install name="examples/Util/enable_disable_remove.php" as="examples/Util/enable_disable_remove.php"/>
|
412 | 449 | <install name="examples/Util/exec-basic.php" as="examples/Util/exec-basic.php"/>
|
413 | 450 | <install name="examples/Util/exec-params.php" as="examples/Util/exec-params.php"/>
|
|
420 | 457 | <install name="examples/Util/get-number.php" as="examples/Util/get-number.php"/>
|
421 | 458 | <install name="examples/Util/getAll.php" as="examples/Util/getAll.php"/>
|
422 | 459 | <install name="examples/Util/move.php" as="examples/Util/move.php"/>
|
423 |
| - <install name="examples/Util/parseValue.php" as="examples/Util/parseValue.php"/> |
424 | 460 | <install name="examples/Util/set-multiple.php" as="examples/Util/set-multiple.php"/>
|
425 | 461 | <install name="examples/Util/set-single.php" as="examples/Util/set-single.php"/>
|
426 | 462 | <install name="scripts/roscon" as="roscon"/>
|
|
0 commit comments