Skip to content

Commit

Permalink
v1.0.1: use "mediadrop" package names
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixSchwarz committed Nov 4, 2013
1 parent ab86740 commit d576194
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions mediadropext/myplugin/controllers/sample.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# encoding: utf-8

from mediacore.lib.base import BaseController
from mediacore.lib.decorators import expose
from mediadrop.lib.base import BaseController
from mediadrop.lib.decorators import expose

class SampleController(BaseController):
@expose('myplugin/sample-page.html')
Expand Down
4 changes: 2 additions & 2 deletions mediadropext/myplugin/templates/sample-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</head>

<body>
<div class="mediacore-content sample-content clearfix">
<div class="mediadrop-content sample-content clearfix">
<h1>Congratulations,</h1>
<div>you installed your first MediaDrop plugin!</div>

Expand All @@ -31,4 +31,4 @@ <h1>Congratulations,</h1>
</div>
</div>
</body>
</html>
</html>
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

setup(
name='SamplePlugin',
version='1.0',
version='1.0.1',

author='YOUR NAME',
author_email='[email protected]',
license='GPL v3 or later',
install_requires = [
'MediaCore >= 0.11dev', # use whatever version you support
'MediaDrop >= 0.11dev', # use whatever version you support
],

namespace_packages = ['mediadropext'],
Expand All @@ -26,7 +26,7 @@
},
packages=find_packages(),
entry_points = {
'mediacore.plugin': [
'mediadrop.plugin': [
'myplugin = mediadropext.myplugin.mediadrop_plugin',
],
}
Expand Down

0 comments on commit d576194

Please sign in to comment.