, YEAR1, YEAR2
-#: centos-noindex/index.tpl.html:0(None)
+#: centos-indexhtml/index.tpl.html:0(None)
msgid "translator-credits"
msgstr "translator-credits"
-#~ msgid "Welcome to CentOS"
-#~ msgstr "Welcome to CentOS"
-
-#~ msgid "CentOS Linux 8"
-#~ msgstr "CentOS Linux 8"
-
-#~ msgid "The Community ENTerprise Operating System"
-#~ msgstr "The Community ENTerprise Operating System"
-
-#~ msgid ""
-#~ " Linux is an enterprise-class Linux distribution derived "
-#~ "from sources freely provided to the public by Red Hat, Inc. for Red Hat "
-#~ "Enterprise Linux. CentOS conforms fully with the upstream vendors "
-#~ "redistribution policy and aims to be functionally compatible. (CentOS "
-#~ "mainly changes packages to remove upstream vendor branding and artwork.)"
-#~ msgstr ""
-#~ " Linux is an enterprise-class Linux distribution derived "
-#~ "from sources freely provided to the public by Red Hat, Inc. for Red Hat "
-#~ "Enterprise Linux. CentOS conforms fully with the upstream vendors "
-#~ "redistribution policy and aims to be functionally compatible. (CentOS "
-#~ "mainly changes packages to remove upstream vendor branding and artwork.)"
-
-#~ msgid ""
-#~ "CentOS Linux is developed by a small but growing team of core developers. "
-#~ "In turn the core developers are supported by an active user community "
-#~ "including system administrators, network administrators, enterprise "
-#~ "users, managers, core Linux contributors and Linux enthusiasts from "
-#~ "around the world."
-#~ msgstr ""
-#~ "CentOS Linux is developed by a small but growing team of core developers. "
-#~ "In turn the core developers are supported by an active user community "
-#~ "including system administrators, network administrators, enterprise "
-#~ "users, managers, core Linux contributors and Linux enthusiasts from "
-#~ "around the world."
-
-#~ msgid "mirror network"
-#~ msgstr "mirror network"
-
-#~ msgid "SIGs"
-#~ msgstr "SIGs"
-
-#~ msgid "wiki"
-#~ msgstr "wiki"
-
-#~ msgid "IRC Chat"
-#~ msgstr "IRC Chat"
-
-#~ msgid "Email Lists"
-#~ msgstr "Email Lists"
-
-#~ msgid "Forums"
-#~ msgstr "Forums"
-
-#~ msgid "Calendar & IRC Meeting List"
-#~ msgstr "Calendar & IRC Meeting List"
-
-#~ msgid "Planet"
-#~ msgstr "Planet"
-
-#~ msgid "Bugs Database"
-#~ msgstr "Bugs Database"
-
-#~ msgid "FAQ"
-#~ msgstr "FAQ"
-
-#~ msgid ""
-#~ "CentOS Linux has numerous advantages including: an active and growing "
-#~ "user community, quickly rebuilt, tested, and QA'ed errata packages, an "
-#~ "extensive , developers who are contactable and "
-#~ "responsive, Special Interest Groups () to add "
-#~ "functionality to the core CentOS distribution, and multiple community "
-#~ "support avenues including a , , "
-#~ ", , , , "
-#~ ", and an ."
-#~ msgstr ""
-#~ "CentOS Linux has numerous advantages including: an active and growing "
-#~ "user community, quickly rebuilt, tested, and QA'ed errata packages, an "
-#~ "extensive , developers who are contactable and "
-#~ "responsive, Special Interest Groups () to add "
-#~ "functionality to the core CentOS distribution, and multiple community "
-#~ "support avenues including a , , "
-#~ ", , , , "
-#~ ", and an ."
-
#~ msgid " Test Page"
#~ msgstr " Test Page"
diff --git a/html/centos-indexhtml/Makefile b/html/centos-indexhtml/Makefile
new file mode 100644
index 0000000..c5b2ad1
--- /dev/null
+++ b/html/centos-indexhtml/Makefile
@@ -0,0 +1,62 @@
+###############################################################################
+#
+# centos-indexhtml - the CentOS web browser's default page
+# Copyright (C) 2019 Alain Reguera Delgado
+#
+# This program is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the Free
+# Software Foundation, either version 3 of the License, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+# more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# this program. If not, see .
+#
+###############################################################################
+
+#==============================================================================
+# Configuration
+#==============================================================================
+lang = en-US
+prefix = .
+version = 8.0
+package = centos-indexhtml-$(version)
+localedir = ../PO
+
+#==============================================================================
+# Requirements
+#==============================================================================
+all: $(package)/$(lang)/index.html
+
+build: $(prefix)/$(package).tar.gz
+
+#==============================================================================
+# Sources
+#==============================================================================
+$(package):
+ mkdir -p $(package)
+
+$(package)/$(lang):
+ mkdir -p $(package)/$(lang)
+
+$(prefix)/$(package).tar.gz: \
+ $(package) \
+ $(package)/??-??/* \
+ index.tpl.html \
+ index.html \
+ $(localedir)/*.po \
+ ../common/css/* \
+ ../common/images/* \
+ ../common/fonts/*
+ cp -a index.html $(package)
+ rsync -a --exclude="images/pb-*.png" ../common $(package)
+ tar -czf $(prefix)/$(package).tar.gz $(package)
+
+$(package)/$(lang)/index.html: $(package)/$(lang) $(localedir)/$(lang).po index.tpl.html
+ xmllint -noout index.tpl.html
+ xml2po -l $(lang) -p $(localedir)/$(lang).po -o $(package)/$(lang)/index.html index.tpl.html
+ sed -i 's///' $(package)/$(lang)/index.html
diff --git a/html/centos-noindex/Makefile b/html/centos-noindex/Makefile
new file mode 100644
index 0000000..151567a
--- /dev/null
+++ b/html/centos-noindex/Makefile
@@ -0,0 +1,57 @@
+###############################################################################
+#
+# centos-noindex - the CentOS test page for Apache HTTP server
+# Copyright (C) 2019 Alain Reguera Delgado
+#
+# This program is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the Free
+# Software Foundation, either version 3 of the License, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+# more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# this program. If not, see .
+#
+###############################################################################
+
+#==============================================================================
+# Configuration
+#==============================================================================
+lang = en-US
+prefix = .
+version = 8.0
+package = centos-noindex-$(version)
+localedir = ../PO
+
+#==============================================================================
+# Requirements
+#==============================================================================
+all: $(package)/index.html.$(lang)
+
+build: $(prefix)/$(package).tar.gz
+
+#==============================================================================
+# Sources
+#==============================================================================
+$(package):
+ mkdir -p $(package)
+
+$(prefix)/$(package).tar.gz: \
+ $(package) \
+ $(package)/index.html.??-?? \
+ index.tpl.html \
+ $(localedir)/*.po \
+ ../common/css/* \
+ ../common/images/* \
+ ../common/fonts/*
+ rsync -a ../common $(package)
+ tar -czf $(prefix)/$(package).tar.gz $(package)
+
+$(package)/index.html.$(lang): $(package) $(localedir)/$(lang).po index.tpl.html
+ xmllint -noout index.tpl.html
+ xml2po -l $(lang) -p $(localedir)/$(lang).po -o $(package)/index.html.$(lang) index.tpl.html
+ sed -i 's///' $(package)/index.html.$(lang)
diff --git a/html/centos-noindex/index.html b/html/centos-noindex/index.html
deleted file mode 100644
index f29ff47..0000000
--- a/html/centos-noindex/index.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-Apache HTTP Server Test Page powered by CentOS
-
-
-
-
diff --git a/html/centos-noindex/index.tpl.html b/html/centos-noindex/index.tpl.html
index b555c72..e96fc6c 100644
--- a/html/centos-noindex/index.tpl.html
+++ b/html/centos-noindex/index.tpl.html
@@ -5,8 +5,8 @@
-
-
+
+