From d283f7e661e14d6ae1881fe803e5b4f1ed0689ff Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 24 Jun 2024 13:49:08 -0400 Subject: Add 2024 Guix social talk. --- .../reveal.js/test/assets/external-script-a.js | 1 + .../reveal.js/test/assets/external-script-b.js | 1 + .../reveal.js/test/assets/external-script-c.js | 1 + .../reveal.js/test/assets/external-script-d.js | 1 + 2024-06-18-guix-social/reveal.js/test/simple.md | 12 + .../reveal.js/test/test-auto-animate.html | 167 ++++ .../reveal.js/test/test-dependencies-async.html | 78 ++ .../reveal.js/test/test-dependencies.html | 55 ++ .../reveal.js/test/test-destroy.html | 97 +++ .../reveal.js/test/test-grid-navigation.html | 75 ++ .../reveal.js/test/test-iframe-backgrounds.html | 100 +++ .../reveal.js/test/test-iframes.html | 104 +++ .../reveal.js/test/test-markdown.html | 516 ++++++++++++ .../test/test-multiple-instances-es5.html | 86 ++ .../reveal.js/test/test-multiple-instances.html | 104 +++ .../reveal.js/test/test-pdf.html | 97 +++ .../reveal.js/test/test-plugins.html | 108 +++ .../reveal.js/test/test-scroll.html | 162 ++++ .../reveal.js/test/test-state.html | 134 +++ 2024-06-18-guix-social/reveal.js/test/test.html | 900 +++++++++++++++++++++ 20 files changed, 2799 insertions(+) create mode 100644 2024-06-18-guix-social/reveal.js/test/assets/external-script-a.js create mode 100644 2024-06-18-guix-social/reveal.js/test/assets/external-script-b.js create mode 100644 2024-06-18-guix-social/reveal.js/test/assets/external-script-c.js create mode 100644 2024-06-18-guix-social/reveal.js/test/assets/external-script-d.js create mode 100644 2024-06-18-guix-social/reveal.js/test/simple.md create mode 100644 2024-06-18-guix-social/reveal.js/test/test-auto-animate.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-dependencies-async.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-dependencies.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-destroy.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-grid-navigation.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-iframe-backgrounds.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-iframes.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-markdown.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-multiple-instances-es5.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-multiple-instances.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-pdf.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-plugins.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-scroll.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test-state.html create mode 100644 2024-06-18-guix-social/reveal.js/test/test.html (limited to '2024-06-18-guix-social/reveal.js/test') diff --git a/2024-06-18-guix-social/reveal.js/test/assets/external-script-a.js b/2024-06-18-guix-social/reveal.js/test/assets/external-script-a.js new file mode 100644 index 0000000..cbc8da1 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/assets/external-script-a.js @@ -0,0 +1 @@ +window.externalScriptSequence += 'A'; \ No newline at end of file diff --git a/2024-06-18-guix-social/reveal.js/test/assets/external-script-b.js b/2024-06-18-guix-social/reveal.js/test/assets/external-script-b.js new file mode 100644 index 0000000..e5bca5a --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/assets/external-script-b.js @@ -0,0 +1 @@ +window.externalScriptSequence += 'B'; \ No newline at end of file diff --git a/2024-06-18-guix-social/reveal.js/test/assets/external-script-c.js b/2024-06-18-guix-social/reveal.js/test/assets/external-script-c.js new file mode 100644 index 0000000..7d4ccf6 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/assets/external-script-c.js @@ -0,0 +1 @@ +window.externalScriptSequence += 'C'; \ No newline at end of file diff --git a/2024-06-18-guix-social/reveal.js/test/assets/external-script-d.js b/2024-06-18-guix-social/reveal.js/test/assets/external-script-d.js new file mode 100644 index 0000000..1c5925b --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/assets/external-script-d.js @@ -0,0 +1 @@ +window.externalScriptSequence += 'D'; \ No newline at end of file diff --git a/2024-06-18-guix-social/reveal.js/test/simple.md b/2024-06-18-guix-social/reveal.js/test/simple.md new file mode 100644 index 0000000..97bae7e --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/simple.md @@ -0,0 +1,12 @@ +## Slide 1.1 + +```js +var a = 1; +``` + + +## Slide 1.2 + + + +## Slide 2 \ No newline at end of file diff --git a/2024-06-18-guix-social/reveal.js/test/test-auto-animate.html b/2024-06-18-guix-social/reveal.js/test/test-auto-animate.html new file mode 100644 index 0000000..a9c71f7 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-auto-animate.html @@ -0,0 +1,167 @@ + + + + + + + reveal.js - Test Auto-Animate + + + + + + + + +
+
+ +
+ +
+ +
+

h1

+

h2

+

h3

+
+ +
+

