aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-12-12 21:14:28 +0100
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-01-26 23:46:30 +0100
commit4d213afb7d7c27012c6dc6fb3b36e5ef5ffe3c71 (patch)
tree329c2966696a337bc5d16f7feb8c8515545aa1c3
parentfixing logging (diff)
downloadnewspipe-4d213afb7d7c27012c6dc6fb3b36e5ef5ffe3c71.tar.gz
newspipe-4d213afb7d7c27012c6dc6fb3b36e5ef5ffe3c71.tar.bz2
newspipe-4d213afb7d7c27012c6dc6fb3b36e5ef5ffe3c71.zip
moving the root of source code from / to /src/
-rw-r--r--src/migrations/alembic.ini (renamed from src/alembic.ini)1
-rw-r--r--src/web/static/js/feed.js22
-rw-r--r--src/web/translations/fr/LC_MESSAGES/messages.mobin16913 -> 16842 bytes
3 files changed, 0 insertions, 23 deletions
diff --git a/src/alembic.ini b/src/migrations/alembic.ini
index a8008437..f8ed4801 100644
--- a/src/alembic.ini
+++ b/src/migrations/alembic.ini
@@ -1,7 +1,6 @@
# A generic, single database configuration.
[alembic]
-script_location = src/migrations
# template used to generate migration files
# file_template = %%(rev)s_%%(slug)s
diff --git a/src/web/static/js/feed.js b/src/web/static/js/feed.js
deleted file mode 100644
index ceef58fc..00000000
--- a/src/web/static/js/feed.js
+++ /dev/null
@@ -1,22 +0,0 @@
-$('.container').on('click', '#add-feed-filter-row', function() {
- $('#filters-container').append(
- '<div class="form-group">'
- + ' <input value="-" type="button" class="form-control del-feed-filter-row" />'
- + ' <select name="type" class="form-control">'
- + ' <option value="simple match" selected>simple match</option>'
- + ' <option value="regex">regex</option>'
- + ' </select>'
- + ' <input type="text" class="form-control" name="pattern" />'
- + ' <select name="action_on" class="form-control">'
- + ' <option value="match" selected>match</option>'
- + ' <option value="no match">no match</option>'
- + ' </select>'
- + ' <select name="action" class="form-control">'
- + ' <option value="mark as read" selected>mark as read</option>'
- + ' <option value="mark as favorite">mark as favorite</option>'
- + ' </select>'
- + '</div>');
-});
-$('.container').on('click', '.del-feed-filter-row', function() {
- $(this).parent().remove();
-});
diff --git a/src/web/translations/fr/LC_MESSAGES/messages.mo b/src/web/translations/fr/LC_MESSAGES/messages.mo
index 6daf1020..c7135b4c 100644
--- a/src/web/translations/fr/LC_MESSAGES/messages.mo
+++ b/src/web/translations/fr/LC_MESSAGES/messages.mo
Binary files differ
bgstack15