1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
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<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
|