diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-31 08:11:10 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-31 08:11:10 +0000 |
commit | b2ad036cc2c6dcd5496999604f8780d20998bf28 (patch) | |
tree | 38be591cad6c758c878c6561ea45be1578cdaebe | |
parent | ad18845f3fa5a038b4dab94e0329109b59b1f4bf (diff) |
automatic import of python-django-joplin-vieweb
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-django-joplin-vieweb.spec | 485 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 487 insertions, 0 deletions
@@ -0,0 +1 @@ +/django-joplin_vieweb-1.17.0.tar.gz diff --git a/python-django-joplin-vieweb.spec b/python-django-joplin-vieweb.spec new file mode 100644 index 0000000..2ec98c6 --- /dev/null +++ b/python-django-joplin-vieweb.spec @@ -0,0 +1,485 @@ +%global _empty_manifest_terminate_build 0 +Name: python-django-joplin-vieweb +Version: 1.17.0 +Release: 1 +Summary: A Django app to view your Joplin notes online. +License: MIT License +URL: https://github.com/gri38/django-joplin_vieweb +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/79/1e/3526d3140c152b8d36108738ebe5afb95760962a6ba3ece6f0eb120b4b8f/django-joplin_vieweb-1.17.0.tar.gz +BuildArch: noarch + +Requires: python3-Django +Requires: python3-httpx +Requires: python3-Markdown +Requires: python3-Pygments +Requires: python3-beautifulsoup4 +Requires: python3-pymdown-extensions +Requires: python3-hyperlink-preview +Requires: python3-joppy + +%description +# joplin-vieweb +A simple web viewer for Joplin app +[View on github](https://github.com/gri38/django-joplin_vieweb) + +## Purpose +I'm going to use Joplin as a notes application (instead of OneNote). +It's a long time I wanted for something like Joplin: opensource, not coupled to a web giant, and without illimited storage: storage has a price, we should pay for it. + +This quick dev is to provide an **online view of my Joplin notes**. +It's running on a "Django server", running beside a configured & running [Joplin terminal app](https://joplinapp.org/terminal/). + +## A screenshot + + + +## Features and not(-yet?) features +### Yes it does ❤ +- Protect joplin-vieweb access by login +- Display notebooks, and notes + - images + - attachments +- code syntax highlight +- Add a table of content if note contains headers +- Display tags, and notes linked. +- Joplin sync: + -  + - Background periodic joplin sync + - Manual trigged sync, with notebooks and tag refresh +- Public link if note has ***public*** tag + +- Option to number (or not) header in notes: + +- Tag edition: add / remove / create tags in notes: + +Once tags edited, a little reminder not to forget to synchronize Joplin: + +- Checkbox list changes can be saved to notes. See [this release note](https://github.com/gri38/django-joplin_vieweb/releases/tag/v1.9). +- Note edition / deletion, with support of image paste, and image / attachment drag&drop. + + + + +- Note creation + +- Notebook edition: create / rename / delete + +- Notes history: list of the latest notes consulted, to be able to open them quickly, or pin them: + +- Tabs in notes (not displayed in joplin applications). Syntax here. + +- Hyperlink preview in notes, on mouse hover: + + + +### No it doesn't (yet?) 💔 +- Sort notebooks nor notes +- Move note or notebook from one notebook to another. +- No specific handling for todos. +- Search for notes or tags + +## Installation, configuration +1. Install [Joplin terminal](https://joplinapp.org/terminal/). +Configure it and start it. + +2. Install joplin-vieweb with `pip install django-joplin-vieweb` + +3. Create a django project and configure it: + +4. Add "joplin_vieweb" to your INSTALLED_APPS settings.py like this: + ``` + INSTALLED_APPS = [ + ... + 'joplin_vieweb', + ... + ] + ``` +5. Add some variable in your project settings.py: + ``` + # Joplin variables + JOPLIN_SERVER_URL="http://127.0.0.1" + JOPLIN_SERVER_PORT=41184 + JOPLIN_SERVER_TOKEN="1234567890987654321" + JOPLIN_RESSOURCES_PATH="/home/pi/.config/joplin/resources/" + JOPLIN_LOGIN_REQUIRED=True # set to True only if you require a logged user for accessing the notes + JOPLIN_SYNC_PERIOD_S=86400 # once a day + JOPLIN_SYNC_INFO_FILE="/home/pi/.config/joplin/joplin_vieweb_sync_info" + JOPLIN_NOTES_HISTORY_DEPTH = 10 + ``` +6. If you set JOPLIN_LOGIN_REQUIRED=True + 1. ```python manage.py migrate``` + 2. ```python manage.py createsuperuser``` + 3. Add the 'accounts/' path in urls.py (see next point) + +7. Include the joplin_vieweb URLconf in your project urls.py like this: + ``` + path('joplin/', include('joplin_vieweb.urls')), + path('accounts/', include('django.contrib.auth.urls')), # only if JOPLIN_LOGIN_REQUIRED=True + ``` + +8. Start the development server and visit + http://127.0.0.1:8000/joplin + +## More advanced guides +[Read here the step-by-step full install: joplin-vieweb with daphne with nginx with TLS with Let's Encrypt.](https://github.com/gri38/django-joplin_vieweb/wiki/Server-configuration) + +## Why not joplin-web? +I tried for some hours to make it run. The master branch was easy to setup, but work is still in progress. +And the full featured "vuejs" branch: I just didn't succeed to set it up (neither with node nor with docker).... probably a matter of versions with my raspberry distribution. +➡ I decided to do my simple own product, for my simple need: view my notes online. +Thanks for joplin-api that helped me ! + +## For dev: how to setup a dev server around this "package" +Execute script setup_dev_env.sh +Then: check joplin ressource path in dev_server/dev_server/settings.py (STATICFILES_DIRS), and ALLOWED_HOSTS. +If you choose `JOPLIN_LOGIN_REQUIRED=True`, then: :add +```python +urlpatterns = [ + ... + path('accounts/', include('django.contrib.auth.urls')), +] +``` + +Then: +``` +. venv/bin/activate +cd dev_server +python manage.py migrate +python manage.py createsuperuser +python manage.py runserver 0:8000 +``` + +## Thanks to azure for free domain name +[](https://www.azote.org/) + + + + +%package -n python3-django-joplin-vieweb +Summary: A Django app to view your Joplin notes online. +Provides: python-django-joplin-vieweb +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-django-joplin-vieweb +# joplin-vieweb +A simple web viewer for Joplin app +[View on github](https://github.com/gri38/django-joplin_vieweb) + +## Purpose +I'm going to use Joplin as a notes application (instead of OneNote). +It's a long time I wanted for something like Joplin: opensource, not coupled to a web giant, and without illimited storage: storage has a price, we should pay for it. + +This quick dev is to provide an **online view of my Joplin notes**. +It's running on a "Django server", running beside a configured & running [Joplin terminal app](https://joplinapp.org/terminal/). + +## A screenshot + + + +## Features and not(-yet?) features +### Yes it does ❤ +- Protect joplin-vieweb access by login +- Display notebooks, and notes + - images + - attachments +- code syntax highlight +- Add a table of content if note contains headers +- Display tags, and notes linked. +- Joplin sync: + -  + - Background periodic joplin sync + - Manual trigged sync, with notebooks and tag refresh +- Public link if note has ***public*** tag + +- Option to number (or not) header in notes: + +- Tag edition: add / remove / create tags in notes: + +Once tags edited, a little reminder not to forget to synchronize Joplin: + +- Checkbox list changes can be saved to notes. See [this release note](https://github.com/gri38/django-joplin_vieweb/releases/tag/v1.9). +- Note edition / deletion, with support of image paste, and image / attachment drag&drop. + + + + +- Note creation + +- Notebook edition: create / rename / delete + +- Notes history: list of the latest notes consulted, to be able to open them quickly, or pin them: + +- Tabs in notes (not displayed in joplin applications). Syntax here. + +- Hyperlink preview in notes, on mouse hover: + + + +### No it doesn't (yet?) 💔 +- Sort notebooks nor notes +- Move note or notebook from one notebook to another. +- No specific handling for todos. +- Search for notes or tags + +## Installation, configuration +1. Install [Joplin terminal](https://joplinapp.org/terminal/). +Configure it and start it. + +2. Install joplin-vieweb with `pip install django-joplin-vieweb` + +3. Create a django project and configure it: + +4. Add "joplin_vieweb" to your INSTALLED_APPS settings.py like this: + ``` + INSTALLED_APPS = [ + ... + 'joplin_vieweb', + ... + ] + ``` +5. Add some variable in your project settings.py: + ``` + # Joplin variables + JOPLIN_SERVER_URL="http://127.0.0.1" + JOPLIN_SERVER_PORT=41184 + JOPLIN_SERVER_TOKEN="1234567890987654321" + JOPLIN_RESSOURCES_PATH="/home/pi/.config/joplin/resources/" + JOPLIN_LOGIN_REQUIRED=True # set to True only if you require a logged user for accessing the notes + JOPLIN_SYNC_PERIOD_S=86400 # once a day + JOPLIN_SYNC_INFO_FILE="/home/pi/.config/joplin/joplin_vieweb_sync_info" + JOPLIN_NOTES_HISTORY_DEPTH = 10 + ``` +6. If you set JOPLIN_LOGIN_REQUIRED=True + 1. ```python manage.py migrate``` + 2. ```python manage.py createsuperuser``` + 3. Add the 'accounts/' path in urls.py (see next point) + +7. Include the joplin_vieweb URLconf in your project urls.py like this: + ``` + path('joplin/', include('joplin_vieweb.urls')), + path('accounts/', include('django.contrib.auth.urls')), # only if JOPLIN_LOGIN_REQUIRED=True + ``` + +8. Start the development server and visit + http://127.0.0.1:8000/joplin + +## More advanced guides +[Read here the step-by-step full install: joplin-vieweb with daphne with nginx with TLS with Let's Encrypt.](https://github.com/gri38/django-joplin_vieweb/wiki/Server-configuration) + +## Why not joplin-web? +I tried for some hours to make it run. The master branch was easy to setup, but work is still in progress. +And the full featured "vuejs" branch: I just didn't succeed to set it up (neither with node nor with docker).... probably a matter of versions with my raspberry distribution. +➡ I decided to do my simple own product, for my simple need: view my notes online. +Thanks for joplin-api that helped me ! + +## For dev: how to setup a dev server around this "package" +Execute script setup_dev_env.sh +Then: check joplin ressource path in dev_server/dev_server/settings.py (STATICFILES_DIRS), and ALLOWED_HOSTS. +If you choose `JOPLIN_LOGIN_REQUIRED=True`, then: :add +```python +urlpatterns = [ + ... + path('accounts/', include('django.contrib.auth.urls')), +] +``` + +Then: +``` +. venv/bin/activate +cd dev_server +python manage.py migrate +python manage.py createsuperuser +python manage.py runserver 0:8000 +``` + +## Thanks to azure for free domain name +[](https://www.azote.org/) + + + + +%package help +Summary: Development documents and examples for django-joplin-vieweb +Provides: python3-django-joplin-vieweb-doc +%description help +# joplin-vieweb +A simple web viewer for Joplin app +[View on github](https://github.com/gri38/django-joplin_vieweb) + +## Purpose +I'm going to use Joplin as a notes application (instead of OneNote). +It's a long time I wanted for something like Joplin: opensource, not coupled to a web giant, and without illimited storage: storage has a price, we should pay for it. + +This quick dev is to provide an **online view of my Joplin notes**. +It's running on a "Django server", running beside a configured & running [Joplin terminal app](https://joplinapp.org/terminal/). + +## A screenshot + + + +## Features and not(-yet?) features +### Yes it does ❤ +- Protect joplin-vieweb access by login +- Display notebooks, and notes + - images + - attachments +- code syntax highlight +- Add a table of content if note contains headers +- Display tags, and notes linked. +- Joplin sync: + -  + - Background periodic joplin sync + - Manual trigged sync, with notebooks and tag refresh +- Public link if note has ***public*** tag + +- Option to number (or not) header in notes: + +- Tag edition: add / remove / create tags in notes: + +Once tags edited, a little reminder not to forget to synchronize Joplin: + +- Checkbox list changes can be saved to notes. See [this release note](https://github.com/gri38/django-joplin_vieweb/releases/tag/v1.9). +- Note edition / deletion, with support of image paste, and image / attachment drag&drop. + + + + +- Note creation + +- Notebook edition: create / rename / delete + +- Notes history: list of the latest notes consulted, to be able to open them quickly, or pin them: + +- Tabs in notes (not displayed in joplin applications). Syntax here. + +- Hyperlink preview in notes, on mouse hover: + + + +### No it doesn't (yet?) 💔 +- Sort notebooks nor notes +- Move note or notebook from one notebook to another. +- No specific handling for todos. +- Search for notes or tags + +## Installation, configuration +1. Install [Joplin terminal](https://joplinapp.org/terminal/). +Configure it and start it. + +2. Install joplin-vieweb with `pip install django-joplin-vieweb` + +3. Create a django project and configure it: + +4. Add "joplin_vieweb" to your INSTALLED_APPS settings.py like this: + ``` + INSTALLED_APPS = [ + ... + 'joplin_vieweb', + ... + ] + ``` +5. Add some variable in your project settings.py: + ``` + # Joplin variables + JOPLIN_SERVER_URL="http://127.0.0.1" + JOPLIN_SERVER_PORT=41184 + JOPLIN_SERVER_TOKEN="1234567890987654321" + JOPLIN_RESSOURCES_PATH="/home/pi/.config/joplin/resources/" + JOPLIN_LOGIN_REQUIRED=True # set to True only if you require a logged user for accessing the notes + JOPLIN_SYNC_PERIOD_S=86400 # once a day + JOPLIN_SYNC_INFO_FILE="/home/pi/.config/joplin/joplin_vieweb_sync_info" + JOPLIN_NOTES_HISTORY_DEPTH = 10 + ``` +6. If you set JOPLIN_LOGIN_REQUIRED=True + 1. ```python manage.py migrate``` + 2. ```python manage.py createsuperuser``` + 3. Add the 'accounts/' path in urls.py (see next point) + +7. Include the joplin_vieweb URLconf in your project urls.py like this: + ``` + path('joplin/', include('joplin_vieweb.urls')), + path('accounts/', include('django.contrib.auth.urls')), # only if JOPLIN_LOGIN_REQUIRED=True + ``` + +8. Start the development server and visit + http://127.0.0.1:8000/joplin + +## More advanced guides +[Read here the step-by-step full install: joplin-vieweb with daphne with nginx with TLS with Let's Encrypt.](https://github.com/gri38/django-joplin_vieweb/wiki/Server-configuration) + +## Why not joplin-web? +I tried for some hours to make it run. The master branch was easy to setup, but work is still in progress. +And the full featured "vuejs" branch: I just didn't succeed to set it up (neither with node nor with docker).... probably a matter of versions with my raspberry distribution. +➡ I decided to do my simple own product, for my simple need: view my notes online. +Thanks for joplin-api that helped me ! + +## For dev: how to setup a dev server around this "package" +Execute script setup_dev_env.sh +Then: check joplin ressource path in dev_server/dev_server/settings.py (STATICFILES_DIRS), and ALLOWED_HOSTS. +If you choose `JOPLIN_LOGIN_REQUIRED=True`, then: :add +```python +urlpatterns = [ + ... + path('accounts/', include('django.contrib.auth.urls')), +] +``` + +Then: +``` +. venv/bin/activate +cd dev_server +python manage.py migrate +python manage.py createsuperuser +python manage.py runserver 0:8000 +``` + +## Thanks to azure for free domain name +[](https://www.azote.org/) + + + + +%prep +%autosetup -n django-joplin-vieweb-1.17.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-django-joplin-vieweb -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.17.0-1 +- Package Spec generated @@ -0,0 +1 @@ +d50ce3c1690d1dbbd15434636ae4e9df django-joplin_vieweb-1.17.0.tar.gz |