{
"info": {
"author": "Pablo Martin",
"author_email": "goinnn@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 2.6",
"Topic :: Software Development"
],
"description": ".. contents::\n\n============\nKate Plugins\n============\n\nInformation\n===========\n\nThese are Pate plugins for `Kate `_ editor. Plugins to make coding easier in `Python `_, `Django `_ and JavaScript\n\n.. note::\n\n This repository is unmaintained, because these plugins have been added to the official repository: `Python utils `_, `Javascript utils `_, `Django utils `_ and `XML pretty `_. The generic functions and generic classes have been added to the `libkatepate `_\n\n\nRequirements\n============\n\n * `Kate `_\n * Extra dependencies for extra and super nice features. Optional, but **very recomended** :)\n * `pysmell `_\n * `pyplete `_\n * `pyflakes `_\n * `simplejson `_\n * `pyjslint `_ (it requires `NodeJS `_, read the pyjslint readme)\n\nInstallation\n============\n\n* `Install Kate `_ from sources\n\n\n* Install optional requirements:\n\n::\n\n # Kate plugins has been tested with these versions but is very probably that works with later versions\n pip install pysmell==0.7.3 pyplete==0.0.2 pep8==0.6.1 pyflakes==0.5.0 pyjslint==0.3.3 simplejson==2.6.1\n\n\n* Install Kate-plugins:\n\n\n\n::\n\n pip install Kate-plugins\n ln -s /PATH/OF/THE/EGG/kate_plugins/ $(kde4-config --localprefix)/share/apps/kate/pate\n\nOr\n\n::\n\n cd ~/build\n git clone https://github.com/goinnn/Kate-plugins\n ln -s ~/build/Kate-plugins/kate_plugins/ $(kde4-config --localprefix)/share/apps/kate/pate\n\n* Startup Kate and enable \"Python Plugins\" in: Settings > Configure Kate > Plugins\n\nYou should now see three additional menu items: \"Python\", \"Javascript\", and \"XML\". You can change the menu configuration of easy way change the `settings `_\n\n\nPlugins\n=======\n\nAutocomplete (python)\n---------------------\n\n * Shortcut: It is automatical\n * from and import instruction\n * autocomplete into the code (beta) with `pysmell `_\n * There was a hook if you want to add your own packages python in the autocomplete structure. You should be create a file called \"autocomplete_path.py\" next to the \"autocomplete.py\" with a function \"def path(session, doc, view)\", like this:\n\n::\n\n def path(session, doc, view):\n if session == 'session1'\n return ['/PATH/OF/THE/EGG1/name1.egg',\n '/PATH/OF/THE/PACKAGE1/',\n ...\n '/PATH/OF/THE/EGGN/namen.egg'] \n elif session == 'session2':\n return ['/PATH/OF/THE/EGG2/name2.egg',\n '/PATH/OF/THE/PACKAGE2/',\n ...\n '/PATH/OF/THE/EGGN/namem.egg'] \n else:\n return ['/PATH/OF/THE/EGG2/name3.egg',\n '/PATH/OF/THE/PACKAGE3/',\n ...\n '/PATH/OF/THE/EGGN/namel.egg'] \n\n\ninsert IPDB (python)\n--------------------\n\n * Shortcut: Ctrl+I\n * Insert the text \"import ipdb; ipdb.set_trace()\"\n\n\ninsert __init__ (python)\n------------------------\n\n * Shortcut: Ctrl+-\n * Smart insert a function __init__\n\ninsert super (python)\n---------------------\n\n * Shortcut: Alt+-\n * Smart insert a call to super of the function\n\ninsert call recursive (python)\n------------------------------\n\n * Shortcut: Ctrl+Alt+-\n * Smart insert a call to the current function recursively\n\nPEP8 (python)\n-------------\n * Shortcut: Alt+8\n * Use PEP8 to look for ugly code, highlights lines with problems\n * It uses `pep8 `_ so it must be present in the system\n\nPyFlakes (python)\n-----------------\n * Shortcut: Alt+7\n * Use PyFlakes to look for bad code, highlights lines with problems\n * It uses `pyflakes `_ so it must be present in the system\n\nParse syntax (python)\n---------------------\n\n * Shortcut: Alt+6 or when you save the file\n * Parse syntax this file and show a error list, or a dialog say \"OK\"\n\nCheck All (python/javascript)\n-----------------------------\n\n * Shortcut: Alt+5\n * Check pep8, pyflakes, parse syntax and jslint\n\nTemplate Django urls (django)\n-----------------------------\n * Shortcut: Ctrl+Alt+7\n * Smart template of the file `urls.py `_\n\n\nTemplate import views (django)\n------------------------------\n * Shortcut: Ctrl+Alt+V\n * Insert the tipical imports in a view\n\n\nCreate Django form (django)\n---------------------------\n * Shortcut: Ctrl+Alt+F\n * Template to form class\n\n\nCreate Django model (django)\n----------------------------\n * Shortcut: Ctrl+Alt+M\n * Template to model class\n\n\nClose Template tag (django)\n----------------------------\n * Shortcut: Ctrl+Alt+C\n * Close the last open templatetag (block, if, for, etc)\n\nTemplate block (django)\n----------------------------\n * Shortcut: Ctrl+Alt+B\n * Insert a struncture like this: {% block content %}XXX{% endblock %} or {% if x > 3 %} {% endif %}\n\nAutocomplete static to javascript (javascript)\n----------------------------------------------\n * Shortcut: It is automatical\n\nAutocomplete static to jQuery (javascript)\n----------------------------------------------\n * Shortcut: It is automatical\n\njQuery ready (javascript)\n-------------------------\n * Shortcut: Ctrl+J\n * Template jQuery ready\n\nPretty JSON (javascript)\n------------------------\n * Shortcut: Ctrl+Alt+J\n * Convert a horrible json in a pretty JSON :-)\n\nJSLint (javascript)\n-------------------\n * Shortcut: Alt+9\n * Use JSLint to look for errors and bad code, highlights lines with problems\n * It uses `pyjslint `_ so it must be present in the system (and working!)\n\nPretty XML (xhtml)\n------------------------\n * Shortcut: Ctrl+Alt+X\n * Convert a horrible xml in a pretty XML :-)\n\nFuture Plugins\n==============\n\n * Clean code (core)\n * Improve autocompletes plugins (core)\n * Template tags autocomplete (django)\n * Integration with rope (python)\n\nOther repositories of Plugins to Kate\n=====================================\n\n * http://github.com/mtorromeo/kate-plugin-zencoding (Very recomended)\n * https://github.com/pag/pate/tree/master/src/plugins\n * https://github.com/emyller/pate-plugins\n * https://github.com/zaufi/kate-pate-plugins\n\n\nReleases\n========\n\n0.2.3 (2013-04-29)\n-------------------\n\n* Update the readme\n\n\n0.2.2 (2013-03-14)\n-------------------\n\n* Update the readme\n\n0.2.1 (2013-03-11)\n-------------------\n\n* This release is out of support\n* Now works from pypi\n* Improvement to pep8 checker\n\n0.2.0 (2013-02-12)\n-------------------\n\n* Fix an error in the Close Template tag (django)\n* Details to the JSON plugin\n* Improve in the js autocomplete generator\n\n\n0.1.9 (2013-02-06)\n-------------------\n\n* These changes are **backwards incompatibles**.\n* Adapt the plugins to the last Kate (2013-02-06)\n* Fix a little error in the pep8 plugin\n* Improve the JSON plugin\n\n0.1.8 (2012-09-02)\n-------------------\n\n* Fix an error in jQuery autocomplete and js autocomplete, broken `in this commit `_\n* Add try/except, if the user has not simplejson egg installed\n\n\n0.1.7 (2012-09-02)\n-------------------\n\n* Adapt the code to the last version of pyplete. Now the python autocomplete plugin can autocomplete the relative imports, something like this:\n\n::\n\n from models import MyModel # from the same directory of the models.py\n\nAnd this:\n\n::\n\n from .models import MyModel # from the same directory of the models.py\n\n\n0.1.6 (2012-08-18)\n-------------------\n\n* Fix for autocomplete in the last KDE \n* Restructuring of menus\n* Refactor\n* Thank you to `Jeroen van Veen `_ to the changes\n\n\n0.1.5 (2012-07-09)\n-------------------\n\n* Liberate `PyPlete `_ (You need install this egg if you want python autocomplete)\n* Add Copyright\n\n\n0.1.4 (2012-06-15)\n-------------------\n\n* Detail to jQuery autocomplete. This did not accept something like this: jQuery(\"a.class-with-dash\")\n\n\n0.1.3 (2012-04-24)\n-------------------\n\n* I forgot the block_plugins file.... o_O\n\n0.1.2 (2012-04-22)\n-------------------\n\n* Insert separators in the menu, before and after, of the plugins\n* Add Close Template tag plugin\n* Add Template block plugin\n\n\n0.1.1 (2012-03-17)\n-------------------\n\n* Created a menu structure to the plugins, before they were all in edit menu\n* Refactor an clean the code, if you insert a text with XXX, the cursor move here\n* Fix a little error in the jQuery plugin regex\n* Fix a little error in the python plugin, when the lines contains \";\"\n\n0.1.0 (2012-03-15)\n-------------------\n\n* A new settings to ignore pep8 errors\n* Now is possible move between various errors in the same line\n* Fix jslint errors line number\n* Fix callRecursive error, when to call the plugin with text in this line\n* Fix a little error in autocomplete\n\n0.0.9 (2012-03-12)\n-------------------\n\n* Add jQuery autocomplete plugin\n* Add XML pretty plugin\n* Add call recursive plugin\n\n* Title in the autocompletes\n* Fix some error in js autocomplete\n* Now the python autocomplete can depend of the session\n\n* The checker plugins move to the first error, from position, when they are invoked\n* Remove old popups in check plugins\n\n* Improvement in the usability of the template Django urls plugin and jQuery ready plugin\n* Other settings: PYTHON_AUTOCOMPLETE_ENABLED, JAVASCRIPT_AUTOCOMPLETE_ENABLED, JQUERY_AUTOCOMPLETE_ENABLED, CHECKALL_TO_SAVE\n* Refactor: Rename the utils file to kate_core_plugins, removing unnecessary code\n\n\n0.0.8 (2012-03-03)\n-------------------\n\n* Usability improvements in check plugins\n\n0.0.7 (2012-03-02)\n-------------------\n\n* Fix some errors of the 0.0.6 version (checker plugins)\n* Fix a error of JSON autocompletion\n* Update the readme\n\n0.0.6 (2012-03-02)\n-------------------\n\n* Python parse syntax plugin\n* PEP8 checker plugin\n* PyFlakes checker plugin\n* JSLint checker plugin\n* Settings to the kate actions: texts, short cuts, menus and icons\n\n0.0.5 (2012-02-28)\n-------------------\n\n* Cleaning code\n* Fix little error in preatty JSON. The quotes should be \" instead of '\n* Fix some other error\n* Refactored autocomplete plugin to python\n* Created a pyplete, a generic module to autocompletion in python\n* Fix a in the code to detect the class has a error (insert init plugin, insert super plugin)\n\n\n0.0.4 (2012-02-20)\n-------------------\n\n* Fix a error in autocomplete, if the line contains \"and\" or \"or\" \n* Improvement in the performance in the python autocompletation\n* Abstraction of Autocomplete. Create a Abstract class\n* Create a AbstractJSONFileCodeCompletionModel. Only autocompletion creating a json file\n* Create a static autocompletation to javascript\n\n0.0.3 (2012-02-02)\n-------------------\n\n* Fix some errors to autocomplete\n* Icons different to packages and modules\n* Usability in the autocomplete:\n* The popup that say \"Syntax error\" only show if the autocomplete is not manual\n* The python autocomplete, only works if the file ends with \".py\", \".pyc\" or it is not saved\n\n\n0.0.2 (2012-02-01)\n-------------------\n\n* Autocomplete to python (second version)\n\n0.0.1 (2012-01-29)\n-------------------\n\n* Autocomplete to python (first version)\n* ipdb, init, super, urls, form, model, ready, json plugin",
"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/goinnn/Kate-plugins",
"keywords": "kate,pate,plugins,kate plugins,pate plugins,python,autocomplete,autocomplete python,django,jquery,js,checker,pep8,pyflakes,jslint",
"license": "GNU Lesser General Public License",
"maintainer": null,
"maintainer_email": null,
"name": "Kate-plugins",
"package_url": "https://pypi.org/project/Kate-plugins/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/Kate-plugins/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "https://github.com/goinnn/Kate-plugins"
},
"release_url": "https://pypi.org/project/Kate-plugins/0.2.3/",
"requires_dist": null,
"requires_python": null,
"summary": "Plugins to Kate editor to develop faster python projects, django projects and something of javascript",
"version": "0.2.3"
},
"last_serial": 784586,
"releases": {
"0.0.1": [
{
"comment_text": "",
"digests": {
"md5": "d4e3c5d534d4e00754a18dbc54e03c83",
"sha256": "719c0179658cde172105d61e66ff75f3acda238cf1e4e78fb6dd6c5b8b150d49"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "d4e3c5d534d4e00754a18dbc54e03c83",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8973,
"upload_time": "2012-01-29T19:54:25",
"url": "https://files.pythonhosted.org/packages/7a/17/597049acae003df7d08ea5ec60e63ccc1a2d8b3517930a9894f4e8443f8f/Kate-plugins-0.0.1.tar.gz"
}
],
"0.0.2": [
{
"comment_text": "",
"digests": {
"md5": "068280a8423b2cdfcce1e703d62b2f00",
"sha256": "6ff012bfc54aa2674a800f1ee33c2aefc96ad0aa26f8d660ebd037f186a22c10"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "068280a8423b2cdfcce1e703d62b2f00",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11068,
"upload_time": "2012-02-01T09:12:41",
"url": "https://files.pythonhosted.org/packages/29/86/0546d9baf4a6bf6c13b798096288718f596a937fe9511ea7450e607c3912/Kate-plugins-0.0.2.tar.gz"
}
],
"0.0.3": [
{
"comment_text": "",
"digests": {
"md5": "153864b5c723a64d7059fea6c529961c",
"sha256": "e553f3fff15657a2cbdabaf55d2d3b3982ddc5ae867c9d81a8f9d199c0ed8cd3"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.3.tar.gz",
"has_sig": false,
"md5_digest": "153864b5c723a64d7059fea6c529961c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12047,
"upload_time": "2012-02-02T00:13:46",
"url": "https://files.pythonhosted.org/packages/25/73/2804be67730a97b386e960b380c18aa9aebf732d1732a3563b0734c36650/Kate-plugins-0.0.3.tar.gz"
}
],
"0.0.4": [
{
"comment_text": "",
"digests": {
"md5": "0f7f86401992bae2f5439b5b245b2e3b",
"sha256": "c8112cd60ab4d4b1d96a7e72f27c64c7549bb4b11b2d24e07d78a86db1066251"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.4.tar.gz",
"has_sig": false,
"md5_digest": "0f7f86401992bae2f5439b5b245b2e3b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13636,
"upload_time": "2012-02-20T00:25:24",
"url": "https://files.pythonhosted.org/packages/64/42/d32651e3994cb805b36dff008f0aff829fd9aaec93f3b4a35649a5970094/Kate-plugins-0.0.4.tar.gz"
}
],
"0.0.5": [
{
"comment_text": "",
"digests": {
"md5": "ad49a830a7bceff1264cf7de5ef5bcba",
"sha256": "456e345b1511fd81669807e8b0155bfcdc624300f5deda372256f28fe0766ae8"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.5.tar.gz",
"has_sig": false,
"md5_digest": "ad49a830a7bceff1264cf7de5ef5bcba",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14128,
"upload_time": "2012-02-28T14:10:34",
"url": "https://files.pythonhosted.org/packages/5b/e1/0af8498b028267ee6902a41f5730a0dfb015790cd33eab94eade5967902f/Kate-plugins-0.0.5.tar.gz"
}
],
"0.0.6": [
{
"comment_text": "",
"digests": {
"md5": "9267bf27609217a48b1c366399c49b7b",
"sha256": "6d0d74e60c1af74712bbc5d0a98f1d295c36e7361039095855b46433cc9842ed"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.6.tar.gz",
"has_sig": false,
"md5_digest": "9267bf27609217a48b1c366399c49b7b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17830,
"upload_time": "2012-03-02T14:52:26",
"url": "https://files.pythonhosted.org/packages/5c/98/bc78785da01458f05631ebb0567d19f4a12caff687ed63d912062f7fdb57/Kate-plugins-0.0.6.tar.gz"
}
],
"0.0.7": [
{
"comment_text": "",
"digests": {
"md5": "f870f75ea473f16b792647ca1c637fef",
"sha256": "f38f87b3fe396bda4110edfa483bd179a871f7f93b8a2e077efd27d0bcb5d6f6"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.7.tar.gz",
"has_sig": false,
"md5_digest": "f870f75ea473f16b792647ca1c637fef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18209,
"upload_time": "2012-03-02T20:19:57",
"url": "https://files.pythonhosted.org/packages/38/de/4b06a32f4585677de7bbc22fbcf729ac2cefed934237ea5c3c5c70b2dae9/Kate-plugins-0.0.7.tar.gz"
}
],
"0.0.8": [
{
"comment_text": "",
"digests": {
"md5": "2a58e3d014af8a502be342097dbf8d3b",
"sha256": "28ed22ac7633783f7ba98248665a04ec0d0a6bc056630d381a7d9eb865e74a87"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.8.tar.gz",
"has_sig": false,
"md5_digest": "2a58e3d014af8a502be342097dbf8d3b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18363,
"upload_time": "2012-03-03T20:14:33",
"url": "https://files.pythonhosted.org/packages/b0/a1/014cd69e67c1453557d19847c932951519a6eae99035e085c1f37366f4d8/Kate-plugins-0.0.8.tar.gz"
}
],
"0.0.9": [
{
"comment_text": "",
"digests": {
"md5": "fcf772f260cd22eca55743224986c87a",
"sha256": "95fbfb4b7e1ed67afc2b92855b9d4a24a8ff014269d6aa0aae7273e5172634a3"
},
"downloads": -1,
"filename": "Kate-plugins-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "fcf772f260cd22eca55743224986c87a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21233,
"upload_time": "2012-03-12T10:06:38",
"url": "https://files.pythonhosted.org/packages/9a/45/80e65807eede39c73fc20122f75630df890696a2efd73dea0aa5012aff58/Kate-plugins-0.0.9.tar.gz"
}
],
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "1d1d781e39b78e0382b28bd9fda10bbc",
"sha256": "2e88b861a941527fde94eacbae99236dbac9783f4e3218edda81b6b8cdaba4c2"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "1d1d781e39b78e0382b28bd9fda10bbc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21676,
"upload_time": "2012-03-15T00:03:47",
"url": "https://files.pythonhosted.org/packages/6b/62/c234f8591eb7f9796f30159c5dd361fdc0d15b97f0e6c5c5780c884f0e63/Kate-plugins-0.1.0.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "3d434a4e9db09324b955c027ac2082af",
"sha256": "afaaa332814d51de052d8d09773aeb65bd41dc9d2d6503f86fe66e662590839b"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "3d434a4e9db09324b955c027ac2082af",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22377,
"upload_time": "2012-03-17T19:56:43",
"url": "https://files.pythonhosted.org/packages/91/a4/4dd181c7dc9d14ab70aacd3e8ee08a93971c173de992edf5bf99c2d65d4c/Kate-plugins-0.1.1.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "69f61d88020580d018fe5870683cf0d5",
"sha256": "474eaf37bded06fb5dfa37d27a89851ed8cc7f1037547f245f873401d9126170"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "69f61d88020580d018fe5870683cf0d5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22912,
"upload_time": "2012-04-22T15:58:01",
"url": "https://files.pythonhosted.org/packages/af/93/34ddaf4bdf80704199ee6d0bcec53b1ca2377d2dc299476ba217191afcb2/Kate-plugins-0.1.2.tar.gz"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "b96c47ca89caac0a441e5a0dc90efe59",
"sha256": "efc005c35654f0b491fec69c3465e624a96e833f9e806cc771053b4b7d1bd882"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "b96c47ca89caac0a441e5a0dc90efe59",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23390,
"upload_time": "2012-04-24T13:40:05",
"url": "https://files.pythonhosted.org/packages/5b/3b/5d56ed0bf322fa2cc505c8079db2bc4c1efd7806b51ace2f6daae023874e/Kate-plugins-0.1.3.tar.gz"
}
],
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "37fb394cffa4ba2e75c68e86fe7e4d51",
"sha256": "ba5fbdbdac82b52ebf68c3b6d1dc86b46932c16ac59638bdab24c130ac70bd60"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "37fb394cffa4ba2e75c68e86fe7e4d51",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23488,
"upload_time": "2012-06-15T14:52:16",
"url": "https://files.pythonhosted.org/packages/7f/1b/4e4ce88a4f573ccdb62f440f3801e3485e451a569465909c0f6aa67497b6/Kate-plugins-0.1.4.tar.gz"
}
],
"0.1.5": [
{
"comment_text": "",
"digests": {
"md5": "9b8855d816f898c02ad6a3a99cb79388",
"sha256": "61f4b8d06349c36bf7bd584f82d328763f7d44445a16bfa2e8dcf23cf84a4dee"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "9b8855d816f898c02ad6a3a99cb79388",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21592,
"upload_time": "2012-07-09T11:48:21",
"url": "https://files.pythonhosted.org/packages/50/4d/58d053a336abbc43688885f7f4bec690b7c0055534ffe114af5b72f68298/Kate-plugins-0.1.5.tar.gz"
}
],
"0.1.6": [
{
"comment_text": "",
"digests": {
"md5": "6216379ef38dae3237184ac07a88572c",
"sha256": "44bc6a6b6e884f2468e94dacc64c0ae858865af4e0671b5d8c6b62a0824396d1"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "6216379ef38dae3237184ac07a88572c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22737,
"upload_time": "2012-08-18T17:56:22",
"url": "https://files.pythonhosted.org/packages/06/58/95d7899cf294f338413d3baebd17680f6371fad7b717780970692749b53b/Kate-plugins-0.1.6.tar.gz"
}
],
"0.1.7": [
{
"comment_text": "",
"digests": {
"md5": "ee7eeac81ad56b6cbdd9f25b30eae6d9",
"sha256": "e847056cd3b945314df9d7f1e05eb51f2e8426cc71ab833e478502f2bbaee288"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "ee7eeac81ad56b6cbdd9f25b30eae6d9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22927,
"upload_time": "2012-09-02T21:20:27",
"url": "https://files.pythonhosted.org/packages/b5/7b/42d479780411d79f59d992ae5b123cc101be7a1b23b27f6330376832aa01/Kate-plugins-0.1.7.tar.gz"
}
],
"0.1.8": [
{
"comment_text": "",
"digests": {
"md5": "ab0f0eff9d04620e011087ec8ac100d3",
"sha256": "a6879727c3cfff05b933e681ef2be06ecc256b6eeeeeb8863f7162046035e2e5"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "ab0f0eff9d04620e011087ec8ac100d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23159,
"upload_time": "2012-10-29T16:56:51",
"url": "https://files.pythonhosted.org/packages/9e/90/fe64b5d9194a7495a8bc4deba04145cd0cfa7dbfb25d68092d0e2f51d5a0/Kate-plugins-0.1.8.tar.gz"
}
],
"0.1.9": [
{
"comment_text": "",
"digests": {
"md5": "44585860d281cb1a85b3b8fd3501aec5",
"sha256": "3e91ae2d0c2586fbdeb27e16aced562acf8c598ef4ba459d269567958197232a"
},
"downloads": -1,
"filename": "Kate-plugins-0.1.9.tar.gz",
"has_sig": false,
"md5_digest": "44585860d281cb1a85b3b8fd3501aec5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19825,
"upload_time": "2013-02-06T12:12:11",
"url": "https://files.pythonhosted.org/packages/7c/0e/642a7ea90999497b19e6a99112a1829cf22fc0a19b2bda49e5276afc927c/Kate-plugins-0.1.9.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "3b208f726c8c5db9b4a9013c4c5b9aa5",
"sha256": "aa5751f6bf22309fc6ee0b82a5412174b07b6dd340b427f3a5ea3fa2227a3b6f"
},
"downloads": -1,
"filename": "Kate-plugins-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "3b208f726c8c5db9b4a9013c4c5b9aa5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20231,
"upload_time": "2013-02-12T15:15:26",
"url": "https://files.pythonhosted.org/packages/66/df/db75911b8251f402716e1e0a8b489e0b97416e8eb91524fd6ad5a9b086aa/Kate-plugins-0.2.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "051e3fbaaa052fe401c651920e620ae3",
"sha256": "d8bd602e1a637fa5af3f3a7d9384a2086ce39a6a6668afe2c9a6b783a37ddd28"
},
"downloads": -1,
"filename": "Kate-plugins-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "051e3fbaaa052fe401c651920e620ae3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 211821,
"upload_time": "2013-03-11T10:10:55",
"url": "https://files.pythonhosted.org/packages/d5/9f/ac674b481ac8125fa6fc6b0316de78995adf465e8d039740ff16a2c10146/Kate-plugins-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "fb802e8aca5c2b9ac47f9050abe77d7b",
"sha256": "3e24e43b7aa112ecd26777ebb732aa7459a3f27505a7d36bd53ee578dbab9c2a"
},
"downloads": -1,
"filename": "Kate-plugins-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "fb802e8aca5c2b9ac47f9050abe77d7b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 211838,
"upload_time": "2013-03-14T13:17:58",
"url": "https://files.pythonhosted.org/packages/5c/03/0ecb2692c62d13820f633b22a64db56716f607c25fe2de8f25232a6a2060/Kate-plugins-0.2.2.tar.gz"
}
],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "3edf1c799f4a2508625a57c857b9a741",
"sha256": "35ecda11b8073992587286e46cd682829e22241fbb9d3f8480c75d3783da619f"
},
"downloads": -1,
"filename": "Kate-plugins-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "3edf1c799f4a2508625a57c857b9a741",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 211829,
"upload_time": "2013-04-29T07:49:41",
"url": "https://files.pythonhosted.org/packages/a2/28/2c09c2d4b1bf92b1cddfb9eafb9f1ba715660d06016045fd4b2801917e7e/Kate-plugins-0.2.3.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "3edf1c799f4a2508625a57c857b9a741",
"sha256": "35ecda11b8073992587286e46cd682829e22241fbb9d3f8480c75d3783da619f"
},
"downloads": -1,
"filename": "Kate-plugins-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "3edf1c799f4a2508625a57c857b9a741",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 211829,
"upload_time": "2013-04-29T07:49:41",
"url": "https://files.pythonhosted.org/packages/a2/28/2c09c2d4b1bf92b1cddfb9eafb9f1ba715660d06016045fd4b2801917e7e/Kate-plugins-0.2.3.tar.gz"
}
]
}