/usr/share/perl5/Publican.pm is in publican 4.3.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 | package Publican;
use utf8;
use warnings;
use strict;
use Carp;
use Config::Simple '-strict';
use XML::TreeBuilder 5.4;
use I18N::LangTags::List;
use Term::ANSIColor qw(:constants uncolor);
use File::Find::Rule;
use XML::LibXSLT;
use XML::LibXML;
use Publican::Localise;
use Publican::ConfigData;
use Encode;
use Cwd qw(abs_path);
use Data::Dumper;
use File::Copy::Recursive;
use Encode qw(is_utf8 decode_utf8 encode_utf8);
use Sort::Versions;
use version;
use vars
qw(@ISA $VERSION @EXPORT @EXPORT_OK $SINGLETON $LOCALISE $SPEC_VERSION %PARAMS);
$File::Copy::Recursive::KeepMode = 0;
$VERSION = version->declare('v4.3.2');
@ISA = qw(Exporter);
@EXPORT
= qw(dir_list debug_msg get_all_langs logger help_config maketext new_tree dtd_string rcopy dircopy fcopy rcopy_glob fmove dirmove params_as_docbook);
# Track when the SPEC file generation is incompatible.
$SPEC_VERSION = '4.1';
my $DEFAULT_CONFIG_FILE = 'publican.cfg';
my $DEBUG = undef;
my $NOCOLOURS = undef;
my $QUIET = undef;
my %PARAM_OLD = (
ARCH => 'arch',
BOOKS => 'books',
BRAND => 'brand',
BREW_DIST => 'brew_dist',
CHUNK_FIRST => 'chunk_first',
CHUNK_SECTION_DEPTH => 'chunk_section_depth',
CLASSPATH => 'classpath',
COMMON_CONFIG => '',
COMMON_CONTENT => '',
CONDITION => 'condition',
CONFIDENTIAL => 'confidential',
DEFAULT_LANGS => '',
DOCNAME => '',
DOC_TYPE => 'type',
DOC_URL => 'doc_url',
DTD_VER => 'dtdver',
DT_OBSOLETES => 'dt_obsoletes',
GENERATE_SECTION_TOC_LEVEL => 'generate_section_toc_level',
IGNORED_TRANSLATIONS => 'ignored_translations',
LICENSE => 'license',
OS_VER => 'os_ver',
PRODUCT => '',
PROD_URL => 'prod_url',
PROD_VERSION => '',
PROGNAME => '', # l10n
SET_REPO => 'repo',
SET_REPO_TYPE => 'scm',
SHOW_REMARKS => 'show_remarks',
SOURCE => '', # l10n
SRC_URL => 'src_url',
TRANSLATIONS => '',
TOC_SECTION_DEPTH => 'toc_section_depth',
WEB_BREW_DIST => 'web_brew_dist',
WEB_OBSOLETES => 'web_obsoletes',
XMLFILE => '',
XML_LANG => 'xml_lang',
);
# All the valid fields in the publican.cfg file
# constraint: a regex to validate the content
%PARAMS = (
arch => {
descr => maketext('Arch to filter output on.'),
},
audience => {
descr => maketext('audience to filter output on.'),
},
books => {
descr => maketext(
'A space-separated list of books used in this remote set.'),
},
banned_attrs => {
descr => maketext(
'A comma-separated list of XML attributes that are not permitted in the source.'
),
limit_to => 'brand',
},
banned_tags => {
descr => maketext(
'A comma-separated list of XML tags that are not permitted in the source.'
),
limit_to => 'brand',
},
base_brand => {
descr => maketext('The base brand to use for this brand.'),
default => 'common',
limit_to => 'brand',
},
brand => {
descr => maketext('The brand to use when building this package.'),
default => 'common',
},
brew_dist => {
descr => maketext(
'The brew dist to use for building the standalone desktop rpm.'),
default => 'docs-5E',
alert => maketext(
'This field is deprecated and will be removed from Publican in the future.'
),
},
bridgehead_in_toc => {
descr => maketext('Display bridge head elements in the TOCs?'),
default => 0,
},
chunk_first => {
descr => maketext(
'For HTML, should the first section be on the same page as its parent?'
),
default => 0,
},
chunk_section_depth => {
descr => maketext(
'For HTML, what is the deepest level of nesting at which a section should be split onto its own page?'
),
default => 4,
},
classpath => {
descr => maketext('Path to jar files for FOP.'),
default =>
'/usr/share/java/ant/ant-trax-1.7.0.jar:/usr/share/java/xmlgraphics-commons.jar:/usr/share/java/batik-all.jar:/usr/share/java/xml-commons-apis.jar:/usr/share/java/xml-commons-apis-ext.jar',
},
common_config => {
descr => maketext('Path to publican content.'),
default => Publican::ConfigData->config('datadir'),
},
common_content => {
descr => maketext('Path to publican common content.'),
default => Publican::ConfigData->config('datadir')
. '/Common_Content',
},
condition => {
descr => maketext(
'Conditions on which to prune XML before transformation.'),
},
confidential => {
descr => maketext('Is the content confidential?'),
default => 0,
},
confidential_text => {
descr =>
maketext('The text used to indicate content is confidential.'),
default => maketext('CONFIDENTIAL'),
},
conformance => {
descr => maketext('conformance to filter output on.'),
},
debug => {
descr => maketext('Print out extra messages?'),
default => 0,
},
docname => {
descr => maketext(
'Name of this document. Fetched from title tag in xml_lang/TYPE_Info.xml if not set in cfg file.'
),
constraint => '^[0-9a-zA-Z_\-\.\+]+$',
not_for => 'brand',
},
doc_url => {
descr => maketext(
'URL for the documentation team for this package. Used for top right URL on HTML.'
),
default => 'https://fedorahosted.org/publican',
},
dtd_type => {
descr =>
maketext('Override Type for DocType. Must be a complete string.'),
limit_to => 'brand',
},
dtd_uri => {
descr =>
maketext('Override URI for DocType. Must be a complete string.'),
limit_to => 'brand',
},
## BUGBUG this should be ripped from file header
dtdver => {
descr => maketext(
'Version of the DocBook DTD on which this project is based.'),
default => '4.5',
},
dt_format => {
descr => maketext('The format to use for the desktop output.'),
default => 'html-desktop',
},
dt_obsoletes => {
descr => maketext(
'Space-separated list of packages the desktop RPM obsoletes.'
),
},
dt_requires => {
descr => maketext(
'Space-separated list of packages the desktop RPM requires.'),
},
'ec_id' => {
descr =>
maketext('Eclipse plugin ID. Defaults to "$product.$docname"'),
},
'ec_name' => {
descr =>
maketext('Eclipse plugin name. Defaults to "$product $docname"'),
},
'ec_provider' => {
descr => maketext(
'Eclipse plugin provider. Defaults to "Publican-[_1]"', $VERSION
),
},
extras_dir => {
descr => maketext('Directory where images are located.'),
default => 'extras',
},
generate_section_toc_level => {
descr => maketext(
'Generate table of contents down to the given section depth.'),
default => 0,
},
ignored_translations => {
descr => maketext(
'Languages to replace with xml_lang regardless of translation status.'
),
},
img_dir => {
descr => maketext('Directory where images are located.'),
default => 'images',
},
info_file => { descr => maketext('Override the default Info file.'), },
lang => {
descr => maketext('lang to filter output on.'),
},
license => {
descr => maketext('License this package uses.'),
default => 'GFDL',
},
mainfile => {
descr => maketext(
'The name of the main xml and ent files for this book, sans file extension and language. Fetched from docname if not set.'
),
},
menu_category => {
descr => maketext(
'Semicolon-separated list of menu categories for the desktop package.'
),
},
no_embedtoc => {
descr => maketext(
'Brand option to disable embedding the navigational toc in web packages'
),
limit_to => 'brand',
},
os => {
descr => maketext('os to filter output on.'),
},
os_ver => { descr => maketext('The OS for which to build packages.'), },
pdf_body_font => {
descr => maketext('The font to use for body text in PDFs.'),
default => 'Liberation Sans',
},
pdf_mono_font => {
descr => maketext('The font to use for mono text in PDFs.'),
default => 'Liberation Mono',
},
product => {
descr => maketext(
'Product this package covers. Fetched from productname tag in xml_lang/TYPE_Info.xml'
),
constraint => '^[0-9a-zA-Z_\-\.\+]+$',
not_for => 'brand',
},
prod_url => {
descr =>
maketext('URL for the product. Used in top left URL in HTML.'),
default => 'https://fedorahosted.org/publican',
},
repo => {
descr => maketext('Repository from which to fetch remote set books.'),
},
scm => {
descr => maketext(
'Type of repository in which books that form part of a remote set are stored. Supported types: SVN, GIT.'
),
},
rev_dir => {
descr => maketext(
q|By default Revision History is sorted in descending order. Set this to 'asc' or 'ascending' to reverse the sort.|
),
},
rev_file =>
{ descr => maketext('Override the default Revision History file.'), },
revision => {
descr => maketext('revision to filter output on.'),
},
revisionflag => {
descr => maketext('revisionflag to filter output on.'),
},
role => {
descr => maketext('role to filter output on.'),
},
security => {
descr => maketext('security to filter output on.'),
},
show_remarks => {
descr => maketext('Display remarks in transformed output.'),
default => 0,
},
sort_order => {
descr =>
maketext('Override the default sort weighting. Defaults to 50.'),
},
src_url => {
descr => maketext(
'URL to find tar of source files. Used in RPM Spec files.'),
},
status => {
descr => maketext('status to filter output on.'),
},
tmp_dir => {
descr => maketext('Directory to use for building.'),
default => 'tmp',
},
toc_section_depth => {
descr => maketext(
'Depth of sections to include in the main table of contents.'),
default => 2,
},
type => {
descr => maketext(
'Type of content this package contains. Supported: set, book, article, brand'
),
default => 'Book',
},
txt_formater => {
descr =>
maketext('Choose the formatter to use when creating txt output.'),
constraint => '^(links{1}|tables{1}|default)$',
default => 'default',
},
userlevel => {
descr => maketext('userlevel to filter output on.'),
},
vendor => {
descr => maketext('vendor to filter output on.'),
},
version => {
descr => maketext(
'Version of this package. Fetched from productnumber tag in xml_lang/TYPE_Info.xml'
),
constraint => '^[0-9][^\p{IsSpace}]*$',
},
web_brew_dist => {
descr => maketext('The brew dist to use for building the web rpm.'),
default => 'docs-5E',
},
web_formats => {
descr => maketext(
'A comma-separated list of the formats to use for the web packages.'
),
default => 'html,html-single,pdf,epub',
},
web_home => {
descr => maketext(
'This is a home page for a Publican-generated website, not a standard book.'
),
alert =>
'web_home is deprecated and will be removed from Publican in the future. Use "web_type: home" instead.',
},
web_type => {
descr => maketext(
'This is a special page for a Publican-generated website, not a standard book. Valid types are home, product, and version.'
),
constraint => '^(home|product|version)$',
},
web_host => {
descr => maketext(
'This is a host name for a Publican-generated website, used for searches and the Sitemap. Be sure to include the full path to your document tree. E.g. if your documents are in the docs directory: http://www.example.com/docs'
),
alert =>
'web_host is deprecated and will be removed from Publican in the future. Use "host" in the web site configuration file instead.',
},
web_obsoletes =>
{ descr => maketext('Packages to obsolete in web RPM.'), },
web_search => {
descr => maketext(
'Override the default search form for a Publican website. By default this will use Google search and do a site search if web_host is set.'
),
alert =>
'web_search is deprecated and will be removed from Publican in the future. Use "search" in the web site configuration file instead.',
},
web_name_label => {
descr => maketext(
'Override the book name, bottom level, menu label on a Publican website.'
),
},
web_product_label => {
descr => maketext(
'Override the product, top level, menu label on a Publican website.'
),
},
web_version_label => {
descr => maketext(
'Override the version, middle level, menu label on a Publican website. To hide this menu item set this to: UNUSED'
),
},
web_cfg => {
descr => maketext(
'Full path for the publican site configuration file for non standard RPM websites.'
),
limit_to => 'brand',
},
web_dir => {
descr => maketext('Install path for non standard RPM websites.'),
limit_to => 'brand',
},
web_req => {
descr => maketext(
'Name of site package for non standard RPM websites. Required to ensure the site is installed.'
),
limit_to => 'brand',
},
wkhtmltopdf_opts => {
descr => maketext(
'Extra options to pass to wkhtmltopdf. e.g. wkhtmltopdf_opts: "-O landscape -s A3"'
),
},
wordsize => {
descr => maketext('wordsize to filter output on.'),
},
xml_lang => {
descr => maketext('Language in which XML is authored.'),
default => 'en-US',
},
drupal_author => {
descr => maketext(
'The author name to be shown in drupal book page. It must be a valid drupal username.'
),
default => 'Publican',
},
drupal_menu_title => {
descr => maketext(
'Override the bookname that will be shown in the drupal menu.'),
},
drupal_menu_block => {
descr => maketext('The menu where we can find the book.'),
default => 'user-guide',
},
drupal_image_path => {
descr => maketext(
'The directory where the image should be stored in drupal server.'
),
default => '/sites/default/files/documentation/',
},
);
# Setup localisation ASAP
BEGIN {
if ( !$LOCALISE ) {
$LOCALISE = Publican::Localise->get_handle()
|| croak("Could not create a Publican::Localise object");
$LOCALISE->encoding("UTF-8");
$LOCALISE->textdomain("publican");
}
}
=head1 NAME
Publican - Used to control settings for sub modules.
=head1 VERSION
This document describes Publican version $VERSION
=head1 SYNOPSIS
use Publican;
my $publican = Publican->new({DEBUG => 1});
=head1 DESCRIPTION
Handles general configuration of all sub modules.
=head1 INTERFACE
=cut
# Module implementation here
=head2 _load_config
Private method for loading a config file
=cut
sub _load_config {
my ( $self, $args ) = @_;
my $configfile = ( delete( $args->{configfile} )
|| croak( maketext("configfile is a mandatory argument") ) );
my $common_config = delete( $args->{common_config} );
my $common_content = delete( $args->{common_content} );
my $brand_dir = delete( $args->{brand_dir} );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]", join( ", ", keys %{$args} )
)
);
}
if ( not -f $configfile ) {
croak( maketext( "Config file not found: [_1].", $configfile ) );
}
my $real_config = new Config::Simple();
$real_config->syntax('http');
$real_config->read($configfile)
|| croak(
maketext( "Failed to load config file: [_1]", $configfile ) );
my %Config = $real_config->vars();
my $config = new Config::Simple();
$config->syntax('http');
foreach my $key ( keys(%Config) ) {
unless ( defined $PARAMS{$key} ) {
logger(
maketext(
"WARNING: Unknown config key [_1], ignoring.\n", $key
),
RED
);
next;
}
}
foreach my $key ( keys(%PARAMS) ) {
if ( defined $Config{$key}
&& defined $PARAMS{$key}->{limit_to}
&& (lc( ( $Config{'type'} || 'book' ) ) ne
lc( $PARAMS{$key}->{limit_to} ) )
)
{
logger(
maketext(
"WARNING: config key [_1] is not valid for this type of object, ignoring.\n",
$key
),
RED
);
next;
}
# Output alerts about a parameter
if ( defined $Config{$key} && defined $PARAMS{$key}->{alert} ) {
_alert( $PARAMS{$key}->{alert} . "\n" );
}
# skip any bogus or empty fields
my $tmp = $Config{$key};
if ( defined $tmp ) {
if ( ref $tmp eq "ARRAY" ) {
if ( $#{$tmp} >= 0 ) {
$config->param( $key,
decode_utf8( join( ',', @{ $Config{$key} } ) ) );
}
}
elsif ( $tmp ne "" ) {
$config->param( $key, decode_utf8($tmp) );
}
}
elsif ( defined $PARAMS{$key}->{default} ) {
$config->param( $key, $PARAMS{$key}->{default} );
}
}
$config->param( 'common_config', $common_config ) if $common_config;
$config->param( 'common_content', $common_content ) if $common_content;
$config->param( 'brand_dir',
decode_utf8( abs_path( encode_utf8($brand_dir) ) ) )
if $brand_dir;
$self->{configfile} = $configfile;
$self->{config} = $config;
my $type = $config->param('type');
my $xml_lang = $config->param('xml_lang');
my $brand = $config->param('brand');
# don't try and load version info for brand files
if ( $type ne 'brand' ) {
my $info_file = "$xml_lang/$type" . '_Info.xml';
$info_file = "$xml_lang/" . $config->param('info_file')
if ( $config->param('info_file') );
croak( maketext( "Can't locate required file: [_1]", $info_file ) )
if ( !-f $info_file );
## BUGBUG DocBook specific stuff should be moved to the DocBook sub classes
my $xml_doc = XML::TreeBuilder->new();
eval { $xml_doc->parse_file($info_file); };
if ($@) {
if ( ref($@) ) {
# handle a structured error (XML::LibXML::Error object)
croak(
maketext(
"FATAL ERROR: [_1]:[_2] in [_3] on line [_4]: [_5]",
$@->domain(),
$@->code(),
$@->file(),
$@->line(),
$@->message(),
)
);
}
else {
croak(
maketext( "FATAL ERROR: [_1]: [_2]", $info_file, $@ ) );
}
}
my $docname = $config->param('docname');
eval {
$docname
= $xml_doc->root()->look_down( "_tag", "title" )->as_text();
}
unless defined($docname);
if ($@) {
croak maketext("title not found in Info file");
}
$docname =~ s/\s/_/g;
my $product = $config->param('product');
eval {
$product
= $xml_doc->root()->look_down( "_tag", "productname" )
->as_text();
}
unless defined($product);
if ($@) {
croak maketext("productname not found in Info file");
}
$product =~ s/\s/_/g;
my $version = $config->param('version');
eval {
$version
= $xml_doc->root()->look_down( "_tag", "productnumber" )
->as_text();
}
unless defined($version);
if ($@) {
croak maketext("productnumber not found in Info file");
}
my ( $edition, $release )
= $self->get_ed_rev( { lang => $xml_lang } );
if ( not defined( $self->{config}->param('mainfile') ) ) {
$self->{config}->param( 'mainfile', $docname );
}
$self->{config}->param( 'docname', $docname );
$self->{config}->param( 'product', $product );
$self->{config}->param( 'version', $version );
$self->{config}->param( 'release', $release );
$self->{config}->param( 'edition', $edition );
my $brand_path = $self->{config}->param('brand_dir')
|| $self->{config}->param('common_content') . "/$brand";
$brand_path =~ s/\"//g;
# Override publican defaults with brand defaults
if ( -f "$brand_path/defaults.cfg"
&& ( !-z "$brand_path/defaults.cfg" ) )
{
my $tmp_cfg = new Config::Simple("$brand_path/defaults.cfg")
|| croak(
maketext("Failed to load brand defaults.cfg file") );
my %Config = $tmp_cfg->vars();
foreach my $cfg ( keys(%Config) ) {
# If a book key is unset or equals the publican default, Override it
if ( ( !$self->{config}->param($cfg) )
or ( !defined( $PARAMS{$cfg}->{default} ) )
or ( $self->{config}->param($cfg) eq
$PARAMS{$cfg}->{default} )
)
{
$self->{config}->param( $cfg, $Config{$cfg} );
}
}
}
# Enforce Brand Overrides
if ( -f "$brand_path/overrides.cfg"
&& ( !-z "$brand_path/overrides.cfg" ) )
{
my $tmp_cfg = new Config::Simple("$brand_path/overrides.cfg")
|| croak(
maketext("Failed to load brand overrides.cfg file") );
my %Config = $tmp_cfg->vars();
foreach my $cfg ( keys(%Config) ) {
$config->param( $cfg, $Config{$cfg} );
}
}
# Brand Settings
my $brand_cfg = new Config::Simple("$brand_path/publican.cfg")
|| croak(
maketext(
"Failed to load brand file: [_1]",
"$brand_path/publican.cfg"
)
);
$self->{brand_config} = $brand_cfg;
$config->param( 'ec_name', "$product $docname" )
unless defined $config->param('ec_name');
$config->param( 'ec_id', "org.$product.$docname" )
unless defined $config->param('ec_id');
$config->param( 'ec_provider', "Publican-$VERSION" )
unless defined $config->param('ec_provider');
}
$DEBUG = $self->{config}->param('debug') if ( !$DEBUG );
return;
}
=head2 _validate_config
Private method for validating configuration
=cut
sub _validate_config {
my ( $self, $args ) = @_;
foreach my $key ( keys(%PARAMS) ) {
my $value = $self->{config}->param($key);
if (( defined( $PARAMS{$key}->{not_for} ) )
&& (lc( $PARAMS{$key}->{not_for} ) eq
lc( $self->{config}->param('type') ) )
)
{
if ( defined($value) ) {
croak(
maketext(
"Parameter [_1] is not permitted in a [_2].", $key,
$self->{config}->param('type')
)
);
}
else {
next;
}
}
if ( defined $PARAMS{$key}->{constraint} ) {
my $constraint = $PARAMS{$key}->{constraint};
if ( defined($value) && ( $value !~ /$constraint/ ) ) {
croak(
maketext(
"Invalid format for [_1]. Value ([_2]) does not conform to constraint ([_3])",
$key, $value, $constraint
)
);
}
}
}
return;
}
=head2 new
Create a Publican object.
my $publican = Publican->new({debug => 1});
=head3 Parameters:
configfile Override Configuration file to use.
debug Use debug mode for messages.
common_config Override path to coomo configuration files.
common_content Override path to common content files.
=cut
sub new {
my ( $this, $args ) = @_;
my $class = ref($this) || $this;
my $self;
if ($SINGLETON) {
$self = $SINGLETON;
}
else {
my $configfile
= ( delete( $args->{configfile} ) || $DEFAULT_CONFIG_FILE );
$DEBUG = ( delete( $args->{debug} ) || $DEBUG );
my $common_config = delete( $args->{common_config} );
my $common_content = delete( $args->{common_content} );
$QUIET = delete( $args->{QUIET} );
$NOCOLOURS = delete( $args->{NOCOLOURS} );
my $brand_dir = delete( $args->{brand_dir} );
my $allow_network = delete( $args->{allow_network} );
my $no_clean = delete( $args->{no_clean} );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]",
join( ", ", keys %{$args} )
)
);
}
$self = bless {}, $class;
$SINGLETON = $self;
$self->{allow_network} = $allow_network;
$self->{no_clean} = $no_clean;
# BUGBUG this should be replaced by Publican::Config
if ( $^O eq 'MSWin32' ) {
eval { require Win32::TieRegistry; };
croak(
maketext(
"Failed to load Win32::TieRegistry module. Error: [_1]",
$@
)
) if ($@);
$ENV{ANSI_COLORS_DISABLED} = 1;
my $key = new Win32::TieRegistry( "LMachine\\Software\\Publican",
{ Delimiter => "\\" } );
if ( $key and $key->GetValue("") ) {
if ( !$common_config ) {
$common_config = $key->GetValue("");
$common_config =~ s/\\/\//g;
}
$common_content = "$common_config/Common_Content"
if ( !$common_content );
}
$common_config = qq{"$common_config"} if ($common_config);
$common_content = qq{"$common_content"} if ($common_content);
}
elsif ( $^O eq 'darwin' ) {
if ( !$common_config ) {
$common_config = '/opt/local/share/publican';
}
if ( !$common_content ) {
$common_content = "$common_config/Common_Content";
}
}
$self->_load_config(
{ configfile => $configfile,
common_config => $common_config,
common_content => $common_content,
brand_dir => $brand_dir,
}
);
debug_msg( maketext("config loaded") . "\n" );
$self->_validate_config();
}
return $self;
}
=head2 debug_msg
Print out debugging information.
=cut
sub debug_msg {
my ($arg) = @_;
my ( $caller, $func, $line, @rest ) = caller(1); # caller(0) eg
# Complete, caller(1)
# eg readline
# bail ASAP if not debugging
if ( !$DEBUG ) {
return;
}
($caller) = caller(0);
# $caller =~ s/.*:://;
$arg = "" unless defined $arg;
$func = "" unless defined $func;
$line = "" unless defined $line;
my $rest = join "|", map { defined $_ ? $_ : "UNDEF" } @rest;
logger( "\nDEBUG: ", RED );
if ( 0 and $arg and ref $arg ) {
eval { require Data::Dumper };
if ($@) {
logger( $arg->as_string, RED );
}
else {
logger( Data::Dumper::Dumper($arg), RED );
}
}
else {
## logger( "$caller: $func, $line\n\t$arg\n", RED );
logger( "$caller: $arg", RED );
}
return;
}
sub _alert {
my ($msg) = @_;
logger( $msg, RED );
return;
}
=head2 param
Return the current value of a configuration parameter
$publican->param('debug');
=cut
sub param {
my ( $self, $name ) = @_;
return $self->{config}->param($name)
if defined( $self->{config}->param($name) );
return $PARAMS{$name}->{default} if defined $PARAMS{$name}->{default};
return;
}
=head2 help_config
Display a list of config file parameters and a short description of them.
=cut
sub help_config {
my ( $self, $name ) = @_;
logger( maketext("Parameters used in the config file:") . "\n" );
foreach my $param ( sort( keys(%PARAMS) ) ) {
logger( "\t$param:\n\t\t" . $PARAMS{$param}->{descr} . "\n" );
logger( "\t\t"
. maketext( "Default: [_1]", $PARAMS{$param}->{default} )
. "\n" )
if ( defined( $PARAMS{$param}->{default} ) );
logger( "\t\t"
. maketext( "Constraint: [_1]",
$PARAMS{$param}->{constraint} )
. "\n" )
if ( defined( $PARAMS{$param}->{constraint} ) );
logger("\n");
}
return;
}
=head2 dir_list
list all the files in a directory, and its sub-directories, matching the supplied regex.
=cut
sub dir_list {
my ( $dir, $regex, $clean_images ) = @_;
croak( maketext("dir is a required argument") ) unless ($dir);
unless ( -d $dir ) {
logger( maketext( "skipping non existent directory: [_1]", $dir ) );
return;
}
croak( maketext("regex is a required argument") )
if ( !$regex || $regex eq "" );
my @filelist;
my $rule = File::Find::Rule->new;
if ( $regex =~ m/[|()]/ ) {
$rule->file->name(qr/$regex/);
}
else {
$rule->file->name($regex);
}
$rule->start($dir);
my $extras = $SINGLETON->param('extras_dir');
my $images = $SINGLETON->param('img_dir');
while ( my $file = $rule->match ) {
utf8::decode($file); ## BUGBUG blowing up Archive::Tar.
push( @filelist, $file )
unless ( $clean_images
and $file =~ m{(/$extras/|/icons/|$images/icon.svg)} );
}
return @filelist;
}
=head2 get_all_langs
Get all valid language directories.
=cut
sub get_all_langs {
my $no_src_lang = shift;
my ( $handle, %filelist, @langs );
my $tmp_dir = $SINGLETON->param('tmp_dir');
my $xml_lang = $SINGLETON->param('xml_lang');
opendir( $handle, '.' )
|| croak( maketext( "Can't open directory: [_1]", $@ ) );
my @dirs = sort( readdir($handle) );
closedir($handle);
foreach my $dir (@dirs) {
if ( -d $dir ) {
next
if ( $dir
=~ /^(\.|\.\.|pot|$tmp_dir|xsl|\..*|CVS|publish|book_templates|trans_drop|rpm_templates)$/
);
if ( valid_lang($dir) ) {
push( @langs, $dir )
unless ( $no_src_lang && ( $dir eq $xml_lang ) );
}
else {
logger( maketext( "Skipping unknown language: [_1]", $dir )
. "\n" );
}
}
}
return ( join( ',', @langs ) );
}
=head2 logger
Log something, currently emits to STDOUT
TODO: consider using Log::Dispatch or similar
=cut
sub logger {
my ( $msg, $colour ) = @_;
return if ($QUIET);
if ( $colour && !$NOCOLOURS ) {
print( STDOUT $colour, $msg, RESET );
}
else {
print( STDOUT $msg );
}
return;
}
=head2 valid_lang
Is the requested language valid according to I18N::LangTags::List
=cut
sub valid_lang {
my $lang = shift;
my $name = ( I18N::LangTags::List::name($lang) || '' );
return ( I18N::LangTags::List::is_decent($lang) && ( $name ne '' ) );
}
=head2 maketext
Get localised strings
=cut
sub maketext {
my $string = shift();
my @params = @_;
if ($LOCALISE) {
return ( decode_utf8( $LOCALISE->maketext( $string, @params ) ) );
}
else {
carp( RED, "Warning localisation not enabled!\n", RESET );
}
return ($string);
}
=head2 run_xslt
Apply the supplied xslt file to the supplied XML and return a string of the output.
=cut
sub run_xslt {
my ( $self, $args ) = @_;
my $xml_file = delete( $args->{xml_file} )
|| croak( maketext("xml_file is a mandatory argument") );
my $xsl_file = delete( $args->{xsl_file} )
|| croak( maketext("xsl_file is a mandatory argument") );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]", join( ", ", keys %{$args} )
)
);
}
my $parser = XML::LibXML->new(no_network => !$self->{allow_network});
my $xslt = XML::LibXSLT->new();
$parser->expand_entities(1);
my $source;
eval { $source = $parser->parse_file($xml_file); };
if ($@) {
if ( ref($@) ) {
# handle a structured error (XML::LibXML::Error object)
croak(
maketext(
"FATAL ERROR: [_1]:[_2] in [_3] on line [_4]: [_5]",
$@->domain(),
$@->code(),
$@->file(),
$@->line(),
$@->message(),
)
);
}
else {
croak( maketext( "FATAL ERROR: [_1]: [_2]", $xml_file, $@ ) );
}
}
my $style_doc;
eval { $style_doc = $parser->parse_file($xsl_file); };
if ($@) {
if ( ref($@) ) {
# handle a structured error (XML::LibXML::Error object)
croak(
maketext(
"FATAL ERROR: [_1]:[_2] in [_3] on line [_4]: [_5]",
$@->domain(),
$@->code(),
$@->file(),
$@->line(),
$@->message(),
)
);
}
else {
croak( maketext( "FATAL ERROR: [_1]: [_2]", $xsl_file, $@ ) );
}
}
if ( $^O eq 'MSWin32' ) {
eval { require Win32::TieRegistry; };
croak(
maketext(
"Failed to load Win32::TieRegistry module. Error: [_1]", $@
)
) if ($@);
my $defualt_href
= 'http://docbook.sourceforge.net/release/xsl/current';
my $key = new Win32::TieRegistry( "LMachine\\Software\\Publican",
{ Delimiter => "\\" } );
my $new_href = 'file:///D:/Data/temp/Publican/docbook-xsl-1.75.2';
if ( $key and $key->GetValue("xsl_path") ) {
$new_href = 'file:///' . $key->GetValue("xsl_path");
$new_href =~ s/ /%20/g;
$new_href =~ s/\\/\//g;
}
my @nodelist = $style_doc->getElementsByTagName('xsl:import');
foreach my $node (@nodelist) {
my $href = $node->getAttribute('href');
debug_msg("changing $defualt_href to $new_href\n");
$href =~ s|$defualt_href|$new_href|;
$node->setAttribute( 'href', $href );
}
}
my $stylesheet = $xslt->parse_stylesheet($style_doc);
my $results = $stylesheet->transform($source);
my $value;
eval { $value = $stylesheet->output_string($results) };
return ($value);
}
=head2 new_tree
Create a new XML::TreeBuilder object with the required attributes for DocBook.
TODO: Make XmlClean use this.
=cut
sub new_tree {
my $store_comments = ( shift() || 0 );
my $noexpand = shift();
my $xml_doc = XML::TreeBuilder->new(
{ 'NoExpand' => !$noexpand, 'ErrorContext' => "2" } );
$xml_doc->store_pis(1);
$xml_doc->store_cdata(1);
my $empty_element_map = $xml_doc->_empty_element_map;
$empty_element_map->{'xref'} = 1;
$empty_element_map->{'index'} = 1;
$empty_element_map->{'imagedata'} = 1;
$empty_element_map->{'area'} = 1;
$empty_element_map->{'ulink'} = 1;
$empty_element_map->{'xi:include'} = 1;
$xml_doc->store_comments(1) if ($store_comments);
return ($xml_doc);
}
=head2 dtd_string
Returns a valid DTD for the DocBook tag supplied.
Parameters:
tag The root tag for this file
dtdver The DTD version
ent_file An entity file to include (optional)
## BUGBUG this should be moved to the DocBook sub classes
=cut
sub dtd_string {
my ($args) = @_;
my $tag = delete( $args->{tag} )
|| croak( maketext("tag is a mandatory argument") );
my $dtdver = delete( $args->{dtdver} )
|| croak( maketext("dtdver is a mandatory argument") );
my $ent_file = delete( $args->{ent_file} );
my $cleaning = delete( $args->{cleaning} );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]", join( ", ", keys %{$args} )
)
);
}
my $uri = qq|http://www.oasis-open.org/docbook/xml/$dtdver/docbookx.dtd|;
my $dtd_type = qq|-//OASIS//DTD DocBook XML V$dtdver//EN|;
# TODO Maynot be necessary
if ( $^O eq 'MSWin32' ) {
eval { require Win32::TieRegistry; };
croak(
maketext(
"Failed to load Win32::TieRegistry module. Error: [_1]", $@
)
) if ($@);
my $key = new Win32::TieRegistry( "LMachine\\Software\\Publican",
{ Delimiter => "\\" } );
$uri = 'file:///C:/publican/DTD/docbookx.dtd';
if ( $key and $key->GetValue("dtd_path") ) {
$uri = 'file:///' . $key->GetValue("dtd_path") . '/docbookx.dtd';
}
$uri =~ s/ /%20/g;
$uri =~ s/\\/\//g;
}
$dtd_type = $SINGLETON->param('dtd_type')
if ( $SINGLETON && $SINGLETON->param('dtd_type') );
$uri = $SINGLETON->param('dtd_uri')
if ( $SINGLETON && $SINGLETON->param('dtd_uri') );
my $dtd = <<DTDHEAD;
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE $tag PUBLIC "$dtd_type" "$uri" [
DTDHEAD
if ( $dtdver =~ m/^5/ ) {
# make sure docbook4 entities still work
$dtd = <<DTDHEAD;
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE $tag [
DTDHEAD
}
# BUGBUG if we put the DB ENT first it breaks the builds ...
my $before = 0;
if ( $before == 1 && $dtdver =~ m/^5/ ) {
# make sure docbook4 entities still work
$dtd .= <<DTDHEAD;
<!ENTITY % sgml.features "IGNORE">
<!ENTITY % xml.features "INCLUDE">
<!ENTITY % DOCBOOK_ENTS PUBLIC "-//OASIS//ENTITIES DocBook Character Entities V4.5//EN" "/usr/share/xml/docbook/schema/dtd/4.5/dbcentx.mod">
%DOCBOOK_ENTS;
DTDHEAD
}
# handle entity file
if ($ent_file) {
$dtd .= <<ENT;
<!ENTITY % BOOK_ENTITIES SYSTEM "$ent_file">
%BOOK_ENTITIES;
ENT
}
if ( $before == 0 && $dtdver =~ m/^5/ ) {
# make sure docbook4 entities still work
$dtd .= <<DTDHEAD;
<!ENTITY % sgml.features "IGNORE">
<!ENTITY % xml.features "INCLUDE">
<!ENTITY % DOCBOOK_ENTS PUBLIC "-//OASIS//ENTITIES DocBook Character Entities V4.5//EN" "/usr/share/xml/docbook/schema/dtd/4.5/dbcentx.mod">
%DOCBOOK_ENTS;
DTDHEAD
}
$dtd .= <<DTDTAIL;
]>
DTDTAIL
return ($dtd);
}
=head2 print_banned_tags
Print a list of tags that are not supported.
=cut
sub print_banned_tags {
my $self = shift();
print "\n"
. maketext(
"NOTE: These lists of tags and attributes are brand specific and are not part of Publican itself."
) . "\n\n";
print "\n" . maketext("Banned tags:") . "\n";
foreach my $key (
sort( split( /,/, ( $self->param('banned_tags') || "" ) ) ) )
{
print("\t$key\n");
}
print "\n" . maketext("Banned attributes:") . "\n";
foreach my $attr (
sort( split( /,/, ( $self->param('banned_attrs') || "" ) ) ) )
{
print("\t$attr\n");
}
print "\n";
return;
}
=head2 add_revision
Add a full entry in to the revision history.
## BUGBUG this should be moved to the DocBook sub classes
=cut
sub add_revision {
my ( $self, $args ) = @_;
my $members = delete( $args->{members} )
|| croak(
maketext( "[_1] is a required option for add_revision", 'members' ) );
my $revnumber = delete( $args->{revnumber} );
my $date = delete( $args->{date} );
my $firstname = delete( $args->{firstname} )
|| croak(
maketext( "[_1] is a required option for add_revision", 'firstname' )
);
my $surname = delete( $args->{surname} )
|| croak(
maketext( "[_1] is a required option for add_revision", 'surname' ) );
my $email = delete( $args->{email} )
|| croak(
maketext( "[_1] is a required option for add_revision", 'email' ) );
my $lang = delete( $args->{lang} )
|| croak(
maketext( "[_1] is a required option for add_revision", 'lang' ) );
unless ($revnumber) {
my ( $edition, $release )
= $self->get_ed_rev( { lang => $lang, bump => 1 } );
$revnumber = "$edition-$release";
}
unless ($date) {
$date = DateTime->now()->strftime("%a %b %e %Y");
}
my $lc_lang = $lang;
$lc_lang =~ s/-/_/g;
my $locale = Publican::Localise->get_handle($lc_lang)
|| croak(
"Could not create a Publican::Localise object for language: [_1]",
$lang );
$locale->encoding("UTF-8");
$locale->textdomain("publican");
my $revision = XML::Element->new_from_lol(
[ 'revision',
[ 'revnumber', $revnumber ],
[ 'date', $date ],
[ 'author',
[ 'firstname', $firstname ],
[ 'surname', $surname ],
[ 'email', $email ],
],
[ 'revdescription', ['simplelist'], ],
],
);
my $list = $revision->root()->look_down( "_tag", 'simplelist' );
foreach my $member ( @{$members} ) {
my $mem = XML::TreeBuilder->new(
{ 'NoExpand' => "1",
'ErrorContext' => "2"
}
);
$mem->parse("<member>$member</member>");
$list->push_content($mem);
}
my $dtdver = $self->param('dtdver');
my $ent_file = undef;
my $main_file = $self->param('mainfile');
if ( -e "$lang/$main_file.ent" ) {
$ent_file = "$lang/$main_file.ent";
}
my $rev_file = "$lang/Revision_History.xml";
$rev_file = "$lang/" . $self->param('rev_file')
if ( $self->param('rev_file') );
my $node;
my $rev_doc = new_tree();
if ( -f $rev_file ) {
eval { $rev_doc->parse_file($rev_file); };
if ($@) {
if ( ref($@) ) {
# handle a structured error (XML::LibXML::Error object)
croak(
maketext(
"FATAL ERROR: [_1]:[_2] in [_3] on line [_4]: [_5]",
$@->domain(),
$@->code(),
$@->file(),
$@->line(),
$@->message(),
)
);
}
else {
croak( maketext( "FATAL ERROR: [_1]: [_2]", $rev_file, $@ ) );
}
}
}
else {
$rev_doc->root()->tag('appendix');
my $rev_hist = XML::Element->new_from_lol(
[ 'title', decode_utf8( $locale->maketext('Revision History') ) ],
);
$rev_doc->root()->push_content($rev_hist);
$rev_hist
= XML::Element->new_from_lol( [ 'simpara', ['revhistory'], ], );
$rev_doc->root()->push_content($rev_hist);
}
eval { $node = $rev_doc->root()->look_down( "_tag", "revhistory" ); };
if ($@) {
croak( maketext( "revhistory not found in [_1]", $rev_file ) );
}
if ( $self->param('rev_dir') && $self->param('rev_dir') =~ /^asc/i ) {
$node->push_content($revision);
}
else {
$node->unshift_content($revision);
}
my $OUTDOC;
open( $OUTDOC, ">:encoding(UTF-8)", "$rev_file" )
|| croak( maketext( "Could not open [_1] for output!", $rev_file ) );
print( $OUTDOC dtd_string(
{ tag => 'appendix',
dtdver => $dtdver,
ent_file => $ent_file,
cleaning => 1
}
)
);
print( $OUTDOC $rev_doc->root()->as_XML() );
close($OUTDOC);
$rev_doc->root()->delete();
my $cleaner = Publican::XmlClean->new( { exclude_ent => 1 } );
$cleaner->process_file( { file => $rev_file, out_file => $rev_file } );
return;
}
=head2 get_ed_rev
Get the current edition (version) and release from the Revision History file.
Parameters: language, bump.
If bump is set the returned revision will increment before it's returned.
## BUGBUG this should be moved to the DocBook sub classes
=cut
sub get_ed_rev {
my ( $self, $args ) = @_;
my $lang = delete( $args->{lang} )
|| croak( maketext("'lang' is a required option for get_ed_rev") );
my $bump = delete( $args->{bump} );
my $rev_file = "$lang/Revision_History.xml";
$rev_file = "$lang/" . $self->param('rev_file')
if ( $self->param('rev_file') );
croak( maketext( "Can't locate required file: [_1]", $rev_file ) )
if ( !-f $rev_file );
my $rev_doc = XML::TreeBuilder->new();
eval { $rev_doc->parse_file($rev_file); };
if ($@) {
if ( ref($@) ) {
# handle a structured error (XML::LibXML::Error object)
croak(
maketext(
"FATAL ERROR: [_1]:[_2] in [_3] on line [_4]: [_5]",
$@->domain(),
$@->code(),
$@->file(),
$@->line(),
$@->message(),
)
);
}
else {
croak( maketext( "FATAL ERROR: [_1]: [_2]", $rev_file, $@ ) );
}
}
my @revs = map { $_->as_text() }
sort { versioncmp( $b->as_text(), $a->as_text() ) }
( $rev_doc->root()->look_down( "_tag", "revnumber" ) );
my $VR = shift(@revs);
croak(
maketext(
"FATAL ERROR: revnumber missing or empty, it must match the required format of '[_1]'",
'^([0-9.]*)-([0-9.]*)$/'
)
) if ( !$VR || $VR eq '' );
$VR =~ /^([0-9.]*)-([0-9.]*)$/ || croak(
maketext(
"FATAL ERROR: revnumber ([_1]) does not match the required format of '[_2]'",
$VR,
'^([0-9.]*)-([0-9.]*)$/'
)
);
my $edition = $1;
my $release = $2;
$release =~ s/(\d+)$/(1+$1)/e if ($bump);
return ( ( $edition, $release ) );
}
=head2 fcopy
UTF8 escape calls to File::Copy::Recursive
=cut
sub fcopy {
my ( $from, $to ) = @_;
File::Copy::Recursive::fcopy( encode_utf8($from), encode_utf8($to) )
|| croak(
maketext(
"Can not copy file [_1] to [_2] due to error: [_3]",
$from, $to, $@
)
);
return;
}
=head2 fmove
UTF8 escape calls to File::Copy::Recursive
=cut
sub fmove {
my ( $from, $to ) = @_;
File::Copy::Recursive::fmove( encode_utf8($from), encode_utf8($to) )
|| croak(
maketext(
"Can not move file [_1] to [_2] due to error: [_3]",
$from, $to, $@
)
);
return;
}
=head2 rcopy
UTF8 escape calls to File::Copy::Recursive
=cut
sub rcopy {
my ( $from, $to ) = @_;
File::Copy::Recursive::rcopy( encode_utf8($from), encode_utf8($to) )
|| croak(
maketext(
"Can not copy files [_1] to [_2] due to error: [_3]",
$from, $to, $@
)
);
return;
}
=head2 rcopy_glob
UTF8 escape calls to File::Copy::Recursive
=cut
sub rcopy_glob {
my ( $from, $to ) = @_;
my @files
= File::Copy::Recursive::rcopy_glob( encode_utf8($from),
encode_utf8($to) )
|| croak(
maketext(
"Can not copy files [_1] to [_2] due to error: [_3]",
$from, $to, $@
)
);
return (@files);
}
=head2 dircopy
UTF8 escape calls to File::Copy::Recursive
=cut
sub dircopy {
my ( $from, $to ) = @_;
File::Copy::Recursive::dircopy( encode_utf8($from), encode_utf8($to) )
|| croak(
maketext(
"Can not copy directory [_1] to [_2] due to error: [_3]",
$from, $to, $@
)
);
return;
}
=head2 dirmove
UTF8 escape calls to File::Copy::Recursive
=cut
sub dirmove {
my ( $from, $to ) = @_;
File::Copy::Recursive::dirmove( encode_utf8($from), encode_utf8($to) )
|| croak(
maketext(
"Can not move directory [_1] to [_2] due to error: [_3]",
$from, $to, $@
)
);
return;
}
=head2 params_as_docbook
Returns DocBook chunks describing all the configuration options. Used to generate autodocs.
=cut
sub params_as_docbook {
my ( $gen_list, $brand_list, $web_list ) = @_;
foreach my $key ( sort( keys(%PARAMS) ) ) {
my $entry = XML::Element->new_from_lol(
[ 'varlistentry', {id => $key},[ 'term', "$key" ] ] );
if ( defined( $PARAMS{$key}->{limit_to} )
&& $PARAMS{$key}->{limit_to} eq 'brand' )
{
$brand_list->push_content($entry);
}
elsif ( defined( $PARAMS{$key}->{limit_to} )
&& $PARAMS{$key}->{limit_to} eq 'site' )
{
$web_list->push_content($entry);
}
else {
$gen_list->push_content($entry);
}
my $item = XML::Element->new_from_lol(
[ 'listitem', [ 'para', $PARAMS{$key}->{descr} ] ] );
$entry->push_content($item);
if ( defined( $PARAMS{$key}->{default} ) ) {
my $def = XML::Element->new_from_lol(
[ 'para',
maketext(
"The default value for this parameter is: [_1]",
$PARAMS{$key}->{default}
)
]
);
$item->push_content($def);
}
if ( defined( $PARAMS{$key}->{constraint} ) ) {
my $constraint = XML::Element->new_from_lol(
[ 'para',
maketext(
"This parameter is constrained with the following regular expression: [_1]",
$PARAMS{$key}->{constraint}
)
]
);
$item->push_content($constraint);
}
if ( defined( $PARAMS{$key}->{not_for} ) ) {
my $info = XML::Element->new_from_lol(
[ 'tip',
[ 'para',
maketext(
"This field is not supported for: [_1].",
$PARAMS{$key}->{not_for}
)
]
]
);
$item->push_content($info);
}
if ( defined( $PARAMS{$key}->{alert} ) ) {
my $warn = XML::Element->new_from_lol(
[ 'warning', [ 'para', $PARAMS{$key}->{alert} ] ] );
$item->push_content($warn);
}
}
}
1; # Magic true value required at end of module
__END__
=head1 DIAGNOSTICS
=over
=item C<< unknown args %s >>
All subs with named parameters will return this error when unexpected named arguments are provided.
=item C<< %s is a required argument >>
Any sub with a mandatory parameter will return this error if the parameter is undef.
=item C<< Config file not found: %s >>
publican can not find the named configuration file.
=item C<< Failed to load config file: %s >>
The named configuration file could not be loaded.
=item C<< Can't locate required file: %s >>
A file required for processing could not be found.
=item C<< title not found in Info file >>
The <type>_Info.xml file does not contain a title tag.
=item C<< productname not found in Info file >>
The <type>_Info.xml file does not contain a productname tag.
=item C<< productnumber not found in Info file >>
The <type>_Info.xml file does not contain a productnumber tag.
=item C<< pubsnumber not found in Info file >>
The <type>_Info.xml file does not contain a pubsnumber tag.
=item C<< Failed to load brand default config file >>
A detected defaults.cfg for the current brand could not be loaded.
=item C<< Failed to load brand overrides config file >>
A detected overrides.cfg for the current brand could not be loaded.
=item C<< Could not create a Publican::Localise object >>
Could not create a Publican::Localise object
=item C<< Can't open directory >>
=back
=head1 CONFIGURATION AND ENVIRONMENT
Publican requires no configuration files or environment variables.
=head1 DEPENDENCIES
Carp
version
Config::Simple
XML::TreeBuilder
I18N::LangTags::List
Term::ANSIColor
File::Find::Rule;
Publican::Localise;
=head1 INCOMPATIBILITIES
None reported.
=head1 BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests to
C<publican-list@redhat.com>, or through the web interface at
L<https://bugzilla.redhat.com/bugzilla/enter_bug.cgi?product=Publican&component=publican>.
=head1 AUTHOR
Jeff Fearn C<< <jfearn@redhat.com> >>
|