From 9d2e9888b1882f855d7690c0f5cffc20137b10d3 Mon Sep 17 00:00:00 2001
From: Sébastien Dailly <sebastien@chimrod.com>
Date: Fri, 5 Feb 2021 10:19:49 +0100
Subject: Moved the page Graph Editor in it own subdirectory

---
 content/Informatique/2020-12-05-graphviz_en_js.rst |  2 +-
 content/extras/htaccess                            |  3 +-
 content/pages/graph-editor.html                    | 71 ----------------------
 content/pages/graph-editor/graph-editor.rst        | 71 ++++++++++++++++++++++
 4 files changed, 74 insertions(+), 73 deletions(-)
 delete mode 100755 content/pages/graph-editor.html
 create mode 100755 content/pages/graph-editor/graph-editor.rst

(limited to 'content')

diff --git a/content/Informatique/2020-12-05-graphviz_en_js.rst b/content/Informatique/2020-12-05-graphviz_en_js.rst
index d8f46dc..7ecbcb1 100755
--- a/content/Informatique/2020-12-05-graphviz_en_js.rst
+++ b/content/Informatique/2020-12-05-graphviz_en_js.rst
@@ -42,7 +42,7 @@ Il ne reste donc plus qu'à assembler tout ça, pour faire tourner un petit
 l'indentation pour marquer la relation au parent : (si vous souhaitez en
 profiter en pleine page, c'est `ici que ça se passe`_)
 
-.. _ici que ça se passe: {filename}/pages/graph-editor.html
+.. _ici que ça se passe: {filename}/pages/graph-editor/graph-editor.rst#graph-editor
 
 La démo
 -------
diff --git a/content/extras/htaccess b/content/extras/htaccess
index bca56dd..843581b 100644
--- a/content/extras/htaccess
+++ b/content/extras/htaccess
@@ -18,5 +18,6 @@ Redirect 301 /feeds/Perso.atom /feeds/perso.atom
     RewriteRule ^$ /feed [NC,L,R=301]
 </IfModule>
 
-# Redirection de l'adresse temporaire utilisée pour l'application d'ardoise
+# Redirection des pages vers leur emplacement définitifs 
 Redirect 301 /pages/drawer.html /pages/script.it#ardoise-calligraphique
+Redirect 301 /pages/graph-editor.html /pages/graph-editor#graph-editor
diff --git a/content/pages/graph-editor.html b/content/pages/graph-editor.html
deleted file mode 100755
index 7186589..0000000
--- a/content/pages/graph-editor.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<!DOCTYPE html>
-<html>
-  <head>
-    <meta name="status" content="hidden" />
-    <title>Graph editor</title>
-  </head>
-  <body>
-    <style>
-
-    #app {
-      width: 100%;
-      height: 100%;
-      overflow: hidden;
-    }
-
-    #panes {
-      display: flex;
-      width: 100%;
-    }
-
-    #graph {
-      flex: 1;
-      width: 50%;
-    }
-    
-    
-    #editor {
-      border-right: 1px solid #ccc;
-      flex: 1;
-    }
-
-    #output svg { top: 0; left: 0; width: 100%; height: 100%; }
-    
-    </style>
-    
-    <div id="app">
-            <button id="dot_output">Export DOT</button>
-            <button id="png_output">Export PNG</button>
-            <button id="btn_window">Isoler</button>
-      <div id="panes" class="split split-horizontal">
-        <textarea id="editor">g1
- Nom
- -
- propriété 1 <-> g2:2
- propriété 2
-
-g2
- Autre
- -
- propriété 1
- encore une autre <i>entrée</i>
- autre champ -> g1:3 retour
-
-g3
- Dernier élément
- -
- ligne 2
- ligne 3</textarea>
-        <div id="graph" class="split">
-          <div id="output">
-            <div id="svg"></div>
-          </div>
-        </div>
-      </div>
-    </div>
-    
-    <script src="{static}/resources/viz.js/download.js"></script>
-    <script src="{static}/resources/viz.js/convert.js"></script>
-  </body>
-</html>
-
diff --git a/content/pages/graph-editor/graph-editor.rst b/content/pages/graph-editor/graph-editor.rst
new file mode 100755
index 0000000..d5785a4
--- /dev/null
+++ b/content/pages/graph-editor/graph-editor.rst
@@ -0,0 +1,71 @@
+
+Graph editor
+============
+
+:status: hidden
+:save_as: pages/graph-editor/index.html
+:url: pages/graph-editor/
+
+.. raw:: html
+
+ <style>
+
+ #app {
+   width: 100%;
+   height: 100%;
+   overflow: hidden;
+ }
+
+ #panes {
+   display: flex;
+   width: 100%;
+ }
+
+ #graph {
+   flex: 1;
+   width: 50%;
+ }
+
+
+ #editor {
+   border-right: 1px solid #ccc;
+   flex: 1;
+ }
+
+ #output svg { top: 0; left: 0; width: 100%; height: 100%; }
+
+ </style>
+
+ <div id="app">
+         <button id="dot_output">Export DOT</button>
+         <button id="png_output">Export PNG</button>
+         <button id="btn_window">Isoler</button>
+   <div id="panes" class="split split-horizontal">
+     <textarea id="editor">g1
+  Nom
+  -
+  propriété 1 <-> g2:2
+  propriété 2
+
+ g2
+  Autre
+  -
+  propriété 1
+  encore une autre <i>entrée</i>
+  autre champ -> g1:3 retour
+
+ g3
+  Dernier élément
+  -
+  ligne 2
+  ligne 3</textarea>
+        <div id="graph" class="split">
+          <div id="output">
+            <div id="svg"></div>
+          </div>
+        </div>
+      </div>
+    </div>
+
+    <script src="{static}/resources/viz.js/download.js"></script>
+    <script src="{static}/resources/viz.js/convert.js"></script>
-- 
cgit v1.2.3