1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
|
<?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://pear.php.net/dtd/package-2.0"
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
packagerversion="1.5.4"
version="2.0"
xsi:schemaLocation="
http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd"
>
<name>PhD</name>
<channel>doc.php.net</channel>
<summary>A PHP based Docbook renderer</summary>
<description>
PhD is a PHP based Docbook renderer aimed to replace Docbook-XSL and various
other requirements needed to build the PHP.net documentation.
</description>
<lead>
<name>Hannes Magnusson</name>
<user>bjori</user>
<email>bjori@php.net</email>
<active>yes</active>
</lead>
<lead>
<name>Moacir de Oliveira</name>
<user>moacir</user>
<email>moacir@php.net</email>
<active>yes</active>
</lead>
<developer>
<name>Christian Weiske</name>
<user>cweiske</user>
<email>cweiske@php.net</email>
<active>yes</active>
</developer>
<developer>
<name>Paul M Jones</name>
<user>pmjones</user>
<email>pmjones@php.net</email>
<active>no</active>
</developer>
<developer>
<name>Gwynne Raskind</name>
<user>gwynne</user>
<email>gwynne@php.net</email>
<active>no</active>
</developer>
<developer>
<name>Rudy Nappee</name>
<user>loudi</user>
<email>loudi@php.net</email>
<active>no</active>
</developer>
<developer>
<name>Richard Quadling</name>
<user>rquadling</user>
<email>rquadling@php.net</email>
<active>yes</active>
</developer>
<date>2018-11-13</date>
<version>
<release>1.1.12</release>
<api>1.1.0</api>
</version>
<stability>
<release>snapshot</release>
<api>snapshot</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
...
</notes>
<contents>
<dir name="/">
<dir name="phpdotnet">
<dir name="phd">
<dir name="data">
<dir name="langs">
<!-- Translations -->
<file name="fr.ini" role="php"/>
<file name="de.ini" role="php"/>
<file name="ja.ini" role="php"/>
<file name="ru.ini" role="php"/>
<file name="sv.ini" role="php"/>
<file name="ro.ini" role="php"/>
<file name="en.ini" role="php"/>
<file name="tr.ini" role="php"/>
<file name="it.ini" role="php"/>
<file name="pl.ini" role="php"/>
<file name="da.ini" role="php"/>
<file name="bg.ini" role="php"/>
<file name="pt_BR.ini" role="php"/>
<file name="cs.ini" role="php"/>
<file name="es.ini" role="php"/>
<file name="sr.ini" role="php"/>
<file name="uk.ini" role="php"/>
<file name="no.ini" role="php"/>
</dir>
</dir>
<dir name="Format">
<dir name="Abstract">
<file name="Manpage.php" role="php"/>
<file name="PDF.php" role="php"/>
<file name="XHTML.php" role="php"/>
</dir>
<file name="Factory.php" role="php"/>
</dir>
<dir name="Options">
<file name="Handler.php" role="php"/>
<file name="Interface.php" role="php"/>
<file name="Parser.php" role="php"/>
</dir>
<dir name="Reader">
<file name="Partial.php" role="php"/>
</dir>
<dir name="PI">
<file name="DBHTMLHandler.php" role="php"/>
<file name="PHPDOCHandler.php" role="php"/>
</dir>
<file name="Autoloader.php" role="php"/>
<file name="constants.php" role="php"/>
<file name="Config.php" role="php">
<tasks:replace from="@php_dir@" to="php_dir" type="pear-config"/>
<tasks:replace from="@phd_version@" to="version" type="package-info" />
</file>
<file name="ErrorHandler.php" role="php"/>
<file name="Format.php" role="php"/>
<file name="Highlighter.php" role="php"/>
<file name="Index.php" role="php"/>
<file name="IndexRepository.php" role="php"/>
<file name="MediaManager.php" role="php"/>
<file name="ObjectStorage.php" role="php"/>
<file name="OutputHandler.php" role="php"/>
<file name="PIHandler.php" role="php"/>
<file name="Reader.php" role="php"/>
<file name="ReaderKeeper.php" role="php"/>
<file name="Render.php" role="php"/>
</dir>
</dir>
<file name="render.php" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config"/>
<tasks:replace from="@php_dir@" to="php_dir" type="pear-config"/>
</file>
<file name="phd.bat" role="script">
<tasks:replace from="@php_bin@" to="php_bin" type="pear-config"/>
<tasks:replace from="@bin_dir@" to="bin_dir" type="pear-config"/>
</file>
<file name="LICENSE" role="doc"/>
<file name="README" role="doc"/>
<file name="TODO.RENDERER" role="doc"/>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.8.0</min>
</pearinstaller>
<package>
<name>PhD_Generic</name>
<channel>doc.php.net</channel>
</package>
<extension>
<name>libxml</name>
</extension>
<extension>
<name>xmlreader</name>
</extension>
<extension>
<name>dom</name>
</extension>
<extension>
<name>sqlite3</name>
</extension>
<extension>
<name>zlib</name>
</extension>
</required>
<optional>
<package>
<name>PhD_PHP</name>
<channel>doc.php.net</channel>
</package>
<package>
<name>PhD_PEAR</name>
<channel>doc.php.net</channel>
</package>
<package>
<name>PhD_IDE</name>
<channel>doc.php.net</channel>
</package>
<extension>
<name>posix</name>
</extension>
<extension>
<name>haru</name>
</extension>
</optional>
</dependencies>
<phprelease>
<installconditions>
<os>
<name>windows</name>
</os>
</installconditions>
<filelist>
<install name="phd.bat" as="phd.bat"/>
</filelist>
</phprelease>
<phprelease>
<filelist>
<install name="render.php" as="phd"/>
<ignore name="phd.bat"/>
</filelist>
</phprelease>
<changelog>
<release>
<version>
<release>0.1</release>
<api>0.1</api>
</version>
<stability>
<release>snapshot</release>
<api>devel</api>
</stability>
<date>2007-10-01</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Initial release
</notes>
</release>
<release>
<version>
<release>0.1.0</release>
<api>0.1.0</api>
</version>
<stability>
<release>beta</release>
<api>devel</api>
</stability>
<date>2007-10-20</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added example numbering. (Hannes)
- Improved support for modifiers in fieldsynopsis. (Hannes)
- Remove () from refname when looking for version info, reported by Paul Reinheimer. (Hannes)
- Print notes inline with its title, reported by Philip Olson. (Hannes)
- Check if we have an open "{" before we print "}". (Hannes)
- Escape the version info. (Richard Q.)
- Fixed variablelist titles. (Hannes)
- Fixed table info titles. (Hannes)
- Fixed empty table cells, reported by Mark Wiesemann. (Hannes)
- Fixed table title markup, reported by Richard Q. (Hannes)
- Fixed non-closing b element for empty <title />s, reported by Joshua Thompson and Philip Olson. (Hannes)
- Fixed bug#43013 (Description rather then function name for right arrows on extension pages). (Richard Q.)
- Fixed bug#42906 (docs.php.net bold instead of links). (Hannes)
- Fixed bug#42860 (cannot render <orgname> element). (Hannes)
- Fixed bug#42845 (Copyright page has no TOC). (Hannes)
- Language support (for autogenerated texts):
* Bulgarian (by Kouber Saparev)
* Czech (by Jakub Vrana)
* German (by Oliver Albers)
* Italian (by Marco Cucinato)
* Japanese (by TAKAGI Masahiro)
* Polish (by Jaroslaw Glowacki)
* Brazilian Portuguese (by Diego Feitosa)
* Romanian (by Simion Onea)
</notes>
</release>
<release>
<version>
<release>0.2.0</release>
<api>0.2.0</api>
</version>
<stability>
<release>beta</release>
<api>devel</api>
</stability>
<date>2007-11-08</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added partial rendering. (Hannes)
- Added various verbosity levels. (Hannes)
- Added getopt() parsing for few configuration options. (Hannes)
- Added support for errorcode, symbol and superscript elements (used by few translations). (Hannes)
- Suppressed the contrib element. (Hannes)
- Fixed bug#43192 (Chunked HTML output difficult to use without TOC). (Edward Z. Yang)
- Fixed bug#43191 (build.php fails to included necessary theme dependencies). (Edward Z. Yang, Richard Q)
</notes>
</release>
<release>
<version>
<release>0.2.1</release>
<api>0.2.1</api>
</version>
<stability>
<release>beta</release>
<api>devel</api>
</stability>
<date>2007-12-30</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Multiple <term>s should be line seperated. (Hannes)
- Fixed autogenerated links to methods. (Edward Z.)
- Compressed methodnames in classsynopsis. (Edward Z.)
- Added HTML headers for the bightml theme. (Hannes)
- Removed warnings about missing translation files. (Hannes)
</notes>
</release>
<release>
<version>
<release>0.2.2</release>
<api>0.2.2</api>
</version>
<stability>
<release>beta</release>
<api>devel</api>
</stability>
<date>2008-01-30</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Removed support for phnotify. (Hannes)
- Added index chaching. (Edward Z.)
- Added option (-l/--list) to list the supported formats/themes.(Hannes)
- Added support for linkend in fieldsynopsis varnames. (Hannes)
- Added autogenerated "Edited by" text for <editor>. (Hannes)
- Added autogenerated "by" text for the first <author> element in <authorgroup>. (Hannes)
- Added missing closing "}" for classsynopsis. (Hannes)
- Fixed E_NOTICE on empty references. (Hannes)
- Fixed weird error message when no arguments are given, reported by Tony. (Hannes)
- Fixed typos in the argument descriptions (--help), reported by Tony. (Hannes)
- Fixed bug#43972 (PhD doesn't warn on missing partial IDs). (Hannes)
- Fixed bug#43904 (PhD doesn't detect <section> without xml:id). (Hannes)
- Fixed bug#43489 (Class synopsis return types are not links). (Hannes)
- Fixed bug#43440 (Wrong encoding on some parts of the page). (Hannes)
- Fixed bug#43428 (Empty TOC). (Hannes)
- Fixed bug#43421 (All intra-document hyperlinks broken in the Single HTML file form of manual). (Hannes)
- Fixed bug#43416 (Function links do not render as links). (Hannes)
</notes>
</release>
<release>
<version>
<release>0.2.3</release>
<api>0.2.3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-03-31</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added initial hCalendar support for <author>. (Hannes)
- Added initial eRDF support for <refentry>. (Hannes)
- Added support for <footnote> and <footnoteref>. (Gwynne, Hannes)
- Added anchor generation for various elements. (Hannes)
- Added option (-s/--skip) to skip rendering of chunks. (Hannes)
- Added option (-o/--output) to specify output directory (FR#43193). (Richard)
- Added support for <sect4> titles . (Gwynne)
- Added an 'infdec' role to <literal> in XHTML. (Gwynne)
- Fixed couple of typos in PhD info messages. (Richard Q.)
- Reformatted package.xml for readability and consistency. (Gwynne)
- Merged README.RENDERER into README and updated README with current information. (Gwynne)
- Gwynne is a developer of PhD, unfortunately. (Gwynne)
- Made 'Example #' text localizeable. (Gwynne)
- Added Russion support (for autogenerated texts). (Tony)
- Updated translations:
- Japanese (Masahiro)
- Brazilian Portuguese (Felipe)
- German (Mark)
</notes>
</release>
<release>
<version>
<release>0.2.4</release>
<api>0.2.4</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-05-24</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fixed bug#44906 (Missing space after modifier in properties list). (Hannes)
- Fixed bug#44881 (Class constants with $). (Hannes)
- Fixed bug#44786 (Remove irrelevant version information). (Hannes)
- Fixed bug#44785 (Separating <title> from <note>). (Hannes)
- Fixed bug#44776 (Request for change in titles). (Hannes)
- Fixed bug#44750 (Request for generic phd logger). (Hannes)
- Fixed bug#44690 (Please restore manual main page). (Hannes)
- Added French support (for autogenerated texts). (Yannick)
- Added Danish support (for autogenerated texts). (Kalle)
- Added Swedish support (for autogenerated texts). (Kalle)
- Added experimental option (-c/--color) for color in verbose output. (Gwynne)
</notes>
</release>
<release>
<version>
<release>0.3.0</release>
<api>0.3.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-07-24</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added CHM output format. (Rudy)
- Added KDevelop (Index & Table of contents) output theme. (Rudy)
- Added Man page output format. (Rudy)
- Added support for phpdoc:exception. (Hannes)
</notes>
</release>
<release>
<version>
<release>0.3.1</release>
<api>0.3.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-08-23</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added PDF output format. (Rudy)
- Added support for phpdoc:classref. (Hannes)
- Added support for phpdoc:varentry. (Hannes)
- Added support for the phpdoc howto. (Hannes)
- Renamed phpdoc:exception to phpdoc:exceptionref. (Hannes)
- Fixed bug#45627 (Unix manpages using non-standard folder name). (Rudy)
- Fixed bug#45626 (Unix manpages should be gzipped). (Rudy)
- Fixed bug#45618 (Bad filenames in man pages). (Rudy)
- Fixed unclosed div element on set pages. (Hannes)
</notes>
</release>
<release>
<version>
<release>0.4.0</release>
<api>0.4.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-10-20</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added PEAR XHTML theme. (Rudy, Christian)
- Added support for new elements (Christian)
* glossentry
* glossdef
* glosslist
* important
* paramdef
* personblurb
* phrase
* prompt
* releaseinfo
* spanspec
* qandadiv
- Improved <email> support (now creates mailto: links). (Christian)
- Chunks without xml:id are no longer chunked. (Christian)
- Fixed bug#46252 (Class properties links to a function if theres one with the same name). (Hannes)
- Fixed bug#46094 (and then from now on italic). (Hannes)
- Fixed bug#45071 (Links to require/include(_once) not rendered). (Hannes)
- Fixed a bug where it was only possible to pass one parameter to phd.bat. (Kalle)
- Fixed a bug where it wasn't possible to have paths with spaces in when using phd.bat. (Kalle)
- Fixed xhtml validation issue for itemizedlist. (Christian)
</notes>
</release>
<release>
<version>
<release>0.4.1</release>
<api>0.4.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-11-08</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fixed bug #46413 Weird examples in Unix manual pages (Rudy)
- Added varlistentries to the CHM index. (Rudy)
- Language support (for autogenerated texts):
* Turkish (by Nilgün Belma Bugüner)
- Prevent prev/next errors in combination with chunking elements without ids (Christian)
- Support double nested chunking elements without ids (Christian)
- Make table captions render properly in peardoc (Christian)
- add support for <arg> and <cmdsynopsis> used in peardoc (Christian)
- Fix bug #46415: Don't chunk first section on parent site when it has children. (Christian)
- Implement request #46411: Allow random chunking depths (Christian)
- Implement request #46412: Allow random TOC depths (Christian)
- Implement request #46493: Implement new pear api linking tag (Christian)
- Make pear chm theme work (Christian)
- Make html generated in pear themes nearly 100% valid XHTML (Christian)
- Make "Prev" links work correctly on last pages (e.g. last in chapter) (Christian)
- Change double quotes to single ones, gives speedup for pear builds (Brett)
- Docblock enhancements and Coding Standards fixes (Brett)
</notes>
</release>
<release>
<version>
<release>0.4.2</release>
<api>0.4.2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-12-18</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added support for phd:chunk="false" attribute on chunks. (Christian)
- Added Turkish support for CHM. (Nilgun)
- Added option (-L/--lang language) to use for CHM headers. (Hannes)
- Added support for orderedlist numeration. (Hannes)
- Added fallback to PHP_Compat getopt() on Windows. (Christian)
- Added anchors for tips, warnings, important and notes. (Nilgun)
- <interfacename> now automagically links to interfaces. (Hannes)
- Automatically use the phpdoc configure.php generated version
information file if it exists. (Hannes)
- Removed default border for formal tables. (Philip)
</notes>
</release>
<release>
<version>
<release>0.4.3</release>
<api>0.4.3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-01-17</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Automatically add anchors for refsect roles. (Hannes)
- Added description for seealso links. (Hannes)
- Fixed a bug where prefaces had unlisted children. (Hannes)
- Compressed methodnames in classsynopsis again. (Hannes)
- Added Next/Prev and Image Zoom buttons to CHM build (Richard Quadling)
- Fixed bug#46941 (FR: Find broken links). (Hannes)
- Fixed bug#46931 (wrong order of the META tag in the HEAD element). (Chen Gang)
- Fixed bug#46924 (parameter elements force incorrect line breaks). (Hannes)
- Fixed bug#46726 (Incorrect HTML output). (Hannes)
- Fixed bug#46714 (change deprecated ereg_replace(Since PHP 5.3.0) to preg_replace). (Chen Gang)
- Fixed bug#45570 (PhD doesn't use the colspec "align" attribute in xhtml output). (Hannes)
- Fixed bug#45318 (table colspec rendering issues). (Hannes)
- Fixed bug#44598 (Much space on 'expected output' section). (Hannes)
</notes>
</release>
<release>
<version>
<release>0.4.4</release>
<api>0.4.4</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-02-16</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Add support for <package> in pear theme (Christian)
- Replace ereg_replace with preg_replace
- Implement request #47201: Allow custom source code highlighter (e.g. Geshi) (Christian)
- Fix HTML problems with empty paragraphs in examples and qandaset questions (Christian)
- Support <uri> and <screenshot> (Christian)
- Copy images automatically using MediaManager (Christian)
- Fixed bug#47362: <h1> tag gets omitted in bightml (Christian)
- Fixed bug#47196: improve render of initializer tag (Laurent)
- Fixed encoding issues in the Polish CHM builds. (Jarosław Głowacki)
- Update polish phd translation (Jarosław Głowacki)
- Generate syntactically correct php files for pearweb when description or
title have a quote in it. (Christian)
- Improve object orientated version info support (Hannes)
</notes>
</release>
<release>
<version>
<release>0.4.5</release>
<api>0.4.5</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-02-19</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fix bug #47408: Same image directory used for each theme (Christian)
- Fix bug #47413: pear themes don't work when rendered together at once (Christian)
- Change copyright year to 2007-2009 (Christian)
- Fix PEAR chm manual title for french (Laurent)
- Fix PEAR chm navbar alignment (Laurent)
</notes>
</release>
<release>
<version>
<release>0.4.6</release>
<api>0.4.6</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-03-07</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added language support with unknownversion into phpdotnet theme. (Philip)
- phpbook/phpbook-xsl/version.xml is no longer used (Hannes)
- Fix PEAR bug #15967: Wrong ID passed to pearweb manualFooter() (Christian)
</notes>
</release>
<release>
<version>
<release>0.4.7</release>
<api>0.4.7</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-05-07</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added support for <token> (Christian)
- Added support for <simplesect> (Richard Q, Nilgun)
- Improved support for <tag> classes (Christian)
- Improved support for <variablelist> (Nilgun)
- Updated translations:
* Danish (Kalle)
* Swedish (Kalle)
* Turkish (Nilgun)
</notes>
</release>
<release>
<version>
<release>0.4.8</release>
<api>0.4.8</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-08-27</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Add support for external troff highlighter in man pages (Christian).
- Add title attribute to anchor tags so address can be seen in CHM files for external links (Richard Q.).
- CVS->SVN langs migration (Philip).
- Fixed bug#49006 (The manpage format groups function arguments incorrectly). (Moacir)
- Fixed bug#49005 (Reference sign in function prototypes in the manpage rendering). (Moacir)
</notes>
</release>
<release>
<version>
<release>0.9.0</release>
<api>0.9.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-09-08</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Use namespaces (Moacir)
- Use PEAR classname conventions (Christian)
- Add support for dbhtml Process Instructions (PI) (Moacir)
- Add the --package option (Moacir)
- Add the Generic Package (Moacir)
- Add the phpdotnet/phd namespace (Christian)
- Kill themes and add a concept of "packages" (Moacir)
- Rewrite indexer (Hannes, Rudy, Moacir)
- Rewrite program flow (Hannes)
</notes>
</release>
<release>
<version>
<release>0.9.1</release>
<api>0.9.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-12-21</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added fallback option to find English files when unable to find translated files (Richard Quadling)
- Added VERBOSE_ERRORS, VERBOSE_INFO and VERBOSE_WARNINGS to group verbose levels (Richard Quadling)
- Added VERBOSE_MISSING_ATTRIBUTES verbose level (Richard Quadling)
- Separated PhD verbose messages into informational and warnings (Richard Quadling)
- PhD verbose warning messages are colored magenta (Richard Quadling)
- Added MediaManger->findFile() method to return full filename of required image (Richard Quadling)
- Added the --css option (Moacir)
- Added the --forceindex option (Christian)
- Fixed bug #45071 - Links to require/include(_once) not rendered (Moacir)
- Fixed bug #47406 - Add support for external css (Moacir)
- Fixed bug #48264 - No style for HTML version of php docs (Moacir)
- Fixed bug #49547 - default of --color is true, not false (Richard Quadling)
- Fixed bug #49675 - Missing links in SeeAlso (Moacir)
- Fixed bug #49743 - Problem with functions both procedural and oo (Moacir)
- Fixed bug #49839 - Patch to clean up peardoc output (Michael Gauthier)
- Fixed --noindex option which did not work properly (Christian)
- Fixed --verbose option which did not work properly (Moacir)
</notes>
</release>
<release>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-03-11</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Use textual descriptions for VERBOSE_xxx messages (Richard Quadling)
- Implemented FR#50668 - add xinclude processing in phd. (Shahar Evron)
- Added support for DBTimestamp Processing Instruction. (Moacir)
- Added support for edition, inlinemediaobject, exceptionname, firstterm, trademark
and edition Docbook5 elements. (Hannes)
- Updated translations: (Kalle)
- Danish
- Swedish
- Disabled colored output on Windows. (Kalle)
- Fixed bug #45098 - named constants require long opt. (Hannes)
- Fixed bug #51070 - Double acronym tags in HTML output. (Moacir)
</notes>
</release>
<release>
<version>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-08-10</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Now searches the include-path for custom package classes in the \phpdotnet\phd namespace (pmjones)
- Added --ext command line option to specify filename extension (pmjones)
- Added --saveconfig option to generate a config file to load (Hannes)
- Added 'package_dirs' config option to specify package directories to autoload from (Hannes)
- Corrected grammar in Danish translation + fixed encoding (Daniel Egeberg)
- Allow colored output on Windows, but not by default (Richard Quadling)
- Allow <void/> as return type for methodsynopsis tags rather than <type>void</type> (Richard Quadling)
- Added support for <sidebar> (Richard Quadling)
- Now builds toc/* by default for the PHP package, and added --notoc option to use cached version (Philip)
- Changed the VERBOSE_DEFAULT error level to exclude VERBOSE_TOC_WRITING messages (Philip)
- Fixed encoding problems with the function iconv() in the CHM format (Moacir)
- Fixed the --lang option that was creating an infinite recursion (Moacir)
</notes>
</release>
<release>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-03-07</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added support for package cli options (Moacir)
- Do not disable color configuration settings when loading from phd.config.php on Windows when saved setting is enabled (Richard Quadling)
- Using saveconfig once no longer saves the config on every call to render (Richard Quadling)
- Restoring a saved config now correctly sets the error reporting level to the restored verbosity (Richard Quadling)
</notes>
</release>
<release>
<version>
<release>1.1.1</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-06-21</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Improved the performance of the indexer by ~ 75%. (Hannes)
- Added --quit option to quit after processing command line params. Useful when used with --saveconfig to just save the config (Richard Quadling)
- Output directory can now be nested (for example /rendering/PHP/en) (Richard Quadling)
- New translations:
- Spanish (Pablo Bangueses)
- Serbian (Nikola Smolenski)
- Fixed bug#52664 - "Missing" example#1. (Hannes)
- Added --packagedir option to use external packages. (Moacir)
- Added Format::getDebugTree() method to allow the current location in the tree to be reportable. (Richard Quadling)
</notes>
</release>
<release>
<version>
<release>1.1.2</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-06-21</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added phpdoc PI handler to handle manually added version information (bug#51853). (Hannes)
- Added the possiblity of adding version information for classes (bug#49927). (Hannes)
</notes>
</release>
<release>
<version>
<release>1.1.3</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-03-01</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Removed redundant align and valign attributes on table-related tags (Alexey Borzov)
</notes>
</release>
<release>
<version>
<release>1.1.4</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-04-06</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Bump version
</notes>
</release>
<release>
<version>
<release>1.1.5</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-06-07</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Show individual package version in --version. (Hannes)
- Fixed bug#54217 Warn about nonexisting parameters. (Moacir)
- Fixed bug#50725 Generate nav links at top of function index (Peter Cowburn)
- Fixed bug#47392 Option to specify filename for bightmls. (Hannes)
</notes>
</release>
<release>
<version>
<release>1.1.6</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-06-16</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fixed indexing of content with markup. (Hannes)
- Added support for generate-changelog-for, extension-membership and related phpdoc PI. (Hannes)
</notes>
</release>
<release>
<version>
<release>1.1.7</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-01-01</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fixed bug#64850 (move placement of space between <type> and <methodname> (Peter)
- Fixed bug#66316 (HTML is malformed) (Peter)
- Fixed bug PhD generates garbled chm on PHP 5.4.0 or later. (Yoshinari)
- Change the unknown version reference to Git, not SVN. (Adam)
</notes>
</release>
<release>
<version>
<release>1.1.8</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-01-21</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fixed bug#66400 (Class synopsis missing space between type and method name) (Peter)
</notes>
</release>
<release>
<date>2014-03-06</date>
<version>
<release>1.1.9</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fixed bug#66644 (Remove ()'s when rendering methodname in constructorsynopsis/destructorsynopsis) (Peter)
- Removed <em> wrapper around parameters (Levi)
</notes>
</release>
<release>
<date>2014-03-21</date>
<version>
<release>1.1.10</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Fix phd:chunk="false" (Adam)
- Render segmentedlist elements as XHTML tables (Adam)
</notes>
</release>
<release>
<date>2018-11-13</date>
<version>
<release>1.1.11</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
- Added new language translations: Norwegian (Bokmål) (Kalle), Ukrainian (KostyaTretyak)
- Updated language translations: Danish, Swedish (Kalle), Polish (Maciej)
- File formatting and style consistency changes (Peter Kokot)
- Render return type in PHP 7 style (PHP package) (Peter)
- PHP 7.2 compatibility fixes (Thomas Punt)
- Add support for <type>iterable</type> (Jiří Pudil)
- Add a tool for checking language files (Maciej)
- Initial work on composer support for PhD (Maciej, Peter)
- Fixes for rendering PhD's guide as PHP/HowTo (Maciej)
- Fixing undefined variable notice when $TOC_DEPRECATED is not available (Ben)
- Improve PHP 7 compatibility by handling highlight_string exceptions. (Adam)
- Convert SVN -> Git in existing translations (Maciej)
- Convert language files to INI (Maciej)
- Better handling for deprecated functions (Maciej)
- simplesect elements should use the same formatting as sect[2-5] (Adam)
- Use html5 q for quoting (Hannes)
- Link to the array|object docs (Hannes)
- Use var HTML tag for envar DocBook tag (Simion Onea)
- Fixed breadcrumbs HTML markup (PHP: chunked xhtml) (Maciej)
- Fixed bug#66408 (Wrong style file in chm documentation) (Andy Burton)
</notes>
</release>
</changelog>
</package>
|