diff options
author | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-09-17 11:07:08 +0200 |
commit | ea54de7d32e6b576ccfb430e7e57811b7c4587fe (patch) | |
tree | 4182e9c401e571adb53f1d6cbe2b072c171c87b2 /data | |
parent | d0f58c4812c8b5821e9ed15806fae44f7b1fb095 (diff) | |
download | ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar.zst ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.zip |
Remove complete implementation
Restarting from scratch seems to be the fastest approach to switch to
sqlite and get rid of some other structural mistakes from the past.
Diffstat (limited to 'data')
-rw-r--r-- | data/.gitignore | 1 | ||||
l--------- | data/static/style.css | 1 | ||||
-rw-r--r-- | data/storage/recipes/0/text | 21 | ||||
-rw-r--r-- | data/storage/recipes/1/text | 13 | ||||
-rw-r--r-- | data/templates/footer.html | 4 | ||||
-rw-r--r-- | data/templates/head.html | 9 | ||||
-rw-r--r-- | data/templates/index.html | 49 | ||||
-rw-r--r-- | data/templates/recipe.html | 43 | ||||
-rw-r--r-- | data/templates/recipe_confirm_deletion.html | 25 | ||||
-rw-r--r-- | data/templates/recipe_edit.html | 26 |
10 files changed, 0 insertions, 192 deletions
diff --git a/data/.gitignore b/data/.gitignore deleted file mode 100644 index 0b7e618..0000000 --- a/data/.gitignore +++ /dev/null @@ -1 +0,0 @@ -./storage/* diff --git a/data/static/style.css b/data/static/style.css deleted file mode 120000 index e73301c..0000000 --- a/data/static/style.css +++ /dev/null @@ -1 +0,0 @@ -../../simple.css-2.2.0/simple.min.css
\ No newline at end of file diff --git a/data/storage/recipes/0/text b/data/storage/recipes/0/text deleted file mode 100644 index b0adef8..0000000 --- a/data/storage/recipes/0/text +++ /dev/null @@ -1,21 +0,0 @@ -{ - "title":"Some delicious food", - "portions": 4, - "url":"https://example.org", - "steps":[ - { - "text":"Prepare vegetables.", - "ingredients":[ - {"amount":3, "unit":"pieces", "type":"carrot"}, - {"amount":250, "unit":"g", "type":"tomato"} - ] - }, - { - "text":"Cook those vegetables", - "ingredients":[ - {"amount":0, "unit":"", "type":"water"}, - {"amount":0, "unit":"", "type":"salt"} - ] - } - ] -} diff --git a/data/storage/recipes/1/text b/data/storage/recipes/1/text deleted file mode 100644 index 1c4acb8..0000000 --- a/data/storage/recipes/1/text +++ /dev/null @@ -1,13 +0,0 @@ -{ - "title":"Very delicious stuff", - "portions": 4, - "url":"https://example.org", - "steps":[ - { - "text":"Bake the frozen pizza!", - "ingredients":[ - {"amount":4, "unit":"pieces", "type":"pizza"} - ] - } - ] -} diff --git a/data/templates/footer.html b/data/templates/footer.html deleted file mode 100644 index 1b5bf15..0000000 --- a/data/templates/footer.html +++ /dev/null @@ -1,4 +0,0 @@ - <footer> - <hr> - <p>The <a href="https://xengineering.eu/git/ceres">Ceres</a> recipe server is licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">AGPL v3</a> and developed with <a href="https://simplecss.org/">simple.css</a>.</p> - </footer> diff --git a/data/templates/head.html b/data/templates/head.html deleted file mode 100644 index 33f0c6d..0000000 --- a/data/templates/head.html +++ /dev/null @@ -1,9 +0,0 @@ - <head> - - <title>Recipes</title> - - <meta charset="utf-8"/> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="/static/style.css" type="text/css"> - - </head> diff --git a/data/templates/index.html b/data/templates/index.html deleted file mode 100644 index 0b97187..0000000 --- a/data/templates/index.html +++ /dev/null @@ -1,49 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>Recipes</h1> - </header> - - <main> - <p>Here are the available recipes 😋🍳🍔🍕🥘</p> - <input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></input> - <ul id="recipes">{{range .}} - <li><a href="./recipe?id={{.Id}}">{{.Title}}</a></li>{{end}} - </ul> - - {{ template "footer.html" }} - - </main> - - <script> - function filter() { - var input, query, ul, li, a, i, txtValue; - input = document.getElementById('search'); - query = input.value.toUpperCase(); - ul = document.getElementById("recipes"); - li = ul.getElementsByTagName('li'); - - for (i = 0; i < li.length; i++) { - a = li[i].getElementsByTagName("a")[0]; - txtValue = a.textContent || a.innerText; - if (txtValue.toUpperCase().indexOf(query) > -1) { - li[i].style.display = ""; - } else { - li[i].style.display = "none"; - } - } - } - </script> - </body> - -</html> diff --git a/data/templates/recipe.html b/data/templates/recipe.html deleted file mode 100644 index f95ace6..0000000 --- a/data/templates/recipe.html +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>{{.Recipe.Title}}</h1> - </header> - - <main> - <p>For {{.Recipe.Portions}} portions you will need these ingredients:</p> - - <ul> - {{range .Recipe.Steps}}{{range $i, $el := .Ingredients}} - <li>{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}</li> - {{end}}{{end}} - </ul> - - {{if ne .Recipe.Url ""}} - <p>Use this <a href="{{.Recipe.Url}}">link</a> to go to the original recipe.</p> - {{end}} - - {{range .Recipe.Steps}} - <section> - <p>{{.Text}}</p> - <p><i>{{range $i, $el := .Ingredients}}{{if $i}}, {{end}}{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}{{end}}</i></p> - </section> - {{end}} - - <a href="/recipe/edit?id={{.Id}}"><button>edit</button></a> - <a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a> - - {{ template "footer.html" }} - </main> - </body> -</html> diff --git a/data/templates/recipe_confirm_deletion.html b/data/templates/recipe_confirm_deletion.html deleted file mode 100644 index 17c4da8..0000000 --- a/data/templates/recipe_confirm_deletion.html +++ /dev/null @@ -1,25 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>Delete a recipe</h1> - </header> - - <main> - <p>Do you really want to delete this recipe?</p> - <form action="/recipe/confirm-deletion?id={{.Id}}" method="POST"> - <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> - <button style="background-color:red" type="submit">delete</button> - </form> - {{ template "footer.html" }} - </main> - </body> -</html> diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html deleted file mode 100644 index 6ef41f8..0000000 --- a/data/templates/recipe_edit.html +++ /dev/null @@ -1,26 +0,0 @@ -<!DOCTYPE html> - -<html> - - {{ template "head.html" }} - - <body> - <header> - <nav> - <a href="/index.html">HOME</a> - <a href="/add_recipes">add recipe</a> - </nav> - <h1>{{.Title}}</h1> - </header> - - <main> - <form action="/recipe/edit" method="POST"> - <input type="hidden" name="id" value="{{.Id}}" /> - <textarea style="resize:none;font-family:monospace, monospace;font-size: 1rem;" rows="18" wrap="soft" name="text">{{.Text}}</textarea> - <button type="submit">save</button> - <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> - </form> - {{ template "footer.html" }} - </main> - </body> -</html> |