[Pkg-debile-commits] [debile-web] 04/14: about page

Sylvestre Ledru sylvestre at alioth.debian.org
Mon Sep 2 15:52:52 UTC 2013


This is an automated email from the git hooks/post-receive script.

sylvestre pushed a commit to branch update-usuability
in repository debile-web.

commit 403e718235e9b4e96ba11227d6d506b6b127f40f
Author: Sylvestre Ledru <sylvestre at debian.org>
Date:   Thu Aug 29 13:50:46 2013 +0200

    about page
---
 debileweb/blueprints/frontend.py |    4 +++-
 templates/about.html             |   26 ++++++++++++++++++++++++++
 2 files changed, 29 insertions(+), 1 deletion(-)

diff --git a/debileweb/blueprints/frontend.py b/debileweb/blueprints/frontend.py
index 1c7892b..8eeb9fa 100644
--- a/debileweb/blueprints/frontend.py
+++ b/debileweb/blueprints/frontend.py
@@ -413,7 +413,9 @@ def search_package():
     session = Session()
     packages_query = session.query(Source.name)\
         .filter(Source.name.like(search+"%")).group_by(Source.name).limit(10)
-    print packages_query
     result = [r[0] for r in packages_query]
     return jsonify(result)
 
+ at frontend.route('/about')
+def about():
+    return render_template('about.html')
diff --git a/templates/about.html b/templates/about.html
new file mode 100644
index 0000000..6ca2792
--- /dev/null
+++ b/templates/about.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+
+{% block title %}About debile{% endblock %}
+
+{% block content %}
+
+Debile (formely know as debuild.me) is a project started by Paul Tagliamonte to provide a simple rebuild infrastructure for deb packages.<br />
+<br />
+During the Summer 2013, Léo Cavaillé and Sylvestre Ledru worked on a new version of debile to perform automatic and transparent rebuild of the Debian archive. The goal was twofold:<br />
+<ul>
+<li>Rebuild packages with an alternative C/C++/Objective-C compiler (clang in this case) to continue the work started on <a href="http://clang.debian.net/">clang.debian.net</a></li>
+<li>Launch static analyzers (clang analayzer/scan-build, coccinnelle, etc) on the code of the Debian packages. </li>
+</ul>
+
+The debile project now aims to:
+<ul>
+<li>Normal rebuild</li>
+<li>clang rebuild including a repository with the output</li>
+<li>DDA (Debian Debile Archive): A Debian PPA (Personal Package Archives from Ubuntu)</li>
+<li>Static analyzers on the code</li>
+<li>Testing of transitions (unstable => testing) - TODO</li>
+</ul>
+
+The name <i>debile</i> has been proposed by <a href="http://upsilon.cc/~zack/">Stefano Zacchiroli</a>. It can mean "DEBian Infrastructure LayEr".
+
+{% endblock %}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-debile/debile-web.git



More information about the Pkg-debile-commits mailing list