summaryrefslogtreecommitdiffstats
path: root/CHANGES (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-08-28French translation rebuild after r1806443Luca Toscano95-12727/+15030
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1806444 13f79535-47bb-0310-9956-ffa450edef68
2017-08-28synopsis.xsl: fix broken translation buildsLuca Toscano1-1/+16
This commit is a follow up of r1805189, in which a new logic was added to allow to repeat a directive name only if its type is different (like SSLPolicy and <SSLPolicy>). The change broken french translations since the $this variable, containing the translated sections, was not used anymore. The XPath code could surely be improved, but it seems more pressing to allow our translators to get back to their daily work without interference. build.sh validate-* worked fine, as well as the build.sh fr translation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1806443 13f79535-47bb-0310-9956-ffa450edef68
2017-08-28Rebuild.Lucien Gentis1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1806429 13f79535-47bb-0310-9956-ffa450edef68
2017-08-28XML update.Lucien Gentis1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1806428 13f79535-47bb-0310-9956-ffa450edef68
2017-08-21Rebuild.Lucien Gentis2-3/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805635 13f79535-47bb-0310-9956-ffa450edef68
2017-08-21XML update.Lucien Gentis1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805634 13f79535-47bb-0310-9956-ffa450edef68
2017-08-21Rebuild.Lucien Gentis106-15238/+13164
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805630 13f79535-47bb-0310-9956-ffa450edef68
2017-08-21XML update.Lucien Gentis3-7/+230
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805629 13f79535-47bb-0310-9956-ffa450edef68
2017-08-19Fix remaning compilation warning when MIME_MAGIC_DEBUG is defined.Christophe Jaillet1-12/+12
Style is not perfect, but at least, the warning is fixed. warning: format ‘%c’ expects argument of type ‘int’, but argument 10 has type ‘long unsigned int’ [-Wformat=] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805493 13f79535-47bb-0310-9956-ffa450edef68
2017-08-19Fix some compilation warning when MIME_MAGIC_DEBUG is defined.Christophe Jaillet1-4/+4
warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument <n> has type ‘<something> *’ [-Wformat=] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805491 13f79535-47bb-0310-9956-ffa450edef68
2017-08-19Fix a compilation warning introduced by r1802040.Christophe Jaillet1-1/+1
mod_proxy_fcgi.c:893:19: warning: ‘flushpoll’ may be used uninitialized in this function [-Wmaybe-uninitialized] This warning is a false positive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805490 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18documentation rebuildLuca Toscano5-5/+5
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805382 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18sections.xml: fix another typo (missed in the prev commit)Luca Toscano1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805381 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18documentation rebuildLuca Toscano5-5/+5
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805379 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18sections.xml: fix mod_md's linkLuca Toscano1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805378 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18documentation rebuildLuca Toscano2-2/+2
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805377 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18common.dtd: add idtype attribute to directiveLuca Toscano2-3/+7
This change completes r1805372 and also fixes links generation for <ManageDomain> and <SSLPolicy> in sections.xml git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805376 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18Documentation rebuildLuca Toscano65-382/+382
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805373 13f79535-47bb-0310-9956-ffa450edef68
2017-08-18doc xsl/dtd: introduce idtype attribute for directivesynopsisLuca Toscano3-7/+14
In r1805193 synopsis.xsl was changed to allow two directives of different type (like <SSLPolicy> and SSLPolicy) to share the same name but have different ids (and please validate-xml/xhtml). The downside of this action was that all the quicklinks to existing directive sections (like <If>, <VirtualHost>, etc..) were changed, possibly breaking external clients already referencing them. This change introduces a new attribute in the directivesynopsis DTD, namely 'idtype', that will be appended to 'name' in the id generation by synopsis.xsl. This will rollback link names to their previous values and will allow documentators to fine tune directivesynopsis sections as they need (for example we have recently introduced mod_md's ManagedDomain/<ManagedDomain>, and modssl's SSLPolicy/<SSLPolicy>). This approach seems more precise and less invasive to me. Of course the name of the attribute can be changed later on to whatever term would fit best, the main concern for me at the moment is to restore the trunk documentation to its previous state. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805372 13f79535-47bb-0310-9956-ffa450edef68
2017-08-17clearer docsJim Jagielski1-2/+2
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805323 13f79535-47bb-0310-9956-ffa450edef68
2017-08-17userland change = we now are OK w/ msJim Jagielski1-0/+4
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805322 13f79535-47bb-0310-9956-ffa450edef68
2017-08-17documentation rebuildLuca Toscano2-28/+43
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805303 13f79535-47bb-0310-9956-ffa450edef68
2017-08-17mod_ssl.xml: fix typoLuca Toscano1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805302 13f79535-47bb-0310-9956-ffa450edef68
2017-08-17On the trunk:Stefan Eissing15-92/+202
mod_md v0.7.0: - LIVE: the real Let's Encrypt CA is now live by default! If you need to experiment, configure MDCertificateAuthority https://acme-staging.api.letsencrypt.org/directory - When existing, complete certificates are renewed, the activation of the new ones is delayed by 24 hours (or until the existing ones expire, whatever is earler) to accomodate for clients with weird clocks, refs #1. - Fixed store sync when MDCAChallenges was removed again from an MD. - Fixed crash when MD matched the base server, fixes #23 - Fixed watchgod resetting staging when server processes disappeared (e.g. reached max requests or other limits). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805294 13f79535-47bb-0310-9956-ffa450edef68
2017-08-17* Makefile is a generated file that is not version controlledRuediger Pluem1-65/+0
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805256 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16Fix remaining lint from ms capability for hchecks.Jim Jagielski2-4/+4
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805206 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16On the trunk:Stefan Eissing1-29/+47
mod_ssl.xml: adding description of predefined policies, some work tweakings. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805203 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16documentation rebuildLuca Toscano4-20/+20
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805202 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16On the trunk:Stefan Eissing1-15/+15
mod_ssl.xml: use of new section directive ids, tweaking examples and some language. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805201 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16mod_md doc rebuildLuca Toscano2-0/+437
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805197 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16Documentation rebuildLuca Toscano80-659/+870
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805196 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16Update offsetsJim Jagielski1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805195 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16mod_md.xml: correctly name ManagedDomainLuca Toscano1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805194 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16common|synopsis.xsl: rename directive type=sections id generationLuca Toscano2-10/+13
This commits is a follow up of r1805189 and it is meant to allow directives with the same name but different type to coexist in the same document without triggering errors while executing validate-xhtml. For example: mod_md.xml recently introduced the following: * ManagedDomain * <ManagedDomain> (this one is type=section) In my opinion this is a perfectly valid use case and it should be allowed/handled correctly by the doc generation process/validation. In order to avoid clashing the directive ids will get a suffix called "section" if type=section will be present as param. Quicklinks, <directive> links have been updated to the new scheme to avoid dandling pointers in the doc. Comments/reviews are welcome, if I left something behind please let me know. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805193 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16fix clean slate build that so far missed libmd.la on first runStefan Eissing1-5/+4
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805192 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16Umm. This is C :)Jim Jagielski1-4/+4
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805190 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16synopsis.xsl: do not render two times the sameLuca Toscano1-1/+1
directive HTML if more than one directive share the same name. This has happened when mod_md.xml was introduced, and the following directives shared the same name: * ManagedDomain * <ManagedDomain> With the current code each time that a node needs to be rendered it will emit a duplicate, ending up in the above example with 4 sections rather than two. Uniqueness of sections will be ensured by the HTML elements ids, to avoid errors before committing for example (accidental duplicates, etc..). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805189 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16loadfactor now decimalJim Jagielski6-20/+26
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805188 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16On the trunk:Stefan Eissing1-2/+9
mod_ssl: not using SSLV3 constant that would define what we mean by SSL version 3 if openssl does not know about SSL version 3. Then we pretend to not know about it either. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805186 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16On the trunk:Stefan Eissing1-9/+11
mod_ssl.xml: completing descriptions and proper section name use. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805185 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16added SSLPolicy to sectionsStefan Eissing1-0/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805183 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16On the trunk:Stefan Eissing7-0/+1004
mod_ssl: adding SSLPolicy and SSLProxyPolicy directives plus documentation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805182 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16fixing empty sectionStefan Eissing1-6/+0
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805181 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16mod_md.xml transforms, added ManagedDomain to sectionsStefan Eissing2-15/+8
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805180 13f79535-47bb-0310-9956-ffa450edef68
2017-08-16Fix typo in log message.Joe Orton1-1/+1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805163 13f79535-47bb-0310-9956-ffa450edef68
2017-08-15Fix ProxyAddHeaders merging.Joe Orton3-1/+11
* modules/proxy/mod_proxy.h: Add add_forwarded_headers_set field to proxy_dir_conf. * modules/proxy/mod_proxy.c (create_proxy_dir_config, ): Initialize add_forwarded_headers_set. (add_proxy_http_headers): Set it. (merge_proxy_dir_config): Merge add_forwarded_headers correctly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805099 13f79535-47bb-0310-9956-ffa450edef68
2017-08-14mod_md.xml: add some links and fix some detailsLuca Toscano1-18/+23
The transformation document is still not available since build.sh fails. More info in my last email thread in docs@ for whoever is interested. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1804975 13f79535-47bb-0310-9956-ffa450edef68
2017-08-11On the trunk:Stefan Eissing7-485/+496
mod_md: some internal refactoring of config/sectio handling git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1804787 13f79535-47bb-0310-9956-ffa450edef68
2017-08-11Defined constants for md config directives.Stefan Eissing1-31/+41
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1804759 13f79535-47bb-0310-9956-ffa450edef68
2017-08-10fix for <ManagedDomain sections with inner <If or other sectionsStefan Eissing1-16/+19
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1804671 13f79535-47bb-0310-9956-ffa450edef68