Fixes source navigation on the document upload wizard. Thanks to Nick Douma (LordGaav) for the report and diagnostic information. GitLab issue #436. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
15 lines
523 B
Python
15 lines
523 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
TEST_PERMISSION_NAMESPACE_NAME = 'test namespace name'
|
|
TEST_PERMISSION_NAMESPACE_TEXT = 'test namespace text'
|
|
TEST_PERMISSION_NAME = 'test permission name'
|
|
TEST_PERMISSION_LABEL = 'test permission label'
|
|
TEST_LINK_TEXT = 'test link text'
|
|
TEST_MENU_NAME = 'menu test'
|
|
TEST_QUERYSTRING_ONE_KEY = 'key1=value1'
|
|
TEST_QUERYSTRING_TWO_KEYS = 'key1=value1&key2=value2'
|
|
TEST_SUBMENU_NAME = 'submenu test'
|
|
TEST_UNICODE_STRING = 'úñí©óðé'
|
|
TEST_URL = 'test-URL'
|