{
"info": {
"author": "Syslab.com GmbH",
"author_email": "thomas@syslab.com",
"bugtrack_url": null,
"classifiers": [
"Framework :: Plone",
"Framework :: Plone :: 3.3",
"Framework :: Plone :: 4.0",
"Framework :: Plone :: 4.1",
"Framework :: Plone :: 4.2",
"License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1)",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": "Project Description\n*******************\n\n.. contents::\n\n.. Note!\n -----\n\n - code repository\n - bug tracker\n - questions/comments feedback mail\n\n\n- Code repository: https://github.com/collective/slc.linguatools\n- Questions and comments to info (at) syslab (dot) com\n- Report bugs at http://plone.org/products/slc.linguatools/issues\n\nPlone 4 is supported starting with version 1.4.0 - Bugfix releases for Plone\n3 will be continued in the 1.3.x series.\n\n\nOverview\n********\n\nslc.linguatools offers a set of functions that are designed to make life easier\nwhen dealing with multilingual sites, especially those with several different languages.\n\nOften you have the requirement that you want to do the same action for all\ntranslations of an object. In a site with ten, twenty or more languages, doing\nthis manually is not an option any more.\n\nFunctions\n=========\n\nslc.linguatools offers assistance for the following use cases:\n\n* Set title or description: \n Set the title / description on all translations;\n either directly to the string you entered, or based on an i18n label and\n domain\n\n* Rename an object\n Rename all translations to the id (short name) you entered\n\n* Set portlets \n Propagate the portlet settings of the canonical object to all\n translations, either for all slots or the one you chose. Block / unblock\n portlet inheritance per slot.\n\n* Workflow\n Publish / retract / etc. all translations\n\n* Catalog reindex\n Reindex all translations of an object\n\n* Deleter\n Delete all translations of an object\n\n* Cut and paste\n Cut all translations of an object and paste them to another folder\n\n* Property handling\n Set a property with id, type and value on all translations.\n Example: Set string property \"layout\" to \"@@my-shiny-view\". Delete an\n existing property.\n\n* Marker interfaces\n Set or remove a marker interface on all translations of an object. The\n interfaces available for setting and removing are provided by a vocabulary\n and are the same as on the \"Interfaces\" tab in the ZMI.\n\n* Subtyping (if p4a.subtyper is installed)\n Set a subtype on all translations; remove a subtype\n\n* Translate an object\n Create a translation of the current object for all available languages.\n The AT attributes that should be copied over can be selected. If the object\n is a Collection, then all criteria are copied as well.\n\n* Copy the values of individual fields\n Using the \"Translate this object\" function mentioned above and selecting the\n \"Translation exists\" option, you can copy the values of individual AT fields\n to all translations, such as dates, tags (Subject) and Collection criteria.\n\n\nRequirements and Installation\n=============================\n\nThis package only works and makes sense if you have LinguaPlone installed.\n\nAdd \"slc.linguatools\" to the eggs and zcml sections of your buildout\nconfiguration. After running buildout and restarting your instance, go to the\nSite Setup -> Add-on Products, choose slc.linguatools and click \"install\".\n\nA tab named \"Lingua Tools\" will then appear on all translatable objects.\n\nEnabling support for language neutral folders in TinyMCE\n--------------------------------------------------------\n\nIf you have the default language folder structure (e.g. created by LinguaPlone's\n@@language-setup-folders), you will have a top-level folder that provides\nINavigationRoot for every language in your site (/en, /de, /fr, etc.). In this case\nit will not be possible to have a common language-neutral\nfolder (e.g. for images) that is accessible in TinyMCE. For details see:\nhttp://plone.org/products/linguaplone/issues/275\n\nIn this same ticket, a patch to the getBreadcrumbs method of TinyMCE was \nprovided by Robert Niederreiter. This patch is included in slc.linguatools,\nbut not activated by default. To activate it, you need to set an environment\nvariable called PATCH_TINYMCE_BREADCRUMBS.\n\nYou can do this by adding the following to your zope.conf::\n\n \n PATCH_TINYMCE_BREADCRUMBS true\n \n\nIf you use Buildout, you don't want to edit zope.conf directly, since it will\nbe overwritten by the next buildout. Rather, edit your buildout configuration\nand add the following to the [instance] section::\n\n zope-conf-additional =\n \n PATCH_TINYMCE_BREADCRUMBS true\n \n\n\n\nVersions\n========\n\nThe first version of this tool featured a manually written BrowserView. During\nthe Plone-Conference 2009 sprint, a second version that uses z3c form was\nwritten. This is the version visible by default via the \"Lingua Tools\" tab. The\noriginal version is still accessible under @@linguatools-old.\n\n\n\nDocumentation\n=============\n\nPlease also see test/lttest.txt for a doctest that guides you through the basic\nfunctionalities.\n\nChange history\n**************\n\nslc.linguatools Changelog\n=========================\n\n1.4.4 (2013-12-06)\n------------------\n\n- Added a commit after every clone\n\n1.4.3 (2013-04-10)\n------------------\n\n- Cleanup, don't require a REQUEST obj in exec_for_all_langs [pysailor]\n\n\n1.4.2 (2012-07-22)\n------------------\n\n- Switched to using plone.app.testing instead of zope.testing [thomasw]\n- Copied support for slc.outdated from the Plone3-branch [thomasw]\n- Moved repository from svn to github [thomasw]\n\n1.4.1 (2012-02-04)\n------------------\n\n- If an item has a text_format property (e.g. documents), copy its value to\n all translations in the \"Translate this obejct\" function [thomasw]\n- Added Robert Niederreiter's patch to the getBreadcrumbs() method of TinyMCE\n to allow for common language-neutral folders (e.g. for images). See LP issue\n 275 for details. The patch needs to be activated by an environment setting.\n See the README.txt [thomasw]\n\n\n1.4.0 (2011-07-01)\n------------------\n\n- Removed version pinnings for dependencies [thomasw]\n- Slight CSS adjustments for main view [thomasw]\n- Added missing import of CMF permissions package [thomasw]\n\n1.4.0b1 (2011-04-08)\n--------------------\n\n- Updated the doctest setup to run in Plone4 [thomasw]\n- Added possibility to make displaying a form optional, e.g. only if a\n certain component is installed [thomasw]\n\n\n1.3.6 (2010-07-18)\n------------------\n\n- Bugfix in PropertyForm: encode unicode to utf-8, otherwise setting the\n property default_page breaks [thomasw]\n- allow module utils for import in python scripts [pilz]\n\n1.3.5 (2010-03-31)\n------------------\n\n- In plone.z3cform version 0.5.8 a major change was introduced that affects our\n product. By overwriting update() and contents() of FormWrapper, we enable\n support for versions >=0.5.8; with an ugly hack in contents(), we maintain\n support for versions <=0.5.7 [thomasw]\n- Fixed broken doctest for changing the workflow, introduced in 1.3.3 [thomasw]\n- The AvailableIdsVocabulary now only returns translatable items [thomasw]\n- New functionality: Add and remove marker interfaces [thomasw]\n- Don't show the canonical lang in the vocabulary of avaiable langs [thomasw]\n\n1.3.4 (2010-02-09)\n------------------\n\n- In the AvailableWorkflowTransitions vocabulary, return all available\n transitions of a workflow, not just those available for the canonical's\n state. The canonical might be published, while some translations are still\n private [thomasw]\n\n1.3.3 (2010-01-27)\n------------------\n\n- Reworked workflow handling. Instead of only \"publish\", now all transactions\n available on the current object can be triggered [thomasw]\n- \"Translate this\" now has an additional language field, so that only a subset\n of the available languages may be chosen [thomasw]\n- Ran the pep8 script and fixed most issues [thomasw]\n\n\n1.3.2 (2009-12-17)\n------------------\n\n- Bugfix in linguatools.css: missing closing bracket. Thanks for the\n heads-up, do3cc! [thomasw]\n\n1.3.1 (2009-12-11)\n------------------\n\n- Be more relaxed with version pinning needed for plone.app.z3cform [thomasw]\n\n1.3 (2009-11-29)\n----------------\n\n- Major revamp at Plone Conference 2009 sprint: moved from static BrowserView\n to z3c form; brushed up test coverage; clearer interface; more user-friendly,\n less typing necessary; easier to plug in new functionality [cillian, jcbrand,\n pilz, thomasw, Andreas Schmid]\n\n1.2.5 (unreleased)\n------------------\n\n- make sure that lang is ascii when using it to create objectids. Otherwise we get an infinite recursion [pilz]\n- D'oh another bug in \"block portlets\", this time in the status message [thomasw]\n- better status reporting for translateThis; collection criteria are now also copied when\n \"translation exists\" is ticked; more graceful handling for unknown fields [thomasw]\n\n1.2.4 (2009-10-27)\n------------------\n\n- Continuing my fix for ambiguous variable name [thomasw]\n\n\n1.2.3 (2009-10-25)\n------------------\n\n- 2 bugs fixed for \"block portlets\": ambiguous variable name, wrong button name [thomasw]\n\n1.2.2 (2009-10-08)\n------------------\n\n- 2 bugfixes in cutAndPaste (don't despair if object is not available) [thomasw]\n- Added a contenview tab for Lingua Tools on ITranslatable objects [jcbrand]\n- In lingatools.pt moved the legends into the fieldsets, added labels and reorganised a bit [jcbrand]\n- Added new option to remove subtypes [jcbrand]\n- Use the default plone status messages for messaging and added event.log logging [jcbrand]\n\nslc.linguatools 1.2.1 (2009-08-13)\n----------------------------------\n\n- made compatible with current version of LinguaPlone [gerken/thomasw]\n\nslc.linguatools 1.2 (2009-06-17)\n--------------------------------\n\n- built a proper framework for the already existing doctest linguatests.txt [thomasw]\n\nslc.linguatools 1.1 (2009-05-12)\n--------------------------------\n\n- Packaged egg [pilz]\n\nslc.linguatools 1.0 (2008-03-31)\n--------------------------------\n\n- Initial port\n\nCredits\n*******\n\nAuthors\n=======\n\n- Wolfgang Thomas (Syslab.com GmbH)\n- Alexander Pilz (Syslab.com GmbH)\n- Jan-Carel Brand (Syslab.com GmbH)\n- Cillian de Roiste (Syslab.com GmbH)\n\nContributors\n============\n- Andreas Schmid (TIS Innovation Park): jquery toggle\n- Robert Niederreiter: patch for TinyMCE's getBreadcrumbs\n\nTODO\n****\n\n* Find and use an object-picker widget for \"Cut & Paste\" - having to type the\n destination path is ugly.\n\n* Distinguish between global functions (e.g. Set title) and those that only\n make sense on a folder (e.g. Delete).\n\n* Add a configuration page in the control panel so that the manager can select\n the available functions (e.g. exclude the Marker Interface function)",
"description_content_type": null,
"docs_url": null,
"download_url": "UNKNOWN",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://pypi.python.org/pypi/slc.linguatools/",
"keywords": "linguatools internationalization linguaplone",
"license": "GPL",
"maintainer": null,
"maintainer_email": null,
"name": "slc.linguatools",
"package_url": "https://pypi.org/project/slc.linguatools/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/slc.linguatools/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "http://pypi.python.org/pypi/slc.linguatools/"
},
"release_url": "https://pypi.org/project/slc.linguatools/1.4.4/",
"requires_dist": null,
"requires_python": null,
"summary": "A set of tools that simplify handling multilingual content in Plone based on LinguaPlone",
"version": "1.4.4"
},
"last_serial": 937629,
"releases": {
"1.3": [
{
"comment_text": "",
"digests": {
"md5": "2b6d68f3c9005df8ae9aa29d17832200",
"sha256": "cfc6789136dfd12a70dc019f2881c47f1fbdc9dda46cfe416eff36272d2ce38c"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.tar.gz",
"has_sig": false,
"md5_digest": "2b6d68f3c9005df8ae9aa29d17832200",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44525,
"upload_time": "2009-11-30T01:13:46",
"url": "https://files.pythonhosted.org/packages/18/89/f02b4e658ca1f76e8a983fd03693c17b5147272b0573610900dbab7917ca/slc.linguatools-1.3.tar.gz"
}
],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "73dfef013f63af928c6bcfd8ec7ecb0d",
"sha256": "8e900417858f28208e3b144b36a22248886f02e6cc215fb147316245af1da637"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "73dfef013f63af928c6bcfd8ec7ecb0d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44677,
"upload_time": "2009-12-11T09:01:36",
"url": "https://files.pythonhosted.org/packages/4c/85/348217e47b344d1f246e4de3927df94c776b1a09937083fd4c765aa0db1c/slc.linguatools-1.3.1.tar.gz"
}
],
"1.3.2": [
{
"comment_text": "",
"digests": {
"md5": "ea136da6e3cbd8758115bff30e3f88d4",
"sha256": "e530b375e7b31668d46de282ed38346d5754ce6ac08ce1b36dfb4938519ec47a"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.2.tar.gz",
"has_sig": false,
"md5_digest": "ea136da6e3cbd8758115bff30e3f88d4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44780,
"upload_time": "2009-12-17T21:34:53",
"url": "https://files.pythonhosted.org/packages/b4/60/a45d2ca272b19bd6e7480d1d963f26c7d13576171ea4f3af708840bf54b6/slc.linguatools-1.3.2.tar.gz"
}
],
"1.3.3": [
{
"comment_text": "",
"digests": {
"md5": "91e7ac5b358378cf742ef864b1d8a937",
"sha256": "9f6a8387ee4ea87ead58f210c4f6c5c550b4775a9b8e6f9b9aba20654e00019d"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.3.tar.gz",
"has_sig": false,
"md5_digest": "91e7ac5b358378cf742ef864b1d8a937",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45824,
"upload_time": "2010-01-27T19:44:44",
"url": "https://files.pythonhosted.org/packages/30/1a/bf28fafafdce42e7e84dd599b39b2437ab7adaf643a7a8b98ac045f99612/slc.linguatools-1.3.3.tar.gz"
}
],
"1.3.4": [
{
"comment_text": "",
"digests": {
"md5": "b7c1b8c36142b03c5f1f2c10b0ecd48d",
"sha256": "bdb13704ba91c1133891229fab36ef9b9a26ca7466852946c623db61d76fd0db"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.4.zip",
"has_sig": false,
"md5_digest": "b7c1b8c36142b03c5f1f2c10b0ecd48d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 63273,
"upload_time": "2010-02-09T21:32:09",
"url": "https://files.pythonhosted.org/packages/93/48/8c7455aafe711e3b09c1b83f2d6314990ad25c32c75f1d2584ed0582ef4b/slc.linguatools-1.3.4.zip"
}
],
"1.3.5": [
{
"comment_text": "",
"digests": {
"md5": "ead2e1cff4a01622e49c066ce9562a00",
"sha256": "b880f0ca19017db8852e74a21182d9d84599463ad3f9e90087c905bcbd85896f"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.5.zip",
"has_sig": false,
"md5_digest": "ead2e1cff4a01622e49c066ce9562a00",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66113,
"upload_time": "2010-03-31T18:47:50",
"url": "https://files.pythonhosted.org/packages/9e/d2/b6bea5a087099f09a8b860f81c729b3a2eca7a92ff7db58b952da3034942/slc.linguatools-1.3.5.zip"
}
],
"1.3.6": [
{
"comment_text": "",
"digests": {
"md5": "a2fee49c72b0d3d7ce780bdbf6f5ccc2",
"sha256": "49a9acf7e6ef5135b457314bb8a2d7fed19aa6bc39816cac5bf290bf1b5a86ad"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.6.zip",
"has_sig": false,
"md5_digest": "a2fee49c72b0d3d7ce780bdbf6f5ccc2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64411,
"upload_time": "2010-07-18T23:26:52",
"url": "https://files.pythonhosted.org/packages/8f/69/136d417c110275085f4a37f5d961ff3949266540baee9c9da2ee2772e284/slc.linguatools-1.3.6.zip"
}
],
"1.3.7": [
{
"comment_text": "",
"digests": {
"md5": "a149ff6df7601f936827da92f8bb036f",
"sha256": "290c8bfd943a1b21f5bfe5ffca447c5e076c8896df05db512f46f4b47242bddd"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.7.zip",
"has_sig": false,
"md5_digest": "a149ff6df7601f936827da92f8bb036f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64629,
"upload_time": "2011-03-01T10:44:31",
"url": "https://files.pythonhosted.org/packages/84/7a/663cfb05398016840f4f0914fc6b7030254bb1e1bdb55f54263485d9e091/slc.linguatools-1.3.7.zip"
}
],
"1.3.8": [
{
"comment_text": "",
"digests": {
"md5": "18cd84e120a189830db20de9baea079e",
"sha256": "d725ccbaaec9d3c8c5ddeb5035d8b0fe8ba54c872c2de26cb4eb395a1890df43"
},
"downloads": -1,
"filename": "slc.linguatools-1.3.8.zip",
"has_sig": false,
"md5_digest": "18cd84e120a189830db20de9baea079e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 65181,
"upload_time": "2011-03-14T15:37:59",
"url": "https://files.pythonhosted.org/packages/c7/44/2003b62e2d0e043085f3f169a0709fe73010c873ae14c8b9797cc328e36b/slc.linguatools-1.3.8.zip"
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "f70a35b2a7e965ba1c150abba6a0b09e",
"sha256": "7c8821945f8a55f73ab51b54f62e31a62ed05d21552bfdddb26bd26d59f2129e"
},
"downloads": -1,
"filename": "slc.linguatools-1.4.0.zip",
"has_sig": false,
"md5_digest": "f70a35b2a7e965ba1c150abba6a0b09e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 65060,
"upload_time": "2011-07-01T17:55:17",
"url": "https://files.pythonhosted.org/packages/f8/a1/1ca84d0d24be6b8b5dcc07f078003e5cd279907175f12c65446cfeebb442/slc.linguatools-1.4.0.zip"
}
],
"1.4.0b1": [
{
"comment_text": "",
"digests": {
"md5": "c144625970dfc70f700ef78688a4faec",
"sha256": "9e857ad15f71792ef8bad613c5617aa411e9296ec132303e3fc1c715efb68110"
},
"downloads": -1,
"filename": "slc.linguatools-1.4.0b1.zip",
"has_sig": false,
"md5_digest": "c144625970dfc70f700ef78688a4faec",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64405,
"upload_time": "2011-04-08T14:56:57",
"url": "https://files.pythonhosted.org/packages/10/73/050fd03a18564a939d9101202f0950489b60639c9ce8ad21848386084297/slc.linguatools-1.4.0b1.zip"
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "cddc3acfc09962c29efc9e48e58041b2",
"sha256": "afd140b2bb43cd501b9061de15cc10c358233f9edc64ba53ea9e7392484b14c7"
},
"downloads": -1,
"filename": "slc.linguatools-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "cddc3acfc09962c29efc9e48e58041b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 48174,
"upload_time": "2012-02-04T14:28:11",
"url": "https://files.pythonhosted.org/packages/e1/45/a3fb664ad70974d3097f1b41b83900fe25c7cda225fe6383c417d49408b7/slc.linguatools-1.4.1.tar.gz"
}
],
"1.4.2": [
{
"comment_text": "",
"digests": {
"md5": "4a30336544f87e19f00dafd53c2deb4a",
"sha256": "66caa126c80ff2d7c03f5826957a2f38808e6c205a9268728cf340662d3700c5"
},
"downloads": -1,
"filename": "slc.linguatools-1.4.2.zip",
"has_sig": false,
"md5_digest": "4a30336544f87e19f00dafd53c2deb4a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 69648,
"upload_time": "2012-07-22T11:26:11",
"url": "https://files.pythonhosted.org/packages/e8/9c/72ca3e67babf79cd0bbfcf5772c4b917cc7d65942828c6edc15cff146718/slc.linguatools-1.4.2.zip"
}
],
"1.4.3": [
{
"comment_text": "",
"digests": {
"md5": "25ff900139b5b117bb3aefb6ab6186b8",
"sha256": "e2ee8605a1004c42d6701df7524493d92654ef5623ae1d90c8ffbcfa565bdf7b"
},
"downloads": -1,
"filename": "slc.linguatools-1.4.3.zip",
"has_sig": false,
"md5_digest": "25ff900139b5b117bb3aefb6ab6186b8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 69797,
"upload_time": "2013-04-10T13:54:21",
"url": "https://files.pythonhosted.org/packages/a4/aa/ea2f07d486f891ecc07bdabc5295ad915951871c7524fe0c2954294f2901/slc.linguatools-1.4.3.zip"
}
],
"1.4.4": [
{
"comment_text": "",
"digests": {
"md5": "3505ea9d1054492bbe2e690cfdf4f7e0",
"sha256": "37af1b9d9fb9bbfae64759cfc59f457912f82e5c7e00e2e18f9f1f3d104d252d"
},
"downloads": -1,
"filename": "slc.linguatools-1.4.4.zip",
"has_sig": false,
"md5_digest": "3505ea9d1054492bbe2e690cfdf4f7e0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 70149,
"upload_time": "2013-12-06T14:43:05",
"url": "https://files.pythonhosted.org/packages/68/bf/3e232f566cefdc830c14d8b1001cde13c1256ab85f421d26fe14b6fa7931/slc.linguatools-1.4.4.zip"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "3505ea9d1054492bbe2e690cfdf4f7e0",
"sha256": "37af1b9d9fb9bbfae64759cfc59f457912f82e5c7e00e2e18f9f1f3d104d252d"
},
"downloads": -1,
"filename": "slc.linguatools-1.4.4.zip",
"has_sig": false,
"md5_digest": "3505ea9d1054492bbe2e690cfdf4f7e0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 70149,
"upload_time": "2013-12-06T14:43:05",
"url": "https://files.pythonhosted.org/packages/68/bf/3e232f566cefdc830c14d8b1001cde13c1256ab85f421d26fe14b6fa7931/slc.linguatools-1.4.4.zip"
}
]
}