comparison src/common/constants.py @ 823:027139763511

server (blog): cleaning & improvments: - use a constant for themes url - moved RSM related constants to server only constants, and renamed theme STATIC_RSM* - raised the default number of items/comments to 10 - removed references to microblog namespace as it is managed by backend - many little improvments for better readability - dont use dynamic relative paths anymore - replaced use of old formatting syntax (%) by format() - profile name in url is now properly (un)quoted - removed max_items as it was used at the same time as RSM (TODO: check RSM support before using it) - renamed render_* methods using camelCase for consistency - put a limit for rsm_max, to avoid overloading - don't sort items after getting them anymore, as sorting is already done by backend/pubsub according to request - use urllib.urlencode when possible
author Goffi <goffi@goffi.org>
date Fri, 08 Jan 2016 14:42:39 +0100
parents f8a7a046ff9c
children 0c824ebe9d87
comparison
equal deleted inserted replaced
822:2819e4241e78 823:027139763511
15 # GNU Affero General Public License for more details. 15 # GNU Affero General Public License for more details.
16 16
17 # You should have received a copy of the GNU Affero General Public License 17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 19
20 from sat.core.i18n import D_
21 from sat_frontends.quick_frontend import constants 20 from sat_frontends.quick_frontend import constants
22 import os.path 21 import os.path
23 22
24 23
25 class Const(constants.Const): 24 class Const(constants.Const):
52 # avatars 51 # avatars
53 DEFAULT_AVATAR_FILE = "default_avatar.png" 52 DEFAULT_AVATAR_FILE = "default_avatar.png"
54 DEFAULT_AVATAR_URL = os.path.join(MEDIA_DIR, "misc", DEFAULT_AVATAR_FILE) 53 DEFAULT_AVATAR_URL = os.path.join(MEDIA_DIR, "misc", DEFAULT_AVATAR_FILE)
55 EMPTY_AVATAR_FILE = "empty_avatar" 54 EMPTY_AVATAR_FILE = "empty_avatar"
56 EMPTY_AVATAR_URL = os.path.join(MEDIA_DIR, "misc", EMPTY_AVATAR_FILE) 55 EMPTY_AVATAR_URL = os.path.join(MEDIA_DIR, "misc", EMPTY_AVATAR_FILE)
57
58 RSM_MAX_ITEMS = 5
59 RSM_MAX_COMMENTS = 5
60