From 89e8523da19d3a8150f508e9fcbcfc797b9b9c0c Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Fri, 18 Jan 2013 00:47:25 +0000 Subject: Move chrome\third_party\jstemplate to third_party\jstemplate since it's used from ui\. This is a cleanup after r177425 which I didn't want to do in that already large cl. BUG=169170 Review URL: https://codereview.chromium.org/11971042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177551 0039d316-1c4b-4281-b951-d872f2087c98 --- .../jstemplate/tutorial_examples/01-quick.html | 33 ++++++ .../jstemplate/tutorial_examples/02-gettpl.html | 57 ++++++++++ .../jstemplate/tutorial_examples/03-environ.html | 25 +++++ .../jstemplate/tutorial_examples/04-jscontent.html | 29 +++++ .../jstemplate/tutorial_examples/05-jsselect.html | 42 ++++++++ .../jstemplate/tutorial_examples/06-jsdisplay.html | 40 +++++++ .../tutorial_examples/07-jsdisplay-empty.html | 36 +++++++ .../tutorial_examples/08-transclude.html | 82 ++++++++++++++ .../jstemplate/tutorial_examples/09-jsvalues.html | 23 ++++ .../jstemplate/tutorial_examples/10-jsvalues.html | 96 +++++++++++++++++ .../jstemplate/tutorial_examples/11-jseval.html | 118 +++++++++++++++++++++ .../jstemplate/tutorial_examples/12-parent.html | 59 +++++++++++ 12 files changed, 640 insertions(+) create mode 100644 third_party/jstemplate/tutorial_examples/01-quick.html create mode 100644 third_party/jstemplate/tutorial_examples/02-gettpl.html create mode 100644 third_party/jstemplate/tutorial_examples/03-environ.html create mode 100644 third_party/jstemplate/tutorial_examples/04-jscontent.html create mode 100644 third_party/jstemplate/tutorial_examples/05-jsselect.html create mode 100644 third_party/jstemplate/tutorial_examples/06-jsdisplay.html create mode 100644 third_party/jstemplate/tutorial_examples/07-jsdisplay-empty.html create mode 100644 third_party/jstemplate/tutorial_examples/08-transclude.html create mode 100644 third_party/jstemplate/tutorial_examples/09-jsvalues.html create mode 100644 third_party/jstemplate/tutorial_examples/10-jsvalues.html create mode 100644 third_party/jstemplate/tutorial_examples/11-jseval.html create mode 100644 third_party/jstemplate/tutorial_examples/12-parent.html (limited to 'third_party/jstemplate/tutorial_examples') diff --git a/third_party/jstemplate/tutorial_examples/01-quick.html b/third_party/jstemplate/tutorial_examples/01-quick.html new file mode 100644 index 0000000..df8c7e5 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/01-quick.html @@ -0,0 +1,33 @@ + +Jstemplates: Quick example + + + + + + + + +
+

+ +
+

+Reprocess +

+ + diff --git a/third_party/jstemplate/tutorial_examples/02-gettpl.html b/third_party/jstemplate/tutorial_examples/02-gettpl.html new file mode 100644 index 0000000..f4829c7 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/02-gettpl.html @@ -0,0 +1,57 @@ + +Jstemplates: Quick example + + + + + + + + +
+ + +
+ + +
+

+
+
+ +
+ +

+Reprocess +

+ + diff --git a/third_party/jstemplate/tutorial_examples/03-environ.html b/third_party/jstemplate/tutorial_examples/03-environ.html new file mode 100644 index 0000000..2937a5c --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/03-environ.html @@ -0,0 +1,25 @@ + +Address Book Using Jstemplates + + + + + + + + +
+
+
+ + + diff --git a/third_party/jstemplate/tutorial_examples/04-jscontent.html b/third_party/jstemplate/tutorial_examples/04-jscontent.html new file mode 100644 index 0000000..b264f3f --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/04-jscontent.html @@ -0,0 +1,29 @@ + +Jstemplates: Quick example + + + + + + + + +
+Welcome +(This placeholder name will be replaced by the actual username.) + +
+ + + diff --git a/third_party/jstemplate/tutorial_examples/05-jsselect.html b/third_party/jstemplate/tutorial_examples/05-jsselect.html new file mode 100644 index 0000000..990df0f --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/05-jsselect.html @@ -0,0 +1,42 @@ + +Jstemplates: Quick example + + + + + + + + + +
+

