From: David Paleino <dapal@debian.org>
Subject: point to locally installed files
Origin: vendor
Forwarded: not-needed

---
 demos/scenarios/01_default-values-scenario.html                                               |    4 ++--
 demos/scenarios/02_separators-scenario.html                                                   |    4 ++--
 demos/scenarios/03_iterating-through-fields-scenario.html                                     |    4 ++--
 demos/scenarios/04_assigning-variables-scenario.html                                          |    4 ++--
 demos/scenarios/05_arrays-plus-headers-and-footers.html                                       |    4 ++--
 demos/step-by-step/01_inserting-data.html                                                     |    4 ++--
 demos/step-by-step/02_compiling-named-templates-from-strings.html                             |    4 ++--
 demos/step-by-step/03_converters-and-encoding.html                                            |    4 ++--
 demos/step-by-step/04_if-else-tag.html                                                        |    4 ++--
 demos/step-by-step/05_for-tag.html                                                            |    4 ++--
 demos/step-by-step/06_template-composition.html                                               |    4 ++--
 demos/step-by-step/07_paths.html                                                              |    4 ++--
 demos/step-by-step/08_custom-tags.html                                                        |    4 ++--
 demos/step-by-step/09_helper-functions.html                                                   |    4 ++--
 demos/step-by-step/10_comparison-tests.html                                                   |    4 ++--
 demos/step-by-step/11_accessing-parent-data.html                                              |    4 ++--
 demos/step-by-step/12_passing-in-context.html                                                 |    4 ++--
 demos/step-by-step/13_associating-helpers-with-templates.html                                 |    4 ++--
 demos/step-by-step/20_without-jquery.html                                                     |    2 +-
 demos/variants/accessing-templates/01_compiling-template-objects-from-strings.html            |    4 ++--
 demos/variants/accessing-templates/02_registering-named-template-from-script-declaration.html |    4 ++--
 demos/variants/accessing-templates/03_getting-template-objects-from-script-declaration.html   |    4 ++--
 demos/variants/accessing-templates/04_template-composition-subtemplates.html                  |    4 ++--
 demos/variants/accessing-templates/05_template-composition-templateobjects.html               |    4 ++--
 24 files changed, 47 insertions(+), 47 deletions(-)

--- jsrender.orig/demos/scenarios/01_default-values-scenario.html
+++ jsrender/demos/scenarios/01_default-values-scenario.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/scenarios/02_separators-scenario.html
+++ jsrender/demos/scenarios/02_separators-scenario.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/scenarios/03_iterating-through-fields-scenario.html
+++ jsrender/demos/scenarios/03_iterating-through-fields-scenario.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/scenarios/04_assigning-variables-scenario.html
+++ jsrender/demos/scenarios/04_assigning-variables-scenario.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/scenarios/05_arrays-plus-headers-and-footers.html
+++ jsrender/demos/scenarios/05_arrays-plus-headers-and-footers.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/01_inserting-data.html
+++ jsrender/demos/step-by-step/01_inserting-data.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 </head>
 <body>
--- jsrender.orig/demos/step-by-step/02_compiling-named-templates-from-strings.html
+++ jsrender/demos/step-by-step/02_compiling-named-templates-from-strings.html
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/03_converters-and-encoding.html
+++ jsrender/demos/step-by-step/03_converters-and-encoding.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/04_if-else-tag.html
+++ jsrender/demos/step-by-step/04_if-else-tag.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/05_for-tag.html
+++ jsrender/demos/step-by-step/05_for-tag.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/06_template-composition.html
+++ jsrender/demos/step-by-step/06_template-composition.html
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/07_paths.html
+++ jsrender/demos/step-by-step/07_paths.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
  	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 </head>
 <body>
--- jsrender.orig/demos/step-by-step/08_custom-tags.html
+++ jsrender/demos/step-by-step/08_custom-tags.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/09_helper-functions.html
+++ jsrender/demos/step-by-step/09_helper-functions.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/10_comparison-tests.html
+++ jsrender/demos/step-by-step/10_comparison-tests.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/11_accessing-parent-data.html
+++ jsrender/demos/step-by-step/11_accessing-parent-data.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/12_passing-in-context.html
+++ jsrender/demos/step-by-step/12_passing-in-context.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/13_associating-helpers-with-templates.html
+++ jsrender/demos/step-by-step/13_associating-helpers-with-templates.html
@@ -1,8 +1,8 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/step-by-step/20_without-jquery.html
+++ jsrender/demos/step-by-step/20_without-jquery.html
@@ -1,7 +1,7 @@
 ﻿<!DOCTYPE html>
 <html>
 <head>
-	<script src="../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/variants/accessing-templates/01_compiling-template-objects-from-strings.html
+++ jsrender/demos/variants/accessing-templates/01_compiling-template-objects-from-strings.html
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="..//usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/variants/accessing-templates/02_registering-named-template-from-script-declaration.html
+++ jsrender/demos/variants/accessing-templates/02_registering-named-template-from-script-declaration.html
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="..//usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/variants/accessing-templates/03_getting-template-objects-from-script-declaration.html
+++ jsrender/demos/variants/accessing-templates/03_getting-template-objects-from-script-declaration.html
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="..//usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/variants/accessing-templates/04_template-composition-subtemplates.html
+++ jsrender/demos/variants/accessing-templates/04_template-composition-subtemplates.html
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="..//usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../../resources/movielist.css" rel="stylesheet" type="text/css" />
--- jsrender.orig/demos/variants/accessing-templates/05_template-composition-templateobjects.html
+++ jsrender/demos/variants/accessing-templates/05_template-composition-templateobjects.html
@@ -1,8 +1,8 @@
 <!DOCTYPE html>
 <html>
 <head>
-	<script src="http://code.jquery.com/jquery.js" type="text/javascript"></script>
-	<script src="../../../jsrender.js" type="text/javascript"></script>
+	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
+	<script src="..//usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
 	<link href="../../resources/demos.css" rel="stylesheet" type="text/css" />
 
 	<link href="../../resources/movielist.css" rel="stylesheet" type="text/css" />
