创建新用户: create user 'user01'@'127.0.0.1' identified by 'cssss@!'; create user 'user01'@'%' identified by 'cssss@!'; grant all privileges on *.* to 'cbi ...
分类:
其他好文 时间:
2021-05-24 14:53:49
阅读次数:
0
AVR的C语言基于ANSI C,没有像51那样扩展了位操作(布尔操作),虽然汇编指令里面有SBI/CBI/SBIC/SBIS指令。所以需要采用 位逻辑运算 来实现,这是必须要掌握的。IO口和功能寄存器的操作方法一样,但对于部分功能寄存器的读写有特殊要求,请参看手册。不必考虑代码效率的问题,如果可能, ...
分类:
其他好文 时间:
2020-01-10 12:50:28
阅读次数:
96
openwrt luci web分析 来源 https://www.jianshu.com/p/596485f95cf2 www/cbi-bin/luci run方法的主要任务就是在安全的环境中打开开始页面(登录页面),在run中,最主要的功能还是在dispatch.lua中完成。 LUCI的MVC ...
分类:
Web程序 时间:
2019-10-15 13:25:47
阅读次数:
160
[声明] CPen* SelectObject( CPen* pPen ); CBrush* SelectObject( CBrush* pBrush ); virtual CFont* SelectObject( CFont* pFont ); CBitmap* SelectObject( CBi ...
分类:
其他好文 时间:
2018-10-06 19:49:46
阅读次数:
211
CPC(http://cpc.cbi.pku.edu.cn/) 可在线使用a Support Vector Machine-based classifier, named Coding Potential Calculator (CPC), to assess the protein-coding ...
分类:
其他好文 时间:
2018-03-18 10:27:17
阅读次数:
2369
先看看network的配置文件: [html] view plaincopy config interface 'loopback' option ifname 'lo' option proto 'static' option ipaddr '127.0.0.1' option netmask ' ...
分类:
其他好文 时间:
2017-07-04 19:59:21
阅读次数:
253
SELECT c.* , COALESCE(SUM(ca.quantity), 0) AS acquired_quantity FROM coupon_bundle cb INNER JOIN coupon_bundle_item cbi ON cbi...
分类:
数据库 时间:
2015-10-13 10:36:00
阅读次数:
154
entry()函数,第一个参数是定义菜单的显示(Virtual path)。第二个参数定义相应的处理方式(target)。alias是指向别的entry的别名,from调用的某一个view,cbi调用某一个model,call直接调用函数。第三个参数是菜单的文本,直接添加string不会国际化,_(...
分类:
其他好文 时间:
2015-10-12 12:05:40
阅读次数:
120
OpenWrt的luci web管理器添加新菜单本篇博客主要描述luci添加菜单的两个实例,即CBI和View(Template):
添加新元素到luci中去
添加新的顶级选项卡标签(主菜单)
添加cbi标签的代码
添加cbi配置文件
添加view标签代码
关键字
luci
cbi
view
template
fulinux
添加新元素到luci中去
这里将向大家展示如何在luci中添加新标签的方法...
分类:
Web程序 时间:
2015-09-28 16:24:55
阅读次数:
398
第一部分:template的方式实现网页显示hello world,如图显示:第一步:/usr/lib/lua/luci/controller/admin/system.lua中注册选项:entry({"admin", "system", "test-template"}, template("test/hello"), _("test"), 3).dependent = false第二步:在vi...
分类:
Web程序 时间:
2015-09-19 06:16:00
阅读次数:
437