Event features for Wagtail
Project description
Copyright (c) 2019 Tom Clark
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-----------------------------------------------------------------------------
This software is based on omni-wagtail-events:
MIT License
Copyright (c) 2018 Omni Digital
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
Description: # Wagtail Events [![Build Status](https://travis-ci.com/thclark/wagtail_events.svg?branch=master)](https://travis-ci.com/thclark/wagtail_events)
Events calendar management for wagtail, with tools for filtering by date.
This project is a hard fork of [omni-wagtail-events](http://github.com/omni-digital-omni-wagtail-events), and we owe a
debt of gratitude to those folks for getting us started. So why did I hard-fork (duplicate and start again) rather than
fork from omni-digital?
Well, github keeps the releases of the repo you fork from. Since I want to put this on pypi so it's easily available,
and have control of the release versioning, it needs to be here. Plus, I'm basically about to break *everything* for
django 2.x and wagtail 2.x, so figured that the chances of getting my changes merged into the upstream were nil anyway.
I'm extremely open to collaboration - in fact, I really don't want to be maintaining this (it's only for one client) so
I'm open to transferring ownership or collaboration to anyone who wants to take this on and enhance it. @omni-digital,
this originated as your baby so if you'd like to take back maintenance, please reach out and I'll help you.
## Requirements
Wagtail events requires Django 2.1 or later and Wagtail 2.3 or later.
## Supported Versions
Python: 3.6
Django: 2.1
Wagtail: 2.3
## Getting started
Installing from pip:
```
pip install wagtail_events
```
Adding to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
...
'wagtail_events',
...
]
```
Running the migrations:
```
python manage migrate wagtail_events
```
## Models
### EventIndex
An index/listing page for EventDetail instances, with optional pagination.
### EventDetail
A detail page for an event series, the EventDetail can contain single or multiple EventOccurrence instances.
### EventOccurrence
An single occurrence of an event.
## Future Development Plans:
- EventSingleton: A single event that will only have a single occurrence.
Keywords: wagtail,django,events
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-----------------------------------------------------------------------------
This software is based on omni-wagtail-events:
MIT License
Copyright (c) 2018 Omni Digital
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
Description: # Wagtail Events [![Build Status](https://travis-ci.com/thclark/wagtail_events.svg?branch=master)](https://travis-ci.com/thclark/wagtail_events)
Events calendar management for wagtail, with tools for filtering by date.
This project is a hard fork of [omni-wagtail-events](http://github.com/omni-digital-omni-wagtail-events), and we owe a
debt of gratitude to those folks for getting us started. So why did I hard-fork (duplicate and start again) rather than
fork from omni-digital?
Well, github keeps the releases of the repo you fork from. Since I want to put this on pypi so it's easily available,
and have control of the release versioning, it needs to be here. Plus, I'm basically about to break *everything* for
django 2.x and wagtail 2.x, so figured that the chances of getting my changes merged into the upstream were nil anyway.
I'm extremely open to collaboration - in fact, I really don't want to be maintaining this (it's only for one client) so
I'm open to transferring ownership or collaboration to anyone who wants to take this on and enhance it. @omni-digital,
this originated as your baby so if you'd like to take back maintenance, please reach out and I'll help you.
## Requirements
Wagtail events requires Django 2.1 or later and Wagtail 2.3 or later.
## Supported Versions
Python: 3.6
Django: 2.1
Wagtail: 2.3
## Getting started
Installing from pip:
```
pip install wagtail_events
```
Adding to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
...
'wagtail_events',
...
]
```
Running the migrations:
```
python manage migrate wagtail_events
```
## Models
### EventIndex
An index/listing page for EventDetail instances, with optional pagination.
### EventDetail
A detail page for an event series, the EventDetail can contain single or multiple EventOccurrence instances.
### EventOccurrence
An single occurrence of an event.
## Future Development Plans:
- EventSingleton: A single event that will only have a single occurrence.
Keywords: wagtail,django,events
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wagtail_events-0.0.1.tar.gz
(9.1 kB
view details)
Built Distribution
File details
Details for the file wagtail_events-0.0.1.tar.gz
.
File metadata
- Download URL: wagtail_events-0.0.1.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8eb37b3e24f418006b404606549e85b4c50b874a7393211cd4aebb1aaf1b786e |
|
MD5 | 3f3c3404b23ed77ee4c878d1730880b1 |
|
BLAKE2b-256 | fa9df1419372cb73b0ecb57b6b5ea67bd3fac421011b65bd6e12501924a15274 |
File details
Details for the file wagtail_events-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: wagtail_events-0.0.1-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0abea8141e496d7d9539b54ce16debb640986801165b4edd94dd26dc3337f7e6 |
|
MD5 | 7301972724cb93b8150b2c788f6e34ce |
|
BLAKE2b-256 | aa871e8c4011a541b42efbcb51c33ec17818b1f21a5f5a4a7e7707c2517f7b19 |