summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-04-13Update changelog for v0.2.0 releasev0.2.00.2.0xengineering
2023-04-13Automate /var/lib/ceres creationxengineering
That way only the system user setup and ownership change has to be done by the packager / installer.
2023-04-13Document creation of /var/lib/ceresxengineering
This is up to the packager. Inside that data directory the application is allowed to create folders on its own.
2023-04-13Fix Makefilexengineering
There were some templates missing.
2023-04-13Allow empty recipe listxengineering
This is useful for the case that no recipes exist or the recipe data folder does not exist.
2023-04-13Remove .gitignore filexengineering
The only left entry was `vendor` which was used to save Go dependencies. Since there are no dependencies anymore this file is removed.
2023-04-13Apply go fmtxengineering
2023-04-13Remove unnecessary FIXMExengineering
The security advice cares about HTML injected from recipe markup into HTML templates. This is not a considered threat because the user is trusted in this earlx version.
2023-04-13Fix empty title regressionxengineering
If no title is detected, a default text should be inserted instead. This avoids not clickable links on the index page.
2023-04-13Remove LinkLine type from markupxengineering
This was not fully implemented and looks better as normal text line than as <pre> element.
2023-04-13Do not hardcode data directoryxengineering
2023-04-12Switch to unnested configxengineering
This is now just not needed.
2023-04-12Update example recipesxengineering
This shows some more markup features / edge cases.
2023-04-12Implement markup to HTML conversionxengineering
The new custom and text/gemini inspired markup has to be converted to HTML to display the recipe.
2023-04-08Add link to gemini specificationxengineering
The gemini protocol specification includes a section about the text/gemini MIME type. This file format is a easy to parse markup language which should be used for the Ceres recipe server.
2023-04-08Move title parsing to new markup.go filexengineering
The new recipe markup which replaces Markdown will need an own file to be implemented.
2023-04-08Remove Markdown renderingxengineering
This step prepares moving to a new, custom and easily parsable markup language.
2023-04-08Fix layout on delete confirmation pagexengineering
2023-04-08Fix linksxengineering
2023-04-08Fix Makefilexengineering
2023-04-02Switch from MariaDB to filesxengineering
Using a database is way more complex (see the commit statistics of this commit) than using files to store recipe data. Also administration and usage is simpler.
2023-04-02Add example recipe data filesxengineering
This prepares the switch to a file-based store of recipe data replacing MariaDB.
2023-04-01Improve user interfacexengineering
2023-04-01Implement recipe deletionxengineering
2023-04-01Make Markdown editablexengineering
2023-03-31Reduce to ID and Markdownxengineering
The upstream URL can be encoded easily by the user in the Markdown-based description. The title can be parsed by the first found top-level heading in the Markdown text. Thus these two columns are no longer used. To avoid an additional migration they will be kept in the database.
2023-03-31Remove image functionalityxengineering
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
2023-03-07Rework edit page dummyxengineering
Since there are no good solutions to upload the file and markdown description text via HTML forms the edit page will upload the changes using embedded javascript. The page is now complete apart from the necessary javascript code and the backend handlers.
2023-03-07Update navigation linksxengineering
2023-02-12Make add.html a templatexengineering
This allows to use partial HTML files via Go's templating features.
2023-02-12Move footer to own template filexengineering
2023-02-12Move <head/> section to own template filexengineering
This reduces copies of the same HTML code.
2023-02-12Centralize templatingxengineering
This makes templating easier and allows to use partial templates.
2023-02-11Remove most function-inline commentsxengineering
Docstrings for functions are a good thing. But the inside of a function should be written in a way that is self-explaining. Thus inline comments are just extra stuff to maintain and read.
2023-02-11Apply go fmt *.goxengineering
This auto-applies the recommended Go codestyle.
2023-02-11Move shutdown code to main.goxengineering
This has nothing to do with the database. Because the db is now a global pointer the shutdown code can live in main.go.
2023-02-11Rework loggingxengineering
Logging during a request is at the moment not really needed. Printing the config to the log was a stupid idea too.
2023-02-11Make multiplexer regular handlersxengineering
Multiplexer functions used to return closures which are able to handle HTTP requests for historc reasons. Now the multiplexers can be regular HTTP handlers which is simpler.
2023-02-11Switch to global database pointerxengineering
Passing the database pointer around is a lot of text and has no benefit.
2023-02-11Migrate storage.go to global configxengineering
2023-02-11Switch webserver to global config structxengineering
2023-02-11Migrate database to global config structxengineering
2023-02-11Remove obvious comments from main.goxengineering
2023-02-11Rename router.go to server.goxengineering
This fits better because this file is the central entry point of the Ceres webserver.
2023-02-09Make config a global structxengineering
Passing the config completly or just partial around via function arguments creates a lot of noice and does not have benefits. The only downside is that it is possible to write the config after initialization but it is realistic that this can be avoided.
2023-02-09Remove commented codexengineering
2023-02-09Split setupRoutes() and runServer()xengineering
2023-02-09Migrate to multiplexer conceptxengineering
This introduces a layered approach to handling HTTP requests: - server layer - path layer - request layer The multiplexer file cares about the path layer. It delegates the request handling to handlers from the request layer.
2023-02-09Rename runtime_config.go to config.goxengineering
It is shorter.
2023-02-09Remove errors.goxengineering
This commit refactors the codebase. The functionality of the error handling is slightly reduced but the benefit are around 80 lines of code which could be removed.