Skip to content

Commit

Permalink
Mise en place version 11 sur le site web
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed Oct 18, 2018
1 parent 726a2bb commit 237a031
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
31 changes: 31 additions & 0 deletions www-docs.postgresql.fr/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
$version['905'] = '9.5';
$version['906'] = '9.6';
$version['100'] = '10';
$version['110'] = '11';
?>
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
Expand Down Expand Up @@ -133,6 +134,36 @@ function addEngine(name,ext,cat,type)
<p>Certaines vieilles versions, non maintenues, sont disponibles sur
l'<a href="index_obsoletes.php">index des version obsolètes</a>.</p>

<div id="pg11">
<h2>Documentation PostgreSQL, version 11</h2>
<div class="listes">
<ul>
<li>Manuel au format HTML&nbsp;:
<a href="11/">Consultation en ligne</a>,
t&eacute;l&eacute;chargement en
<a onclick="pageTracker._trackPageview('/pg11.zip');"
href="http://docs.postgresql.fr/11/pg11.zip">ZIP</a> ou
<a onclick="pageTracker._trackPageview('/pg96.tar.gz');"
href="http://docs.postgresql.fr/11/pg11.tar.gz">TAR.GZ</a>
</li>
<!--
<li>Manuel au format <a onclick="pageTracker._trackPageview('/pg11.pdf');"
href="http://docs.postgresql.fr/11/pg11.pdf">PDF</a>
</li>
-->
<li>Document d'installation au format <a
onclick="pageTracker._trackPageview('/INSTALL11.html');"
href="http://docs.postgresql.fr/11/INSTALL.html">HTML</a> et
<a onclick="pageTracker._trackPageview('/INSTALL11.txt');"
href="http://docs.postgresql.fr/11/INSTALL.txt">texte</a>
</li>
<li><a onclick="pageTracker._trackPageview('/pg11.man.tar.gz');"
href="http://docs.postgresql.fr/11/pg11.man.tar.gz">Pages
man</a></li>
</ul>
</div>
</div>

<div id="pg10">
<h2>Documentation PostgreSQL, version 10</h2>
<div class="listes">
Expand Down
1 change: 1 addition & 0 deletions www-docs.postgresql.fr/search.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
$version['905'] = '9.5';
$version['906'] = '9.6';
$version['100'] = '10';
$version['110'] = '11';
?>
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
Expand Down
5 changes: 4 additions & 1 deletion www-docs.postgresql.fr/tools/addrelease.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,11 @@ function usage() {
case '10':
$version_int = 100;
break;
case '11':
$version_int = 110;
break;
default:
echo "Il s'agit d'une version majeure : 8.1 à 8.4, 9.0 à 9.6, et 10.\n";
echo "Il s'agit d'une version majeure : 8.1 à 8.4, 9.0 à 9.6, 10, et 11.\n";
exit;
break;
}
Expand Down

0 comments on commit 237a031

Please sign in to comment.