<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ezcms.git/templates, branch master</title>
<subtitle>Basic flask app I made to serve mjfer.net
</subtitle>
<id>https://git.mjfer.net/ezcms.git/atom?h=master</id>
<link rel='self' href='https://git.mjfer.net/ezcms.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/'/>
<updated>2022-03-13T19:21:11Z</updated>
<entry>
<title>Pull changes from mjfer.net</title>
<updated>2022-03-13T19:21:11Z</updated>
<author>
<name>mjfernez</name>
<email>mjf@mjfer.net</email>
</author>
<published>2022-03-13T19:21:11Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=94f71d6f8fc7301dfd470ccf2fee27e078321a78'/>
<id>urn:sha1:94f71d6f8fc7301dfd470ccf2fee27e078321a78</id>
<content type='text'>
This commit adds the changes from the mjfer.net which enable using git
as the file last update tracker
</content>
</entry>
<entry>
<title>Remove site as the parent directory, manual merge</title>
<updated>2021-12-22T21:59:15Z</updated>
<author>
<name>mjfernez</name>
<email>mjf@mjfer.net</email>
</author>
<published>2021-12-22T21:59:15Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=283654d9a0d644ec3cd6e9c06898f11ac8effa78'/>
<id>urn:sha1:283654d9a0d644ec3cd6e9c06898f11ac8effa78</id>
<content type='text'>
merges needed changes (and CSS) from mjfer.net branch
</content>
</entry>
<entry>
<title>Optimize mobile CSS. Add last update time default</title>
<updated>2021-11-02T03:56:07Z</updated>
<author>
<name>mjfernez</name>
<email>mjf@mjfer.net</email>
</author>
<published>2021-11-02T03:56:07Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=ec6feec81ebab89dc6779027649b1ce517042d22'/>
<id>urn:sha1:ec6feec81ebab89dc6779027649b1ce517042d22</id>
<content type='text'>
This commit optimizes the mobile and web css to be responsive on zoom
(in supported browsers) and responsive on mobile screens. This is a
minimal optimization and lot can be done to improve it, particularly
for wider screen devices like tablets

This also adds the last update time to all views (except home).
Function logic was moved to view functions to support this and
rss_generator was changed to depend on it
</content>
</entry>
<entry>
<title>Link to rss image rather than use from static</title>
<updated>2021-10-15T23:33:25Z</updated>
<author>
<name>mjfernez</name>
<email>mjfernez@gmail.com</email>
</author>
<published>2021-10-15T23:33:25Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=a7f3d566db39af447f45ba221427094e376ae076'/>
<id>urn:sha1:a7f3d566db39af447f45ba221427094e376ae076</id>
<content type='text'>
This is mostly to avoid license conflicts, I doubt it matters, but would
rather be sure.
</content>
</entry>
<entry>
<title>Adds RSS auto-generation for files in 'site'</title>
<updated>2021-10-15T00:14:53Z</updated>
<author>
<name>mjfernez</name>
<email>mjfernez@gmail.com</email>
</author>
<published>2021-10-15T00:14:53Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=c583a69362f86fcc8e1b35a45a06dd8377d6308f'/>
<id>urn:sha1:c583a69362f86fcc8e1b35a45a06dd8377d6308f</id>
<content type='text'>
This commit adds rss_generator.py which contains the main logic for
indexing the site directory and generating a feed on startup. It serves
as a sort of ad-hoc database which is accessed when /feed.xml is
requested.

Also corrects various typos, README nonsense, and expands the config
options for RSS. Instances of './templates/site' have been replaced with
the general BASE_DIR variable in the siteconfig.
</content>
</entry>
<entry>
<title>.description is now rendered as html</title>
<updated>2021-06-17T04:28:18Z</updated>
<author>
<name>mjfernez</name>
<email>mjfernez@gmail.com</email>
</author>
<published>2021-06-17T04:25:03Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=4972877f8ef0e0e3664d3dd0edd651107ddc026f'/>
<id>urn:sha1:4972877f8ef0e0e3664d3dd0edd651107ddc026f</id>
<content type='text'>
.description was previously read as a text file, but this is cumbersome
and limits the user. This allows the user to embed html in their
.description files by adding the "cur_path" variable to context.
'index.html' has been updated to render the template located in cur_path
if a description file exists
</content>
</entry>
<entry>
<title>Changed / to /site, added views.py, README amended</title>
<updated>2021-06-16T04:12:00Z</updated>
<author>
<name>mjfernez</name>
<email>mjfernez@gmail.com</email>
</author>
<published>2021-06-16T03:28:40Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=945594509e6a19ab0229e9949691e2f7652ea500'/>
<id>urn:sha1:945594509e6a19ab0229e9949691e2f7652ea500</id>
<content type='text'>
Previously this program served files in the 'templates/site' dir on '/',
but this caused problems when accessing raw files using '/raw/' which is
useful for embedding or quickly downloading content. It's also an
inconvenience to the user, since they have to add a word rather than
double-clicking an replacing it.

The main server file and the base and index templates have been changed
to reflect this.

The codebase has been reorganized to separate views from the main flask
app. Blueprints were avoided since only one blueprint would be needed so
thus unnecessary.

README and docstrings were also expanded for clarity and edited for
errors.

Some comments
</content>
</entry>
<entry>
<title>Added markdown to default mime types</title>
<updated>2021-06-09T23:04:58Z</updated>
<author>
<name>mjfernez</name>
<email>mjfernez@gmail.com</email>
</author>
<published>2021-06-09T23:04:58Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=3ba991bedda7ac3d2e090bfa9bd9d254ee285ae6'/>
<id>urn:sha1:3ba991bedda7ac3d2e090bfa9bd9d254ee285ae6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Force UTF-8 encoding</title>
<updated>2021-06-09T22:56:47Z</updated>
<author>
<name>mjfernez</name>
<email>mjfernez@gmail.com</email>
</author>
<published>2021-06-09T22:56:20Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=e9d152560dcd807fa76390942a0e38b362e0ec89'/>
<id>urn:sha1:e9d152560dcd807fa76390942a0e38b362e0ec89</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove swap files</title>
<updated>2021-06-08T15:22:21Z</updated>
<author>
<name>mjfernez</name>
<email>mjfernez@gmail.com</email>
</author>
<published>2021-06-08T15:22:21Z</published>
<link rel='alternate' type='text/html' href='https://git.mjfer.net/ezcms.git/commit/?id=37675f4b8d11ee66650c63ae1f33089fc8aa2740'/>
<id>urn:sha1:37675f4b8d11ee66650c63ae1f33089fc8aa2740</id>
<content type='text'>
</content>
</entry>
</feed>
