{ "info": { "author": "Michael F. Covington", "author_email": "mfcovington@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.7", "Framework :: Django :: 1.8", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3 :: Only", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "*********************\ndjangocms-lab-members\n*********************\n\n``djangocms-lab-members`` is a Django app to extend ``django-lab-members`` with django CMS-specific features.\n\nSource code is available on GitHub at `mfcovington/djangocms-lab-members `_. Information about and source code for ``django-lab-members`` is available on GitHub at `mfcovington/django-lab-members `_.\n\n\n.. contents:: :local:\n\n\nInstallation\n============\n\n**PyPI**\n\n.. code-block:: sh\n\n pip install djangocms-lab-members\n\n\n**GitHub (development branch)**\n\n.. code-block:: sh\n\n pip install git+http://github.com/mfcovington/djangocms-lab-members.git@develop\n\n\nConfiguration\n=============\n\n- Ignore instructions for `django-lab-members `_, the non-django CMS app that this app extends.\n\n\n- `Install django CMS and start a project `_, if one doesn't already exist.\n\n\n- Unless you use this app as part of `djangocms-lab-site `_ or plan to style the app from scratch, you will want to choose the ``Use Twitter Bootstrap Theme`` option (when running ``djangocms``) and then edit the resulting ``templates/base.html``.\n\n - This will add style that looks like Bootstrap 2. To use Bootstrap 3 styling, remove the following line for the ``bootstrap-theme.min.css`` stylesheet from ``templates/base.html``:\n\n .. code-block:: python\n\n \n\n - The default menu settings for django CMS using Bootstrap will allow the user to access specific lab members via a dropdown menu, but will not give easy access to the summary page of all lab member. To fix this do one of the following:\n\n - In ``templates/base.html``, change ``{% show_menu 0 1 100 100 \"menu.html\" %}`` to ``{% show_menu 0 0 100 100 \"menu.html\" %}``, or\n\n - Use a split button dropdowns by changing that line to `{% show_menu 0 100 1 1 '_menu.html' %}` and populate `_menu.html` as done in `djangocms-lab-site `_.\n\n\n- Edit the project's ``settings.py`` file.\n\n - Add ``cms_lab_members`` and its dependencies to your ``INSTALLED_APPS`` setting:\n\n .. code-block:: python\n\n INSTALLED_APPS = (\n # ...\n 'cms_lab_members',\n 'cms_lab_publications',\n 'easy_thumbnails',\n 'filer',\n 'friendlytagloader',\n 'lab_members',\n 'taggit',\n )\n\n\n - Add ``easy_thumbnail`` settings: \n\n .. code-block:: python\n\n # For easy_thumbnails to support retina displays (recent MacBooks, iOS)\n THUMBNAIL_HIGH_RESOLUTION = True\n THUMBNAIL_QUALITY = 95\n THUMBNAIL_PROCESSORS = (\n 'easy_thumbnails.processors.colorspace',\n 'easy_thumbnails.processors.autocrop',\n 'filer.thumbnail_processors.scale_and_crop_with_subject_location',\n 'easy_thumbnails.processors.filters',\n )\n THUMBNAIL_PRESERVE_EXTENSIONS = ('png', 'gif')\n THUMBNAIL_SUBDIR = 'versions'\n\n\n - Pre-populate placeholder content for research/personal interests and sidebar:\n\n .. code-block:: python\n\n # Pre-populate placeholder content\n CMS_PLACEHOLDER_CONF = {\n # ...\n 'research interests': {\n 'default_plugins': [\n {\n 'plugin_type': 'TextPlugin',\n 'values': {\n 'body':\"

[Enter 'Edit Mode' and double-click here to add your research interests.]

\",\n },\n },\n ],\n },\n 'personal interests': {\n 'default_plugins': [\n {\n 'plugin_type': 'TextPlugin',\n 'values': {\n 'body':\"

[Enter 'Edit Mode' and double-click here to add your personal interests.]

\",\n },\n },\n ],\n },\n 'scientist sidebar': {\n 'default_plugins': [\n {\n 'plugin_type': 'TextPlugin',\n 'values': {\n 'body':\"

[Enter 'Edit Mode' and double-click here to add sidebar content.]

\",\n },\n },\n ],\n },\n }\n\n\nMigrations\n==========\n\nCreate and perform migrations for ``cms_lab_members`` and its dependencies:\n\n.. code-block:: sh\n\n python manage.py makemigrations cms_lab_members\n python manage.py makemigrations lab_members\n python manage.py makemigrations cms_lab_publications\n python manage.py migrate\n\n\nUsage\n=====\n\n- Start the development server:\n\n.. code-block:: sh\n\n python manage.py runserver\n\n\n- Visit: ``http://127.0.0.1:8000/``\n- Create a CMS page.\n- Attach the ``Lab Members App`` under ``Advanced Settings`` for the page.\n\n\n*Version 0.2.0*\n\n\nRevision History\n================\n\n0.2.0 2015-11-10\n\n- Add alumni fieldset to admin\n\n - This bumps ``djangocms-lab-members`` requirement to version ``0.3.0``\n\n- Add instructions to double-click placeholders when editing\n- Update README with more complete and accurate instructions\n- Prepare for distribution via PyPI\n\n\n0.1.5 2015-05-08\n\n- Add ``Lab Alumni`` node to dropdown menu\n- Update README to pre-populate placeholder content via settings\n- Minor behind-the-scenes improvements\n\n\n0.1.4 2015-05-01\n\n- Limit dropdown menu to current lab members\n\n\n0.1.3 2015-04-21\n\n- Subclass ``PlaceholderAdminMixin`` from ``CMSScientistAdmin`` to provide admin support\n\n\n0.1.2 2015-04-19\n\n- Group CMS plugin under ``Lab Plugins`` module\n\n\n0.1.1 2015-04-13\n\n- Customize ``Scientist`` plugin style\n\n\n0.1.0 2015-04-10\n\n- A Django app to extend ``django-lab-members`` with django CMS-specific features", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/mfcovington/djangocms-lab-members", "keywords": null, "license": "BSD License", "maintainer": null, "maintainer_email": null, "name": "djangocms-lab-members", "package_url": "https://pypi.org/project/djangocms-lab-members/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/djangocms-lab-members/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/mfcovington/djangocms-lab-members" }, "release_url": "https://pypi.org/project/djangocms-lab-members/0.2.0/", "requires_dist": null, "requires_python": null, "summary": "A Django app to extend django-lab-members with django CMS-specific features", "version": "0.2.0" }, "last_serial": 1849410, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "d7f887e8a9fa07eb319071b8eeb02b5e", "sha256": "334873e1e7dc64489282f9d359711ff24db128e9dedaa4961d0fbce53be4a262" }, "downloads": -1, "filename": "djangocms_lab_members-0.2.0-py32-none-any.whl", "has_sig": false, "md5_digest": "d7f887e8a9fa07eb319071b8eeb02b5e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11542, "upload_time": "2015-11-10T10:17:42", "url": "https://files.pythonhosted.org/packages/97/dd/48c294e130f891f3264ab0f3d6ebe01e956571ba2938ff48e24539b4e5eb/djangocms_lab_members-0.2.0-py32-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1fc6ef2579dcb9dee2bd500be4f3056e", "sha256": "555ab8e1c0a2355be9c44c826262ed6352460e9030e8aeb68a2015a1468eae85" }, "downloads": -1, "filename": "djangocms-lab-members-0.2.0.tar.gz", "has_sig": false, "md5_digest": "1fc6ef2579dcb9dee2bd500be4f3056e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7630, "upload_time": "2015-11-10T10:15:57", "url": "https://files.pythonhosted.org/packages/87/a8/c658c1a85838ac93fb6022d2da8944614c8764858a5622390dfd80552c59/djangocms-lab-members-0.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d7f887e8a9fa07eb319071b8eeb02b5e", "sha256": "334873e1e7dc64489282f9d359711ff24db128e9dedaa4961d0fbce53be4a262" }, "downloads": -1, "filename": "djangocms_lab_members-0.2.0-py32-none-any.whl", "has_sig": false, "md5_digest": "d7f887e8a9fa07eb319071b8eeb02b5e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11542, "upload_time": "2015-11-10T10:17:42", "url": "https://files.pythonhosted.org/packages/97/dd/48c294e130f891f3264ab0f3d6ebe01e956571ba2938ff48e24539b4e5eb/djangocms_lab_members-0.2.0-py32-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1fc6ef2579dcb9dee2bd500be4f3056e", "sha256": "555ab8e1c0a2355be9c44c826262ed6352460e9030e8aeb68a2015a1468eae85" }, "downloads": -1, "filename": "djangocms-lab-members-0.2.0.tar.gz", "has_sig": false, "md5_digest": "1fc6ef2579dcb9dee2bd500be4f3056e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7630, "upload_time": "2015-11-10T10:15:57", "url": "https://files.pythonhosted.org/packages/87/a8/c658c1a85838ac93fb6022d2da8944614c8764858a5622390dfd80552c59/djangocms-lab-members-0.2.0.tar.gz" } ] }