{ "info": { "author": "Jason Robinson", "author_email": "jaywink@basshero.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Framework :: Paste", "Framework :: Pylons", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: Site Management", "Topic :: Internet :: WWW/HTTP :: WSGI" ], "description": "ARGONAUT \n========\n\nVersion 0.3.4 (30th March 2011)\n\nAuthor: Jason Robinson\njaywink (at) basshero.org\nhttp://www.basshero.org\n\n\n1. Description\n==============\n\nArgonaut is a blogging engine built with Pylons. It is lightweight\nand can be deployed on many types of web servers running Python.\n\nThe application is still very much in alpha stages and as such \nthere are bugs in the system and a lot of features which have \nnot been implemented.\n\nFor more information please see the following links:\n Authors webpage\n http://www.basshero.org\n Pylons HQ\n http://www.pylonshq.com\n\n\n2. Licence\n==========\n\nArgonaut is distributed under the FreeBSD license. This means you can use,\ncopy and distribute the code and application for free and with no obligations.\nIt is however required that the included copyright is included with the application\nusing source or binary components. Please see the file LICENSE.txt for the full\nlicense.\n\nThe licenses of the JavaScript components included with Argonaut do not\nenforce any additional requirements for reuse or distribution. Please see the\nlicenses of these components and any included icons in the folder 'third_party_licenses'.\n\n\n3. Installation\n===============\n\n3.1 Prequisites for install\n---------------------------\n\n- Python 2.4 - 2.7 [http://www.python.org]\n- Pylons 1.0 [http://pylonshq.com/]\n- Python setuptools (easy_install) [http://pypi.python.org/pypi/setuptools]\n\nPlease see Pylons documentation to get started with Pylons [http://pylonshq.com/docs/en/0.9.7/gettingstarted/].\n\n\n3.2 Other components\n--------------------\n\nIn addition to Pylons, Argonaut uses the following components:\n\n- Mako (templates, the View) [http://www.makotemplates.org/]\n- SQLAlchemy (the Model) [http://www.sqlalchemy.org/]\n- Sqlalchemy-migrate (database migration) [http://pypi.python.org/pypi/sqlalchemy-migrate]\n- repoze.what (authentication and access rights) [http://what.repoze.org/docs/1.0/]\n- CKEditor (for writing posts) [http://ckeditor.com/]\n- AddToAny (for sharing) [http://www.addtoany.com/]\n- jQuery (for additional magic) [http://jquery.com/]\n- Simple3color (default theme) [http://www.oswd.org/design/preview/id/3533]\n- TurboMail (for notifications) [http://www.python-turbomail.org/]\n- pwi (Picasa Webalbum Integrator javascript library, for gallery) [http://code.google.com/p/pwi/]\n\nOf these the JavaScript components CKEditor, jQuery, pwi and AddToAny are\ndistributed along with this package. The Python components are downloaded\nand installed by easy_install.\n\n\n3.3 Installation and Setup\n--------------------------\n\nPrequisites for install must be fulfilled. Install Argonaut using easy_install:\n\n easy_install argonaut\n \n OR with local .egg file\n \n easy_install \n\nMake a config file as follows:\n\n paster make-config argonaut config.ini\n\nTweak the config file as appropriate. Please see Pylons application\nsetup pages for hints on editing the config file [http://pythonpaste.org/deploy/].\nAfter this run the following to setup the application:\n\n paster setup-app config.ini#arg\n\nThen you are ready to go.\n\nYou can test the installation by running:\n\n paster serve config.ini\n\nAfter this visit the link http://127.0.0.1:5000\n\nOptionally you can extract the source and run Argonaut by launching development\nmode via setup.py. Just extract the source, install Pylons and in the Argonaut\nbase directory run:\n \n python setup.py develop\n paster serve development.ini\n\n\n4. Updating from a previous version\n===================================\n\nAn automatic database schema update routine has been implemented since 0.3 version.\nUnfortunately this does not handle all database related changes. Please see changelog below\nfor notes on what needs to be done with version upgrades.\n\n\n5. Usage\n========\n\n5.1 Modifying the site\n----------------------\n\nArgonaut features templates that can be used to control the site\nstructure, layout and texts. Unfortunately in this early version\nthere is no admin panel so all editing must be made to the files\ndirectly.\n\nTemplate files are situated in argonaut/templates. Please see\nMako documentation on how to change the templates.\n\n\n5.2 Configuration\n-----------------\n\nDuring application setup a database will be created in the form\nthat is configured in config.ini. In addition to blog data, Argonaut\nalso stores some configuration values in the database. These are \nstored in the table 'config'.\n\n\n5.3 Users\n---------\n\nThe default user for writing posts is 'admin', password 'admin'.\nCurrently users can only be added directly to the database. An\nadmin panel will be added later.\n\n\n5.4 Other usage notes\n---------------------\n\nProper documentation and usage will be added slowly over\nfuture releases :)\n\n\n6. Support\n==========\n\nPlease contact the author at jaywink (at) basshero.org for support,\nideas and bug reports.\n\n\n7. Changelog\n============\n\n0.3.4 30th March 2011\n - Added custom javascript template that is loaded from base template for site wide usage.\n - Removed usage of sqlalchemy-migrate since it was causing problems. A new type of DB migration\n will be thought out later.\n\n0.3.3 29th March 2011\n - Fixed routing for landing page with lowest page_order\n - Post commenting can now be disabled with the config setting comments_enabled, true/false\n - Fixed character encoding problem when getting page name from database\n - Base page now only displays links to active pages\n - Added a new page type, pwi_gallery, which is a gallery page using the jquery plugin 'pwi'\n (Picasa Webalbum Integrator javascript library, http://code.google.com/p/pwi/).\n \n0.3.2 20th February 2011\n - Added 'media' and 'social' models to the database. Media contains links to \n images and other media items. Social contains links to contact information or\n other sites. Links are given a media ID which is displayed in the Social -box with\n an url to the site or contact information.\n\n0.3 13th February 2011\n - sqlalchemy-migrate is now used to do automatic database schema\n upgrades according to model changes. Added as dependency, installed\n via easy_install automatically. Implementation thanks to:\n http://shane.caraveo.com/2010/09/13/database-migrations-for-sqlalchemy-part-duex/\n - Default landing page is now the one with the lowest page_order setting.\n - Pages are now mapped to a page type. Default page types are 'blog', 'archives' and\n 'tags'.\n - Page urls are now determined from page type, but can also be customised.\n - Custom page support has been added. Custom pages are mapped to page type 'custom'\n which redirects traffic to a mako template file as indicated in the pages table.\n - Version number will now be displayed in the Powered by -section in the main template.\n Removed these text strings and urls from the configuration table and placed them in\n the base template.\n Updating from version 0.2:\n - Pre-upgrade the database table 'pages' needs to be dropped for an easy upgrade. After\n this the script 'paster setup-app [config_file]#arg' needs to be run to create the\n table with the new schema. The rest of the database changes should be handled by\n the automatic schema update mechanism.\n\n0.2 6th December 2010\n - Initial Pylons version release\n\n0.1.x The 0.1 versions are the old PHP powered versions which were never released.", "description_content_type": null, "docs_url": null, "download_url": "http://pypi.python.org/pypi/Argonaut", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.basshero.org", "keywords": "python pylons blogging cms blog", "license": "FreeBSD", "maintainer": null, "maintainer_email": null, "name": "Argonaut", "package_url": "https://pypi.org/project/Argonaut/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/Argonaut/", "project_urls": { "Download": "http://pypi.python.org/pypi/Argonaut", "Homepage": "http://www.basshero.org" }, "release_url": "https://pypi.org/project/Argonaut/0.3.4/", "requires_dist": null, "requires_python": null, "summary": "Lightweight Pylons powered blogging engine.", "version": "0.3.4" }, "last_serial": 783781, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "68e9b71ea9c6a97ee359f50bef14bdb6", "sha256": "d1c9f6a8c0ebc79b9900253dd9cd8216c382607a4563a5772f0d436944eacc20" }, "downloads": -1, "filename": "Argonaut-0.2.0-py2.6.egg", "has_sig": false, "md5_digest": "68e9b71ea9c6a97ee359f50bef14bdb6", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2074726, "upload_time": "2010-12-06T18:44:05", "url": "https://files.pythonhosted.org/packages/87/60/5272ab06e4a8963343285a7159920f72964d0f99a5d923cade0dd38c8d64/Argonaut-0.2.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "7b5ba3f06cb9d125bb482764feabad9b", "sha256": "b3b8f35d63e8e691df73397a49bfb939585f8af5456fef9ef69a52ab87b2d20a" }, "downloads": -1, "filename": "Argonaut-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7b5ba3f06cb9d125bb482764feabad9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1435518, "upload_time": "2010-12-06T18:57:57", "url": "https://files.pythonhosted.org/packages/22/48/6817d9de23c98c09d8b701b2cfcdbb5c0423a228f389dbc1d0a8d0cf6ca7/Argonaut-0.2.0.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "f8c9a4bb56689bf5fb478fb79baaebe9", "sha256": "43e8d4a5cefe9bcfe15ef2111e941ecd129b189f9da787a8c6eac513d51e1289" }, "downloads": -1, "filename": "Argonaut-0.3-py2.6.egg", "has_sig": false, "md5_digest": "f8c9a4bb56689bf5fb478fb79baaebe9", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2083758, "upload_time": "2011-02-13T20:59:32", "url": "https://files.pythonhosted.org/packages/9c/7c/cab2faf2d1787c41f4c12516e5aa3defdb35e725856f5e3ea4258cca0543/Argonaut-0.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "0a41a5005941d4bf63da4fcb90d063e1", "sha256": "28819a5592383d8245628d04fcdf7e102497e779d65d662c502a1dad504a6fc4" }, "downloads": -1, "filename": "Argonaut-0.3.tar.gz", "has_sig": false, "md5_digest": "0a41a5005941d4bf63da4fcb90d063e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1440985, "upload_time": "2011-02-13T20:59:39", "url": "https://files.pythonhosted.org/packages/ac/38/00988f0c4d2f438e8d4f341c9bb3fae7c59fe51380cf2af0d4c730c77597/Argonaut-0.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "565fbdeae53f1549495c19ad4184c470", "sha256": "f7048b469d2ad136cb1e6b4e80cdb8fd8c739e0864a491884de58e8c16c0230e" }, "downloads": -1, "filename": "Argonaut-0.3.4-py2.6.egg", "has_sig": false, "md5_digest": "565fbdeae53f1549495c19ad4184c470", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2259723, "upload_time": "2011-03-30T15:35:21", "url": "https://files.pythonhosted.org/packages/ed/32/a41228b697820d4645e4c0536fe46461ad76f4cb6e7b07cd6241f751902f/Argonaut-0.3.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5e21a80ee2861eca6497db0b266dd08f", "sha256": "d1fba3cdb84bd0c021264a2fd3567b587612757347206a620c3d40ec2c3cc5b4" }, "downloads": -1, "filename": "Argonaut-0.3.4.tar.gz", "has_sig": false, "md5_digest": "5e21a80ee2861eca6497db0b266dd08f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1587494, "upload_time": "2011-03-30T15:35:10", "url": "https://files.pythonhosted.org/packages/36/0c/286a1431257d2a8a5132c44d3c8376fff1dc8331b61a00007b94c8c11f67/Argonaut-0.3.4.tar.gz" } ], "0.3dev-r91": [ { "comment_text": "built for Linux-2.6.35-26-generic-x86_64-with-glibc2.4", "digests": { "md5": "ab2aa749dc291a0a8415a8541901f24b", "sha256": "6f27722ae4a263e5480cc473585ad42b4e6265e9dabaea796c844edbeb3fcc5e" }, "downloads": -1, "filename": "Argonaut-0.3dev-r91.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "ab2aa749dc291a0a8415a8541901f24b", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 1460322, "upload_time": "2011-02-13T20:14:14", "url": "https://files.pythonhosted.org/packages/23/8b/cdef573b5b4a60beb09c66a08e6e908a440f79100f4f0f27aacd80aa2181/Argonaut-0.3dev-r91.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "096e0d8855ca6c7f74972dda4057d0e2", "sha256": "3e14d8c1b39d477ac1c281423b11594a57d4a6a01ef7f6e293fe539342d98fc2" }, "downloads": -1, "filename": "Argonaut-0.3dev-r91.tar.gz", "has_sig": false, "md5_digest": "096e0d8855ca6c7f74972dda4057d0e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1440624, "upload_time": "2011-02-13T20:14:21", "url": "https://files.pythonhosted.org/packages/b9/8c/44d42d1904fa3927779065d7a6594d341c32c929734b62658370bb66aa7c/Argonaut-0.3dev-r91.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "565fbdeae53f1549495c19ad4184c470", "sha256": "f7048b469d2ad136cb1e6b4e80cdb8fd8c739e0864a491884de58e8c16c0230e" }, "downloads": -1, "filename": "Argonaut-0.3.4-py2.6.egg", "has_sig": false, "md5_digest": "565fbdeae53f1549495c19ad4184c470", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2259723, "upload_time": "2011-03-30T15:35:21", "url": "https://files.pythonhosted.org/packages/ed/32/a41228b697820d4645e4c0536fe46461ad76f4cb6e7b07cd6241f751902f/Argonaut-0.3.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5e21a80ee2861eca6497db0b266dd08f", "sha256": "d1fba3cdb84bd0c021264a2fd3567b587612757347206a620c3d40ec2c3cc5b4" }, "downloads": -1, "filename": "Argonaut-0.3.4.tar.gz", "has_sig": false, "md5_digest": "5e21a80ee2861eca6497db0b266dd08f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1587494, "upload_time": "2011-03-30T15:35:10", "url": "https://files.pythonhosted.org/packages/36/0c/286a1431257d2a8a5132c44d3c8376fff1dc8331b61a00007b94c8c11f67/Argonaut-0.3.4.tar.gz" } ] }