Compare commits
No commits in common. "8a16c7e37fd5905cf5dddacfaa682da14a9a5193" and "cabcbeb35d95630e01acca1cef68998a8271d51f" have entirely different histories.
8a16c7e37f
...
cabcbeb35d
3 changed files with 2 additions and 5 deletions
|
|
@ -13,7 +13,6 @@ from django.conf import settings
|
|||
from django.db import models, transaction
|
||||
from django.db.models import Max
|
||||
from django.contrib.auth import get_user_model
|
||||
from django.core.cache import cache
|
||||
|
||||
from oxdjango.fields import JSONField
|
||||
|
||||
|
|
|
|||
|
|
@ -429,7 +429,7 @@ pandora.ui.documentInfoView = function(data, isMixed) {
|
|||
function formatLink(value, key) {
|
||||
return (Ox.isArray(value) ? value : [value]).map(function(value) {
|
||||
return key
|
||||
? '<a href="/documents/' + key + '=' + pandora.escapeQueryValue(value) + '">' + value + '</a>'
|
||||
? '<a href="/documents/' + key + '=' + value + '">' + value + '</a>'
|
||||
: value;
|
||||
}).join(', ');
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1110,9 +1110,7 @@ pandora.escapeQueryValue = function(value) {
|
|||
if (!Ox.isString(value)) {
|
||||
value = value.toString();
|
||||
}
|
||||
return value
|
||||
.replace(/%/, '%25')
|
||||
.replace(/&/, '%26')
|
||||
return value.replace(/%/, '%25')
|
||||
.replace(/_/g, '%09')
|
||||
.replace(/\s/g, '_')
|
||||
.replace(/</g, '%0E')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue