[Blends-commit] [SCM] website branch, master, updated. 4ffe77194706f946e1c5c0741a56f4d794c12a9f

2015-12-07 Thread Ole Streicher
The following commit has been merged in the master branch:
commit 4ffe77194706f946e1c5c0741a56f4d794c12a9f
Author: Ole Streicher 
Date:   Mon Dec 7 17:22:21 2015 +0100

Use Stellarium as featured package

diff --git a/webtools/templates/debian-astro_idx.xhtml 
b/webtools/templates/debian-astro_idx.xhtml
index c18a43b..54c5bce 100644
--- a/webtools/templates/debian-astro_idx.xhtml
+++ b/webtools/templates/debian-astro_idx.xhtml
@@ -46,7 +46,7 @@

 
Featured packages
-   
+   
  

  

-- 
Static and dynamic websites for Debian Pure Blends

___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit


[Blends-commit] [SCM] website branch, master, updated. 9d37e39709be7d604048ef6f3ff1a41cd0ae857c

2015-12-07 Thread Ole Streicher
The following commit has been merged in the master branch:
commit a61254d6173ff794186dada4c4adb89c5fc3a0b3
Author: Ole Streicher 
Date:   Mon Dec 7 16:46:25 2015 +0100

Dont show maintainer page for NEW and started packages; show QUeue for NEW