h1

+

h2

+

h3

+
+ +
+

h1

+

h2

+

h3

+
+ +
+

Non-auto-animate slide

+
+ +
+

h1

+

h2

+

h3

+
+ +
+

h1

+

h2

+

h3

+
+ +
+

Non-auto-animate slide

+
+ +
+ +
+ + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-dependencies-async.html b/2024-06-18-guix-social/reveal.js/test/test-dependencies-async.html new file mode 100644 index 0000000..de14042 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-dependencies-async.html @@ -0,0 +1,78 @@ + + + + + + + reveal.js - Test Async Dependencies + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-dependencies.html b/2024-06-18-guix-social/reveal.js/test/test-dependencies.html new file mode 100644 index 0000000..cf3cf0e --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-dependencies.html @@ -0,0 +1,55 @@ + + + + + + + reveal.js - Test Dependencies + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-destroy.html b/2024-06-18-guix-social/reveal.js/test/test-destroy.html new file mode 100644 index 0000000..1fa9cd2 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-destroy.html @@ -0,0 +1,97 @@ + + + + + + + reveal.js - Test Dependencies + + + + + + + + +
+
+ + + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-grid-navigation.html b/2024-06-18-guix-social/reveal.js/test/test-grid-navigation.html new file mode 100644 index 0000000..837764c --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-grid-navigation.html @@ -0,0 +1,75 @@ + + + + + + + reveal.js - Test Grid + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-iframe-backgrounds.html b/2024-06-18-guix-social/reveal.js/test/test-iframe-backgrounds.html new file mode 100644 index 0000000..7df99a1 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-iframe-backgrounds.html @@ -0,0 +1,100 @@ + + + + + + + reveal.js - Test Iframe Backgrounds + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-iframes.html b/2024-06-18-guix-social/reveal.js/test/test-iframes.html new file mode 100644 index 0000000..fa4b434 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-iframes.html @@ -0,0 +1,104 @@ + + + + + + + reveal.js - Test Iframes + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-markdown.html b/2024-06-18-guix-social/reveal.js/test/test-markdown.html new file mode 100644 index 0000000..e877284 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-markdown.html @@ -0,0 +1,516 @@ + + + + + + + reveal.js - Test Markdown + + + + + + + + +
+
+ + + + + + + + + + + +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-multiple-instances-es5.html b/2024-06-18-guix-social/reveal.js/test/test-multiple-instances-es5.html new file mode 100644 index 0000000..c8bb189 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-multiple-instances-es5.html @@ -0,0 +1,86 @@ + + + + + + + reveal.js - Test Iframes + + + + + + + + +
+
+ +
+ +
+ +
+ +
+ + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-multiple-instances.html b/2024-06-18-guix-social/reveal.js/test/test-multiple-instances.html new file mode 100644 index 0000000..4f16d7e --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-multiple-instances.html @@ -0,0 +1,104 @@ + + + + + + + reveal.js - Test Iframes + + + + + + + + +
+
+ +
+ +
+ +
+ +
+ + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-pdf.html b/2024-06-18-guix-social/reveal.js/test/test-pdf.html new file mode 100644 index 0000000..8fa102a --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-pdf.html @@ -0,0 +1,97 @@ + + + + + + + reveal.js - Test PDF exports + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-plugins.html b/2024-06-18-guix-social/reveal.js/test/test-plugins.html new file mode 100644 index 0000000..f9cd5b1 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-plugins.html @@ -0,0 +1,108 @@ + + + + + + + reveal.js - Test Plugins + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-scroll.html b/2024-06-18-guix-social/reveal.js/test/test-scroll.html new file mode 100644 index 0000000..74a16e3 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-scroll.html @@ -0,0 +1,162 @@ + + + + + + + reveal.js - Test Scroll View + + + + + + + + +
+
+ +
+ +
+ +
+

slide 1

+
+ +
+

slide 2

+
+ +
+

slide 3

+

fragment 1

+

fragment 2

+

fragment 3

+
+ +
+

slide 4

+
+ +
+ +
+ + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test-state.html b/2024-06-18-guix-social/reveal.js/test/test-state.html new file mode 100644 index 0000000..c2d5055 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test-state.html @@ -0,0 +1,134 @@ + + + + + + + reveal.js - Test State + + + + + + + + +
+
+ + + + + + + + diff --git a/2024-06-18-guix-social/reveal.js/test/test.html b/2024-06-18-guix-social/reveal.js/test/test.html new file mode 100644 index 0000000..ab44922 --- /dev/null +++ b/2024-06-18-guix-social/reveal.js/test/test.html @@ -0,0 +1,900 @@ + + + + + + + reveal.js - Tests + + + + + + + + +
+
+ + + + + + + + -- cgit v1.2.3