| Name | djangocms-timed-publishing JSON | 
            
| Version | 
                  0.2.0
                   
                  JSON | 
            
 | download  | 
            
| home_page | None  | 
            
| Summary | djangocms-versioning extension to time your publications | 
            | upload_time | 2025-08-06 06:18:37 | 
            | maintainer | None | 
            
            | docs_url | None | 
            | author | fsbraun | 
            
            | requires_python | >=3.9 | 
            
            
            | license | BSD 3-Clause License
        
        Copyright (c) 2025, Fabian Braun
        
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:
        
        1. Redistributions of source code must retain the above copyright notice, this
           list of conditions and the following disclaimer.
        
        2. Redistributions in binary form must reproduce the above copyright notice,
           this list of conditions and the following disclaimer in the documentation
           and/or other materials provided with the distribution.
        
        3. Neither the name of the copyright holder nor the names of its
           contributors may be used to endorse or promote products derived from
           this software without specific prior written permission.
        
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
         | 
            | keywords | 
                
                    cms
                
                     django
                
                     djangocms
                
                     publications
                
                     timed
                
                     versioning
                 | 
            | VCS | 
                
                     | 
                
            
            | bugtrack_url | 
                
                 | 
             
            
            | requirements | 
                
                  No requirements were recorded.
                
             | 
            
