{ "info": { "author": "Zope Foundation and Contributors", "author_email": "grok-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Zope3", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP" ], "description": "grokui.admin: A basic grok admin UI\n***********************************\n\nThe replacement for the former ``grok.admin`` package.\n\nThe internal name of the admin UI is:\nGrok Application Interface Application or, for short GAIA.\n\nGAIA is itself a Grok application and a subproject to the core Grok\ndevelopment. Its main goal is making developing of Zope 3 and Grok\napplications a faster and smarter job with more fun for everybody.\n\n\nLogin - what is my username/password?\n=====================================\n\nBefore you can use the admin UI, you first must log in.\n\nThe username and password of the manager principal (kind of super\nuser) can be found in the file ``buildout.cfg`` in the root of your\nsubversion checkout.\n\nIn case you do not know, what 'subversion checkout' means, look for a\nfile ``site.zcml`` in your installation.\n\nUsers of ``grokproject``, might find this file in\n``/parts/app/site.zcml``.\n\n\nUsing the admin-UI\n==================\n\nAfter login you can visit some of the main management topics, as\ndescribed below:\n\nOn top of the admin-UI you can always find three links to the main\nmanagement activities currently possible with GAIA:\n\n\nApplications\n------------\n\n* List of all instanciated applications\n\n* You can add new instances of Grok applications\n\n* You can rename instances of Grok applications\n\n* You can delete your installed applications.\n\n.. note:: starting with version 0.5 there is no introspector/class\n browser included in `grokui.admin` anymore. Eventually this will be\n made availabel in another package by someone else.\n\n\nServer\n------\n\n* Set security notifications. Those are by default disabled, because\n they mean home-calling functionality you may do not want. You can\n enable/disable those notifications or set a URL to retrieve\n information about security related problems.\n\n* Start/Restart the server. Caution! This does not work, if the server\n was started in 'foreground mode' (with 'zopectl fg').\n\n* Pack the ZODB. This removes old data from the database, freeing up\n disk space. In a production environment, you might want to pack the\n ZODB automatically from `cron`. This can be done using a command\n like the following::\n\n curl -q -s -u admin:admin \"http://localhost:8080/++grokui++/@@server?pack=1&days=1\"\n\n which will remove old data older than one day. If you leave out the\n `days` parameter, all old data will be removed.\n\n* Get basic information about the running Zope system.\n\n* Enter a message to be displayed on top. You can, for example, leave\n a message here for your co-admins. To delete the message, just enter\n the empty string in the appropriate input box.\n\n\n\nMaintaining grok installations with the admin UI\n================================================\n\nThere are some special info views available especially for the use of\nsystem administrators that want to automate Grok administration in\nsome aspects. They provide minimal information about certain topics.\n\nCurrently the following infos are available this way:\n\n* The grok version working in background::\n\n curl -q -s -u admin:admin \"http://localhost:8080/++grokui++/@@admin/@@version\"\n\n* The security notification (if any)::\n\n curl -q -s -u admin:admin \"http://localhost:8080/++grokui++/@@admin/@@secnote\"\n\nBeside this you can pack the ZODB databases as described above.\n\n\nBugs, Caveats and Ways to Get Help\n==================================\n\nThe Grok admin UI has been refactored during the Cologne Neanderthal Sprint\nII, in september 2009.\n\nAs a matter of fact, it is still under development and\nimprovement. Please, report any misbehavior or bug.\n\nFor bugreports use:\n\n https://launchpad.net/grok\n\nFor discussions subscribe to the ``grok-dev`` mailing list, hosted on:\n\n http://lists.zope.org.\n\nThe projects' home is the subversion repository at:\n\n http://svn.zope.org/grokui.admin/\n\nGrok's cave can be found at\n\n http://grok.zope.org/\n\nEnjoy!\n\n\ngrokui.admin changes\n********************\n\n0.12 (2016-02-16)\n=================\n\n- Update to follow API changes in grok.\n\n- Update tests.\n\n0.11 (2012-05-02)\n=================\n\n- Make sure to require the latest grok and grokcore.site.\n\n0.10 (2011-07-14)\n=================\n\n- Nothing changed yet.\n\n0.9 (2011-01-20)\n================\n\n- Use the correct IApplication interface definition.\n\n0.8 (2010-10-27)\n================\n\n- In testing the security notifications, start a server instead of using\n file://localhost URLs. This saves a lot of urlopen troubles across\n platforms.\n\n- Test setup cleanup.\n\n0.7.2 (2010-10-26)\n==================\n\n- Fix tests in Windows.\n\n0.7.1 (2010-10-07)\n==================\n\n* Fix a bug in the test setup where zope.session was not configurred.\n\n* Fix https://bugs.launchpad.net/grok/+bug/638763\n We don't hide away Duplication/KeyErrors that are raised during\n application creation any more.\n\n0.7.0 (2010-07-04)\n==================\n\n* The application creation view now uses the Grok util function\n `create_application`. Therefore, the `ApplicationInitializedEvent`,\n recently introduced in Grok, is now triggered while an application is\n created and persisted. This is an important event, allowing to hook\n handlers that need local utilities and catalog indexes that are not\n yet present at the ObjectCreatedEvent stage.\n\n0.6.2 (2010-05-19)\n==================\n\n* Modified package to comply with Zope Foundation policy.\n\n* Removed duplicated/unused code.\n Fix https://bugs.launchpad.net/grok/+bug/539940\n\n* Reflect changes in Folder API: check also for KeyError, not only for\n DuplicationError when adding new apps.\n\n* Added extra-templatedirs and moved templates into these in order to\n avoid (erraneous) templatedir-registry warnings.\n\n0.6.1 (2010-03-07)\n==================\n\n* Added missing tests dependencies. Declarations and includes should\n now be complete.\n\n\n0.6 (2010-02-28)\n================\n\n* Moved the ``Index`` view to ``grokui.base``.\n\n* The design has been slightly changed to get rid of the lazy Grok and\n to match the http://grok.zope.org website design. The design belongs\n now to ``grokui.base``.\n\n* ``grokui.admin`` has been splitted into several packages. It now depends\n on ``grokui.base`` that provides basic components to create and plug UI\n views. ``grokui.admin`` has been altered to reflect the splitting\n changes and now provides a collection of components that will allow\n you to plug your own administration panels and elements.\n\n* Dependencies have been drastically cut down. We are now using the\n ZTK. The only zope.app package remaining is for the tests.\n\n* Reflect the changes in grokcore.view 1.12 where View and CodeView\n become a single View again.\n\n\n0.5 (2009-09-15)\n================\n\nFeature changes\n---------------\n\n* The whole introspector stuff was removed in order to reduce number\n of dependencies.\n\nBug fixes\n---------\n\n* Adding apps now emits IObjectCreated events.\n\n\n0.4.1 (2010-02-14)\n==================\n\nBug fixes\n---------\n\n* Backports of fixes from 0.3.3 version (see below).\n\n\n0.4 (2009-08-21)\n================\n\nFeature changes\n---------------\n\n* Added a security notifier to inform users when security issues are\n published on http://grok.zope.org. The notifier must be explicitly\n enabled. You can also run your own site/directory to place security\n notifications.\n\n* Added info views to get important information easier with tools like\n ``curl``. Supported infos:\n\n - Grok version used\n\n - Current security notification (if any).\n\nBug fixes\n---------\n\n* Adapting this package to use the new version of grokcore.view\n which splits View into CodeView.\n\n* Upgraded the versions to the alpha 4 list to avoid a dependency\n problem with zope.container versions.\n\n* Include the new grok.View permissions for testing.\n\n0.3.3 (2010-02-14)\n==================\n\nBug fixes\n---------\n\n* Fixed bug in object browser: objects that 'booleanized' evaluated to\n ``False`` (empty containers for instance) were not displayed.\n\n0.3.2 (2009-04-10)\n==================\n\n* Added dependency for zope.app.preference. This is needed by\n zope.app.apidoc but not always fetched.\n\n0.3.1 (2009-04-09)\n==================\n\n* Fixed missing dependencies in setup.py.\n\n0.3 (2008-12-13)\n================\n\nFeature changes\n---------------\n\n* Added capability to pack ZODBs (thanks to Jasper Spaans).\n\n0.2 (2008-12-01)\n================\n\nFeature changes\n---------------\n\n* Added capability to rename apps.\n\n0.1.2 (2008-09-28)\n==================\n\n* Made server controls dependent from availability of\n `IServerControl`. Otherwise the buttons for restarting or stopping\n the server process are not rendered.\n\n\n0.1.1 (2008-08-05)\n==================\n\n* Fixed wrong links in docgrok template.\n\n* Fixed ftesting.zcml that did not work with Grok 0.13.\n\n\n0.1 (2008-07-10)\n================\n\nFeature changes\n---------------\n\nInitial implementation by factoring out ``grok.admin`` from ``grok``.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://svn.zope.org/grokui.admin", "keywords": "zope3 grok grokadmin", "license": "ZPL 2.1", "maintainer": null, "maintainer_email": null, "name": "grokui.admin", "package_url": "https://pypi.org/project/grokui.admin/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/grokui.admin/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://svn.zope.org/grokui.admin" }, "release_url": "https://pypi.org/project/grokui.admin/0.12/", "requires_dist": null, "requires_python": null, "summary": "The Grok administration and development UI", "version": "0.12" }, "last_serial": 1958861, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "935a0f77e1e018eff63ba19bd399ff93", "sha256": "059ded0bf4cb5da9b56111ef0de8b2805ec524993481494164ef3c18944ab8ef" }, "downloads": -1, "filename": "grokui.admin-0.1.tar.gz", "has_sig": false, "md5_digest": "935a0f77e1e018eff63ba19bd399ff93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212540, "upload_time": "2008-07-10T21:24:18", "url": "https://files.pythonhosted.org/packages/37/10/60e5f4d5d3ae54578a1a888da35f4047dff7346517990331ea2f696e6e15/grokui.admin-0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "da887f73e75ef984f435981b78debcb5", "sha256": "a352a3f5b9b71d80f51b596f79bcc83d3a06735bb90bb61a0d9e4c6d12b6ddf1" }, "downloads": -1, "filename": "grokui.admin-0.1.zip", "has_sig": false, "md5_digest": "da887f73e75ef984f435981b78debcb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235789, "upload_time": "2008-07-10T21:24:28", "url": "https://files.pythonhosted.org/packages/e0/83/d14fcf2e5aeaa8ba470d481c3b048676b7ed26b94b044991446ce1179553/grokui.admin-0.1.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "332361b1646a22e70d645a2807b0eb94", "sha256": "d94e8aa36828ce0575f3035e5d3881ceb8d3c6ee575f64a456775c5a1cf36ae8" }, "downloads": -1, "filename": "grokui.admin-0.1.1.tar.gz", "has_sig": false, "md5_digest": "332361b1646a22e70d645a2807b0eb94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212643, "upload_time": "2008-08-05T17:23:14", "url": "https://files.pythonhosted.org/packages/83/41/969bbe23f2c7cb598451f9a3d478bb9c6be6e91ab7c2bf47b563a125ddfb/grokui.admin-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "2e6e27b9c9c835f4cf78b0380a74556b", "sha256": "c7067651a189200813c83c67133093290c0b5f1d3f706eb7defa9615673d70fb" }, "downloads": -1, "filename": "grokui.admin-0.1.2.tar.gz", "has_sig": false, "md5_digest": "2e6e27b9c9c835f4cf78b0380a74556b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212879, "upload_time": "2008-09-28T17:31:47", "url": "https://files.pythonhosted.org/packages/9c/e2/698f125a6e1dfb0c8b7f5c3c96cc444f4188ab9fd40f7393e428095e584c/grokui.admin-0.1.2.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "3d0ffdda8b3e1e0b059dcc2af0509c79", "sha256": "fe62edbcb54bb1ead526a2bd30f0ae4a700eec6a37b98d59a6d8851bbe9b2104" }, "downloads": -1, "filename": "grokui.admin-0.10.tar.gz", "has_sig": false, "md5_digest": "3d0ffdda8b3e1e0b059dcc2af0509c79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29203, "upload_time": "2011-07-14T16:05:13", "url": "https://files.pythonhosted.org/packages/3f/eb/930b15df5e09f7daa145d77823c5770000b94c3a532b59518d5c562195af/grokui.admin-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "7c60b029669dd01df8b4b675dff68878", "sha256": "c17e85bbd2ad7b2d624b333a74812ade557c2863b6ee5b2593534927e90a0109" }, "downloads": -1, "filename": "grokui.admin-0.11.tar.gz", "has_sig": false, "md5_digest": "7c60b029669dd01df8b4b675dff68878", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31069, "upload_time": "2012-05-02T11:31:14", "url": "https://files.pythonhosted.org/packages/54/c6/89c0a4afb2e80ff22cec9b99778fcac3fdf11da71842997497244ec21281/grokui.admin-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "05d1c08170051e1763d5b3f618945341", "sha256": "a9c664c348a067c05f0763b341b0cd3af17962ee1bbe56f259af175691937d64" }, "downloads": -1, "filename": "grokui.admin-0.12.tar.gz", "has_sig": false, "md5_digest": "05d1c08170051e1763d5b3f618945341", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29303, "upload_time": "2016-02-16T08:43:29", "url": "https://files.pythonhosted.org/packages/30/09/8848c26fdc2e0e1a619744a2701834a742eeb7c86d6b002413a68e6d50b4/grokui.admin-0.12.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e7f1d68fa077a33a4201da3d1a0523f6", "sha256": "6a6b7b0c618d8598ee7d334b3deb72c9b990d5123c5326f823bfd46fd4d2634d" }, "downloads": -1, "filename": "grokui.admin-0.2.tar.gz", "has_sig": false, "md5_digest": "e7f1d68fa077a33a4201da3d1a0523f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213381, "upload_time": "2008-12-01T12:47:20", "url": "https://files.pythonhosted.org/packages/b5/ba/edf064ce460468b1c2b699cff4f96b2fc3399d214ae907c9efc4cfaf597f/grokui.admin-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "9245c9daab6efab53644dd446f361d52", "sha256": "c9b427478b60e24465bafb4e068b6114448b8928e2fa8d011a3a8c5d1c33d2f1" }, "downloads": -1, "filename": "grokui.admin-0.3.tar.gz", "has_sig": false, "md5_digest": "9245c9daab6efab53644dd446f361d52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214971, "upload_time": "2008-12-13T15:21:53", "url": "https://files.pythonhosted.org/packages/cb/54/2bb1d98a85848de138c673453179936dff0ad9a75f2a891ec93dcb8a788c/grokui.admin-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "94fcde987b1e4e4e3e12a0a390067338", "sha256": "645b9ccfebc18d0a8e60dde6ce07c9d0cb82600e6bf46364ca9ec0feb5538ddc" }, "downloads": -1, "filename": "grokui.admin-0.3.1.tar.gz", "has_sig": false, "md5_digest": "94fcde987b1e4e4e3e12a0a390067338", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216054, "upload_time": "2009-04-09T19:02:10", "url": "https://files.pythonhosted.org/packages/77/aa/5144843a740761072742ec563db31893cd089f92334ae5033b5d5468f0bf/grokui.admin-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "3f1f7397db7277781766f68c7f8a9e6c", "sha256": "e27d43342272ffd46585d492b9a69551bfdd8667222a4036ee8a5df9ede1af54" }, "downloads": -1, "filename": "grokui.admin-0.3.2.tar.gz", "has_sig": false, "md5_digest": "3f1f7397db7277781766f68c7f8a9e6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216153, "upload_time": "2009-04-10T16:06:50", "url": "https://files.pythonhosted.org/packages/88/a9/5ba7dff13e2ec02d5f36d947f38e5f62b5ff3cba2aa817b5109647c7bfa0/grokui.admin-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "93aa79deeca8033c9d55aae8fb193c6b", "sha256": "acbff238a8e2e40f67003eca83efb1ec22c7af02057b9eaf589ee8678a832dc4" }, "downloads": -1, "filename": "grokui.admin-0.3.3.tar.gz", "has_sig": false, "md5_digest": "93aa79deeca8033c9d55aae8fb193c6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216815, "upload_time": "2010-02-14T15:15:40", "url": "https://files.pythonhosted.org/packages/68/47/478f901e27f9ea6ad3296a7bb22f6e48430f436599cefe6594cf56b971dd/grokui.admin-0.3.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "7ef1d5e1d9c4a4539bd8352d81b3f52e", "sha256": "f3c7e43cf1350ea5e8d468d37f2b7f4cbe1e7d369fc6c3a3185d06946e6c5151" }, "downloads": -1, "filename": "grokui.admin-0.4.tar.gz", "has_sig": false, "md5_digest": "7ef1d5e1d9c4a4539bd8352d81b3f52e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113526, "upload_time": "2009-08-21T17:16:51", "url": "https://files.pythonhosted.org/packages/ae/11/07fbd8c2ccd16559f9ca8563f11977d89f19ff83636918d5d0136bde9994/grokui.admin-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "b46dd1ad6053b54eb60a17e3b13ec068", "sha256": "6a4c6c05cf7d92c422658daad857ab021b82257b0abe0b773a86575746aa036d" }, "downloads": -1, "filename": "grokui.admin-0.4.1.tar.gz", "has_sig": false, "md5_digest": "b46dd1ad6053b54eb60a17e3b13ec068", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114325, "upload_time": "2010-02-14T15:24:45", "url": "https://files.pythonhosted.org/packages/03/3c/f8fcf90402da909c9fb2ad9e0ab6e04339ca7d4477f95ff521b8894aaacc/grokui.admin-0.4.1.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "b827bf7ad7b52ca0d15580ba18432db7", "sha256": "90859e288e1a6a5bfa2dc95ac9e70f912decf03a6c17d516cd216a6eca2d2b6a" }, "downloads": -1, "filename": "grokui.admin-0.5.tar.gz", "has_sig": false, "md5_digest": "b827bf7ad7b52ca0d15580ba18432db7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80934, "upload_time": "2009-09-15T15:46:55", "url": "https://files.pythonhosted.org/packages/a6/bc/30dedc7231991886a38a6da19526109cda8941a0a009dad55009326052fb/grokui.admin-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "26f02025a1f41ebd6b6d79d4634d4cb1", "sha256": "0783ff7dd834109dcc5b5a2bb3e7a3ec0843afa0f2ca1d0916ec967e2b2fba6a" }, "downloads": -1, "filename": "grokui.admin-0.6.tar.gz", "has_sig": false, "md5_digest": "26f02025a1f41ebd6b6d79d4634d4cb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26158, "upload_time": "2010-02-28T19:56:49", "url": "https://files.pythonhosted.org/packages/2c/58/54a6d94ca13e6451aa58f51c78733b107909cdd65fd9fb962b64b8db6010/grokui.admin-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "4b1b830e67af46c5f4e2162c9123a629", "sha256": "15264df2391e65c0b87af2b317275856f005bf30cac409f3fb493686940d83d9" }, "downloads": -1, "filename": "grokui.admin-0.6.1.tar.gz", "has_sig": false, "md5_digest": "4b1b830e67af46c5f4e2162c9123a629", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26378, "upload_time": "2010-03-07T01:15:37", "url": "https://files.pythonhosted.org/packages/c3/4c/f868b46f47de8c8230e1300a38afdc274d2e321f4c4bcdd0ea9f3af55759/grokui.admin-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "77f67579e8b5c1f58f4c903a52d16dd6", "sha256": "67bb202a61a1d82d4e004c009b145aeb9284d48d273727e571bc5115d01f6193" }, "downloads": -1, "filename": "grokui.admin-0.6.2.tar.gz", "has_sig": false, "md5_digest": "77f67579e8b5c1f58f4c903a52d16dd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30164, "upload_time": "2010-05-19T14:16:29", "url": "https://files.pythonhosted.org/packages/2a/a7/22f531b606a05de9f43c94cd2c7fa871ecab50ab13dfa115bc0caa7c8424/grokui.admin-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "fc01c14deb1b1794882390c5093c4c18", "sha256": "fd7f4361dc1d9e7789fa5527ef353c7b14d9defe783271065a36dc731a15d730" }, "downloads": -1, "filename": "grokui.admin-0.6.3.tar.gz", "has_sig": false, "md5_digest": "fc01c14deb1b1794882390c5093c4c18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28408, "upload_time": "2010-05-28T21:17:18", "url": "https://files.pythonhosted.org/packages/69/ae/8a944b472a404c1095199ddd2f65e453e98688da6470549764323bb95875/grokui.admin-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "0e4e133271dc670cab93c709c19a1183", "sha256": "2e10e920587cad62cfe753b9f49f2c09f376ea72d4ec13f8e46ae18fea9d150c" }, "downloads": -1, "filename": "grokui.admin-0.6.4.tar.gz", "has_sig": false, "md5_digest": "0e4e133271dc670cab93c709c19a1183", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28580, "upload_time": "2010-05-28T22:21:13", "url": "https://files.pythonhosted.org/packages/1e/e9/f90ae83d62b2a0f17e4e7f29825d765e2ff2207595ced0913935a3215f47/grokui.admin-0.6.4.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "66dd02bc3ab537a009396f412f865296", "sha256": "20aad06d210dd8003fdc3c99c99518d5327edaf5ff3113a7a264e61ecfb12406" }, "downloads": -1, "filename": "grokui.admin-0.7.0.tar.gz", "has_sig": false, "md5_digest": "66dd02bc3ab537a009396f412f865296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30498, "upload_time": "2010-07-04T14:38:31", "url": "https://files.pythonhosted.org/packages/f9/44/9b1ca6c4b8f5da0a6251f8ed5331563e5a9d6b9b572ba79de4c3e6256530/grokui.admin-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "d7164356794b7841482300cd0a6c7fda", "sha256": "5fa1b68e057ba48597e7ba01c74ce1216e332cf38dabbd797c04818ec18e2850" }, "downloads": -1, "filename": "grokui.admin-0.7.1.tar.gz", "has_sig": false, "md5_digest": "d7164356794b7841482300cd0a6c7fda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30764, "upload_time": "2010-10-07T14:04:41", "url": "https://files.pythonhosted.org/packages/74/b3/e417ab943ad16fb6586c73cf9febd3c2926070d25bf837771fe5767f4f8a/grokui.admin-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "1feae9cc3eb85804a5c6e091f9c5686a", "sha256": "183ef4e6b0e027ebf4503a00408034b3cd946ff0377c4f706c61c6f2edf4d248" }, "downloads": -1, "filename": "grokui.admin-0.7.2.tar.gz", "has_sig": false, "md5_digest": "1feae9cc3eb85804a5c6e091f9c5686a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30787, "upload_time": "2010-10-26T16:23:42", "url": "https://files.pythonhosted.org/packages/08/72/e9c4e19b29fddf74723797b0c64c44c66898f09d251113e009038540ff45/grokui.admin-0.7.2.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "1614685ad1edb3eaecd1832b21970ad1", "sha256": "ec1946e779d32c70439eea5716ad17f2eaf53e9d43afae38a089bb57cc95f8e2" }, "downloads": -1, "filename": "grokui.admin-0.8.tar.gz", "has_sig": false, "md5_digest": "1614685ad1edb3eaecd1832b21970ad1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30637, "upload_time": "2010-10-27T12:53:38", "url": "https://files.pythonhosted.org/packages/e1/f2/5e77537b555d7ef9f619fb63fa376aaa3a54d1e2f607dd0b652b762b4a02/grokui.admin-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "9ba83dfcefe2bca025e45fbcb06245d5", "sha256": "8b46eb8b18eb1399660f95696f324e18589bbd1f01148b69d660e4aa5268a648" }, "downloads": -1, "filename": "grokui.admin-0.9.tar.gz", "has_sig": false, "md5_digest": "9ba83dfcefe2bca025e45fbcb06245d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30073, "upload_time": "2011-01-20T14:30:03", "url": "https://files.pythonhosted.org/packages/e8/3f/e48283a39059fcfeb506f199fad317e8febf1afe097d81387ddfda40cba3/grokui.admin-0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "05d1c08170051e1763d5b3f618945341", "sha256": "a9c664c348a067c05f0763b341b0cd3af17962ee1bbe56f259af175691937d64" }, "downloads": -1, "filename": "grokui.admin-0.12.tar.gz", "has_sig": false, "md5_digest": "05d1c08170051e1763d5b3f618945341", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29303, "upload_time": "2016-02-16T08:43:29", "url": "https://files.pythonhosted.org/packages/30/09/8848c26fdc2e0e1a619744a2701834a742eeb7c86d6b002413a68e6d50b4/grokui.admin-0.12.tar.gz" } ] }