Commit Graph

16 Commits

Author SHA1 Message Date
3cba8b3cfb fix: fix typo in variable name and add debug prints in TemplateView
Correct the misspelled variable `reponse` to `response` in the `render_template` method of `TemplateView` class. Also add three debug print statements to log template path resolution results, including found paths, non-template paths, and missing paths for improved debugging during development.
2025-01-27 22:49:11 +00:00
7a7092b24a feat: remove extraneous context argument from MarkdownRenderer web.Response call 2025-01-27 22:45:30 +00:00
2ed73197a7 feat: add content type detection and validation for uploaded files 2025-01-27 22:41:49 +00:00
f16ac21bbd feat: add charset utf-8 to html response and pass context to template renderer 2025-01-27 22:31:08 +00:00
aaf5639826 feat: add content_type text/html to markdown renderer response in TemplateView 2025-01-27 18:48:29 +00:00
c68a8e3217 fix: remove extraneous await from MarkdownRenderer.render() call in TemplateView 2025-01-27 18:45:55 +00:00
daf2b06772 fix: convert template_path to pathlib.Path in MarkdownRenderer.render to fix attribute error 2025-01-27 18:44:10 +00:00
7331d6c1a7 fix: correct misspelling of 'recieve' to 'receive' in user registration handler error message string 2025-01-27 18:42:04 +00:00
f1bfbad12b fix: correct typo in README shell command from 'echo >' to 'echo' for proper markdown file creation 2025-01-27 18:40:33 +00:00
a0e762c41e fix: add markdown file detection and rendering in TemplateView before template fallback 2025-01-27 18:39:34 +00:00
0ce3bd9353 fix: add missing code block closing backticks in README example section 2025-01-27 18:33:54 +00:00
8378cde372 fix: add missing closing code fence to README example block
The diff adds a closing triple backtick to the Python example in the README, which was previously unterminated and would break markdown rendering of the code block.
2025-01-27 18:33:32 +00:00
46e5d21bc6 fix: switch run command from main.py to dreamii module and remove unused fetch module 2025-01-27 18:32:42 +00:00
5f3ddd15ba chore: add initial Dreamii CMS project scaffold with Jinja2 markdown and Python execution extensions 2025-01-27 18:27:26 +00:00
13cabb826e docs: update README with separate usage and development setup instructions 2025-01-27 17:29:53 +00:00
41d8f46b46 feat: initialize project structure with core application scaffolding
- Create README.md with project description, features, and usage examples
- Set up basic directory layout for template rendering engine
- Define core concepts: markdown-first resolution, dynamic Python support, and CVS integration
2025-01-27 17:25:40 +00:00