| Travis-CI | 
                
                   No Travis.
                
             | 
            | coveralls test coverage | 
                
                   No coveralls.
                
             | 
        
        
            
            [](http://badge.fury.io/py/djangocms-timed-publishing)
[](https://codecov.io/gh/fsbraun/djangocms-timed-publishing)
[](https://pypi.org/project/djangocms-timed-publishing/)
[](https://www.djangoproject.com/)
[](https://www.django-cms.org/)
# djangocms-timed-publishing
django CMS Timed Publishing extends django CMS Versioning to allow for planned or limited publication of content:
* New option to publish with beginning and end dates.
  By default this is done from the versioning menu and the "Publish" button does not change behavior.
  The menu brings up a modal allowing to select time limits for the visibility of the to-be-published version:
  Alternatively, with the setting `DJANGOCMS_TIMED_PUBLISHING_BUTTON = True`, the "Publish" button changes
  behavior and always opens the modal to ask for beginning and end dates.
  Publishing from the admin - be it the page tree or the version manager - is not affected.
* Technically, the time limits do not affect the published status but only the visibility. This means, dates on published
  versions cannot be changed any more. You need to create a new draft and publish that to make a change.
* Versioning menu shows pending or expired visibility dates. "pending" is a word for a published version that is
  not yet visible. "expired" is a word for a published version not visible any more:
* "View published" button for PageContents is only offered for pages which are currently visible
  (since otherwise they'll show a 404)
* Pending or expired aliases render empty.

## Installation
1. Install the package using pip:
    ```bash
    pip install git+https://github.com/fsbraun/djangocms-timed-publishing
    ```
2. Add `"djangocms_timed_publishing"` after  `"djangocms_versioning"` to your `INSTALLED_APPS` in `settings.py`:
    ```python
    INSTALLED_APPS = [
         # ...
         "djangocms_versioning",
         "djangocms_timed_publishing",
         # ...
    ]
    ```
3. Run migrations:
    ```bash
    python manage.py migrate
    ```
            
         
        Raw data
        
            {
    "_id": null,
    "home_page": null,
    "name": "djangocms-timed-publishing",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "cms, django, djangocms, publications, timed, versioning",
    "author": "fsbraun",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/61/94/821f2752e0c46dc16397e0b425b1ecb5aadd9d6266a424c34821b3b611cc/djangocms_timed_publishing-0.2.0.tar.gz",
    "platform": null,
    "description": "[](http://badge.fury.io/py/djangocms-timed-publishing)\n[](https://codecov.io/gh/fsbraun/djangocms-timed-publishing)\n[](https://pypi.org/project/djangocms-timed-publishing/)\n[](https://www.djangoproject.com/)\n[](https://www.django-cms.org/)\n\n\n# djangocms-timed-publishing\ndjango CMS Timed Publishing extends django CMS Versioning to allow for planned or limited publication of content:\n\n* New option to publish with beginning and end dates.\n  By default this is done from the versioning menu and the \"Publish\" button does not change behavior.\n  The menu brings up a modal allowing to select time limits for the visibility of the to-be-published version:\n\n  Alternatively, with the setting `DJANGOCMS_TIMED_PUBLISHING_BUTTON = True`, the \"Publish\" button changes\n  behavior and always opens the modal to ask for beginning and end dates.\n\n  Publishing from the admin - be it the page tree or the version manager - is not affected.\n\n* Technically, the time limits do not affect the published status but only the visibility. This means, dates on published\n  versions cannot be changed any more. You need to create a new draft and publish that to make a change.\n\n* Versioning menu shows pending or expired visibility dates. \"pending\" is a word for a published version that is\n  not yet visible. \"expired\" is a word for a published version not visible any more:\n\n* \"View published\" button for PageContents is only offered for pages which are currently visible\n  (since otherwise they'll show a 404)\n\n* Pending or expired aliases render empty.\n\n\n\n\n## Installation\n\n1. Install the package using pip:\n\n    ```bash\n    pip install git+https://github.com/fsbraun/djangocms-timed-publishing\n    ```\n\n2. Add `\"djangocms_timed_publishing\"` after  `\"djangocms_versioning\"` to your `INSTALLED_APPS` in `settings.py`:\n\n    ```python\n    INSTALLED_APPS = [\n         # ...\n         \"djangocms_versioning\",\n         \"djangocms_timed_publishing\",\n         # ...\n    ]\n    ```\n\n3. Run migrations:\n\n    ```bash\n    python manage.py migrate\n    ```\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License\n        \n        Copyright (c) 2025, Fabian Braun\n        \n        Redistribution and use in source and binary forms, with or without\n        modification, are permitted provided that the following conditions are met:\n        \n        1. Redistributions of source code must retain the above copyright notice, this\n           list of conditions and the following disclaimer.\n        \n        2. Redistributions in binary form must reproduce the above copyright notice,\n           this list of conditions and the following disclaimer in the documentation\n           and/or other materials provided with the distribution.\n        \n        3. Neither the name of the copyright holder nor the names of its\n           contributors may be used to endorse or promote products derived from\n           this software without specific prior written permission.\n        \n        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n        ",
    "summary": "djangocms-versioning extension to time your publications",
    "version": "0.2.0",
    "project_urls": {
        "Bug Reports": "https://github.com/fsbraun/djangocms-timed-publishing/issues",
        "Homepage": "https://github.com/fsbraun/djangocms-timed-publishing",
        "Source": "https://github.com/fsbraun/djangocms-timed-publishing"
    },
    "split_keywords": [
        "cms",
        " django",
        " djangocms",
        " publications",
        " timed",
        " versioning"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "981af846ee39bdb18a7d440049430542b69a9dd9cba8bc1cfca443d2ef65f1ae",
                "md5": "b76581845653522e71751130425ecc3c",
                "sha256": "98aa45194a494ba56fa15fe131e60c134678d1f422a19824d2093783c0ce9091"
            },
            "downloads": -1,
            "filename": "djangocms_timed_publishing-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b76581845653522e71751130425ecc3c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 17114,
            "upload_time": "2025-08-06T06:18:36",
            "upload_time_iso_8601": "2025-08-06T06:18:36.421503Z",
            "url": "https://files.pythonhosted.org/packages/98/1a/f846ee39bdb18a7d440049430542b69a9dd9cba8bc1cfca443d2ef65f1ae/djangocms_timed_publishing-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6194821f2752e0c46dc16397e0b425b1ecb5aadd9d6266a424c34821b3b611cc",
                "md5": "20f7e942b0ab56020257f5bffcc29d97",
                "sha256": "8002ffc90a1f5650b47ac28af10217e0371b8cff5db457ecefc77e463f807051"
            },
            "downloads": -1,
            "filename": "djangocms_timed_publishing-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "20f7e942b0ab56020257f5bffcc29d97",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 17578,
            "upload_time": "2025-08-06T06:18:37",
            "upload_time_iso_8601": "2025-08-06T06:18:37.999920Z",
            "url": "https://files.pythonhosted.org/packages/61/94/821f2752e0c46dc16397e0b425b1ecb5aadd9d6266a424c34821b3b611cc/djangocms_timed_publishing-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-06 06:18:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fsbraun",
    "github_project": "djangocms-timed-publishing",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "djangocms-timed-publishing"
}