+ User de Fault's + Address Book +

+ + + +

Location:

Label:

+
+ + + diff --git a/third_party/jstemplate/tutorial_examples/06-jsdisplay.html b/third_party/jstemplate/tutorial_examples/06-jsdisplay.html new file mode 100644 index 0000000..cd06982 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/06-jsdisplay.html @@ -0,0 +1,40 @@ + +Jstemplates: Quick example + + + + + + + + +
+

+ User de Fault's + Address Book +

+Address book is empty. + + + +

Location:

Label:

+
+ + + diff --git a/third_party/jstemplate/tutorial_examples/07-jsdisplay-empty.html b/third_party/jstemplate/tutorial_examples/07-jsdisplay-empty.html new file mode 100644 index 0000000..d5da9b3 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/07-jsdisplay-empty.html @@ -0,0 +1,36 @@ + +Jstemplates: Quick example + + + + + + + + +
+

+ User de Fault's + Address Book +

+Address book is empty. + + + +

Location:

Label:

+
+ + + diff --git a/third_party/jstemplate/tutorial_examples/08-transclude.html b/third_party/jstemplate/tutorial_examples/08-transclude.html new file mode 100644 index 0000000..ebab76f --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/08-transclude.html @@ -0,0 +1,82 @@ + +Outline Tree Using Jstemplates + + + + + + + + + +
+ + +
+ +
+ Outline heading +
    +
  • + +
    +
  • +
+
+ +
+ + diff --git a/third_party/jstemplate/tutorial_examples/09-jsvalues.html b/third_party/jstemplate/tutorial_examples/09-jsvalues.html new file mode 100644 index 0000000..9267846 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/09-jsvalues.html @@ -0,0 +1,23 @@ + +Address Book Using Jstemplates + + + + + + + + +
+
+
+ + + diff --git a/third_party/jstemplate/tutorial_examples/10-jsvalues.html b/third_party/jstemplate/tutorial_examples/10-jsvalues.html new file mode 100644 index 0000000..a24d645 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/10-jsvalues.html @@ -0,0 +1,96 @@ + +Outline Tree Using Jstemplates + + + + + + + + + +
+ + +
+ +
+ + [Open] + [Close] + + Outline heading +
    +
  • + +
    +
  • +
+
+ +
+ + diff --git a/third_party/jstemplate/tutorial_examples/11-jseval.html b/third_party/jstemplate/tutorial_examples/11-jseval.html new file mode 100644 index 0000000..ad9b7e2 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/11-jseval.html @@ -0,0 +1,118 @@ + +Outline Tree Using Jstemplates + + + + + + + + + +
+
+ +
+ +
+ + [Open] + + [Close] + + + Outline heading + +
    +
  • + +
    +
  • +
+
+ +
+

+ This outline has empty titles + and titles with content. +

+
+
+ + diff --git a/third_party/jstemplate/tutorial_examples/12-parent.html b/third_party/jstemplate/tutorial_examples/12-parent.html new file mode 100644 index 0000000..04f9797 --- /dev/null +++ b/third_party/jstemplate/tutorial_examples/12-parent.html @@ -0,0 +1,59 @@ + +Jstemplates: Quick example + + + + + + + + +
+

+ User de Fault's + Address Book +

+ + + +

Location:

Label:

+
+ +
+

+ +
+ + + -- cgit v1.1