Typeahead working again

Fix for replacing characters in filenames
pull/394/head
OzzieIsaacs 7 years ago
parent ad16194798
commit b8d45b664a

@ -280,7 +280,7 @@ def get_valid_filename(value, replace_whitespace=True):
value = unicode(re_slugify.sub('', value).strip())
if replace_whitespace:
#*+:\"/<>? are replaced by _
value = re.sub('[\*\+:\\\"/<>\?]+', u'_', value, flags=re.U)
value = re.sub(r'[\*\+:\\\"/<>\?]+', u'_', value, flags=re.U)
value = value[:128]
if not value:

@ -46,8 +46,7 @@ function prefixedSource(prefix, query, cb, bhAdapter) {
function getPath() {
var jsFileLocation = $("script[src*=edit_books]").attr("src"); // the js file path
jsFileLocation = jsFileLocation.replace("/static/js/edit_books.js", ""); // the js folder path
return jsFileLocation;
return jsFileLocation.substr(0,jsFileLocation.search("/static/js/edit_books.js")); // the js folder path
}
var authors = new Bloodhound({

Loading…
Cancel
Save