├── .gitattributes ├── .gitignore ├── .hgignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── conf.py └── index.rst ├── drum ├── __init__.py ├── links │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── auto_tag.py │ │ │ ├── poll_rss.py │ │ │ └── poll_tumblr.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap2-responsive.css │ │ │ ├── bootstrap2.css │ │ │ ├── drum.css │ │ │ ├── flat-ui.css │ │ │ ├── keywords.css │ │ │ └── mezzanine1.css │ │ ├── img │ │ │ ├── drum-logo.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap2-extras.js │ │ │ ├── bootstrap2.js │ │ │ ├── drum.js │ │ │ └── jquery.pjax.js │ ├── templates │ │ ├── accounts │ │ │ ├── account_profile.html │ │ │ └── includes │ │ │ │ └── user_panel_nav.html │ │ ├── admin │ │ │ └── links │ │ │ │ └── link │ │ │ │ └── change_list.html │ │ ├── base.html │ │ ├── generic │ │ │ ├── includes │ │ │ │ ├── comment.html │ │ │ │ └── rating.html │ │ │ └── threadedcomment_list.html │ │ ├── includes │ │ │ ├── editable_loader.html │ │ │ ├── pagination.html │ │ │ └── search_form.html │ │ └── links │ │ │ ├── link_detail.html │ │ │ ├── link_form.html │ │ │ ├── link_list.html │ │ │ └── tag_list.html │ ├── templatetags │ │ ├── __init__.py │ │ └── drum_tags.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py └── project_template │ ├── __init__.py │ ├── manage.py │ └── project_name │ ├── __init__.py │ ├── local_settings.py.template │ ├── settings.py │ └── urls.py ├── runtests.py ├── setup.cfg └── setup.py /.gitattributes: -------------------------------------------------------------------------------- 1 | /drum/links/static/* linguist-vendored=true 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/.hgignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/README.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst -------------------------------------------------------------------------------- /drum/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = "0.4.0" 3 | -------------------------------------------------------------------------------- /drum/links/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drum/links/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/admin.py -------------------------------------------------------------------------------- /drum/links/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/forms.py -------------------------------------------------------------------------------- /drum/links/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drum/links/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drum/links/management/commands/auto_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/management/commands/auto_tag.py -------------------------------------------------------------------------------- /drum/links/management/commands/poll_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/management/commands/poll_rss.py -------------------------------------------------------------------------------- /drum/links/management/commands/poll_tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/management/commands/poll_tumblr.py -------------------------------------------------------------------------------- /drum/links/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/migrations/0001_initial.py -------------------------------------------------------------------------------- /drum/links/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drum/links/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/models.py -------------------------------------------------------------------------------- /drum/links/static/css/bootstrap2-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/css/bootstrap2-responsive.css -------------------------------------------------------------------------------- /drum/links/static/css/bootstrap2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/css/bootstrap2.css -------------------------------------------------------------------------------- /drum/links/static/css/drum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/css/drum.css -------------------------------------------------------------------------------- /drum/links/static/css/flat-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/css/flat-ui.css -------------------------------------------------------------------------------- /drum/links/static/css/keywords.css: -------------------------------------------------------------------------------- 1 | .vTextField {max-width:150px;} 2 | .deletelink {display:none !important;} 3 | -------------------------------------------------------------------------------- /drum/links/static/css/mezzanine1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/css/mezzanine1.css -------------------------------------------------------------------------------- /drum/links/static/img/drum-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/img/drum-logo.png -------------------------------------------------------------------------------- /drum/links/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /drum/links/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /drum/links/static/js/bootstrap2-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/js/bootstrap2-extras.js -------------------------------------------------------------------------------- /drum/links/static/js/bootstrap2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/js/bootstrap2.js -------------------------------------------------------------------------------- /drum/links/static/js/drum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/js/drum.js -------------------------------------------------------------------------------- /drum/links/static/js/jquery.pjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/static/js/jquery.pjax.js -------------------------------------------------------------------------------- /drum/links/templates/accounts/account_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/accounts/account_profile.html -------------------------------------------------------------------------------- /drum/links/templates/accounts/includes/user_panel_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/accounts/includes/user_panel_nav.html -------------------------------------------------------------------------------- /drum/links/templates/admin/links/link/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/admin/links/link/change_list.html -------------------------------------------------------------------------------- /drum/links/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/base.html -------------------------------------------------------------------------------- /drum/links/templates/generic/includes/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/generic/includes/comment.html -------------------------------------------------------------------------------- /drum/links/templates/generic/includes/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/generic/includes/rating.html -------------------------------------------------------------------------------- /drum/links/templates/generic/threadedcomment_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/generic/threadedcomment_list.html -------------------------------------------------------------------------------- /drum/links/templates/includes/editable_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/includes/editable_loader.html -------------------------------------------------------------------------------- /drum/links/templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/includes/pagination.html -------------------------------------------------------------------------------- /drum/links/templates/includes/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/includes/search_form.html -------------------------------------------------------------------------------- /drum/links/templates/links/link_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/links/link_detail.html -------------------------------------------------------------------------------- /drum/links/templates/links/link_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/links/link_form.html -------------------------------------------------------------------------------- /drum/links/templates/links/link_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/links/link_list.html -------------------------------------------------------------------------------- /drum/links/templates/links/tag_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templates/links/tag_list.html -------------------------------------------------------------------------------- /drum/links/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drum/links/templatetags/drum_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/templatetags/drum_tags.py -------------------------------------------------------------------------------- /drum/links/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/tests.py -------------------------------------------------------------------------------- /drum/links/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/urls.py -------------------------------------------------------------------------------- /drum/links/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/utils.py -------------------------------------------------------------------------------- /drum/links/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/links/views.py -------------------------------------------------------------------------------- /drum/project_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drum/project_template/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/project_template/manage.py -------------------------------------------------------------------------------- /drum/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drum/project_template/project_name/local_settings.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/project_template/project_name/local_settings.py.template -------------------------------------------------------------------------------- /drum/project_template/project_name/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/project_template/project_name/settings.py -------------------------------------------------------------------------------- /drum/project_template/project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/drum/project_template/project_name/urls.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/drum/HEAD/setup.py --------------------------------------------------------------------------------