remove unused code, fix pyflakes and jshint hints
This commit is contained in:
parent
8c6a7e209e
commit
64054ec029
@ -16,7 +16,6 @@ import pkg_resources
|
|||||||
dist = pkg_resources.get_distribution("isso")
|
dist = pkg_resources.get_distribution("isso")
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
|
||||||
|
|
||||||
from os.path import join, dirname
|
from os.path import join, dirname
|
||||||
sys.path.insert(0, join(dirname(__file__), "_isso/"))
|
sys.path.insert(0, join(dirname(__file__), "_isso/"))
|
||||||
|
@ -17,7 +17,8 @@ define(function() {
|
|||||||
var js = document.getElementsByTagName("script");
|
var js = document.getElementsByTagName("script");
|
||||||
|
|
||||||
for (var i = 0; i < js.length; i++) {
|
for (var i = 0; i < js.length; i++) {
|
||||||
[].forEach.call(js[i].attributes, function(attr) {
|
for (var j = 0; j < js[i].attributes.length; j++) {
|
||||||
|
var attr = js[i].attributes[j];
|
||||||
if (/^data-isso-/.test(attr.name)) {
|
if (/^data-isso-/.test(attr.name)) {
|
||||||
try {
|
try {
|
||||||
config[attr.name.substring(10)] = JSON.parse(attr.value);
|
config[attr.name.substring(10)] = JSON.parse(attr.value);
|
||||||
@ -25,7 +26,7 @@ define(function() {
|
|||||||
config[attr.name.substring(10)] = attr.value;
|
config[attr.name.substring(10)] = attr.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// split avatar-fg on whitespace
|
// split avatar-fg on whitespace
|
||||||
|
@ -4,7 +4,7 @@ define(["app/api", "app/dom", "app/i18n"], function(api, $, i18n) {
|
|||||||
var objs = {};
|
var objs = {};
|
||||||
|
|
||||||
$.each("a", function(el) {
|
$.each("a", function(el) {
|
||||||
if (! el.href.match("#isso-thread$")) {
|
if (! el.href.match(/#isso-thread$/)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,11 +18,11 @@ define(function() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var defer = function() {
|
var Defer = function() {
|
||||||
this.promise = new Promise();
|
this.promise = new Promise();
|
||||||
};
|
};
|
||||||
|
|
||||||
defer.prototype = {
|
Defer.prototype = {
|
||||||
promise: Promise,
|
promise: Promise,
|
||||||
resolve: function(rv) {
|
resolve: function(rv) {
|
||||||
this.promise.success.forEach(function(callback) {
|
this.promise.success.forEach(function(callback) {
|
||||||
@ -50,7 +50,7 @@ define(function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
defer: function() { return new defer(); },
|
defer: function() { return new Defer(); },
|
||||||
when: when
|
when: when
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
require(["app/lib/ready", "app/count"], function(domready, count) {
|
require(["app/lib/ready", "app/count"], function(domready, count) {
|
||||||
domready(function() {
|
domready(function() {
|
||||||
count();
|
count();
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
|
@ -10,7 +10,7 @@ define(function() {
|
|||||||
|
|
||||||
if (typeof process !== "undefined") {
|
if (typeof process !== "undefined") {
|
||||||
var fs = require.nodeRequire("fs");
|
var fs = require.nodeRequire("fs");
|
||||||
var jade = require.nodeRequire("jade");
|
jade = require.nodeRequire("jade");
|
||||||
fetchText = function(path, callback) {
|
fetchText = function(path, callback) {
|
||||||
callback(fs.readFileSync(path, "utf-8"));
|
callback(fs.readFileSync(path, "utf-8"));
|
||||||
};
|
};
|
||||||
|
@ -353,7 +353,7 @@ class TestComments(unittest.TestCase):
|
|||||||
|
|
||||||
def testDeleteCommentRemovesThread(self):
|
def testDeleteCommentRemovesThread(self):
|
||||||
|
|
||||||
rv = self.client.post('/new?uri=%2F', data=json.dumps({"text": "..."}))
|
self.client.post('/new?uri=%2F', data=json.dumps({"text": "..."}))
|
||||||
self.assertIn('/', self.app.db.threads)
|
self.assertIn('/', self.app.db.threads)
|
||||||
self.client.delete('/id/1')
|
self.client.delete('/id/1')
|
||||||
self.assertNotIn('/', self.app.db.threads)
|
self.assertNotIn('/', self.app.db.threads)
|
||||||
|
@ -89,7 +89,7 @@ class TestDBMigration(unittest.TestCase):
|
|||||||
"VALUEs (?, ?, ?)", (id, parent, id))
|
"VALUEs (?, ?, ?)", (id, parent, id))
|
||||||
|
|
||||||
conf = Config.load(None)
|
conf = Config.load(None)
|
||||||
db = SQLite3(self.path, conf)
|
SQLite3(self.path, conf)
|
||||||
|
|
||||||
flattened = [
|
flattened = [
|
||||||
(1, None),
|
(1, None),
|
||||||
|
@ -8,11 +8,6 @@ werkzeug = pkg_resources.get_distribution("werkzeug")
|
|||||||
import json
|
import json
|
||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
try:
|
|
||||||
from html.parser import HTMLParser, HTMLParseError
|
|
||||||
except ImportError:
|
|
||||||
from HTMLParser import HTMLParser, HTMLParseError
|
|
||||||
|
|
||||||
from werkzeug.wrappers import Request, Response
|
from werkzeug.wrappers import Request, Response
|
||||||
from werkzeug.exceptions import BadRequest
|
from werkzeug.exceptions import BadRequest
|
||||||
|
|
||||||
|
@ -10,7 +10,6 @@ html5lib_version = pkg_resources.get_distribution("html5lib").version
|
|||||||
|
|
||||||
from html5lib.sanitizer import HTMLSanitizer
|
from html5lib.sanitizer import HTMLSanitizer
|
||||||
from html5lib.serializer import HTMLSerializer
|
from html5lib.serializer import HTMLSerializer
|
||||||
from html5lib.treewalkers import getTreeWalker
|
|
||||||
|
|
||||||
import misaka
|
import misaka
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user