aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-10-05 20:34:13 +0300
committerYaroslav <contact@yaroslavps.com>2020-10-05 20:34:13 +0300
commit29f65469e0dd4e32bd72d20b69693b7b5358ae92 (patch)
treee3b25636826b3bf02de4ccd58d94352eedb4d349
parent6e28c91c79d5ffd58d7ad244c1976508af9372c8 (diff)
downloadw3blog-29f65469e0dd4e32bd72d20b69693b7b5358ae92.tar.gz
w3blog-29f65469e0dd4e32bd72d20b69693b7b5358ae92.zip
archivalHEADmaster
-rwxr-xr-xREADME.md83
1 files changed, 62 insertions, 21 deletions
diff --git a/README.md b/README.md
index 15b2603..63af538 100755
--- a/README.md
+++ b/README.md
@@ -1,28 +1,56 @@
# w3blog version 0.5 #
-w3blog is a simple blog engine for Django, with some focus on multilingual capabilities. It includes all of the basic features expected of a traditional Web log (also known as blog), as well as multilingual features, i.e. translations of blog posts which are delivered automatically in the user's preferred language using the internationalization capabilities of Django, enabling the possibility of targeting people from different countries in a single blog/site.
-
-This django app is still a work in progress. More features will be added/completed in the near future. Currently the app's strings are translated only to English (en), Russian (ru), and Spanish (es).
-
-To install, run "pip install w3blog". Currently tested to be compatible with Django 1.11 and 2.0.
+**This project is no longer maintained:** This project has been archived since
+it's been a long time since I have used it, and this is no longer the way I like
+to do things. If you are interested in reading what I found to be a better way
+to do blogs, you can read my thoughts on that here:
+https://www.yaroslavps.com/weblog/website-refactor/
+
+w3blog is a simple blog engine for Django, with some focus on multilingual
+capabilities. It includes all of the basic features expected of a traditional
+Web log (also known as blog), as well as multilingual features, i.e.
+translations of blog posts which are delivered automatically in the user's
+preferred language using the internationalization capabilities of Django,
+enabling the possibility of targeting people from different countries in a
+single blog/site.
+
+This django app is still a work in progress. More features will be
+added/completed in the near future. Currently the app's strings are translated
+only to English (en), Russian (ru), and Spanish (es).
+
+To install, run "pip install w3blog". Currently tested to be compatible with
+Django 1.11 and 2.0.
## New in v0.5 ##
-CSS and JS have been completely reworked to get rid of bloat (ie Bootstrap and JQuery), and provide a much nicer default look. Besides those improvements, new features include:
-
-* An option to enable built-in dynamic load of more posts through ajax instead of the default good old pagination model. ('dynamic_load' = True).
-* An option to use infinite scroll for dynamic load (more posts load automatically when scrolling to the bottom; "'dynamic_load' = True" and "'infinite_load' = True").
-* Option to make the sidebar float (only for medium/big screen sizes) ('floating_sidebar' = True).
-* Comments now include the date they were published (for some reason forgot to add that on previous versions).
-
-If you encounter any errors or problems when using this Django app, please do make sure to open an issue on this project's Github page, or if you don't have Github account (and don't wish to create one), send me an email at contact@yaroslavps.com. Note: if you are using something like outlook (or any other big company email) my response email might end up in your spam folder or might be even blocked altogether by your email provider.
+CSS and JS have been completely reworked to get rid of bloat (ie Bootstrap and
+JQuery), and provide a much nicer default look. Besides those improvements, new
+features include:
+
+* An option to enable built-in dynamic load of more posts through ajax instead
+ of the default good old pagination model. ('dynamic_load' = True).
+* An option to use infinite scroll for dynamic load (more posts load
+ automatically when scrolling to the bottom; "'dynamic_load' = True" and
+ "'infinite_load' = True").
+* Option to make the sidebar float (only for medium/big screen sizes)
+ ('floating_sidebar' = True).
+* Comments now include the date they were published (for some reason forgot to
+ add that on previous versions).
+
+If you encounter any errors or problems when using this Django app, please do
+make sure to open an issue on this project's Github page, or if you don't have
+Github account (and don't wish to create one), send me an email at
+contact@yaroslavps.com. Note: if you are using something like outlook (or any
+other big company email) my response email might end up in your spam folder or
+might be even blocked altogether by your email provider.
### Quick Start ###
1. Add "weblog" to your INSTALLED_APPS setting in your settings.py
-2. Include the app as well as django-summernote in your project's urls.py; for example:
+2. Include the app as well as django-summernote in your project's urls.py; for
+example:
```python
url(r'^blog/', include('weblog.urls')),
@@ -31,7 +59,8 @@ url(r'^summernote/', include('django_summernote.urls')),
3. Migrate the models to the database by running "python manage.py migrate".
-4. You can configure and customize the blog by adding and modifying to your liking/needs the following settings to your settings.py:
+4. You can configure and customize the blog by adding and modifying to your
+ liking/needs the following settings to your settings.py:
```python
WEBLOG_SETTINGS = {
@@ -54,16 +83,28 @@ WEBLOG_SETTINGS = {
}
```
-5. Note that if you use your own base template, you will need to link "weblog/css/weblog.css" and "weblog/js/weblog.js" in your html head. Alternatively you can write your own custom css (or even js), or just extend the default css and js with your own. For reference you can check the project's templates and css in its Github page, especially if you want to rewrite completely the templates with your own.
+5. Note that if you use your own base template, you will need to link
+ "weblog/css/weblog.css" and "weblog/js/weblog.js" in your html head.
+ Alternatively you can write your own custom css (or even js), or just extend
+ the default css and js with your own. For reference you can check the
+ project's templates and css in its Github page, especially if you want to
+ rewrite completely the templates with your own.
-Read more about it here: https://www.yaroslavps.com/weblog/python/w3blog-blog-engine/
+Read more about it here:
+https://www.yaroslavps.com/weblog/python/w3blog-blog-engine/
-Note: This package depends on the following python packages (besides Django and their dependencies): django-summernote
+Note: This package depends on the following python packages (besides Django and
+their dependencies): django-summernote
-This project was previously named django-weblog, however, I had to renamed it due to there being an existing package with the same name in PyPI.
+This project was previously named django-weblog, however, I had to renamed it
+due to there being an existing package with the same name in PyPI.
### Changelog ###
-You can view a short summary of changes for each release in the releases section of the project's page on Github.
+You can view a short summary of changes for each release in the releases section
+of the project's page on Github.
-Note: If you had already made migrations by yourself for this app before version 0.5.2, you might notice that django is telling you that there are new unapplied migrations. Apply them as you usually would, and if a "Programming Error: column "x" exists in..." happens, run "python manage.py migrate --fake weblog".
+Note: If you had already made migrations by yourself for this app before version
+0.5.2, you might notice that django is telling you that there are new unapplied
+migrations. Apply them as you usually would, and if a "Programming Error: column
+"x" exists in..." happens, run "python manage.py migrate --fake weblog".