summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-django-postman.spec192
-rw-r--r--sources1
3 files changed, 194 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..b167da3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-postman-4.3.1.tar.gz
diff --git a/python-django-postman.spec b/python-django-postman.spec
new file mode 100644
index 0000000..f68c8e8
--- /dev/null
+++ b/python-django-postman.spec
@@ -0,0 +1,192 @@
+%global _empty_manifest_terminate_build 0
+Name: python-django-postman
+Version: 4.3.1
+Release: 1
+Summary: User-to-User messaging system for Django, with gateway to AnonymousUser, moderation and thread management, user & exchange filters, inbox/sent/archives/trash folders, support for apps: auto-complete, notification, mailer.
+License: BSD
+URL: https://bitbucket.org/psam/django-postman
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/df/23/ee33c1a1d5c96ab487e790be665ed926e6e25bf910049661eedbdd584641/django-postman-4.3.1.tar.gz
+BuildArch: noarch
+
+
+%description
+This is an application for `Django <https://www.djangoproject.com>`_-powered websites.
+A list of available translations is maintained in the `Wiki <https://bitbucket.org/psam/django-postman/wiki/>`_.
+Your contribution to the translations is welcomed `here <https://www.transifex.com/psam/django-postman/>`_.
+Basically, the purpose is to allow authenticated users of a site to exchange private **messages**
+within the site. In this documentation, the word *user* is to be understood as an instance of a User,
+in the django.contrib.auth context.
+So it is mainly for a User-to-User exchange.
+But it may be beneficial for a subscriber to receive inquiries from any visitor, ie even if non authenticated.
+For instance, a subscriber as a service provider wants an ask-me-details form on a presentation page
+to facilitate possible business contacts.
+In this case, the visitor is presented a compose message form with an additional field to give
+an email address for the reply. The email is obfuscated to the recipient.
+What is a message ? Roughly a piece of text, about a subject, sent by a sender to a recipient.
+Each user has access to a collection of messages, stored in folders:
+* **Inbox** for incoming messages
+* **Sent** for sent messages
+* **Archives** for archived messages
+* **Trash** for messages marked as deleted
+In folders, messages can be presented in two modes:
+* by **conversation**, for a compact view: the original message and its replies are grouped in a set
+ to constitute one sole entry.
+ The lastest message (based on the time) is the representative of the set.
+* by **message**, for an expanded view: each message is considered by itself.
+Here is a summary of features:
+* A non-User (email is undisclosed) can write to a User and get a reply
+ (can be disabled by configuration)
+* Exchanges can be moderated (with auto-accept and auto-reject plug-ins)
+* Optional recipient filter plug-ins
+* Optional exchange filtering plug-ins (blacklists)
+* Multi-recipient writing is possible (can be disabled by configuration)
+ with min/max constraints
+* Messages are managed by conversations
+* Messages in folders are sortable by sender|recipient|subject|date
+* 'Archives' folder in addition to classic Inbox, Sent and Trash folders
+* A Quick-Reply form to only ask for a response text
+* A cleanup management command to clear the old deleted messages
+It has support for optional additional applications:
+* Autocomplete recipient field (default is 'django-ajax-selects'),
+ with multiple recipient management
+* New message notification (default is `pinax-notifications`_)
+* Asynchronous mailer (default is `django-mailer`_)
+
+%package -n python3-django-postman
+Summary: User-to-User messaging system for Django, with gateway to AnonymousUser, moderation and thread management, user & exchange filters, inbox/sent/archives/trash folders, support for apps: auto-complete, notification, mailer.
+Provides: python-django-postman
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-django-postman
+This is an application for `Django <https://www.djangoproject.com>`_-powered websites.
+A list of available translations is maintained in the `Wiki <https://bitbucket.org/psam/django-postman/wiki/>`_.
+Your contribution to the translations is welcomed `here <https://www.transifex.com/psam/django-postman/>`_.
+Basically, the purpose is to allow authenticated users of a site to exchange private **messages**
+within the site. In this documentation, the word *user* is to be understood as an instance of a User,
+in the django.contrib.auth context.
+So it is mainly for a User-to-User exchange.
+But it may be beneficial for a subscriber to receive inquiries from any visitor, ie even if non authenticated.
+For instance, a subscriber as a service provider wants an ask-me-details form on a presentation page
+to facilitate possible business contacts.
+In this case, the visitor is presented a compose message form with an additional field to give
+an email address for the reply. The email is obfuscated to the recipient.
+What is a message ? Roughly a piece of text, about a subject, sent by a sender to a recipient.
+Each user has access to a collection of messages, stored in folders:
+* **Inbox** for incoming messages
+* **Sent** for sent messages
+* **Archives** for archived messages
+* **Trash** for messages marked as deleted
+In folders, messages can be presented in two modes:
+* by **conversation**, for a compact view: the original message and its replies are grouped in a set
+ to constitute one sole entry.
+ The lastest message (based on the time) is the representative of the set.
+* by **message**, for an expanded view: each message is considered by itself.
+Here is a summary of features:
+* A non-User (email is undisclosed) can write to a User and get a reply
+ (can be disabled by configuration)
+* Exchanges can be moderated (with auto-accept and auto-reject plug-ins)
+* Optional recipient filter plug-ins
+* Optional exchange filtering plug-ins (blacklists)
+* Multi-recipient writing is possible (can be disabled by configuration)
+ with min/max constraints
+* Messages are managed by conversations
+* Messages in folders are sortable by sender|recipient|subject|date
+* 'Archives' folder in addition to classic Inbox, Sent and Trash folders
+* A Quick-Reply form to only ask for a response text
+* A cleanup management command to clear the old deleted messages
+It has support for optional additional applications:
+* Autocomplete recipient field (default is 'django-ajax-selects'),
+ with multiple recipient management
+* New message notification (default is `pinax-notifications`_)
+* Asynchronous mailer (default is `django-mailer`_)
+
+%package help
+Summary: Development documents and examples for django-postman
+Provides: python3-django-postman-doc
+%description help
+This is an application for `Django <https://www.djangoproject.com>`_-powered websites.
+A list of available translations is maintained in the `Wiki <https://bitbucket.org/psam/django-postman/wiki/>`_.
+Your contribution to the translations is welcomed `here <https://www.transifex.com/psam/django-postman/>`_.
+Basically, the purpose is to allow authenticated users of a site to exchange private **messages**
+within the site. In this documentation, the word *user* is to be understood as an instance of a User,
+in the django.contrib.auth context.
+So it is mainly for a User-to-User exchange.
+But it may be beneficial for a subscriber to receive inquiries from any visitor, ie even if non authenticated.
+For instance, a subscriber as a service provider wants an ask-me-details form on a presentation page
+to facilitate possible business contacts.
+In this case, the visitor is presented a compose message form with an additional field to give
+an email address for the reply. The email is obfuscated to the recipient.
+What is a message ? Roughly a piece of text, about a subject, sent by a sender to a recipient.
+Each user has access to a collection of messages, stored in folders:
+* **Inbox** for incoming messages
+* **Sent** for sent messages
+* **Archives** for archived messages
+* **Trash** for messages marked as deleted
+In folders, messages can be presented in two modes:
+* by **conversation**, for a compact view: the original message and its replies are grouped in a set
+ to constitute one sole entry.
+ The lastest message (based on the time) is the representative of the set.
+* by **message**, for an expanded view: each message is considered by itself.
+Here is a summary of features:
+* A non-User (email is undisclosed) can write to a User and get a reply
+ (can be disabled by configuration)
+* Exchanges can be moderated (with auto-accept and auto-reject plug-ins)
+* Optional recipient filter plug-ins
+* Optional exchange filtering plug-ins (blacklists)
+* Multi-recipient writing is possible (can be disabled by configuration)
+ with min/max constraints
+* Messages are managed by conversations
+* Messages in folders are sortable by sender|recipient|subject|date
+* 'Archives' folder in addition to classic Inbox, Sent and Trash folders
+* A Quick-Reply form to only ask for a response text
+* A cleanup management command to clear the old deleted messages
+It has support for optional additional applications:
+* Autocomplete recipient field (default is 'django-ajax-selects'),
+ with multiple recipient management
+* New message notification (default is `pinax-notifications`_)
+* Asynchronous mailer (default is `django-mailer`_)
+
+%prep
+%autosetup -n django-postman-4.3.1
+
+%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-postman -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 4.3.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..7b11aec
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+6786c4a5099eb9d4c5094fa7824eefad django-postman-4.3.1.tar.gz