You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by sa...@apache.org on 2016/10/02 06:36:48 UTC

incubator-airflow git commit: [AIRFLOW-542] Add tooltip to DAGs links icons

Repository: incubator-airflow
Updated Branches:
  refs/heads/master c02425d48 -> c37740f53


[AIRFLOW-542] Add tooltip to DAGs links icons

Closes #1817 from mmmaia/master


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/c37740f5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/c37740f5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/c37740f5

Branch: refs/heads/master
Commit: c37740f5313f97c83a287cf013f92eb949e36895
Parents: c02425d
Author: mmaia <ma...@gmail.com>
Authored: Sat Oct 1 23:36:41 2016 -0700
Committer: Siddharth Anand <si...@yahoo.com>
Committed: Sat Oct 1 23:36:41 2016 -0700

----------------------------------------------------------------------
 airflow/www/templates/airflow/dags.html | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/c37740f5/airflow/www/templates/airflow/dags.html
----------------------------------------------------------------------
diff --git a/airflow/www/templates/airflow/dags.html b/airflow/www/templates/airflow/dags.html
index f189d92..ff9b1bf 100644
--- a/airflow/www/templates/airflow/dags.html
+++ b/airflow/www/templates/airflow/dags.html
@@ -113,48 +113,48 @@
 
                 <!-- Tree -->
                 <a href="{{ url_for('airflow.tree', dag_id=dag.dag_id, num_runs=25) }}" title="Tree View">
-                    <span class="glyphicon glyphicon-tree-deciduous" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-tree-deciduous" aria-hidden="true" title="Tree View"></span>
                 </a>
 
                 <!-- Graph -->
                 <a href="{{ url_for('airflow.graph', dag_id=dag.dag_id) }}" title="Graph View">
-                    <span class="glyphicon glyphicon-certificate" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-certificate" aria-hidden="true" title="Graph View"></span>
                 </a>
 
                 <!-- Duration -->
                 <a href="{{ url_for('airflow.duration', dag_id=dag.dag_id) }}" title="Tasks Duration">
-                    <span class="glyphicon glyphicon-stats" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-stats" aria-hidden="true" title="Tasks Duration"></span>
                 </a>
 
                 <!-- Retries -->
                 <a href="{{ url_for('airflow.tries', dag_id=dag.dag_id) }}" title="Task Tries">
-                    <span class="glyphicon glyphicon-duplicate" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-duplicate" aria-hidden="true" title="Task Tries"></span>
                 </a>
 
                 <!-- Landing Times -->
                 <a href="{{ url_for("airflow.landing_times", dag_id=dag.dag_id) }}" title="Landing Times">
-                    <span class="glyphicon glyphicon-plane" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-plane" aria-hidden="true" title="Landing Times"></span>
                 </a>
 
                 <!-- Gantt -->
                 <a href="{{ url_for("airflow.gantt", dag_id=dag.dag_id) }}" title="Gantt View">
-                    <span class="glyphicon glyphicon-align-left" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-align-left" aria-hidden="true" title="Gantt View"></span>
                 </a>
 
                 <!-- Code -->
                 <a href="{{ url_for("airflow.code", dag_id=dag.dag_id) }}" title="Code View">
-                    <span class="glyphicon glyphicon-flash" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-flash" aria-hidden="true" title="Code View"></span>
                 </a>
 
                 <!-- Logs -->
                 <a href="/admin/log/?sort=1&amp;desc=1&amp;flt1_dag_id_equals={{ dag.dag_id }}" title="Logs">
-                    <span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span>
+                    <span class="glyphicon glyphicon-align-justify" aria-hidden="true" title="Logs"></span>
                 </a>
                 {% endif %}
 
                 <!-- Refresh -->
                 <a href="{{ url_for("airflow.refresh", dag_id=dag_id) }}" title="Refresh">
-                  <span class="glyphicon glyphicon-refresh" aria-hidden="true"></span>
+                  <span class="glyphicon glyphicon-refresh" aria-hidden="true" title="Refresh"></span>
                 </a>
 
                 </td>