You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by rg...@apache.org on 2015/07/29 08:14:34 UTC

svn commit: r1693184 - in /comdev/tools/events_list/templates: events/index.html events/view.html groups/index.html include/head.html people/index.html people/view.html

Author: rgardler
Date: Wed Jul 29 06:14:34 2015
New Revision: 1693184

URL: http://svn.apache.org/r1693184
Log:
move script and css to an include file

Added:
    comdev/tools/events_list/templates/include/head.html
Modified:
    comdev/tools/events_list/templates/events/index.html
    comdev/tools/events_list/templates/events/view.html
    comdev/tools/events_list/templates/groups/index.html
    comdev/tools/events_list/templates/people/index.html
    comdev/tools/events_list/templates/people/view.html

Modified: comdev/tools/events_list/templates/events/index.html
URL: http://svn.apache.org/viewvc/comdev/tools/events_list/templates/events/index.html?rev=1693184&r1=1693183&r2=1693184&view=diff
==============================================================================
--- comdev/tools/events_list/templates/events/index.html (original)
+++ comdev/tools/events_list/templates/events/index.html Wed Jul 29 06:14:34 2015
@@ -2,13 +2,7 @@
 <html>
 <head>
   <title>Community Development: Events</title>
-
-  <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
-  <script type="text/javascript" src="http://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
-  <script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
-
-  <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"></link>  
-  <link rel="stylesheet" href="http://cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css"></link>
+  {% include "include/head.html" %}
 </head>
 <body>
   {% include "include/navbar.html" %}

Modified: comdev/tools/events_list/templates/events/view.html
URL: http://svn.apache.org/viewvc/comdev/tools/events_list/templates/events/view.html?rev=1693184&r1=1693183&r2=1693184&view=diff
==============================================================================
--- comdev/tools/events_list/templates/events/view.html (original)
+++ comdev/tools/events_list/templates/events/view.html Wed Jul 29 06:14:34 2015
@@ -2,6 +2,7 @@
 <html>
 <head>
   <title>{{ event.name }}</title>
+  {% include "include/head.html" %}
 </head>
 <body>
   <h1>{{ event.name }}</h1>

Modified: comdev/tools/events_list/templates/groups/index.html
URL: http://svn.apache.org/viewvc/comdev/tools/events_list/templates/groups/index.html?rev=1693184&r1=1693183&r2=1693184&view=diff
==============================================================================
--- comdev/tools/events_list/templates/groups/index.html (original)
+++ comdev/tools/events_list/templates/groups/index.html Wed Jul 29 06:14:34 2015
@@ -2,13 +2,7 @@
 <html>
 <head>
   <title>Community Development: Groups</title>
-
-  <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
-  <script type="text/javascript" src="http://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
-  <script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
-
-  <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"></link>  
-  <link rel="stylesheet" href="http://cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css"></link>
+  {% include "include/head.html" %}
 </head>
 <body>
   {% include "include/navbar.html" %}

Added: comdev/tools/events_list/templates/include/head.html
URL: http://svn.apache.org/viewvc/comdev/tools/events_list/templates/include/head.html?rev=1693184&view=auto
==============================================================================
--- comdev/tools/events_list/templates/include/head.html (added)
+++ comdev/tools/events_list/templates/include/head.html Wed Jul 29 06:14:34 2015
@@ -0,0 +1,6 @@
+<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
+<script type="text/javascript" src="http://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
+<script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
+
+<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"></link>  
+<link rel="stylesheet" href="http://cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css"></link>

Modified: comdev/tools/events_list/templates/people/index.html
URL: http://svn.apache.org/viewvc/comdev/tools/events_list/templates/people/index.html?rev=1693184&r1=1693183&r2=1693184&view=diff
==============================================================================
--- comdev/tools/events_list/templates/people/index.html (original)
+++ comdev/tools/events_list/templates/people/index.html Wed Jul 29 06:14:34 2015
@@ -2,13 +2,7 @@
 <html>
 <head>
   <title>Community Development: People</title>
-
-  <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
-  <script type="text/javascript" src="http://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
-  <script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
-
-  <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"></link>  
-  <link rel="stylesheet" href="http://cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css"></link>
+  {% include "include/head.html" %}
 </head>
 <body>
   {% include "include/navbar.html" %}

Modified: comdev/tools/events_list/templates/people/view.html
URL: http://svn.apache.org/viewvc/comdev/tools/events_list/templates/people/view.html?rev=1693184&r1=1693183&r2=1693184&view=diff
==============================================================================
--- comdev/tools/events_list/templates/people/view.html (original)
+++ comdev/tools/events_list/templates/people/view.html Wed Jul 29 06:14:34 2015
@@ -2,8 +2,11 @@
 <html>
 <head>
   <title>{{ person.name }}</title>
+  {% include "include/head.html" %}
 </head>
 <body>
+  {% include "include/navbar.html" %}
+
   <h1>{{ person.name }}</h1>
   <p>{{ person.city }}, {{ person.state }}, {{ person.country }}</p>