summaryrefslogtreecommitdiffstats
path: root/wiki
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-22 22:38:41 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-22 22:38:41 +0100
commit941ff3fdacd048b31b7f6edc4710512f47619228 (patch)
tree63bfb8b7c753eeeec89dca5286d6cefe16b93ca0 /wiki
parent7e1bb9ed78c9c010f17fe3c2f831342b55666e06 (diff)
downloadtroggle-941ff3fdacd048b31b7f6edc4710512f47619228.tar.gz
troggle-941ff3fdacd048b31b7f6edc4710512f47619228.tar.bz2
troggle-941ff3fdacd048b31b7f6edc4710512f47619228.zip
[svn] Created wiki page through web user interface.
Diffstat (limited to 'wiki')
-rw-r--r--wiki/ExternalApps.wiki22
1 files changed, 22 insertions, 0 deletions
diff --git a/wiki/ExternalApps.wiki b/wiki/ExternalApps.wiki
new file mode 100644
index 0000000..ee1b3de
--- /dev/null
+++ b/wiki/ExternalApps.wiki
@@ -0,0 +1,22 @@
+#labels Phase-Implementation,Phase-Deploy
+#discussion of the third party libraries Troggle uses
+
+In addition to Python and Django, Troggle uses a few other, "third party" apps. It is sometimes tempting to add lots more, but we should try and keep them to a minimum or at least set up Troggle so that included third party apps are optional.
+
+== How things are included ==
+
+If the projects use SVN, we can include external repositories using the svn:external property. This is how django-mptt is currently installed. However, most apps have been simply copied into the troggle repository. Another option is to leave them out of troggle and tell the user that they are dependencies which must be installed to use troggle.
+
+== All included apps ==
+
+django-registration: for user registration with confirmation email
+
+django-profiles: for extending the user model
+
+django-imagekit: for thumbnail generation
+
+feincms: a little CMS which we use just for it's javascript tree-management admin for subcaves. Also may be useful for fine-grained permissions, eg disallowing access / editing for particular caves. Requires django-mptt.
+
+django-mptt: Required by feincms. Does the business logic for maintaining trees and provides methods like .get_ancestors() and .get_root() .
+
+