From 87f7693e83fe2406f63ac3877d6b83f05862f35c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stefan=20K=C3=B6gl?= Date: Sat, 25 May 2013 10:33:06 +0200 Subject: [PATCH] add list of files to documentation -- descriptions missing --- doc/dev/files-overview.rst | 238 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 238 insertions(+) create mode 100644 doc/dev/files-overview.rst diff --git a/doc/dev/files-overview.rst b/doc/dev/files-overview.rst new file mode 100644 index 00000000..7533d33e --- /dev/null +++ b/doc/dev/files-overview.rst @@ -0,0 +1,238 @@ +The ``mygpo`` project consists of the following files :: + + mygpo/ + __init__.py + settings.py + settings_prod.py + cache.py + manage.py + constants.py + flattr.py + utils.py + log.py + cel.py + urls.py + shell.py + test.py + decorators.py + print-couchdb.py + + admin/ + __init__.py + auth.py + tests.py + group.py + clients.py + models.py + views.py + urls.py + tasks.py + + maintenance/ + __init__.py + tests.py + models.py + merge.py + management/__init__.py + management/changescmd.py + management/podcastcmd.py + management/commands/__init__.py + management/commands/sync-sanitizing-rules.py + management/commands/celery.py + management/commands/assign-podcast-slugs.py + management/commands/cleanup-unused-users.py + management/commands/assign-episode-slugs.py + management/commands/listening-stats.py + management/commands/merge-episode-states.py + management/commands/move-subscriber-data.py + management/commands/import-episode-actions.py + management/commands/delete-sanitizing-rules.py + + data/ + __init__.py + tests.py + youtube.py + delicious.py + flickr.py + podcast.py + mimetype.py + signals.py + tasks.py + feeddownloader.py + management/__init__.py + management/commands/__init__.py + management/commands/feed-downloader.py + management/commands/update-related-podcasts.py + management/commands/tag-downloader.py + management//commands/group-podcasts.py + + publisher/ + __init__.py + auth.py + tests.py + forms.py + utils.py + views.py + urls.py + management/__init__.py + management/commands/make-publisher.py + management/commands/__init__.py + templatetags/__init__.py + templatetags/pcharts.py + + users/ + __init__.py + tests.py + sync.py + models.py + settings.py + ratings.py + signals.py + tasks.py + subscriptions.py + management/__init__.py + management/commands/__init__.py + management/commands/assign-upload-timestamps.py + + api/ + __init__.py + tests.py + backend.py + constants.py + opml.py + legacy.py + models.py + exceptions.py + views.py + urls.py + basic_auth.py + httpresponse.py + simple.py + sanitizing.py + tasks.py + advanced/auth.py + advanced/sync.py + advanced/lists.py + advanced/settings.py + advanced/__init__.py + advanced/episode.py + advanced/directory.py + management/commands/__init__.py + management/commands/sanitizing-maintenance.py + management/__init__.py + + directory/ + __init__.py + tests.py + models.py + views.py + urls.py + search.py + toplist.py + tags.py + tasks.py + management/__init__.py + management/commands/__init__.py + management/commands/category-merge-spellings.py + management/commands/update-episode-toplist.py + management/commands/set-example-podcasts.py + management/commands/update-toplist.py + + pubsub + models.py + views.py + urls.py + __init__.py + signals.py + + web/ + __init__.py + auth.py + tests.py + forms.py + google.py + utils.py + logo.py + urls.py + heatmap.py + views/__init__.py + views/podcast.py + views/settings.py + views/subscriptions.py + views/device.py + views/users.py + views/episode.py + views/security.py + templatetags/__init__.py + templatetags/devices.py + templatetags/facebook.py + templatetags/youtube.py + templatetags/google.py + templatetags/utils.py + templatetags/time.py + templatetags/flickr.py + templatetags/math.py + templatetags/mygpoutil.py + templatetags/menu.py + templatetags/charts.py + templatetags/podcasts.py + templatetags/episodes.py + templatetags/googleanalytics.py + management/__init__.py + management/commands/__init__.py + + userfeeds/ + __init__.py + auth.py + tests.py + feeds.py + views.py + urls.py + + core/ + __init__.py + tests.py + oldid.py + json.py + models.py + proxy.py + signals.py + podcasts.py + tasks.py + graphite.py + slugs.py + management/__init__.py + management/commands/__init__.py + + share/ + __init__.py + userpage.py + models.py + views.py + urls.py + templatetags/__init__.py + templatetags/gravatar.py + + db/ + __init__.py + + db/couchdb/ + __init__.py + common.py + episode_state.py + utils.py + user.py + models.py + podcast_state.py + podcast.py + podcastlist.py + episode.py + directory.py + pubsub.py + management/__init__.py + management/commands/__init__.py + management/commands/touch-couchdb-views.py + management/commands/compact-couchdb.py + management/commands/dump-sample.py + management/commands/sync-design-docs.py + management/commands/count-view-usage.py -- 2.11.4.GIT