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