diff --git a/webtools/templates/packages.xhtml 
b/webtools/templates/packages.xhtml
index e923dd9..50a3197 100644
--- a/webtools/templates/packages.xhtml
+++ b/webtools/templates/packages.xhtml
@@ -442,16 +442,27 @@ function show_fulldesc(hash) {

  

-   
- https://tracker.debian.org/pkg/${project.pkg}";>
-   Maintainer page
- 
-   
-   
- https://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=no&src=${project.pkg}";>
-   Bugs
- 
-   
+   
+ 
+   
+ Queue entry
+   
+ 
+   
+   
+ 
+   https://tracker.debian.org/pkg/${project.pkg}";>
+ Maintainer page
+   
+ 
+   
+   
+ 
+   https://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=no&src=${project.pkg}";>
+ Bugs
+   
+ 
+   

  


-- 
Static and dynamic websites for Debian Pure Blends

___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit


[Blends-commit] [SCM] website branch, master, updated. 9d37e39709be7d604048ef6f3ff1a41cd0ae857c

2015-12-07 Thread Ole Streicher
The following commit has been merged in the master branch:
commit 65596433373923c1d05fc4ebc3cabd970f82d135
Author: Ole Streicher 
Date:   Mon Dec 7 16:45:34 2015 +0100

Add tooltip explanation for symbols

diff --git a/webtools/templates/packages.xhtml 
b/webtools/templates/packages.xhtml
index 95a84ce..e923dd9 100644
--- a/webtools/templates/packages.xhtml
+++ b/webtools/templates/packages.xhtml
@@ -238,13 +238,26 @@ function show_fulldesc(hash) {

  
  
-   ↺
+   
+ ↺
+ 
+   New upstream version
+   ${project.outdated['version']}
+   available
+ 
+   
  
-  
-   ☠
+ 
+   
+ ☠
+ XXX release critical bugs
+   
  
   
-   ☹
+   
+ ☹
+ CI test failure
+   
  


@@ -292,8 +305,9 @@ function show_fulldesc(hash) {

  

- http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.pkg}";>
+ http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.pkg}";>
✏
+   Improve translation
  
  ${project.desc[lang]['long']}

@@ -391,8 +405,9 @@ function show_fulldesc(hash) {
  
Tags

- http://debtags.alioth.debian.org/edit.html?pkg=${project.pkg}";>
+ http://debtags.alioth.debian.org/edit.html?pkg=${project.pkg}";>
✏
+   Edit&bpsp;tags
  
  


-- 
Static and dynamic websites for Debian Pure Blends

___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit


[Blends-commit] [SCM] website branch, master, updated. 9d37e39709be7d604048ef6f3ff1a41cd0ae857c

2015-12-07 Thread Ole Streicher
The following commit has been merged in the master branch:
commit be905ee2b5790785c4eb3810c8e1cad1c8bff35b
Author: Ole Streicher 
Date:   Mon Dec 7 16:44:45 2015 +0100

Use CSS (non-javascript) tooltips

diff --git a/webtools/templates/packages.xhtml 
b/webtools/templates/packages.xhtml
index 2dd4d0a..95a84ce 100644
--- a/webtools/templates/packages.xhtml
+++ b/webtools/templates/packages.xhtml
@@ -13,9 +13,30 @@
 http://blends.debian.org/css/blends.css"; rel="stylesheet"
  type="text/css" />
 
-.tooltip {
-   display:none;
+// The tooltip is from http://www.menucool.com/tooltip/css-tooltip
+a.tooltip { }
+
+a.tooltip:hover {
+cursor:pointer;
+}
+a.tooltip span {
+z-index:10;
+display:none;
+padding:14px 20px;
+margin-top:-30px;
+margin-left:28px;
+line-height:16px;
+border-radius:4px;
+box-shadow: 5px 5px 8px #CCC;
 }
+a.tooltip:hover span{
+display:inline;
+position:absolute;
+color:#111;
+border:1px solid #DCA;
+background:#fffAF0;
+}
+
 .pkgdesc-full {
 background-image: none;
 background:#f8f8ff;
@@ -83,7 +104,7 @@ ul.desc-inline li + li::before {
 a.editlink {
 float: left;
 position: relative;
-text-decoration-line: unset;
+text-decoration: none;
 padding-right: 0.5em;
 }
 
@@ -115,7 +136,6 @@ function show_fulldesc(hash) {
   
   
   
-http://blends.debian.org/js/wz_tooltip.js";>
 
   

@@ -249,20 +269,19 @@ function show_fulldesc(hash) {

  

- 
-   
-   
- Other 
screenshots of package ${project.pkg}
- VersionURL
- 
-   ${screenshot['version']}${screenshot['url']}
- 
-   
- 
- http://screenshots.debian.net/package/${project.pkg}";>
-   
+ http://screenshots.debian.net/package/${project.pkg}";>
+   
+   
+ 
+ 
+   Other 
screenshots of package ${project.pkg}
+   VersionURL
+   
+ ${screenshot['version']}${screenshot['url']}
+   
+ 
+   
  

  

-- 
Static and dynamic websites for Debian Pure Blends

___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit


[Blends-commit] [SCM] website branch, master, updated. 9d37e39709be7d604048ef6f3ff1a41cd0ae857c

2015-12-07 Thread Ole Streicher
The following commit has been merged in the master branch:
commit 9d37e39709be7d604048ef6f3ff1a41cd0ae857c
Author: Ole Streicher 
Date:   Mon Dec 7 16:59:18 2015 +0100

Use edit symbol in metapackage description as well.

diff --git a/webtools/templates/packages.xhtml 
b/webtools/templates/packages.xhtml
index 50a3197..4d6e5c6 100644
--- a/webtools/templates/packages.xhtml
+++ b/webtools/templates/packages.xhtml
@@ -170,28 +170,32 @@ function show_fulldesc(hash) {

  $projectname ${tasks[task].metapkg.PrintedName.capitalize()} packages

-   
+   
+ 
+   
+ ${tasks[task].metapkg.desc[lang]['short']}
+   
+   
+ ${tasks[task].metapkg.desc['en']['short']}
+   
+ 
+   
+   
  
-   ${tasks[task].metapkg.desc[lang]['short']}
+   http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${tasks[task].metapkg.pkg}";
 py:if="lang != 'en'">
+ ✏
+ ${fixtranslation}
+   
+   ${tasks[task].metapkg.desc[lang]['long']}
  
  
-   ${tasks[task].metapkg.desc['en']['short']}
- 
-   
-   
- 
-   ${tasks[task].metapkg.desc[lang]['long']}
-
- http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${tasks[task].metapkg.pkg}";>${fixtranslation}
-   
-  
- 
+   http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${tasks[task].metapkg.pkg}";
 py:if="lang != 'en'">
+ ✏
+ ${translatedesc}
+   
${tasks[task].metapkg.desc['en']['long']}
-
- http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${tasks[task].metapkg.pkg}";>${translatedesc}
-   
-  
-   
+ 
+   

  

@@ -407,7 +411,7 @@ function show_fulldesc(hash) {

  http://debtags.alioth.debian.org/edit.html?pkg=${project.pkg}";>
✏
-   Edit&bpsp;tags
+   Edit tags
  
  


-- 
Static and dynamic websites for Debian Pure Blends

___
Blends-commit mailing list
Blends-commit@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/blends-commit


[Blends-commit] [SCM] website branch, master, updated. 51b0da2886df6019d5be3662e799e3ea9eb0add4

2015-12-07 Thread Ole Streicher
The following commit has been merged in the master branch:
commit 51b0da2886df6019d5be3662e799e3ea9eb0add4
Author: Ole Streicher 
Date:   Mon Dec 7 14:55:29 2015 +0100

Add screenshot tooltip; use icon for debtags/translation editing links

diff --git a/webtools/templates/packages.xhtml 
b/webtools/templates/packages.xhtml
index 097f160..2dd4d0a 100644
--- a/webtools/templates/packages.xhtml
+++ b/webtools/templates/packages.xhtml
@@ -13,6 +13,9 @@
 http://blends.debian.org/css/blends.css"; rel="stylesheet"
  type="text/css" />
 
+.tooltip {
+   display:none;
+}
 .pkgdesc-full {
 background-image: none;
 background:#f8f8ff;
@@ -63,6 +66,9 @@
 width: 1px;
 white-space: nowrap;
 }
+.pkgdesc-short a:hover:not(:link):not(:visited) {
+color: grey;
+}
 ul.desc-inline {
 padding: 0;
 margin: 0;
@@ -74,6 +80,12 @@ ul.desc-inline li {
 ul.desc-inline li + li::before {
 content: " \2022 ";
 }
+a.editlink {
+float: left;
+position: relative;
+text-decoration-line: unset;
+padding-right: 0.5em;
+}
 
 http://www.debian.org/favicon.ico"; />
 
@@ -103,6 +115,7 @@ function show_fulldesc(hash) {
   
   
   
+http://blends.debian.org/js/wz_tooltip.js";>
 
   

@@ -236,7 +249,21 @@ function show_fulldesc(hash) {

  

- 
+ 
+   
+   
+ Other 
screenshots of package ${project.pkg}
+ VersionURL
+ 
+   ${screenshot['version']}${screenshot['url']}
+ 
+   
+ 
+ http://screenshots.debian.net/package/${project.pkg}";>
+   
+ 

  
  
@@ -245,7 +272,12 @@ function show_fulldesc(hash) {


  
-   ${project.desc[lang]['long']}
+   
+ http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.pkg}";>
+   ✏
+ 
+ ${project.desc[lang]['long']}
+   

${project.desc['en']['long']}
  

@@ -338,8 +370,11 @@ function show_fulldesc(hash) {
  

  
-   Debtags
+   Tags

+ http://debtags.alioth.debian.org/edit.html?pkg=${project.pkg}";>
+   ✏
+ 
  

  
@@ -427,35 +462,32 @@ function show_fulldesc(hash) {
${project.remark['long']}
  

-   Improve entry
-   
- 
-   
- http://screenshots.debian.net/uploadfile?packagename=${project.pkg}";>
-   Screenshots
- 
-   
-   
- http://debtags.alioth.debian.org/edit.html?pkg=${project.pkg}";>Debtags
-   
-   
- 
-   
- 
-   http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.pkg}";>
- ${fixtranslation}
-   
- 
- 
-   http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${project.pkg}";>
- ${translatedesc}
-   
- 
-   
+   
+ Improve entry
+ 
+   
+ 
+   http://screenshots.debian.net/uploadfile?packagename=${project.pkg}";>
+ Upload Screenshot
+   
  
-   
- 
-   
+ 
+   http://debtags.alioth.debian.org/edit.html?pkg=${project.pkg}";>
+ Create tags
+   
+ 
+ 
+   http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${project.pkg}";>
+ ${translatedesc}
+