diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/samples/background.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/connectivity.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/content.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/input.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/media.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/security.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/testing.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/topic.jd | 26 | ||||
-rw-r--r-- | docs/html/samples/ui.jd | 11 | ||||
-rw-r--r-- | docs/html/samples/views.jd | 11 |
10 files changed, 99 insertions, 26 deletions
diff --git a/docs/html/samples/background.jd b/docs/html/samples/background.jd new file mode 100644 index 0000000..ec87f84 --- /dev/null +++ b/docs/html/samples/background.jd @@ -0,0 +1,11 @@ +page.title=Background +@jd:body + + +<div id="samples" class="background"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/connectivity.jd b/docs/html/samples/connectivity.jd new file mode 100644 index 0000000..03f2f65 --- /dev/null +++ b/docs/html/samples/connectivity.jd @@ -0,0 +1,11 @@ +page.title=Connectivity +@jd:body + + +<div id="samples" class="connectivity"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/content.jd b/docs/html/samples/content.jd new file mode 100644 index 0000000..628e43c --- /dev/null +++ b/docs/html/samples/content.jd @@ -0,0 +1,11 @@ +page.title=Content +@jd:body + + +<div id="samples" class="content"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/input.jd b/docs/html/samples/input.jd new file mode 100644 index 0000000..eab29e1 --- /dev/null +++ b/docs/html/samples/input.jd @@ -0,0 +1,11 @@ +page.title=Input +@jd:body + + +<div id="samples" class="input"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/media.jd b/docs/html/samples/media.jd new file mode 100644 index 0000000..77a5027 --- /dev/null +++ b/docs/html/samples/media.jd @@ -0,0 +1,11 @@ +page.title=Media +@jd:body + + +<div id="samples" class="media"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/security.jd b/docs/html/samples/security.jd new file mode 100644 index 0000000..f136c01 --- /dev/null +++ b/docs/html/samples/security.jd @@ -0,0 +1,11 @@ +page.title=Security +@jd:body + + +<div id="samples" class="security"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/testing.jd b/docs/html/samples/testing.jd new file mode 100644 index 0000000..dc06622 --- /dev/null +++ b/docs/html/samples/testing.jd @@ -0,0 +1,11 @@ +page.title=Testing +@jd:body + + +<div id="samples" class="testing"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/topic.jd b/docs/html/samples/topic.jd deleted file mode 100644 index cac9b10..0000000 --- a/docs/html/samples/topic.jd +++ /dev/null @@ -1,26 +0,0 @@ -page.title=Samples -@jd:body - - -<div id="samples"> -</div> - - - -<script> - $(document).ready(showSamples); - - /** Display links and other information about samples that match the - group specified by the URL */ - function showSamples() { - var group = getGroup(); - $("#body-content h1").html(group); - $("#samples").html("<p>OK, here are some samples about <b>" + group + "</b>.</p>"); - } - - /** Return the group provided by the URL */ - function getGroup() { - var hashParts = location.hash.split('t='); - return hashParts[1]; - } -</script> diff --git a/docs/html/samples/ui.jd b/docs/html/samples/ui.jd new file mode 100644 index 0000000..f558094 --- /dev/null +++ b/docs/html/samples/ui.jd @@ -0,0 +1,11 @@ +page.title=UI +@jd:body + + +<div id="samples" class="ui"> +</div> + + +<script> + $(document).ready(showSamples); +</script> diff --git a/docs/html/samples/views.jd b/docs/html/samples/views.jd new file mode 100644 index 0000000..10e556b --- /dev/null +++ b/docs/html/samples/views.jd @@ -0,0 +1,11 @@ +page.title=Views +@jd:body + + +<div id="samples" class="views"> +</div> + + +<script> + $(document).ready(showSamples); +</script> |