Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 186f616

Browse files
committed
Fix docs build for website styles
Building the docs with STYLE=website referenced a stylesheet that long longer exists on the website, since we changed it to use versioned references. To make it less likely for this to happen again, point to a single stylesheet on the website which will in turn import the required one. That puts the process entirely within the scope of the website repository, so next time a version is switched that's the only place changes have to be made, making them less likely to be missed. Per (off-list) discussion with Peter Geoghegan and Jonathan Katz.
1 parent 5190ce8 commit 186f616

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

doc/src/sgml/stylesheet.xsl

+1-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@
2424
<xsl:choose>
2525
<xsl:when test="$website.stylesheet = 0">stylesheet.css</xsl:when>
2626
<xsl:otherwise>
27-
https://www.postgresql.org/media/css/fontawesome.css
28-
https://www.postgresql.org/media/css/bootstrap.min.css
29-
https://www.postgresql.org/media/css/main.css
30-
https://www.postgresql.org/media/css/normalize.css
27+
https://www.postgresql.org/media/css/docs-complete.css
3128
</xsl:otherwise>
3229
</xsl:choose>
3330
</xsl:param>

0 commit comments

Comments
 (0)