aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAditi <aditi.iitr@gmail.com>2013-08-09 11:07:09 +0530
committerAditi <aditi.iitr@gmail.com>2013-08-09 11:07:09 +0530
commit382d2b4bd8c8e50f1014bbee2e5366a40521cc89 (patch)
treed46450b963c50a2c138a343ad09bca7fbe06db66
parentd0ba136f5552808270e11c7a02029e28fb3ebfcc (diff)
downloadmediagoblin-382d2b4bd8c8e50f1014bbee2e5366a40521cc89.tar.lz
mediagoblin-382d2b4bd8c8e50f1014bbee2e5366a40521cc89.tar.xz
mediagoblin-382d2b4bd8c8e50f1014bbee2e5366a40521cc89.zip
Delete initial blog folder from plugin directory.
-rw-r--r--mediagoblin/plugins/blog/LICENCE0
-rw-r--r--mediagoblin/plugins/blog/README.srt0
-rw-r--r--mediagoblin/plugins/blog/__init__.py0
-rw-r--r--mediagoblin/plugins/blog/forms.py17
-rw-r--r--mediagoblin/plugins/blog/setup.py10
-rw-r--r--mediagoblin/plugins/blog/templates/blogpost_edit.html19
-rw-r--r--mediagoblin/plugins/blog/views.py16
7 files changed, 0 insertions, 62 deletions
diff --git a/mediagoblin/plugins/blog/LICENCE b/mediagoblin/plugins/blog/LICENCE
deleted file mode 100644
index e69de29b..00000000
--- a/mediagoblin/plugins/blog/LICENCE
+++ /dev/null
diff --git a/mediagoblin/plugins/blog/README.srt b/mediagoblin/plugins/blog/README.srt
deleted file mode 100644
index e69de29b..00000000
--- a/mediagoblin/plugins/blog/README.srt
+++ /dev/null
diff --git a/mediagoblin/plugins/blog/__init__.py b/mediagoblin/plugins/blog/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/mediagoblin/plugins/blog/__init__.py
+++ /dev/null
diff --git a/mediagoblin/plugins/blog/forms.py b/mediagoblin/plugins/blog/forms.py
deleted file mode 100644
index 52af1cf1..00000000
--- a/mediagoblin/plugins/blog/forms.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-import wtforms
diff --git a/mediagoblin/plugins/blog/setup.py b/mediagoblin/plugins/blog/setup.py
deleted file mode 100644
index c4e0ee97..00000000
--- a/mediagoblin/plugins/blog/setup.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from setuptools import setup, find_packages
-
-setup(
- name = 'blog',
- version = '1.0',
- packages = find_packages();
- include_package_data = True,
- install_requires = [],
- license = 'AGPLv3',
- )
diff --git a/mediagoblin/plugins/blog/templates/blogpost_edit.html b/mediagoblin/plugins/blog/templates/blogpost_edit.html
deleted file mode 100644
index fec7a9c2..00000000
--- a/mediagoblin/plugins/blog/templates/blogpost_edit.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{#
-# GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
--#}
-{% extends "mediagoblin/base.html" %}
-
diff --git a/mediagoblin/plugins/blog/views.py b/mediagoblin/plugins/blog/views.py
deleted file mode 100644
index c4e8601d..00000000
--- a/mediagoblin/plugins/blog/views.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- coding: utf-8 -*-
-# GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.