Delete initial blog folder from plugin directory.
authorAditi <aditi.iitr@gmail.com>
Fri, 9 Aug 2013 05:37:09 +0000 (11:07 +0530)
committerAditi <aditi.iitr@gmail.com>
Fri, 9 Aug 2013 05:37:09 +0000 (11:07 +0530)
mediagoblin/plugins/blog/LICENCE [deleted file]
mediagoblin/plugins/blog/README.srt [deleted file]
mediagoblin/plugins/blog/__init__.py [deleted file]
mediagoblin/plugins/blog/forms.py [deleted file]
mediagoblin/plugins/blog/setup.py [deleted file]
mediagoblin/plugins/blog/templates/blogpost_edit.html [deleted file]
mediagoblin/plugins/blog/views.py [deleted file]

diff --git a/mediagoblin/plugins/blog/LICENCE b/mediagoblin/plugins/blog/LICENCE
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/mediagoblin/plugins/blog/README.srt b/mediagoblin/plugins/blog/README.srt
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/mediagoblin/plugins/blog/__init__.py b/mediagoblin/plugins/blog/__init__.py
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/mediagoblin/plugins/blog/forms.py b/mediagoblin/plugins/blog/forms.py
deleted file mode 100644 (file)
index 52af1cf..0000000
+++ /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 (file)
index c4e0ee9..0000000
+++ /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 (file)
index fec7a9c..0000000
+++ /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 (file)
index c4e8601..0000000
+++ /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/>.