{ "info": { "author": "Alex Clark", "author_email": "aclark@aclark.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Plone", "Framework :: Zope2", "Natural Language :: Catalan", "Natural Language :: Czech", "Natural Language :: Danish", "Natural Language :: Dutch", "Natural Language :: English", "Natural Language :: French", "Natural Language :: German", "Natural Language :: Italian", "Natural Language :: Japanese", "Natural Language :: Portuguese (Brazilian)", "Natural Language :: Swedish", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Office/Business :: Scheduling", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Introduction\n============\n\n**Products.CalendarX** is an add-on for Plone that displays Events [1]_ in monthly, weekly and daily views. There is also localization for various languages included.\n\n\n.. Note::\n\n The codebase is old (i.e. Archetypes content and RestrictedPython scripts) and does not conform to modern Plone development best practices.\n\n.. Note::\n Version 0.9.7 and higher are Plone 4+ compatible. For Plone 3.x, please use an older release.\n\nOther similar add-ons:\n\n- http://plone.org/products/solgema.fullcalendar\n\nSource code and issue tracker:\n\n- https://github.com/collective/Products.CalendarX/\n\n.. [1] I.e. event-ish content, e.g. events created with the default Plone event content type.\n\n=========\nChangelog\n=========\n\n1.0.4 (2012-12-07)\n==================\n\n- Functionality provided by ``portlet_cx_choices`` in earlier versions of CalendarX has moved to the main calendar area in Plone 4\n [aclark]\n\n1.0.3 (2012-12-07)\n==================\n\n- Fix portet_cx_choices\n [aclark]\n\n1.0.2 (2012-12-06)\n==================\n\n- Make portet_cx_choices portlet display nothing instead of errors (No Plone 4 support yet)\n [aclark]\n\n1.0.1 (2012-11-05)\n==================\n\n- Add missing event_icon.gif\n [aclark]\n\n- Remove entry points causing install_requires to fail\n [aclark]\n\n1.0.0 (2012-10-09)\n==================\n\n- Plone 4.1 compatibility [miohtama, aclark, nteixeira, kteague] - for Plone 3.x releases use older version\n- Fixed bad portal_catalog query syntax in get events scripts - was returning no results on P4.1 [miohtama]\n- Fixed URL escaping issues in month view links [miohtama]\n- Fixed syntax errors in getEventDictWeekbyday.py, getEventDictWeekbyhour.py [miohtama]\n- Finnish translations [miohtama]\n\nv0.9.6(stable)\n==============\n\n- bugfixes for getEventsXXX scripts (all four, for ZCatalog and Advanced \n Query) to handle properly the options for restrictToThisListOfPaths, \n restrictToThisListOfSubjects, and the Show Public/Private link that only \n shows events by the logged in Creator.\n [lupa]\n\n\nv0.9.5(stable)\n==============\n\n- Refactored documentation to ReST, with help from glenfant.\n [lupa]\n\n\nv0.9.3(stable)\n==============\n\n- Code base: v0.9.2(stable)\n- Status: Stable release. All tested features work, one outstanding bug\n reported in the tracker (at Plone.org), some minor display bugs\n listed in docs/TODO.txt\n- eggification: thanks to glenfant!\n\n\nv0.9.2(stable)\n==============\n\n- Code base: v0.9.1(dev)\n- Status: Stable release. All tested features work, one outstanding bug\n reported in the tracker (at Plone.org), some minor display bugs\n listed in docs/TODO.txt\n- why: 0.9 branch is to introduce Plone 3 compatibility. Period.\n- bugfix: CX_props_macros.pt: PrevNextCurrentLinks has JumpToDateWidget that\n was hardcoded to range(2000:2010) ending soon! Now this runs -4 to +6\n years from current year instead.\n- bugfix: CX_props_macros.pt: eventlister, mMeventlister macros: The class:\n defaulted to \"eventPublished\" instead of to classstate, fixed.\n- bugfix: CalendarXFolder.py: added 'createObject?type_name=Event' as default\n value for createObjectOnClickCommand.\n- improvement: CalendarXFolder.py: added as default the following values:\n 'published,external,internal,internally_published' for the\n listOfReviewStatesDisplayed properties.\n- docs: updated INSTALL.txt to include buildout instructions for pulling\n CalendarX from SVN at plone.org. An egg is in the future.\n\n\n\nv0.9.1(alpha)\n=============\n\n- Code base: v0.9.0(dev)\n- Status: Alpha release. All tested features work, one outstanding bug\n reported in the tracker (at Plone.org), some minor display bugs\n listed in docs/TODO.txt\n- why: 0.9 branch is to introduce Plone 3 compatibility. Period.\n- bugfix: Events with NO category (subject) are shown when you show a calendar\n for the first time (where View All is checked, but none of the other\n categories are checked), but after that it is nearly impossible to display\n events with NO category chosen. This is an OLD bug.\n- thefix: getDictCommon.py: checks to see if xsubALL is in the request and set\n to 'ALL' -- if it is, it sets xsub to 'ALL' before sending xsub to the query.\n Now by default, the View All checkbox WILL display events with NO category\n chosen. To see ONLY those events with selected categories, you must hit the\n Refresh button when all the categories are selected, but the View All is not\n selected. This makes intuitive sense to me. View All means ALL (including\n those with NO selected category).\n- new: CalendarXFolder.py: Added a new attribute listOfSubCalendarIDs that is\n necessary in order to properly use subcalendars.\n- mod: CalendarXFolder.py: Fixed several mislabeled attributes, and changed\n the order of some of them to more closely match the order and descriptions\n in the 0.6.6 release. Dropped \"Topic\" from schemata name for subcalendars,\n now is \"Sub Calendar Properties\".\n- mod: CX_props_macros.pt: Bugfix. i18n msgid mislabeled as\n label_sublinks_show_backtoresources changed to\n label_sublinks_backtoresources (around line 475).\n- mod: CX_props_macros.pt: Bugfix. Wrapped several more tal:conditions around\n spans to eliminate possible \"tuple index out of range\" errors coming from\n the python:test() usage. Needed to get the subcalendars working properly.\n- mod: CX_props_macros.pt: Significant rewriting needed down in the subjectlinks\n macro to get the subcalendars working. Sheesh.\n- mod: getDictCommon.py: checks for nameOfSubCalendar, uses that instead of the\n id if it is available for the header at the top of subcalendars.\n- mod: CX_props_macros.pt: Bugfix. useMultiSubjects attribute works fine, but\n if you unchecked it, the subjectlinks macro broke. Fixed.\n- new: CalendarXFolder.py: Added a new attribute listOfReviewStatesDisplayed\n where you can add other review states (such as 'pending' or 'external') and\n these will be appended onto the other states to display in your calendar.\n- mod: getEventsBeforeZC.py, getEventsBetweenZC.py, getEventsBeforeAQ.py,\n getEventsBetweenAQ.py: modified the review_state query to accommodate the\n new listOfReviewStatesDisplayed attribute.\n- mod: CalendarXFolder.py: TYPO, bugfix: memberSubfolderPath attribute in the\n Add Event Link Properties schemata was misspelled as memberSubFolderPath.\n Also updated the description to point out that if there is no member home\n folder, but this attribute is selected, then it will default back to a\n folder of this name but in the PORTAL ROOT, not in a member home folder.\n- mod: getAddNewEventURL.py: bugfix. There is no member home folder now by\n default, and so the call to getHomeUrl() returned None, but was not\n trapped for that. Now it is, and so if there is no member home folder, but\n this attribute is selected, then it will default back to a folder of this\n name but in the PORTAL ROOT, not in a member home folder.\n- new: added i18n/calendarx-sv.po file, contributed over a year ago by Martin\n Eliasson. I added (probably very wrongly) a guestimate of the translation\n of \"manage\" for the new manage tab, which didn't exist when Martin\n originally sent this to me.\n\n\nv0.9.0(dev)\n===========\n\n- Code base: v0.6.6(stable)\n- Status: Pre-alpha dev release. Seems to work, at least enough to test.\n- why: 0.9 branch is to introduce Plone 3 compatibility. Period.\n- mod: CalendarXFolder.py: Much reworking here to convert it to Archetypes.\n Pushed all the CX_props sheets into schemata (the hard work of this was\n done by folks at the PSU CalendarX Patch Sprint in Dec 2007 and checked\n into the Collective as the /plone3-compatibility branch). I added the\n CSS properties to finish it. Also fixed default from False to 0 for\n earlyDayEventHour attribute, which fixed some day and weekbyhour view\n errors.\n- mod: CX_props_macros.pt: Bugfix. i18n bug shows up in Plone 3 because having\n tal:content and an i18n string together produces a conflict. Now only has\n i18n call (around line 472).\n- mod: weekbyhour.pt: Bugfix. Found that the i18n for the bottom day titles\n was incompletely setup, causing them to remain i18n-less. Line 245 call\n to display month was missing a suffix '_3'. Fixed.\n- mod: weekbyday.css: Bugfix. Removed CSS rule for TD class=\"hour\" that was\n both wrong and superfluous (no such usage in the weekbyday template).\n- new: showDefaultView.py. This simple script simply redirects to the view\n specified in the defaultView attribute. Used when you head toward the\n calendar without adding /month or /day or whatever view you want at the end.\n- mod: CalendarXFolder.py: added aliases to point default view to the new\n showDefaultView.py redirector script.\n- mod: CX_props_macros.pt: added a \"manage\" tab that gives easy access to\n editing the calendar properties. only shows up for logged-in users with\n \"Manage portal content\" permission for the calendar instance.\n- mod: po files, added \"label_managetab\" msgid and (my own, doubtful)\n translations for each language, except for Japanese (I didn't translate\n that one). Write me with better ones, or better yet, check them into\n svn at the collective and email me that you've done so.\n- mod: CX_props_macros.pt: Something has changed, probably in Zope 2.10 or\n possibly more recent Python versions. I used to be able to do this\n ``tal:content=\"python:test(usesubtitles,subtitles[n-1],`subby)\"``\n and it would NOT evaluate subtitles[n-1] unless usesubtitles was True.\n However, now it throws a tuple index out of range error, even if\n usesubtitles is False. So I'm reworking all the tal:content calls\n that use this sort of testing. The main ones are fixed, allowing us\n to use the Subject Bar again :-).\n- still to do: fix more darned tuple index errors... I'm not seeing any of them\n show up, but I know that the code doesn't have the checks that it needs yet.\n- still to do: fix the damned mouseover highlighting errors\n- still to do: Possible problems with restrictToThisListOfSubjects, where View\n All categories highlights all subjects, but doesn't then display events with\n subject other than those checked, or does if it isn't restricted? Check pls.\n- still to do: find the other po files given to me long ago, and put them in.\n Don't forget the \"label_managetab\" msgid.\n- still to do: explore the new /tests added by the Sprinters. I haven't learned\n the use of testing in Plone yet, although I did learn it this summer in\n some other systems. I'll get to that next and maybe soon we'll actually have\n a meaningful test suite for CalendarX!", "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/collective/Products.CalendarX", "keywords": "plone calendar", "license": "GPL", "maintainer": null, "maintainer_email": null, "name": "Products.CalendarX", "package_url": "https://pypi.org/project/Products.CalendarX/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/Products.CalendarX/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/collective/Products.CalendarX" }, "release_url": "https://pypi.org/project/Products.CalendarX/1.0.4/", "requires_dist": null, "requires_python": null, "summary": "CalendarX is a customizable, open source metacalendar application written for the Plone content management system on top of Zope and Python.", "version": "1.0.4" }, "last_serial": 725287, "releases": { "0.9.3": [ { "comment_text": "updated with new docs", "digests": { "md5": "ed5b77f72d50a6a07c7d5294a1f44df5", "sha256": "551256d698cd6c00cc901fb253003a38d4384de689f2714d1c4e50f27853514c" }, "downloads": -1, "filename": "Products.CalendarX-0.9.3.tar.gz", "has_sig": false, "md5_digest": "ed5b77f72d50a6a07c7d5294a1f44df5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117738, "upload_time": "2009-11-06T21:40:17", "url": "https://files.pythonhosted.org/packages/9d/b6/c0c77ee19e47e3605f56dfd5d29fa041be1fea50ef876fa514386afc2566/Products.CalendarX-0.9.3.tar.gz" } ], "0.9.5stable": [ { "comment_text": "", "digests": { "md5": "8261825591a85e8f584f2709f84cbd57", "sha256": "0352d228527fb9815f4b9d0973663eb6889ee2ba04e4f1ceb9b27e67db150db7" }, "downloads": -1, "filename": "Products.CalendarX-0.9.5stable-py2.4.egg", "has_sig": false, "md5_digest": "8261825591a85e8f584f2709f84cbd57", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 194155, "upload_time": "2009-11-07T18:19:18", "url": "https://files.pythonhosted.org/packages/ab/90/f8b4e0ce6f7ee31c76624b4f60871c598bb25686286527f9917b24893fee/Products.CalendarX-0.9.5stable-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9803a3f5be8f35c95c0ad09f92270ad3", "sha256": "404e8d788550ff1bcec0457fe02c8039a640efafb865ba6f9ca57e853afff151" }, "downloads": -1, "filename": "Products.CalendarX-0.9.5stable.tar.gz", "has_sig": false, "md5_digest": "9803a3f5be8f35c95c0ad09f92270ad3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109247, "upload_time": "2009-11-07T18:18:58", "url": "https://files.pythonhosted.org/packages/77/1c/dace7e05f6bf9a6ee779a573c039698246eb169ee552542599481a5f93bd/Products.CalendarX-0.9.5stable.tar.gz" } ], "0.9.6stable": [ { "comment_text": "", "digests": { "md5": "c97f18cc4cf72c8c83082059e609235f", "sha256": "7f98bf06a7afdc4d6152eb5a514fd6ff6694ad104ceb9c295f0bcf03d65a39a2" }, "downloads": -1, "filename": "Products.CalendarX-0.9.6stable-py2.4.egg", "has_sig": false, "md5_digest": "c97f18cc4cf72c8c83082059e609235f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 193330, "upload_time": "2009-12-07T02:54:51", "url": "https://files.pythonhosted.org/packages/5e/19/99864e114535b75399d6a53336dc7fda706852c74175ca1b04d521adba97/Products.CalendarX-0.9.6stable-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "4f5b907d47a1abbbc576e5ae7547a4f5", "sha256": "d441a84272cc2f4f14b65d4b5a20ddd2b8823f4d465dee1a78462c022c093e5e" }, "downloads": -1, "filename": "Products.CalendarX-0.9.6stable.tar.gz", "has_sig": false, "md5_digest": "4f5b907d47a1abbbc576e5ae7547a4f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108261, "upload_time": "2009-12-07T02:54:32", "url": "https://files.pythonhosted.org/packages/d0/96/0d97605b374e2f26ea1077a7e0bf9783876d85a9eeaa04bfc5b2e4be8904/Products.CalendarX-0.9.6stable.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "67c658c8ffd15d0a6a0390b4dda61820", "sha256": "2d89dd08039cea9f0fc8a19b9feb5045857137b0edec7b42abc43a2021f567ba" }, "downloads": -1, "filename": "Products.CalendarX-1.0.0.tar.gz", "has_sig": false, "md5_digest": "67c658c8ffd15d0a6a0390b4dda61820", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258218, "upload_time": "2012-10-09T23:31:24", "url": "https://files.pythonhosted.org/packages/ce/7c/64e18e58b5895fab54ab9ca015b90c133081178b1b9e0bde78b510bac1a0/Products.CalendarX-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "e7db5f70ff6bf6bd8ccfa1354e06f3ec", "sha256": "c8d9c17b53548e1eff4ddc6b27778ebc3e356cc68563136e6f405ef7a48e22cb" }, "downloads": -1, "filename": "Products.CalendarX-1.0.1.zip", "has_sig": false, "md5_digest": "e7db5f70ff6bf6bd8ccfa1354e06f3ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1520241, "upload_time": "2012-11-05T18:33:09", "url": "https://files.pythonhosted.org/packages/e3/5e/59d27c87dc776585c8f2646dd72ef51f81914c68a076a56fa374b475661d/Products.CalendarX-1.0.1.zip" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "e284198a31a516319f85ae79320a0c67", "sha256": "6cac441bb6a74cf025d191d936ac52331285ca3592ad2b3ef3d5f498173788d8" }, "downloads": -1, "filename": "Products.CalendarX-1.0.2.zip", "has_sig": false, "md5_digest": "e284198a31a516319f85ae79320a0c67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 334397, "upload_time": "2012-12-07T00:22:32", "url": "https://files.pythonhosted.org/packages/9d/b9/a89b07db1a1ada6007ddb0932a9c0658686a441e89e608cb9dd80304392c/Products.CalendarX-1.0.2.zip" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "3d1bca2652c805fe3a59310b256e47c0", "sha256": "3953f39f6d0ba257528f64ef51a9834cad2d00443cc34d703a276073cad9d803" }, "downloads": -1, "filename": "Products.CalendarX-1.0.3.zip", "has_sig": false, "md5_digest": "3d1bca2652c805fe3a59310b256e47c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 337743, "upload_time": "2012-12-07T23:39:51", "url": "https://files.pythonhosted.org/packages/7d/1e/3ffcdb036b6e1394707e14448e28264869cedc019a98f014f11fb52386d3/Products.CalendarX-1.0.3.zip" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "5f848e63c67579d0f21f8aee8eba20a2", "sha256": "4123cd11892557545e19b71dbb649c8733d92c805271eb16d9ec79d0553a4f5d" }, "downloads": -1, "filename": "Products.CalendarX-1.0.4.zip", "has_sig": false, "md5_digest": "5f848e63c67579d0f21f8aee8eba20a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 337861, "upload_time": "2012-12-08T02:14:59", "url": "https://files.pythonhosted.org/packages/a8/56/ff46536afbd063f0bf84a2fbcd4fedb3ec8183712037c81a7c3e91fd8459/Products.CalendarX-1.0.4.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5f848e63c67579d0f21f8aee8eba20a2", "sha256": "4123cd11892557545e19b71dbb649c8733d92c805271eb16d9ec79d0553a4f5d" }, "downloads": -1, "filename": "Products.CalendarX-1.0.4.zip", "has_sig": false, "md5_digest": "5f848e63c67579d0f21f8aee8eba20a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 337861, "upload_time": "2012-12-08T02:14:59", "url": "https://files.pythonhosted.org/packages/a8/56/ff46536afbd063f0bf84a2fbcd4fedb3ec8183712037c81a7c3e91fd8459/Products.CalendarX-1.0.4.zip" } ] }