From d277b4a96830dac291fa77c710ffcba1c802407d Mon Sep 17 00:00:00 2001 From: Johannes Raggam <raggam-nl@adm.at> Date: Sat, 26 Mar 2011 21:35:14 +0100 Subject: [PATCH] refactor project structure --- {helsinki.program => helsinki/program}/__init__.py | 0 {helsinki.program => helsinki/program}/admin.py | 0 .../program}/fixtures/broadcastformats.yaml | 0 {helsinki.program => helsinki/program}/fixtures/hosts.yaml | 0 {helsinki.program => helsinki/program}/fixtures/musicfocus.yaml | 0 {helsinki.program => helsinki/program}/fixtures/rrules.yaml | 0 .../program}/fixtures/showinformation.yaml | 0 {helsinki.program => helsinki/program}/fixtures/shows.yaml | 0 {helsinki.program => helsinki/program}/fixtures/showtopics.yaml | 0 {helsinki.program => helsinki/program}/manage.py | 0 {helsinki.program => helsinki/program}/management/__init__.py | 0 .../program}/management/commands/__init__.py | 0 .../program}/management/commands/importhosts.py | 0 .../program}/management/commands/importnotes.py | 0 .../program}/management/commands/importprogramslots.py | 0 .../program}/management/commands/importshows.py | 0 {helsinki.program => helsinki/program}/models.py | 0 {helsinki.program => helsinki/program}/settings.py | 0 {helsinki.program => helsinki/program}/templates/404.html | 0 {helsinki.program => helsinki/program}/templates/500.html | 0 {helsinki.program => helsinki/program}/templates/base.html | 0 .../program}/templates/program/current_box.html | 0 .../program}/templates/program/day_schedule.html | 0 .../program}/templates/program/host_detail.html | 0 .../program}/templates/program/host_list.html | 0 .../program}/templates/program/recommendations.html | 0 .../program}/templates/program/recommendations_box.html | 0 .../program}/templates/program/show_detail.html | 0 .../program}/templates/program/show_list.html | 0 .../program}/templates/program/timeslot_detail.html | 0 .../program}/templates/program/week_schedule.html | 0 {helsinki.program => helsinki/program}/urls.py | 0 {helsinki.program => helsinki/program}/urls_program.py | 0 {helsinki.program => helsinki/program}/views.py | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename {helsinki.program => helsinki/program}/__init__.py (100%) rename {helsinki.program => helsinki/program}/admin.py (100%) rename {helsinki.program => helsinki/program}/fixtures/broadcastformats.yaml (100%) rename {helsinki.program => helsinki/program}/fixtures/hosts.yaml (100%) rename {helsinki.program => helsinki/program}/fixtures/musicfocus.yaml (100%) rename {helsinki.program => helsinki/program}/fixtures/rrules.yaml (100%) rename {helsinki.program => helsinki/program}/fixtures/showinformation.yaml (100%) rename {helsinki.program => helsinki/program}/fixtures/shows.yaml (100%) rename {helsinki.program => helsinki/program}/fixtures/showtopics.yaml (100%) rename {helsinki.program => helsinki/program}/manage.py (100%) rename {helsinki.program => helsinki/program}/management/__init__.py (100%) rename {helsinki.program => helsinki/program}/management/commands/__init__.py (100%) rename {helsinki.program => helsinki/program}/management/commands/importhosts.py (100%) rename {helsinki.program => helsinki/program}/management/commands/importnotes.py (100%) rename {helsinki.program => helsinki/program}/management/commands/importprogramslots.py (100%) rename {helsinki.program => helsinki/program}/management/commands/importshows.py (100%) rename {helsinki.program => helsinki/program}/models.py (100%) rename {helsinki.program => helsinki/program}/settings.py (100%) rename {helsinki.program => helsinki/program}/templates/404.html (100%) rename {helsinki.program => helsinki/program}/templates/500.html (100%) rename {helsinki.program => helsinki/program}/templates/base.html (100%) rename {helsinki.program => helsinki/program}/templates/program/current_box.html (100%) rename {helsinki.program => helsinki/program}/templates/program/day_schedule.html (100%) rename {helsinki.program => helsinki/program}/templates/program/host_detail.html (100%) rename {helsinki.program => helsinki/program}/templates/program/host_list.html (100%) rename {helsinki.program => helsinki/program}/templates/program/recommendations.html (100%) rename {helsinki.program => helsinki/program}/templates/program/recommendations_box.html (100%) rename {helsinki.program => helsinki/program}/templates/program/show_detail.html (100%) rename {helsinki.program => helsinki/program}/templates/program/show_list.html (100%) rename {helsinki.program => helsinki/program}/templates/program/timeslot_detail.html (100%) rename {helsinki.program => helsinki/program}/templates/program/week_schedule.html (100%) rename {helsinki.program => helsinki/program}/urls.py (100%) rename {helsinki.program => helsinki/program}/urls_program.py (100%) rename {helsinki.program => helsinki/program}/views.py (100%) diff --git a/helsinki.program/__init__.py b/helsinki/program/__init__.py similarity index 100% rename from helsinki.program/__init__.py rename to helsinki/program/__init__.py diff --git a/helsinki.program/admin.py b/helsinki/program/admin.py similarity index 100% rename from helsinki.program/admin.py rename to helsinki/program/admin.py diff --git a/helsinki.program/fixtures/broadcastformats.yaml b/helsinki/program/fixtures/broadcastformats.yaml similarity index 100% rename from helsinki.program/fixtures/broadcastformats.yaml rename to helsinki/program/fixtures/broadcastformats.yaml diff --git a/helsinki.program/fixtures/hosts.yaml b/helsinki/program/fixtures/hosts.yaml similarity index 100% rename from helsinki.program/fixtures/hosts.yaml rename to helsinki/program/fixtures/hosts.yaml diff --git a/helsinki.program/fixtures/musicfocus.yaml b/helsinki/program/fixtures/musicfocus.yaml similarity index 100% rename from helsinki.program/fixtures/musicfocus.yaml rename to helsinki/program/fixtures/musicfocus.yaml diff --git a/helsinki.program/fixtures/rrules.yaml b/helsinki/program/fixtures/rrules.yaml similarity index 100% rename from helsinki.program/fixtures/rrules.yaml rename to helsinki/program/fixtures/rrules.yaml diff --git a/helsinki.program/fixtures/showinformation.yaml b/helsinki/program/fixtures/showinformation.yaml similarity index 100% rename from helsinki.program/fixtures/showinformation.yaml rename to helsinki/program/fixtures/showinformation.yaml diff --git a/helsinki.program/fixtures/shows.yaml b/helsinki/program/fixtures/shows.yaml similarity index 100% rename from helsinki.program/fixtures/shows.yaml rename to helsinki/program/fixtures/shows.yaml diff --git a/helsinki.program/fixtures/showtopics.yaml b/helsinki/program/fixtures/showtopics.yaml similarity index 100% rename from helsinki.program/fixtures/showtopics.yaml rename to helsinki/program/fixtures/showtopics.yaml diff --git a/helsinki.program/manage.py b/helsinki/program/manage.py similarity index 100% rename from helsinki.program/manage.py rename to helsinki/program/manage.py diff --git a/helsinki.program/management/__init__.py b/helsinki/program/management/__init__.py similarity index 100% rename from helsinki.program/management/__init__.py rename to helsinki/program/management/__init__.py diff --git a/helsinki.program/management/commands/__init__.py b/helsinki/program/management/commands/__init__.py similarity index 100% rename from helsinki.program/management/commands/__init__.py rename to helsinki/program/management/commands/__init__.py diff --git a/helsinki.program/management/commands/importhosts.py b/helsinki/program/management/commands/importhosts.py similarity index 100% rename from helsinki.program/management/commands/importhosts.py rename to helsinki/program/management/commands/importhosts.py diff --git a/helsinki.program/management/commands/importnotes.py b/helsinki/program/management/commands/importnotes.py similarity index 100% rename from helsinki.program/management/commands/importnotes.py rename to helsinki/program/management/commands/importnotes.py diff --git a/helsinki.program/management/commands/importprogramslots.py b/helsinki/program/management/commands/importprogramslots.py similarity index 100% rename from helsinki.program/management/commands/importprogramslots.py rename to helsinki/program/management/commands/importprogramslots.py diff --git a/helsinki.program/management/commands/importshows.py b/helsinki/program/management/commands/importshows.py similarity index 100% rename from helsinki.program/management/commands/importshows.py rename to helsinki/program/management/commands/importshows.py diff --git a/helsinki.program/models.py b/helsinki/program/models.py similarity index 100% rename from helsinki.program/models.py rename to helsinki/program/models.py diff --git a/helsinki.program/settings.py b/helsinki/program/settings.py similarity index 100% rename from helsinki.program/settings.py rename to helsinki/program/settings.py diff --git a/helsinki.program/templates/404.html b/helsinki/program/templates/404.html similarity index 100% rename from helsinki.program/templates/404.html rename to helsinki/program/templates/404.html diff --git a/helsinki.program/templates/500.html b/helsinki/program/templates/500.html similarity index 100% rename from helsinki.program/templates/500.html rename to helsinki/program/templates/500.html diff --git a/helsinki.program/templates/base.html b/helsinki/program/templates/base.html similarity index 100% rename from helsinki.program/templates/base.html rename to helsinki/program/templates/base.html diff --git a/helsinki.program/templates/program/current_box.html b/helsinki/program/templates/program/current_box.html similarity index 100% rename from helsinki.program/templates/program/current_box.html rename to helsinki/program/templates/program/current_box.html diff --git a/helsinki.program/templates/program/day_schedule.html b/helsinki/program/templates/program/day_schedule.html similarity index 100% rename from helsinki.program/templates/program/day_schedule.html rename to helsinki/program/templates/program/day_schedule.html diff --git a/helsinki.program/templates/program/host_detail.html b/helsinki/program/templates/program/host_detail.html similarity index 100% rename from helsinki.program/templates/program/host_detail.html rename to helsinki/program/templates/program/host_detail.html diff --git a/helsinki.program/templates/program/host_list.html b/helsinki/program/templates/program/host_list.html similarity index 100% rename from helsinki.program/templates/program/host_list.html rename to helsinki/program/templates/program/host_list.html diff --git a/helsinki.program/templates/program/recommendations.html b/helsinki/program/templates/program/recommendations.html similarity index 100% rename from helsinki.program/templates/program/recommendations.html rename to helsinki/program/templates/program/recommendations.html diff --git a/helsinki.program/templates/program/recommendations_box.html b/helsinki/program/templates/program/recommendations_box.html similarity index 100% rename from helsinki.program/templates/program/recommendations_box.html rename to helsinki/program/templates/program/recommendations_box.html diff --git a/helsinki.program/templates/program/show_detail.html b/helsinki/program/templates/program/show_detail.html similarity index 100% rename from helsinki.program/templates/program/show_detail.html rename to helsinki/program/templates/program/show_detail.html diff --git a/helsinki.program/templates/program/show_list.html b/helsinki/program/templates/program/show_list.html similarity index 100% rename from helsinki.program/templates/program/show_list.html rename to helsinki/program/templates/program/show_list.html diff --git a/helsinki.program/templates/program/timeslot_detail.html b/helsinki/program/templates/program/timeslot_detail.html similarity index 100% rename from helsinki.program/templates/program/timeslot_detail.html rename to helsinki/program/templates/program/timeslot_detail.html diff --git a/helsinki.program/templates/program/week_schedule.html b/helsinki/program/templates/program/week_schedule.html similarity index 100% rename from helsinki.program/templates/program/week_schedule.html rename to helsinki/program/templates/program/week_schedule.html diff --git a/helsinki.program/urls.py b/helsinki/program/urls.py similarity index 100% rename from helsinki.program/urls.py rename to helsinki/program/urls.py diff --git a/helsinki.program/urls_program.py b/helsinki/program/urls_program.py similarity index 100% rename from helsinki.program/urls_program.py rename to helsinki/program/urls_program.py diff --git a/helsinki.program/views.py b/helsinki/program/views.py similarity index 100% rename from helsinki.program/views.py rename to helsinki/program/views.py -- GitLab