[git] gnupg-doc - branch, master, updated. 270fe958aebf689f04f0a624289dfbd515f3281c

by Werner Koch cvs at cvs.gnupg.org
Tue Jun 3 14:14:21 CEST 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GnuPG website and other docs".

The branch, master has been updated
       via  270fe958aebf689f04f0a624289dfbd515f3281c (commit)
      from  ba19d489c45a28d8e143ac88fbf4a6d7fdc60c3a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 270fe958aebf689f04f0a624289dfbd515f3281c
Author: Werner Koch <wk at gnupg.org>
Date:   Tue Jun 3 14:01:57 2014 +0200

    web: Fix Paypal button and publish 2.0.23 news.
    
    * cgi/procdonate.cgi (write_template): Add template var PUBLISH_NAME.
    * web/donate/checkout.org: Pass PUBLISH_NAME to Paypal.
    * web/index.org: Add news item
    * web/share/site.css: Add rules for makeinfo.

diff --git a/cgi/procdonate.cgi b/cgi/procdonate.cgi
index ad95369..61ecce2 100755
--- a/cgi/procdonate.cgi
+++ b/cgi/procdonate.cgi
@@ -70,6 +70,7 @@ sub write_template ($) {
     my $sel_gbp = '';
     my $sel_jpy = '';
     my $message_fmt;
+    my $publishname;
 
     # Avoid broken HTML attributes.
     $amount =~ s/\x22/\x27/g;
@@ -102,6 +103,13 @@ sub write_template ($) {
         $sel_jpy = ' selected="selected"';
     }
 
+    # Set var for the paypal button
+    if ( $name eq 'Anonymous' or $name eq '') {
+        $publishname = 'No';
+    } else {
+        $publishname = 'Yes';
+    }
+
     # Build error strings.
     foreach (keys %errdict)
     {
@@ -137,6 +145,7 @@ sub write_template ($) {
             || s/(<selected=\x22selected\x22)?><!--SEL_USD-->/$sel_usd>/
             || s/(<selected=\x22selected\x22)?><!--SEL_GBP-->/$sel_gbp>/
             || s/(<selected=\x22selected\x22)?><!--SEL_JPY-->/$sel_jpy>/
+            || s/<!--PUBLISH_NAME-->/$publishname/
             || s/<!--ERRORSTR-->/$errorstr/
             || s/<!--ERR_AMOUNT-->/$err_amount/
             || s/<!--ERR_NAME-->/$err_name/
diff --git a/web/donate/checkout.org b/web/donate/checkout.org
index 8f09b9d..ad69fcd 100644
--- a/web/donate/checkout.org
+++ b/web/donate/checkout.org
@@ -70,6 +70,8 @@
       <input type="image" src="https://gnupg.org/share/btn-donate.png"
            border="0" name="submit" alt="Donate using PayPal"
                                   title="Donate using PayPal">
+      <input type="hidden" name="os0" value="<!--PUBLISH_NAME-->">
+      <input type="hidden" name="os1" value="<!--NAME-->">
     </form>
   </p>
 #+END_HTML
diff --git a/web/index.org b/web/index.org
index d42c997..1e643c0 100644
--- a/web/index.org
+++ b/web/index.org
@@ -51,6 +51,14 @@ all [[file:news.org][news of previous years]] is also available.
 # GnuPG's latest news are available as [[http://feedvalidator.org/check.cgi?url%3Dhttps://www.gnupg.org/news.en.rss][RSS 2.0 compliant]] feed.  Just
 # point or paste the [[news.en.rss][RSS file]] into your aggregator.
 
+2014q2/000342.html
+
+** GnuPG 2.0.23 released (2014-06-03)
+
+We are pleased to announce the availability of GnuPG 2.0.23.  This is
+a maintenance release with a few new features. [[http://lists.gnupg.org/pipermail/gnupg-announce/2014q2/000342.html][{more}]]
+
+
 ** Goteo campaign: preliminary results (2014-05-12)
 
 The blog has a report on the current status of the campaign including
diff --git a/web/share/site.css b/web/share/site.css
index 37460d3..6f0e373 100644
--- a/web/share/site.css
+++ b/web/share/site.css
@@ -302,6 +302,41 @@ pre {
     overflow: auto;
 }
 
+/* Classes used by makeinfo (manuals).  */
+
+pre.display {
+    font-family:inherit;
+}
+pre.format {
+    font-family:inherit;
+}
+pre.smalldisplay {
+    font-family:inherit;
+    font-size:smaller;
+}
+pre.smallformat {
+    font-family:inherit;
+    font-size:smaller;
+}
+pre.smallexample {
+    font-size:smaller;
+}
+pre.smalllisp {
+    font-size:smaller;
+}
+
+span.sc {
+    font-variant:small-caps;
+}
+span.roman {
+    font-family:serif;
+    font-weight:normal;
+}
+span.sansserif {
+    font-family:sans-serif;
+    font-weight:normal;
+}
+
 
 /* Table stuff */
 
@@ -360,6 +395,8 @@ td.right  {
 }
 
 
+/* A box of logos.  */
+
 .logobox p {
   margin-top: 20px;
 }
diff --git a/web/swdb.mac b/web/swdb.mac
index 522a4c6..b443bbf 100644
--- a/web/swdb.mac
+++ b/web/swdb.mac
@@ -8,10 +8,10 @@
 #
 # GnuPG-2
 #
-#+macro: gnupg_ver     2.0.22
+#+macro: gnupg_ver     2.0.23
 #+macro: gnupg_branch  STABLE-BRANCH-2-0
-#+macro: gnupg_size    4177k
-#+macro: gnupg_sha1    9ba9ee288e9bf813e0f1e25cbe06b58d3072d8b8
+#+macro: gnupg_size    4196k
+#+macro: gnupg_sha1    c90e47ab95a40dd070fd75faef0a05c7b679553b
 
 #
 # GnuPG-1

-----------------------------------------------------------------------

Summary of changes:
 cgi/procdonate.cgi      |    9 +++++++++
 web/donate/checkout.org |    2 ++
 web/index.org           |    8 ++++++++
 web/share/site.css      |   37 +++++++++++++++++++++++++++++++++++++
 web/swdb.mac            |    6 +++---
 5 files changed, 59 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
The GnuPG website and other docs
http://git.gnupg.org




More information about the Gnupg-commits mailing list