From 7a4f561e851fdc7246d804c3abb6748b8a4199a6 Mon Sep 17 00:00:00 2001 From: gnowgi Date: Thu, 15 Mar 2012 16:19:20 +0530 Subject: master trunk of gnowsys-studio --- django_gstudio.egg-info/PKG-INFO | 284 ++++++++ django_gstudio.egg-info/SOURCES.txt | 975 +++++++++++++++++++++++++++ django_gstudio.egg-info/dependency_links.txt | 1 + django_gstudio.egg-info/not-zip-safe | 1 + django_gstudio.egg-info/requires.txt | 9 + django_gstudio.egg-info/top_level.txt | 3 + 6 files changed, 1273 insertions(+) create mode 100644 django_gstudio.egg-info/PKG-INFO create mode 100644 django_gstudio.egg-info/SOURCES.txt create mode 100644 django_gstudio.egg-info/dependency_links.txt create mode 100644 django_gstudio.egg-info/not-zip-safe create mode 100644 django_gstudio.egg-info/requires.txt create mode 100644 django_gstudio.egg-info/top_level.txt (limited to 'django_gstudio.egg-info') diff --git a/django_gstudio.egg-info/PKG-INFO b/django_gstudio.egg-info/PKG-INFO new file mode 100644 index 0000000..5eaa218 --- /dev/null +++ b/django_gstudio.egg-info/PKG-INFO @@ -0,0 +1,284 @@ +Metadata-Version: 1.0 +Name: django-gstudio +Version: 0.3.dev +Summary: A collaborative blogspace for constructing and publishing semantic knowledge networks and ontologies +Home-page: http://github.com/gnowgi/django-gstudio +Author: gnowgi +Author-email: nagarjun@gnowledge.org +License: BSD License +Description: ================== + gstudio: Gnowledge Studio + ================== + + A collaborative workspace for constructing and publishing semantic + knowledge networks and ontologies as blogs. + + Features taking shape + ===================== + + As and when a feature is tested and working it will be listed below. + + Nodes implemented + ================= + + Gstudio Components + ------------------ + + * Metatypes + * Object types + * Relation types + * Attribute types + * System types + * Process types + * Attributes + * Relations + * Node Specification + * Relation Specification + * Attribute Specification + * Union + * Complement + * Intersection + + + Objectapp Components + ------------------ + + * Objects + * Systems + * Processes + + Online Collaborative Platform + ============================= + + The application is built as a collaborative on line platform. + + Version Control + --------------- + All the nodes above are also registered with django-reversion for + version control using django-reversion. + + User Registration + ----------------- + + Basic registration using django-registration + + + Features you will see soon: + =========================== + + * neighbourhood graphs and concept graphs + * dynamic forms for adding attributes and relations following the + definition + + Other Semantic Web features to come + =================================== + + * data in RDF format + * rdf feed to a triple store + * sparql endpoint + * export and import of standard knowledge representation languages: CL, OWL, XTM etc. + + Features adopted from Django-Blog-Zinnia + ======================================== + + The following features are adopted from django-blog-zinnia code base + with a lot of gratitude. Thanks to an excellent codebase of + django-blog-zinnia, which taught us best software development + practices as well! After reviewing each feature for the purpose of + semantic blogging, we will retain or extend the following features. + + * Comments + * `Sitemaps`_ + * Archives views + * Related entries + * Private entries + * RSS or Atom Feeds + * Tags and categories views + * `Advanced search engine`_ + * Prepublication and expiration + * Edition in `MarkDown`_, `Textile`_ or `reStructuredText`_ + * Widgets (Popular entries, Similar entries, ...) + * Spam protection with `Akismet`_ or `TypePad`_ + * Admin dashboard + * `MetaWeblog API`_ + * Ping Directories + * Ping External links + * `Bit.ly`_ support + * `Twitter`_ support + * `Gravatar`_ support + * `Django-CMS`_ plugins + * Collaborative work + * Tags autocompletion + * `Entry model extendable`_ + * Pingback/Trackback support + * `Blogger conversion utility`_ + * `WordPress conversion utility`_ + * `WYMeditor`_, `TinyMCE`_ and `MarkItUp`_ support + * Ready to use and extendables templates + * `Windows Live Writer`_ compatibility + + Examples + ======== + + We will soon create a sandbox site for users to play and test the features. + + Project Page + ============ + + https://www.metastudio.org/groups/gstudio/overview + + ============ + Installation + ============ + + .. module:: gstudio + + .. _dependencies: + + Dependencies + ============ + + Make sure to install these packages prior to installation : + + * `Python 2.x`_ >= 2.5 + * `Django`_ >= 1.3 + * `django-mptt`_ >= 0.4.2 + * `django-tagging`_ >= 0.3.1 + * `BeautifulSoup`_ >= 3.2.0 + + The packages below are optionnal but needed for run the full test suite. + + * `pyparsing`_ >= 1.5.5 + * `django-xmlrpc`_ >= 0.1.3 + + Note that all the dependencies will be resolved if you install + Gstudio with :program:`pip` or :program:`easy_install`, excepting Django. + + .. _getting-the-code: + + Getting the code + ================ + + .. highlight:: console + + For the latest stable version of Gstudio use :program:`easy_install`: :: + + $ easy_install django-gstudio + + or use :program:`pip`: :: + + $ pip install django-gstudio + + You could also retrieve the last sources from + https://github.com/gnowgi/django-gstudio. Clone the repository + using :program:`git` and run the installation script: :: + + $ git clone git://github.com/gnowgi/django-gstudio.git + $ cd django-gstudio + $ python setup.py install + + or more easily via :program:`pip`: :: + + $ pip install -e git://github.com/gnowgi/django-gstudio.git#egg=django-gstudio + + .. _applications: + + Applications + ============ + + .. highlight:: python + + Then register :mod:`gstudio`, and these following applications in the + :setting:`INSTALLED_APPS` section of your project's settings. :: + + INSTALLED_APPS = ( + # Your favorite apps + 'django.contrib.contenttypes', + 'django.contrib.comments', + 'django.contrib.sessions', + 'django.contrib.sites', + 'django.contrib.admin', + 'tagging', + 'mptt', + 'gstudio',) + + .. _template-context-processors: + + Template Context Processors + =========================== + + Add these following + :setting:`template context processors` if not + already present. :: + + TEMPLATE_CONTEXT_PROCESSORS = ( + 'django.core.context_processors.auth', + 'django.core.context_processors.i18n', + 'django.core.context_processors.request', + 'django.core.context_processors.media', + 'django.core.context_processors.static', + 'gstudio.context_processors.version',) # Optional + + .. _urls: + + URLs + ==== + + Add the following lines to your project's urls.py in order to display the + blog. :: + + url(r'^gstudio/', include('gstudio.urls')), + url(r'^comments/', include('django.contrib.comments.urls')), + + Note that the default gstudio URLset is provided for convenient usage, but + you can customize your URLs if you want. Here's how: :: + + url(r'^', include('gstudio.urls.capabilities')), + url(r'^search/', include('gstudio.urls.search')), + url(r'^sitemap/', include('gstudio.urls.sitemap')), + url(r'^trackback/', include('gstudio.urls.trackback')), + url(r'^gstudio/tags/', include('gstudio.urls.tags')), + url(r'^gstudio/feeds/', include('gstudio.urls.feeds')), + url(r'^gstudio/authors/', include('gstudio.urls.authors')), + url(r'^gstudio/categories/', include('gstudio.urls.categories')), + url(r'^gstudio/discussions/', include('gstudio.urls.discussions')), + url(r'^gstudio/', include('gstudio.urls.quick_entry')), + url(r'^gstudio/', include('gstudio.urls.entries')), + url(r'^comments/', include('django.contrib.comments.urls')), + + .. _static-files: + + Static Files + ============ + + Since the version 1.3 of Django, Gstudio uses the + :mod:`django.contrib.staticfiles` application to serve the static files + needed. Please refer to + https://docs.djangoproject.com/en/dev/howto/static-files/ for more + informations about serving static files. + + .. _`Python 2.x`: http://www.python.org/ + .. _`Django`: https://www.djangoproject.com/ + .. _`django-mptt`: https://github.com/django-mptt/django-mptt/ + .. _`django-tagging`: https://code.google.com/p/django-tagging/ + .. _`BeautifulSoup`: http://www.crummy.com/software/BeautifulSoup/ + .. _`pyparsing`: http://pyparsing.wikispaces.com/ + .. _`django-xmlrpc`: https://github.com/Fantomas42/django-xmlrpc + + CHANGELOG + ========= + + 0.10 + ---- + + +Keywords: django,blog,weblog,zinnia,post,news,gnowsys,gnowledge,semantic,networks,ontolgies +Platform: UNKNOWN +Classifier: Framework :: Django +Classifier: Development Status :: 3 - Development/Alpha +Classifier: Environment :: Web Environment +Classifier: Programming Language :: Python +Classifier: Intended Audience :: Developers +Classifier: Operating System :: OS Independent +Classifier: License :: OSI Approved :: BSD License +Classifier: Topic :: Software Development :: Libraries :: Python Modules diff --git a/django_gstudio.egg-info/SOURCES.txt b/django_gstudio.egg-info/SOURCES.txt new file mode 100644 index 0000000..52a5fb1 --- /dev/null +++ b/django_gstudio.egg-info/SOURCES.txt @@ -0,0 +1,975 @@ +MANIFEST.in +README.rst +bootstrap.py +buildout.cfg +setup.py +demo/grappelli/__init__.py +demo/grappelli/models.py +demo/grappelli/settings.py +demo/grappelli/urls.py +demo/grappelli/dashboard/__init__.py +demo/grappelli/dashboard/dashboards.py +demo/grappelli/dashboard/modules.py +demo/grappelli/dashboard/registry.py +demo/grappelli/dashboard/utils.py +demo/grappelli/dashboard/management/__init__.py +demo/grappelli/dashboard/management/commands/__init__.py +demo/grappelli/dashboard/management/commands/customdashboard.py +demo/grappelli/dashboard/templatetags/__init__.py +demo/grappelli/dashboard/templatetags/grp_dashboard_tags.py +demo/grappelli/templatetags/__init__.py +demo/grappelli/templatetags/grp_tags.py +demo/grappelli/views/__init__.py +demo/grappelli/views/related.py +django_gstudio.egg-info/PKG-INFO +django_gstudio.egg-info/SOURCES.txt +django_gstudio.egg-info/dependency_links.txt +django_gstudio.egg-info/not-zip-safe +django_gstudio.egg-info/requires.txt +django_gstudio.egg-info/top_level.txt +gstudio/__init__.py +gstudio/comparison.py +gstudio/context_processors.py +gstudio/feeds.py +gstudio/forms.py +gstudio/gnowql.py +gstudio/managers.py +gstudio/models.py +gstudio/moderator.py +gstudio/ping.py +gstudio/rdf.py +gstudio/search.py +gstudio/settings.py +gstudio/signals.py +gstudio/sitemaps.py +gstudio/testsettings.py +gstudio/admin/__init__.py +gstudio/admin/attribute.py +gstudio/admin/attribute_bigintegerfield.py +gstudio/admin/attribute_booleanfield.py +gstudio/admin/attribute_charfield.py +gstudio/admin/attribute_commaseparatedintegerfield.py +gstudio/admin/attribute_datefield.py +gstudio/admin/attribute_datetimefield.py +gstudio/admin/attribute_decimalfield.py +gstudio/admin/attribute_emailfield.py +gstudio/admin/attribute_filefield.py +gstudio/admin/attribute_filepathfield.py +gstudio/admin/attribute_floatfield.py +gstudio/admin/attribute_imagefield.py +gstudio/admin/attribute_integerfield.py +gstudio/admin/attribute_ipaddressfield.py +gstudio/admin/attribute_nullbooleanfield.py +gstudio/admin/attribute_positiveintegerfield.py +gstudio/admin/attribute_textfield.py +gstudio/admin/attribute_timefield.py +gstudio/admin/attribute_urlfield.py +gstudio/admin/attributespecification.py +gstudio/admin/attributetype.py +gstudio/admin/complement.py +gstudio/admin/expression.py +gstudio/admin/forms.py +gstudio/admin/intersection.py +gstudio/admin/metatype.py +gstudio/admin/nodespecification.py +gstudio/admin/objecttype.py +gstudio/admin/processtype.py +gstudio/admin/relation.py +gstudio/admin/relationspecification.py +gstudio/admin/relationtype.py +gstudio/admin/systemtype.py +gstudio/admin/union.py +gstudio/admin/widgets.py +gstudio/locale/bl/LC_MESSAGES/django.po +gstudio/locale/de/LC_MESSAGES/django.mo +gstudio/locale/de/LC_MESSAGES/django.po +gstudio/locale/es/LC_MESSAGES/django.mo +gstudio/locale/es/LC_MESSAGES/django.po +gstudio/locale/fr/LC_MESSAGES/django.mo +gstudio/locale/fr/LC_MESSAGES/django.po +gstudio/locale/hi/LC_MESSAGES/django.po +gstudio/locale/hu/LC_MESSAGES/django.mo +gstudio/locale/hu/LC_MESSAGES/django.po +gstudio/locale/it/LC_MESSAGES/django.mo +gstudio/locale/it/LC_MESSAGES/django.po +gstudio/locale/ml/LC_MESSAGES/django.po +gstudio/locale/mr/LC_MESSAGES/django.po +gstudio/locale/nl/LC_MESSAGES/django.mo +gstudio/locale/nl/LC_MESSAGES/django.po +gstudio/locale/pl/LC_MESSAGES/django.mo +gstudio/locale/pl/LC_MESSAGES/django.po +gstudio/locale/pt_BR/LC_MESSAGES/django.mo +gstudio/locale/pt_BR/LC_MESSAGES/django.po +gstudio/locale/pu/LC_MESSAGES/django.po +gstudio/locale/ru/LC_MESSAGES/django.mo +gstudio/locale/ru/LC_MESSAGES/django.po +gstudio/locale/te/LC_MESSAGES/django.po +gstudio/locale/zh_CN/LC_MESSAGES/django.mo +gstudio/locale/zh_CN/LC_MESSAGES/django.po +gstudio/management/__init__.py +gstudio/management/commands/__init__.py +gstudio/management/commands/blogger2gstudio.py +gstudio/management/commands/feed2gstudio.py +gstudio/management/commands/gstudio2wp.py +gstudio/management/commands/spam_cleanup.py +gstudio/management/commands/wp2gstudio.py +gstudio/migrations/0001_initial.py +gstudio/migrations/__init__.py +gstudio/plugins/__init__.py +gstudio/plugins/admin.py +gstudio/plugins/cms_app.py +gstudio/plugins/cms_plugins.py +gstudio/plugins/menu.py +gstudio/plugins/models.py +gstudio/plugins/placeholder.py +gstudio/plugins/settings.py +gstudio/plugins/migrations/0001_initial.py +gstudio/plugins/migrations/0002_auto__add_field_latestnodetypesplugin_template_to_render__add_field_sele.py +gstudio/plugins/migrations/0003_auto__del_field_latestnodetypesplugin_metatype__del_field_latestnodetypesp.py +gstudio/plugins/migrations/0004_auto__add_field_latestnodetypesplugin_submetatypes.py +gstudio/plugins/migrations/0005_auto__add_randomnodetypesplugin.py +gstudio/plugins/migrations/__init__.py +gstudio/spam_checker/__init__.py +gstudio/spam_checker/backends/__init__.py +gstudio/spam_checker/backends/all_is_spam.py +gstudio/spam_checker/backends/automattic.py +gstudio/spam_checker/backends/mollom.py +gstudio/spam_checker/backends/typepad.py +gstudio/static/gstudio/css/config.rb +gstudio/static/gstudio/css/dashboard_gstudio.css +gstudio/static/gstudio/css/dashboard_objectapp.css +gstudio/static/gstudio/css/grappelli-skin-default.css +gstudio/static/gstudio/css/ie.css +gstudio/static/gstudio/css/jquery-ui.css +gstudio/static/gstudio/css/jquery.autocomplete.css +gstudio/static/gstudio/css/print.css +gstudio/static/gstudio/css/screen.css +gstudio/static/gstudio/css/slider.css +gstudio/static/gstudio/css/structures.css +gstudio/static/gstudio/css/wymeditor_styles.css +gstudio/static/gstudio/css/src/_base.sass +gstudio/static/gstudio/css/src/_calendar.sass +gstudio/static/gstudio/css/src/_gbobject.sass +gstudio/static/gstudio/css/src/_gstudio.sass +gstudio/static/gstudio/css/src/_paginator.sass +gstudio/static/gstudio/css/src/_tag-cloud.sass +gstudio/static/gstudio/css/src/dashboard_gstudio.sass +gstudio/static/gstudio/css/src/dashboard_objectapp.sass +gstudio/static/gstudio/css/src/ie.sass +gstudio/static/gstudio/css/src/print.sass +gstudio/static/gstudio/css/src/screen.sass +gstudio/static/gstudio/css/src/slider.sass +gstudio/static/gstudio/img/background.gif +gstudio/static/gstudio/img/bullet.png +gstudio/static/gstudio/img/comments.png +gstudio/static/gstudio/img/community.png +gstudio/static/gstudio/img/favicon.ico +gstudio/static/gstudio/img/favicon.png +gstudio/static/gstudio/img/grid.png +gstudio/static/gstudio/img/help.png +gstudio/static/gstudio/img/logo.png +gstudio/static/gstudio/img/manage.png +gstudio/static/gstudio/img/objecttype.png +gstudio/static/gstudio/img/plugin.png +gstudio/static/gstudio/img/preview.png +gstudio/static/gstudio/img/rss.png +gstudio/static/gstudio/img/shorturl.png +gstudio/static/gstudio/img/sitemap.png +gstudio/static/gstudio/img/tags.png +gstudio/static/gstudio/img/trans.png +gstudio/static/gstudio/img/wlw/comments.png +gstudio/static/gstudio/img/wlw/gstudio.png +gstudio/static/gstudio/img/wlw/watermark.png +gstudio/static/gstudio/js/d3.chart.js +gstudio/static/gstudio/js/d3.chart.min.js +gstudio/static/gstudio/js/d3.csv.js +gstudio/static/gstudio/js/d3.csv.min.js +gstudio/static/gstudio/js/d3.geo.js +gstudio/static/gstudio/js/d3.geo.min.js +gstudio/static/gstudio/js/d3.geom.js +gstudio/static/gstudio/js/d3.geom.min.js +gstudio/static/gstudio/js/d3.js +gstudio/static/gstudio/js/d3.layout.js +gstudio/static/gstudio/js/d3.layout.min.js +gstudio/static/gstudio/js/d3.min.js +gstudio/static/gstudio/js/d3.time.js +gstudio/static/gstudio/js/d3.time.min.js +gstudio/static/gstudio/js/egonet.json +gstudio/static/gstudio/js/force.js +gstudio/static/gstudio/js/gstudio.js +gstudio/static/gstudio/js/gstudiojs.js +gstudio/static/gstudio/js/jquery-ui.js +gstudio/static/gstudio/js/jquery.autocomplete.js +gstudio/static/gstudio/js/jquery.bgiframe.js +gstudio/static/gstudio/js/jquery.js +gstudio/static/gstudio/js/jquery.masonry.js +gstudio/static/gstudio/js/jquery.min.js +gstudio/static/gstudio/js/jquery.ui.js +gstudio/static/gstudio/js/jquery.ui.timepicker.js +gstudio/static/gstudio/js/mptt_m2m_selectbox.js +gstudio/static/gstudio/js/underscore.js +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/GPL-LICENSE.txt +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/MIT-LICENSE.txt +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/index.html +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/jquery.ui.timepicker.css +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/jquery.ui.timepicker.js +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/releases.txt +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/i18n/i18n.html +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/i18n/jquery.ui.timepicker-de.js +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/i18n/jquery.ui.timepicker-fr.js +gstudio/static/gstudio/js/jquery-ui-timepicker-0.2.9/i18n/jquery.ui.timepicker-ja.js +gstudio/static/gstudio/js/markitup/jquery.markitup.js +gstudio/static/gstudio/js/markitup/sets/html/set.js +gstudio/static/gstudio/js/markitup/sets/html/style.css +gstudio/static/gstudio/js/markitup/sets/html/images/bold.png +gstudio/static/gstudio/js/markitup/sets/html/images/clean.png +gstudio/static/gstudio/js/markitup/sets/html/images/h1.png +gstudio/static/gstudio/js/markitup/sets/html/images/h2.png +gstudio/static/gstudio/js/markitup/sets/html/images/h3.png +gstudio/static/gstudio/js/markitup/sets/html/images/h4.png +gstudio/static/gstudio/js/markitup/sets/html/images/h5.png +gstudio/static/gstudio/js/markitup/sets/html/images/h6.png +gstudio/static/gstudio/js/markitup/sets/html/images/image.png +gstudio/static/gstudio/js/markitup/sets/html/images/italic.png +gstudio/static/gstudio/js/markitup/sets/html/images/link.png +gstudio/static/gstudio/js/markitup/sets/html/images/list-bullet.png +gstudio/static/gstudio/js/markitup/sets/html/images/list-item.png +gstudio/static/gstudio/js/markitup/sets/html/images/list-numeric.png +gstudio/static/gstudio/js/markitup/sets/html/images/paragraph.png +gstudio/static/gstudio/js/markitup/sets/html/images/picture.png +gstudio/static/gstudio/js/markitup/sets/html/images/preview.png +gstudio/static/gstudio/js/markitup/sets/html/images/stroke.png +gstudio/static/gstudio/js/markitup/sets/markdown/set.js +gstudio/static/gstudio/js/markitup/sets/markdown/style.css +gstudio/static/gstudio/js/markitup/sets/markdown/images/bold.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/code.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/h1.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/h2.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/h3.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/h4.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/h5.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/h6.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/italic.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/link.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/list-bullet.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/list-numeric.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/picture.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/preview.png +gstudio/static/gstudio/js/markitup/sets/markdown/images/quotes.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/set.js +gstudio/static/gstudio/js/markitup/sets/restructuredtext/style.css +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/bold.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/code.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/h1.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/h2.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/h3.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/h4.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/h5.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/italic.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/link.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/list-bullet.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/list-numeric.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/picture.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/preview.png +gstudio/static/gstudio/js/markitup/sets/restructuredtext/images/quotes.png +gstudio/static/gstudio/js/markitup/sets/textile/set.js +gstudio/static/gstudio/js/markitup/sets/textile/style.css +gstudio/static/gstudio/js/markitup/sets/textile/images/bold.png +gstudio/static/gstudio/js/markitup/sets/textile/images/code.png +gstudio/static/gstudio/js/markitup/sets/textile/images/h1.png +gstudio/static/gstudio/js/markitup/sets/textile/images/h2.png +gstudio/static/gstudio/js/markitup/sets/textile/images/h3.png +gstudio/static/gstudio/js/markitup/sets/textile/images/h4.png +gstudio/static/gstudio/js/markitup/sets/textile/images/h5.png +gstudio/static/gstudio/js/markitup/sets/textile/images/h6.png +gstudio/static/gstudio/js/markitup/sets/textile/images/italic.png +gstudio/static/gstudio/js/markitup/sets/textile/images/link.png +gstudio/static/gstudio/js/markitup/sets/textile/images/list-bullet.png +gstudio/static/gstudio/js/markitup/sets/textile/images/list-numeric.png +gstudio/static/gstudio/js/markitup/sets/textile/images/paragraph.png +gstudio/static/gstudio/js/markitup/sets/textile/images/picture.png +gstudio/static/gstudio/js/markitup/sets/textile/images/preview.png +gstudio/static/gstudio/js/markitup/sets/textile/images/quotes.png +gstudio/static/gstudio/js/markitup/sets/textile/images/stroke.png +gstudio/static/gstudio/js/markitup/skins/django/style.css +gstudio/static/gstudio/js/markitup/skins/django/images/handle.png +gstudio/static/gstudio/js/markitup/skins/django/images/menu.png +gstudio/static/gstudio/js/markitup/skins/django/images/submenu.png +gstudio/static/gstudio/js/markitup/templates/preview.css +gstudio/static/gstudio/js/markitup/templates/preview.html +gstudio/static/gstudio/js/wymeditor/jquery.wymeditor.js +gstudio/static/gstudio/js/wymeditor/jquery.wymeditor.min.js +gstudio/static/gstudio/js/wymeditor/jquery.wymeditor.pack.js +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-blockquote.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-h1.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-h2.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-h3.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-h4.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-h5.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-h6.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-p.png +gstudio/static/gstudio/js/wymeditor/iframe/default/lbl-pre.png +gstudio/static/gstudio/js/wymeditor/iframe/default/wymiframe.css +gstudio/static/gstudio/js/wymeditor/iframe/default/wymiframe.html +gstudio/static/gstudio/js/wymeditor/lang/bg.js +gstudio/static/gstudio/js/wymeditor/lang/ca.js +gstudio/static/gstudio/js/wymeditor/lang/cs.js +gstudio/static/gstudio/js/wymeditor/lang/cy.js +gstudio/static/gstudio/js/wymeditor/lang/de.js +gstudio/static/gstudio/js/wymeditor/lang/en.js +gstudio/static/gstudio/js/wymeditor/lang/es.js +gstudio/static/gstudio/js/wymeditor/lang/fa.js +gstudio/static/gstudio/js/wymeditor/lang/fi.js +gstudio/static/gstudio/js/wymeditor/lang/fr.js +gstudio/static/gstudio/js/wymeditor/lang/gl.js +gstudio/static/gstudio/js/wymeditor/lang/he.js +gstudio/static/gstudio/js/wymeditor/lang/hr.js +gstudio/static/gstudio/js/wymeditor/lang/hu.js +gstudio/static/gstudio/js/wymeditor/lang/it.js +gstudio/static/gstudio/js/wymeditor/lang/nb.js +gstudio/static/gstudio/js/wymeditor/lang/nl.js +gstudio/static/gstudio/js/wymeditor/lang/nn.js +gstudio/static/gstudio/js/wymeditor/lang/pl.js +gstudio/static/gstudio/js/wymeditor/lang/pt-br.js +gstudio/static/gstudio/js/wymeditor/lang/pt.js +gstudio/static/gstudio/js/wymeditor/lang/ru.js +gstudio/static/gstudio/js/wymeditor/lang/sv.js +gstudio/static/gstudio/js/wymeditor/lang/tr.js +gstudio/static/gstudio/js/wymeditor/lang/zh_cn.js +gstudio/static/gstudio/js/wymeditor/plugins/embed/jquery.wymeditor.embed.js +gstudio/static/gstudio/js/wymeditor/plugins/fullscreen/icon_fullscreen.gif +gstudio/static/gstudio/js/wymeditor/plugins/fullscreen/jquery.wymeditor.fullscreen.js +gstudio/static/gstudio/js/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js +gstudio/static/gstudio/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js +gstudio/static/gstudio/js/wymeditor/plugins/resizable/readme.txt +gstudio/static/gstudio/js/wymeditor/plugins/tidy/README +gstudio/static/gstudio/js/wymeditor/plugins/tidy/jquery.wymeditor.tidy.js +gstudio/static/gstudio/js/wymeditor/plugins/tidy/tidy.php +gstudio/static/gstudio/js/wymeditor/plugins/tidy/wand.png +gstudio/static/gstudio/js/wymeditor/skins/wymeditor_icon.png +gstudio/static/gstudio/js/wymeditor/skins/compact/icons.png +gstudio/static/gstudio/js/wymeditor/skins/compact/skin.css +gstudio/static/gstudio/js/wymeditor/skins/compact/skin.js +gstudio/static/gstudio/js/wymeditor/skins/default/icons.png +gstudio/static/gstudio/js/wymeditor/skins/default/skin.css +gstudio/static/gstudio/js/wymeditor/skins/default/skin.js +gstudio/static/gstudio/js/wymeditor/skins/django/icons.png +gstudio/static/gstudio/js/wymeditor/skins/django/skin.css +gstudio/static/gstudio/js/wymeditor/skins/django/skin.js +gstudio/static/gstudio/js/wymeditor/skins/minimal/skin.css +gstudio/static/gstudio/js/wymeditor/skins/minimal/skin.js +gstudio/static/gstudio/js/wymeditor/skins/minimal/images/bg.header.gif +gstudio/static/gstudio/js/wymeditor/skins/minimal/images/bg.selector.silver.gif +gstudio/static/gstudio/js/wymeditor/skins/minimal/images/bg.wymeditor.png +gstudio/static/gstudio/js/wymeditor/skins/minimal/images/icons.silver.gif +gstudio/static/gstudio/js/wymeditor/skins/silver/COPYING +gstudio/static/gstudio/js/wymeditor/skins/silver/README +gstudio/static/gstudio/js/wymeditor/skins/silver/skin.css +gstudio/static/gstudio/js/wymeditor/skins/silver/skin.js +gstudio/static/gstudio/js/wymeditor/skins/silver/images/bg.header.gif +gstudio/static/gstudio/js/wymeditor/skins/silver/images/bg.selector.silver.gif +gstudio/static/gstudio/js/wymeditor/skins/silver/images/bg.wymeditor.png +gstudio/static/gstudio/js/wymeditor/skins/silver/images/icons.silver.gif +gstudio/static/gstudio/js/wymeditor/skins/twopanels/icons.png +gstudio/static/gstudio/js/wymeditor/skins/twopanels/skin.css +gstudio/static/gstudio/js/wymeditor/skins/twopanels/skin.js +gstudio/templates/404.html +gstudio/templates/500.html +gstudio/templates/base.html +gstudio/templates/index.html +gstudio/templates/skeleton.html +gstudio/templates/admin/gstudio/app_index.html +gstudio/templates/admin/gstudio/nodetype/autocomplete_tags.js +gstudio/templates/admin/gstudio/nodetype/markitup.js +gstudio/templates/admin/gstudio/nodetype/tinymce_textareas.js +gstudio/templates/admin/gstudio/nodetype/wymeditor.js +gstudio/templates/admin/gstudio/widgets/ATquickpost.html +gstudio/templates/admin/gstudio/widgets/OTquickpost.html +gstudio/templates/admin/gstudio/widgets/_content_stats.html +gstudio/templates/admin/gstudio/widgets/_draft_nodetypes.html +gstudio/templates/admin/gstudio/widgets/_recent_comments.html +gstudio/templates/admin/gstudio/widgets/_recent_linkbacks.html +gstudio/templates/admin/gstudio/widgets/base.html +gstudio/templates/admin/gstudio/widgets/content_stats.html +gstudio/templates/admin/gstudio/widgets/draft_nodetypes.html +gstudio/templates/admin/gstudio/widgets/quickpost.html +gstudio/templates/admin/gstudio/widgets/recent_comments.html +gstudio/templates/admin/gstudio/widgets/recent_linkbacks.html +gstudio/templates/comments/comment_authors_email.txt +gstudio/templates/comments/comment_notification_email.txt +gstudio/templates/comments/comment_reply_email.txt +gstudio/templates/comments/gstudio_nodetype_preview.html +gstudio/templates/comments/gstudio/nodetype/form.html +gstudio/templates/comments/gstudio/nodetype/posted.html +gstudio/templates/feeds/comment_description.html +gstudio/templates/feeds/comment_title.html +gstudio/templates/feeds/discussion_description.html +gstudio/templates/feeds/discussion_title.html +gstudio/templates/feeds/nodetype_description.html +gstudio/templates/feeds/nodetype_title.html +gstudio/templates/feeds/pingback_description.html +gstudio/templates/feeds/pingback_title.html +gstudio/templates/feeds/trackback_description.html +gstudio/templates/feeds/trackback_title.html +gstudio/templates/gstudio/_header.html +gstudio/templates/gstudio/_narrative_detail.html +gstudio/templates/gstudio/_nodetype_detail.html +gstudio/templates/gstudio/_nodetype_neighbourhood.html +gstudio/templates/gstudio/_subtype_detail.html +gstudio/templates/gstudio/attributetype_detail.html +gstudio/templates/gstudio/author_list.html +gstudio/templates/gstudio/base.html +gstudio/templates/gstudio/graph1.html +gstudio/templates/gstudio/login.html +gstudio/templates/gstudio/metatype_list.html +gstudio/templates/gstudio/nodetype_archive.html +gstudio/templates/gstudio/nodetype_archive_day.html +gstudio/templates/gstudio/nodetype_archive_month.html +gstudio/templates/gstudio/nodetype_archive_year.html +gstudio/templates/gstudio/nodetype_detail.html +gstudio/templates/gstudio/nodetype_list.html +gstudio/templates/gstudio/nodetype_search.html +gstudio/templates/gstudio/nodetype_trackback.xml +gstudio/templates/gstudio/opensearch.xml +gstudio/templates/gstudio/password.html +gstudio/templates/gstudio/rsd.xml +gstudio/templates/gstudio/sitemap.html +gstudio/templates/gstudio/skeleton.html +gstudio/templates/gstudio/tag_list.html +gstudio/templates/gstudio/wlwmanifest.xml +gstudio/templates/gstudio/wxr.xml +gstudio/templates/gstudio/author/nodetype_list.html +gstudio/templates/gstudio/cms/nodetype_detail.html +gstudio/templates/gstudio/cms/nodetype_list.html +gstudio/templates/gstudio/cms/random_nodetypes.html +gstudio/templates/gstudio/metatype/nodetype_list.html +gstudio/templates/gstudio/tag/nodetype_list.html +gstudio/templates/gstudio/tags/archives_nodetypes.html +gstudio/templates/gstudio/tags/archives_nodetypes_link.html +gstudio/templates/gstudio/tags/archives_nodetypes_tree.html +gstudio/templates/gstudio/tags/authors.html +gstudio/templates/gstudio/tags/breadcrumbs.html +gstudio/templates/gstudio/tags/calendar.html +gstudio/templates/gstudio/tags/dummy.html +gstudio/templates/gstudio/tags/featured_nodetypes.html +gstudio/templates/gstudio/tags/metatypes.html +gstudio/templates/gstudio/tags/nodetypes.html +gstudio/templates/gstudio/tags/pagination.html +gstudio/templates/gstudio/tags/popular_nodetypes.html +gstudio/templates/gstudio/tags/random_nodetypes.html +gstudio/templates/gstudio/tags/recent_comments.html +gstudio/templates/gstudio/tags/recent_linkbacks.html +gstudio/templates/gstudio/tags/recent_nodetypes.html +gstudio/templates/gstudio/tags/similar_nodetypes.html +gstudio/templates/gstudio/tags/slider_nodetypes.html +gstudio/templates/gstudio/tags/tag_cloud.html +gstudio/templates/gstudiodashboard/dashboard.html +gstudio/templates/gstudioforms/gstudioattributeform.html +gstudio/templates/gstudioforms/gstudioattributetypeform.html +gstudio/templates/gstudioforms/gstudiocomplementform.html +gstudio/templates/gstudioforms/gstudiointersectionform.html +gstudio/templates/gstudioforms/gstudiometatypeform.html +gstudio/templates/gstudioforms/gstudioobjecttypeform.html +gstudio/templates/gstudioforms/gstudioprocesstypeform.html +gstudio/templates/gstudioforms/gstudiorelationform.html +gstudio/templates/gstudioforms/gstudiorelationtypeform.html +gstudio/templates/gstudioforms/gstudiosystemtypeform.html +gstudio/templates/gstudioforms/gstudiounionform.html +gstudio/templates/registration/activate.html +gstudio/templates/registration/activation_email.txt +gstudio/templates/registration/activation_email_subject.txt +gstudio/templates/registration/login.html +gstudio/templates/registration/logout.html +gstudio/templates/registration/password_change_done.html +gstudio/templates/registration/password_change_form.html +gstudio/templates/registration/password_reset_complete.html +gstudio/templates/registration/password_reset_confirm.html +gstudio/templates/registration/password_reset_done.html +gstudio/templates/registration/password_reset_email.html +gstudio/templates/registration/password_reset_form.html +gstudio/templates/registration/registration_complete.html +gstudio/templates/registration/registration_form.html +gstudio/templatetags/__init__.py +gstudio/templatetags/gstudio_admin_tags.py +gstudio/templatetags/gstudio_tags.py +gstudio/templatetags/zbreadcrumbs.py +gstudio/templatetags/zcalendar.py +gstudio/tests/__init__.py +gstudio/tests/admin.py +gstudio/tests/comparison.py +gstudio/tests/custom_spam_checker.py +gstudio/tests/custom_url_shortener.py +gstudio/tests/custom_views_detail_urls.py +gstudio/tests/feeds.py +gstudio/tests/managers.py +gstudio/tests/metatype.py +gstudio/tests/metaweblog.py +gstudio/tests/moderator.py +gstudio/tests/nodetype.py +gstudio/tests/ping.py +gstudio/tests/pingback.py +gstudio/tests/quick_nodetype.py +gstudio/tests/signals.py +gstudio/tests/sitemaps.py +gstudio/tests/spam_checker.py +gstudio/tests/templatetags.py +gstudio/tests/url_shortener.py +gstudio/tests/urls.py +gstudio/tests/utils.py +gstudio/tests/views.py +gstudio/url_shortener/__init__.py +gstudio/url_shortener/backends/__init__.py +gstudio/url_shortener/backends/bitly.py +gstudio/url_shortener/backends/default.py +gstudio/urls/__init__.py +gstudio/urls/add.py +gstudio/urls/ajaxurls.py +gstudio/urls/authors.py +gstudio/urls/capabilities.py +gstudio/urls/dashboard.py +gstudio/urls/discussions.py +gstudio/urls/feeds.py +gstudio/urls/graphs.py +gstudio/urls/metatypes.py +gstudio/urls/nodetypes.py +gstudio/urls/quick_nodetype.py +gstudio/urls/search.py +gstudio/urls/sitemap.py +gstudio/urls/tags.py +gstudio/urls/trackback.py +gstudio/views/__init__.py +gstudio/views/add.py +gstudio/views/ajaxviews.py +gstudio/views/authors.py +gstudio/views/channels.py +gstudio/views/decorators.py +gstudio/views/graphs.py +gstudio/views/metatypes.py +gstudio/views/nodetypes.py +gstudio/views/quick_nodetype.py +gstudio/views/search.py +gstudio/views/sitemap.py +gstudio/views/tags.py +gstudio/views/trackback.py +gstudio/views/userdashboard.py +gstudio/xmlrpc/__init__.py +gstudio/xmlrpc/metaweblog.py +gstudio/xmlrpc/pingback.py +objectapp/__init__.py +objectapp/comparison.py +objectapp/context_processors.py +objectapp/feeds.py +objectapp/forms.py +objectapp/managers.py +objectapp/models.py +objectapp/moderator.py +objectapp/ping.py +objectapp/search.py +objectapp/settings.py +objectapp/signals.py +objectapp/sitemaps.py +objectapp/testsettings.py +objectapp/admin/__init__.py +objectapp/admin/forms.py +objectapp/admin/gbobject.py +objectapp/admin/process.py +objectapp/admin/system.py +objectapp/admin/widgets.py +objectapp/fixtures/helloworld.json +objectapp/locale/de/LC_MESSAGES/django.mo +objectapp/locale/de/LC_MESSAGES/django.po +objectapp/locale/es/LC_MESSAGES/django.mo +objectapp/locale/es/LC_MESSAGES/django.po +objectapp/locale/fr/LC_MESSAGES/django.mo +objectapp/locale/fr/LC_MESSAGES/django.po +objectapp/locale/hu/LC_MESSAGES/django.mo +objectapp/locale/hu/LC_MESSAGES/django.po +objectapp/locale/it/LC_MESSAGES/django.mo +objectapp/locale/it/LC_MESSAGES/django.po +objectapp/locale/nl/LC_MESSAGES/django.mo +objectapp/locale/nl/LC_MESSAGES/django.po +objectapp/locale/pl/LC_MESSAGES/django.mo +objectapp/locale/pl/LC_MESSAGES/django.po +objectapp/locale/pt_BR/LC_MESSAGES/django.mo +objectapp/locale/pt_BR/LC_MESSAGES/django.po +objectapp/locale/ru/LC_MESSAGES/django.mo +objectapp/locale/ru/LC_MESSAGES/django.po +objectapp/locale/zh_CN/LC_MESSAGES/django.mo +objectapp/locale/zh_CN/LC_MESSAGES/django.po +objectapp/management/__init__.py +objectapp/management/commands/__init__.py +objectapp/management/commands/blogger2objectapp.py +objectapp/management/commands/feed2objectapp.py +objectapp/management/commands/objectapp2wp.py +objectapp/management/commands/spam_cleanup.py +objectapp/management/commands/wp2objectapp.py +objectapp/migrations/0001_initial.py +objectapp/migrations/__init__.py +objectapp/plugins/__init__.py +objectapp/plugins/admin.py +objectapp/plugins/cms_app.py +objectapp/plugins/cms_plugins.py +objectapp/plugins/menu.py +objectapp/plugins/models.py +objectapp/plugins/placeholder.py +objectapp/plugins/settings.py +objectapp/plugins/migrations/0001_initial.py +objectapp/plugins/migrations/0002_auto__add_field_latestgbobjectsplugin_template_to_render__add_field_sele.py +objectapp/plugins/migrations/0003_auto__del_field_latestgbobjectsplugin_objecttype__del_field_latestgbobjectsp.py +objectapp/plugins/migrations/0004_auto__add_field_latestgbobjectsplugin_subobjecttypes.py +objectapp/plugins/migrations/0005_auto__add_randomgbobjectsplugin.py +objectapp/plugins/migrations/__init__.py +objectapp/spam_checker/__init__.py +objectapp/spam_checker/backends/__init__.py +objectapp/spam_checker/backends/all_is_spam.py +objectapp/spam_checker/backends/automattic.py +objectapp/spam_checker/backends/mollom.py +objectapp/spam_checker/backends/typepad.py +objectapp/static/objectapp/css/config.rb +objectapp/static/objectapp/css/dashboard_objectapp.css +objectapp/static/objectapp/css/ie.css +objectapp/static/objectapp/css/jquery.autocomplete.css +objectapp/static/objectapp/css/print.css +objectapp/static/objectapp/css/screen.css +objectapp/static/objectapp/css/screen1.css +objectapp/static/objectapp/css/slider.css +objectapp/static/objectapp/css/structures.css +objectapp/static/objectapp/css/wymeditor_styles.css +objectapp/static/objectapp/css/src/_base.sass +objectapp/static/objectapp/css/src/_calendar.sass +objectapp/static/objectapp/css/src/_gbobject.sass +objectapp/static/objectapp/css/src/_paginator.sass +objectapp/static/objectapp/css/src/_tag-cloud.sass +objectapp/static/objectapp/css/src/dashboard_objectapp.sass +objectapp/static/objectapp/css/src/ie.sass +objectapp/static/objectapp/css/src/print.sass +objectapp/static/objectapp/css/src/screen.sass +objectapp/static/objectapp/css/src/slider.sass +objectapp/static/objectapp/img/background.gif +objectapp/static/objectapp/img/bullet.png +objectapp/static/objectapp/img/comments.png +objectapp/static/objectapp/img/community.png +objectapp/static/objectapp/img/favicon.ico +objectapp/static/objectapp/img/favicon.png +objectapp/static/objectapp/img/grid.png +objectapp/static/objectapp/img/help.png +objectapp/static/objectapp/img/logo.png +objectapp/static/objectapp/img/manage.png +objectapp/static/objectapp/img/objecttype.png +objectapp/static/objectapp/img/plugin.png +objectapp/static/objectapp/img/preview.png +objectapp/static/objectapp/img/rss.png +objectapp/static/objectapp/img/shorturl.png +objectapp/static/objectapp/img/sitemap.png +objectapp/static/objectapp/img/tags.png +objectapp/static/objectapp/img/trans.png +objectapp/static/objectapp/img/wlw/comments.png +objectapp/static/objectapp/img/wlw/objectapp.png +objectapp/static/objectapp/img/wlw/watermark.png +objectapp/static/objectapp/js/jquery.autocomplete.js +objectapp/static/objectapp/js/jquery.bgiframe.js +objectapp/static/objectapp/js/jquery.js +objectapp/static/objectapp/js/jquery.masonry.js +objectapp/static/objectapp/js/jquery.ui.js +objectapp/static/objectapp/js/mptt_m2m_selectbox.js +objectapp/static/objectapp/js/markitup/jquery.markitup.js +objectapp/static/objectapp/js/markitup/sets/html/set.js +objectapp/static/objectapp/js/markitup/sets/html/style.css +objectapp/static/objectapp/js/markitup/sets/html/images/bold.png +objectapp/static/objectapp/js/markitup/sets/html/images/clean.png +objectapp/static/objectapp/js/markitup/sets/html/images/h1.png +objectapp/static/objectapp/js/markitup/sets/html/images/h2.png +objectapp/static/objectapp/js/markitup/sets/html/images/h3.png +objectapp/static/objectapp/js/markitup/sets/html/images/h4.png +objectapp/static/objectapp/js/markitup/sets/html/images/h5.png +objectapp/static/objectapp/js/markitup/sets/html/images/h6.png +objectapp/static/objectapp/js/markitup/sets/html/images/image.png +objectapp/static/objectapp/js/markitup/sets/html/images/italic.png +objectapp/static/objectapp/js/markitup/sets/html/images/link.png +objectapp/static/objectapp/js/markitup/sets/html/images/list-bullet.png +objectapp/static/objectapp/js/markitup/sets/html/images/list-item.png +objectapp/static/objectapp/js/markitup/sets/html/images/list-numeric.png +objectapp/static/objectapp/js/markitup/sets/html/images/paragraph.png +objectapp/static/objectapp/js/markitup/sets/html/images/picture.png +objectapp/static/objectapp/js/markitup/sets/html/images/preview.png +objectapp/static/objectapp/js/markitup/sets/html/images/stroke.png +objectapp/static/objectapp/js/markitup/sets/markdown/set.js +objectapp/static/objectapp/js/markitup/sets/markdown/style.css +objectapp/static/objectapp/js/markitup/sets/markdown/images/bold.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/code.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/h1.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/h2.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/h3.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/h4.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/h5.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/h6.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/italic.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/link.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/list-bullet.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/list-numeric.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/picture.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/preview.png +objectapp/static/objectapp/js/markitup/sets/markdown/images/quotes.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/set.js +objectapp/static/objectapp/js/markitup/sets/restructuredtext/style.css +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/bold.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/code.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/h1.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/h2.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/h3.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/h4.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/h5.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/italic.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/link.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/list-bullet.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/list-numeric.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/picture.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/preview.png +objectapp/static/objectapp/js/markitup/sets/restructuredtext/images/quotes.png +objectapp/static/objectapp/js/markitup/sets/textile/set.js +objectapp/static/objectapp/js/markitup/sets/textile/style.css +objectapp/static/objectapp/js/markitup/sets/textile/images/bold.png +objectapp/static/objectapp/js/markitup/sets/textile/images/code.png +objectapp/static/objectapp/js/markitup/sets/textile/images/h1.png +objectapp/static/objectapp/js/markitup/sets/textile/images/h2.png +objectapp/static/objectapp/js/markitup/sets/textile/images/h3.png +objectapp/static/objectapp/js/markitup/sets/textile/images/h4.png +objectapp/static/objectapp/js/markitup/sets/textile/images/h5.png +objectapp/static/objectapp/js/markitup/sets/textile/images/h6.png +objectapp/static/objectapp/js/markitup/sets/textile/images/italic.png +objectapp/static/objectapp/js/markitup/sets/textile/images/link.png +objectapp/static/objectapp/js/markitup/sets/textile/images/list-bullet.png +objectapp/static/objectapp/js/markitup/sets/textile/images/list-numeric.png +objectapp/static/objectapp/js/markitup/sets/textile/images/paragraph.png +objectapp/static/objectapp/js/markitup/sets/textile/images/picture.png +objectapp/static/objectapp/js/markitup/sets/textile/images/preview.png +objectapp/static/objectapp/js/markitup/sets/textile/images/quotes.png +objectapp/static/objectapp/js/markitup/sets/textile/images/stroke.png +objectapp/static/objectapp/js/markitup/skins/django/style.css +objectapp/static/objectapp/js/markitup/skins/django/images/handle.png +objectapp/static/objectapp/js/markitup/skins/django/images/menu.png +objectapp/static/objectapp/js/markitup/skins/django/images/submenu.png +objectapp/static/objectapp/js/markitup/templates/preview.css +objectapp/static/objectapp/js/markitup/templates/preview.html +objectapp/static/objectapp/js/wymeditor/jquery.wymeditor.js +objectapp/static/objectapp/js/wymeditor/jquery.wymeditor.min.js +objectapp/static/objectapp/js/wymeditor/jquery.wymeditor.pack.js +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-blockquote.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-h1.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-h2.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-h3.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-h4.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-h5.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-h6.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-p.png +objectapp/static/objectapp/js/wymeditor/iframe/default/lbl-pre.png +objectapp/static/objectapp/js/wymeditor/iframe/default/wymiframe.css +objectapp/static/objectapp/js/wymeditor/iframe/default/wymiframe.html +objectapp/static/objectapp/js/wymeditor/lang/bg.js +objectapp/static/objectapp/js/wymeditor/lang/ca.js +objectapp/static/objectapp/js/wymeditor/lang/cs.js +objectapp/static/objectapp/js/wymeditor/lang/cy.js +objectapp/static/objectapp/js/wymeditor/lang/de.js +objectapp/static/objectapp/js/wymeditor/lang/en.js +objectapp/static/objectapp/js/wymeditor/lang/es.js +objectapp/static/objectapp/js/wymeditor/lang/fa.js +objectapp/static/objectapp/js/wymeditor/lang/fi.js +objectapp/static/objectapp/js/wymeditor/lang/fr.js +objectapp/static/objectapp/js/wymeditor/lang/gl.js +objectapp/static/objectapp/js/wymeditor/lang/he.js +objectapp/static/objectapp/js/wymeditor/lang/hr.js +objectapp/static/objectapp/js/wymeditor/lang/hu.js +objectapp/static/objectapp/js/wymeditor/lang/it.js +objectapp/static/objectapp/js/wymeditor/lang/nb.js +objectapp/static/objectapp/js/wymeditor/lang/nl.js +objectapp/static/objectapp/js/wymeditor/lang/nn.js +objectapp/static/objectapp/js/wymeditor/lang/pl.js +objectapp/static/objectapp/js/wymeditor/lang/pt-br.js +objectapp/static/objectapp/js/wymeditor/lang/pt.js +objectapp/static/objectapp/js/wymeditor/lang/ru.js +objectapp/static/objectapp/js/wymeditor/lang/sv.js +objectapp/static/objectapp/js/wymeditor/lang/tr.js +objectapp/static/objectapp/js/wymeditor/lang/zh_cn.js +objectapp/static/objectapp/js/wymeditor/plugins/embed/jquery.wymeditor.embed.js +objectapp/static/objectapp/js/wymeditor/plugins/fullscreen/icon_fullscreen.gif +objectapp/static/objectapp/js/wymeditor/plugins/fullscreen/jquery.wymeditor.fullscreen.js +objectapp/static/objectapp/js/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js +objectapp/static/objectapp/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js +objectapp/static/objectapp/js/wymeditor/plugins/resizable/readme.txt +objectapp/static/objectapp/js/wymeditor/plugins/tidy/README +objectapp/static/objectapp/js/wymeditor/plugins/tidy/jquery.wymeditor.tidy.js +objectapp/static/objectapp/js/wymeditor/plugins/tidy/tidy.php +objectapp/static/objectapp/js/wymeditor/plugins/tidy/wand.png +objectapp/static/objectapp/js/wymeditor/skins/wymeditor_icon.png +objectapp/static/objectapp/js/wymeditor/skins/compact/icons.png +objectapp/static/objectapp/js/wymeditor/skins/compact/skin.css +objectapp/static/objectapp/js/wymeditor/skins/compact/skin.js +objectapp/static/objectapp/js/wymeditor/skins/default/icons.png +objectapp/static/objectapp/js/wymeditor/skins/default/skin.css +objectapp/static/objectapp/js/wymeditor/skins/default/skin.js +objectapp/static/objectapp/js/wymeditor/skins/django/icons.png +objectapp/static/objectapp/js/wymeditor/skins/django/skin.css +objectapp/static/objectapp/js/wymeditor/skins/django/skin.js +objectapp/static/objectapp/js/wymeditor/skins/minimal/skin.css +objectapp/static/objectapp/js/wymeditor/skins/minimal/skin.js +objectapp/static/objectapp/js/wymeditor/skins/minimal/images/bg.header.gif +objectapp/static/objectapp/js/wymeditor/skins/minimal/images/bg.selector.silver.gif +objectapp/static/objectapp/js/wymeditor/skins/minimal/images/bg.wymeditor.png +objectapp/static/objectapp/js/wymeditor/skins/minimal/images/icons.silver.gif +objectapp/static/objectapp/js/wymeditor/skins/silver/COPYING +objectapp/static/objectapp/js/wymeditor/skins/silver/README +objectapp/static/objectapp/js/wymeditor/skins/silver/skin.css +objectapp/static/objectapp/js/wymeditor/skins/silver/skin.js +objectapp/static/objectapp/js/wymeditor/skins/silver/images/bg.header.gif +objectapp/static/objectapp/js/wymeditor/skins/silver/images/bg.selector.silver.gif +objectapp/static/objectapp/js/wymeditor/skins/silver/images/bg.wymeditor.png +objectapp/static/objectapp/js/wymeditor/skins/silver/images/icons.silver.gif +objectapp/static/objectapp/js/wymeditor/skins/twopanels/icons.png +objectapp/static/objectapp/js/wymeditor/skins/twopanels/skin.css +objectapp/static/objectapp/js/wymeditor/skins/twopanels/skin.js +objectapp/templates/404.html +objectapp/templates/500.html +objectapp/templates/admin/objectapp/app_index.html +objectapp/templates/admin/objectapp/gbobject/autocomplete_tags.js +objectapp/templates/admin/objectapp/gbobject/markitup.js +objectapp/templates/admin/objectapp/gbobject/tinymce_textareas.js +objectapp/templates/admin/objectapp/gbobject/wymeditor.js +objectapp/templates/admin/objectapp/widgets/_content_stats.html +objectapp/templates/admin/objectapp/widgets/_draft_gbobjects.html +objectapp/templates/admin/objectapp/widgets/_recent_comments.html +objectapp/templates/admin/objectapp/widgets/_recent_linkbacks.html +objectapp/templates/admin/objectapp/widgets/base.html +objectapp/templates/admin/objectapp/widgets/content_stats.html +objectapp/templates/admin/objectapp/widgets/draft_gbobjects.html +objectapp/templates/admin/objectapp/widgets/quickpost.html +objectapp/templates/admin/objectapp/widgets/recent_comments.html +objectapp/templates/admin/objectapp/widgets/recent_linkbacks.html +objectapp/templates/comments/comment_authors_email.txt +objectapp/templates/comments/comment_notification_email.txt +objectapp/templates/comments/comment_reply_email.txt +objectapp/templates/comments/objectapp_gbobject_preview.html +objectapp/templates/comments/objectapp/gbobject/form.html +objectapp/templates/comments/objectapp/gbobject/posted.html +objectapp/templates/feeds/comment_description.html +objectapp/templates/feeds/comment_title.html +objectapp/templates/feeds/discussion_description.html +objectapp/templates/feeds/discussion_title.html +objectapp/templates/feeds/gbobject_description.html +objectapp/templates/feeds/gbobject_title.html +objectapp/templates/feeds/pingback_description.html +objectapp/templates/feeds/pingback_title.html +objectapp/templates/feeds/trackback_description.html +objectapp/templates/feeds/trackback_title.html +objectapp/templates/objectapp/_gbobject_detail.html +objectapp/templates/objectapp/_header.html +objectapp/templates/objectapp/_narrative_detail.html +objectapp/templates/objectapp/_subtype_detail.html +objectapp/templates/objectapp/author_list.html +objectapp/templates/objectapp/base.html +objectapp/templates/objectapp/gbobject_archive.html +objectapp/templates/objectapp/gbobject_archive_day.html +objectapp/templates/objectapp/gbobject_archive_month.html +objectapp/templates/objectapp/gbobject_archive_year.html +objectapp/templates/objectapp/gbobject_detail.html +objectapp/templates/objectapp/gbobject_list.html +objectapp/templates/objectapp/gbobject_search.html +objectapp/templates/objectapp/gbobject_trackback.xml +objectapp/templates/objectapp/login.html +objectapp/templates/objectapp/objecttype_list.html +objectapp/templates/objectapp/opensearch.xml +objectapp/templates/objectapp/password.html +objectapp/templates/objectapp/rsd.xml +objectapp/templates/objectapp/sitemap.html +objectapp/templates/objectapp/skeleton.html +objectapp/templates/objectapp/tag_list.html +objectapp/templates/objectapp/wlwmanifest.xml +objectapp/templates/objectapp/wxr.xml +objectapp/templates/objectapp/author/gbobject_list.html +objectapp/templates/objectapp/cms/gbobject_detail.html +objectapp/templates/objectapp/cms/gbobject_list.html +objectapp/templates/objectapp/cms/random_gbobjects.html +objectapp/templates/objectapp/objecttype/gbobject_list.html +objectapp/templates/objectapp/tag/gbobject_list.html +objectapp/templates/objectapp/tags/archives_gbobjects.html +objectapp/templates/objectapp/tags/archives_gbobjects_link.html +objectapp/templates/objectapp/tags/archives_gbobjects_tree.html +objectapp/templates/objectapp/tags/authors.html +objectapp/templates/objectapp/tags/breadcrumbs.html +objectapp/templates/objectapp/tags/calendar.html +objectapp/templates/objectapp/tags/dummy.html +objectapp/templates/objectapp/tags/featured_gbobjects.html +objectapp/templates/objectapp/tags/gbobjects.html +objectapp/templates/objectapp/tags/objecttypes.html +objectapp/templates/objectapp/tags/pagination.html +objectapp/templates/objectapp/tags/popular_gbobjects.html +objectapp/templates/objectapp/tags/random_gbobjects.html +objectapp/templates/objectapp/tags/recent_comments.html +objectapp/templates/objectapp/tags/recent_gbobjects.html +objectapp/templates/objectapp/tags/recent_linkbacks.html +objectapp/templates/objectapp/tags/similar_gbobjects.html +objectapp/templates/objectapp/tags/slider_gbobjects.html +objectapp/templates/objectapp/tags/tag_cloud.html +objectapp/templates/objectappforms/gbobjectform.html +objectapp/templates/objectappforms/processform.html +objectapp/templates/objectappforms/systemform.html +objectapp/templatetags/__init__.py +objectapp/templatetags/objectapp_admin_tags.py +objectapp/templatetags/objectapp_tags.py +objectapp/templatetags/zbreadcrumbs.py +objectapp/templatetags/zcalendar.py +objectapp/tests/__init__.py +objectapp/tests/admin.py +objectapp/tests/comparison.py +objectapp/tests/custom_spam_checker.py +objectapp/tests/custom_url_shortener.py +objectapp/tests/custom_views_detail_urls.py +objectapp/tests/feeds.py +objectapp/tests/gbobject.py +objectapp/tests/managers.py +objectapp/tests/metaweblog.py +objectapp/tests/moderator.py +objectapp/tests/objecttype.py +objectapp/tests/ping.py +objectapp/tests/pingback.py +objectapp/tests/quick_gbobject.py +objectapp/tests/signals.py +objectapp/tests/sitemaps.py +objectapp/tests/spam_checker.py +objectapp/tests/templatetags.py +objectapp/tests/url_shortener.py +objectapp/tests/urls.py +objectapp/tests/utils.py +objectapp/tests/views.py +objectapp/url_shortener/__init__.py +objectapp/url_shortener/backends/__init__.py +objectapp/url_shortener/backends/bitly.py +objectapp/url_shortener/backends/default.py +objectapp/urls/__init__.py +objectapp/urls/add.py +objectapp/urls/authors.py +objectapp/urls/capabilities.py +objectapp/urls/discussions.py +objectapp/urls/feeds.py +objectapp/urls/gbobjects.py +objectapp/urls/objecttypes.py +objectapp/urls/quick_gbobject.py +objectapp/urls/search.py +objectapp/urls/sitemap.py +objectapp/urls/tags.py +objectapp/urls/trackback.py +objectapp/views/__init__.py +objectapp/views/add.py +objectapp/views/authors.py +objectapp/views/channels.py +objectapp/views/decorators.py +objectapp/views/gbobjects.py +objectapp/views/objecttypes.py +objectapp/views/quick_gbobject.py +objectapp/views/search.py +objectapp/views/sitemap.py +objectapp/views/tags.py +objectapp/views/trackback.py +objectapp/xmlrpc/__init__.py +objectapp/xmlrpc/metaweblog.py +objectapp/xmlrpc/pingback.py +patches/NoseDjango-0.6.patch \ No newline at end of file diff --git a/django_gstudio.egg-info/dependency_links.txt b/django_gstudio.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/django_gstudio.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/django_gstudio.egg-info/not-zip-safe b/django_gstudio.egg-info/not-zip-safe new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/django_gstudio.egg-info/not-zip-safe @@ -0,0 +1 @@ + diff --git a/django_gstudio.egg-info/requires.txt b/django_gstudio.egg-info/requires.txt new file mode 100644 index 0000000..c54c5df --- /dev/null +++ b/django_gstudio.egg-info/requires.txt @@ -0,0 +1,9 @@ +BeautifulSoup>=3.2.0 +django-mptt>=0.4.2 +django-tagging>=0.3.1 +django-xmlrpc>=0.1.3 +pyparsing>=1.5.5 +django-reversion>=1.5.1 +django-grappelli>=2.3.4 +django-ratings>=0.3.6 +rdflib>=3.0.0 \ No newline at end of file diff --git a/django_gstudio.egg-info/top_level.txt b/django_gstudio.egg-info/top_level.txt new file mode 100644 index 0000000..ce6c104 --- /dev/null +++ b/django_gstudio.egg-info/top_level.txt @@ -0,0 +1,3 @@ +demo +gstudio +objectapp -- cgit v1.1