xadmin的主题use_bootswatch = True”无效解决方法

xadmin采用源代码的方式引入到项目中

在xadmin使用的过程中,设置“use_bootswatch = True”,企图调出主题菜单,显示更多主题。然而设置了后,发现主题还是默认和bootstrap2,深入跟踪源代码,发现/xadmin/plugins/themes.py下的

block_top_navmenu

当use_bootswatch 为True的时候,就会使用httplib2去

http://bootswatch.com/api/3.json

网址获取主题菜单项。但是使用浏览器打开这个网址,http会被替换成https的。httplib2访问这个https的网址,就会报错。报错信息为:

[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure

这边使用requests库来替代httplib2.

1.安装requests

pip install requests

2.在./xadmin/plugins/themes.py 引入requests

import requests

3.修改block_top_navmenu方法:



# Block Views    def block_top_navmenu(self, context, nodes):

themes = [            {‘name‘: _(u"Default"), ‘description‘: _(u"Default bootstrap theme"), ‘css‘: self.default_theme},            {‘name‘: _(u"Bootstrap2"), ‘description‘: _(u"Bootstrap 2.x theme"), ‘css‘: self.bootstrap2_theme},            ]        select_css = context.get(‘site_theme‘, self.default_theme)

if self.user_themes:            themes.extend(self.user_themes)

if self.use_bootswatch:            ex_themes = cache.get(THEME_CACHE_KEY)            if ex_themes:                themes.extend(json.loads(ex_themes))            else:                ex_themes = []                try:                    flag = False  # 假如为True使用原来的代码,假如为Flase,使用requests库来访问                    if flag:                        h = httplib2.Http()                        resp, content = h.request("https://bootswatch.com/api/3.json", ‘GET‘, ‘‘,                            headers={"Accept": "application/json", "User-Agent": self.request.META[‘HTTP_USER_AGENT‘]})                        if six.PY3:                            content = content.decode()                        watch_themes = json.loads(content)[‘themes‘]                    else:                        content = requests.get("https://bootswatch.com/api/3.json")                        if six.PY3:                            content = content.text.decode()                        watch_themes = json.loads(content.text)[‘themes‘]                    ex_themes.extend([                        {‘name‘: t[‘name‘], ‘description‘: t[‘description‘],                            ‘css‘: t[‘cssMin‘], ‘thumbnail‘: t[‘thumbnail‘]}                        for t in watch_themes])                except Exception as e:                    print(e)

cache.set(THEME_CACHE_KEY, json.dumps(ex_themes), 24 * 3600)                themes.extend(ex_themes)

nodes.append(loader.render_to_string(‘xadmin/blocks/comm.top.theme.html‘, {‘themes‘: themes, ‘select_css‘: select_css}))

site.register_plugin(ThemePlugin, BaseAdminView)


原文链接: https://my.oschina.net/u/2396236/blog/1083251

转载from:http://blog.csdn.net/dimples_54/article/details/77963593

时间: 2024-11-08 23:50:14

xadmin的主题use_bootswatch = True”无效解决方法的相关文章

xadmin下设置“use_bootswatch = True”无效的解决办法

环境: python 2.7 django 1.9 xadmin采用源代码的方式引入到项目中 问题: 在xadmin使用的过程中,设置"use_bootswatch = True",企图调出主题菜单,显示更多主题.然而设置了后,发现主题还是默认和bootstrap2,深入跟踪源代码,发现/xadmin/plugins/themes.py下的block_top_navmenu方法,在use_bootswatch=True的时候,就会使用httplib2去加载http://bootswat

解决xadmin下设置“use_bootswatch = True”无效的问题

环境:python 2.7django 1.9xadmin采用源代码的方式引入到项目中 1.安装requests pip install requests 2./xadmin/plugins/themes.py 引入requests import requests 3.修改block_top_navmenu方法: def block_top_navmenu(self, context, nodes): themes = [ {'name': _(u"Default"), 'descri

Include设置layout_*无效解决方法

在include标签中不能省略 layout_width或者layout_height否则设置layout_weight就会无效.如下设置即可 <LinearLayout android:id="@+id/linearLayout1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="0.0

ActionBar自己定义改动无效解决方法

假设程序支持API11下面的版本号,那么须要改动多个地方 values-v14 和values-v11以下的styles中也要写上 <style name="AppTheme" parent="AppBaseTheme">        <!-- All customizations that are NOT specific to a particular API-level can go here. -->        <item

Ubuntu 14.04 关机键无效解决方法

     这几天开始研究ubuntu 14.04软件,安装Cairo-Dock后发现右上角的关机.重启.注销菜单点击都没了反应只能通过命令实现,后来经过研究,发现只要设置了 Cairo-Dock 开启自启动,那三个键就会失效.解决方法如下: 1.编辑/usr/lib/i386-linux-gnu/cairo-dock/cairo-dock-launcher-API-daemon(可在/usr/lib下搜索找到caior-dock) sudo vim /usr/lib/i386-linux-gnu

ActionBar自定义修改无效解决方法

如果程序支持API11以下的版本,那么需要修改多个地方 values-v14 和values-v11下面的styles中也要写上 <style name="AppTheme" parent="AppBaseTheme"> <!-- All customizations that are NOT specific to a particular API-level can go here. --> <item name="act

IOS开发证书变成“此证书的签发者无效”解决方法

转载自:http://blog.csdn.net/h1101723183/article/details/50667325 IOS开发证书全部变成无效,如下图  打包提示错误  解决方法: 1. 下载https://developer.apple.com/certificationauthority/AppleWWDRCA.cer的证书,然后双击安装. 2. 在导航栏那边,显示-显示已过期的证书  3. 点击 “登录”,并且选择 “所有项目” ,并在搜索栏下输入 apple w,其中有一个是无效

DataGridViewComboBoxColumn值无效解决方法

值无效,可能是你下拉框选项,没有这样的值,而你却设置这个值. dataGridView1.Rows[i].Cells[1].Value?=?"选项一"; 解决方法就是在窗体的构造函数里添加如下代码: this.dataGridView1.DataError?+=?delegate(object?sender,?DataGridViewDataErrorEventArgs?e)?{?}; 1.必须确定,给DataVridView赋值,是在DataGridViewComboBox已经绑定了

requestWindowFeature(Window.FEATURE_NO_TITLE)无效解决方法

今天在<第一行代码>上学习做自定义标题栏,需要将系统自带的标题栏隐藏掉,使用自定义的标题栏,结果发现,requestWindowFeature(Window.FEATURE_NO_TITLE); 这句代码无效,标题栏无法隐藏,可我以前都可以隐藏啊,今天怎么不可以了,最终发现是Activity的继承问题,我的代码是这样的 public class TitlebarActivity extends AppCompatActivity 可以看出我的Activity是继承自AppCompatActiv