- 浏览: 55224 次
- 性别:
- 来自: 西安
最新评论
-
iamicebergs:
好东西,收藏~
[转]用python爬虫抓站的一些技巧总结 -
qiaoqinqie:
mark 很好的学习资料
python 常用类库! -
fire01312:
svn import /tmp/skysrt file:/// ...
FEDORA下SVN的安装以及配置 所属分类:Linux 评论(1),浏览(94)
文章列表
Widgets¶
A widget is Django’s representation of a HTML input element. The widget
handles the rendering of the HTML, and the extraction of data from a GET/POST
dictionary that corresponds to the widget.
Django provides a representation of all the basic HTML widgets, plus some
commonly used grou ...
- 2009-11-27 09:02
- 浏览 2271
- 评论(0)
django forms中widget属性的自定义
如有model:
代码
:class Book(models.Model):
title = models.CharField(maxlength=100)
authors = models.ManyToManyField(Author)
publisher = models.ForeignKey(Publisher)
publication_date = models.DateField()
在django下可以用以下方式生成forms
代码
:
from djan ...
- 2009-11-27 09:00
- 浏览 950
- 评论(0)
数据库 API 参考
作者:
Django 团队
译者:
weizhong2004@gmail.com
翻译开始日期:
2006-04-04
翻译完成日期:
2006-04-05
更新日期:
2006-04-19
原文版本:
2741
一旦 数据模型
创建完毕, 自然会有存取数据的需要.本文档介绍了由 models 衍生而来的数据库抽象API,及如何创建,得到及更新对象.
贯穿本参考, 我们都会引用下面的民意测验(Poll)应用程序:
class Poll(models.Model):
slug = mod ...
- 2009-11-25 09:27
- 浏览 1741
- 评论(0)
top命令
top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器。下面详细介绍它的使用方法。
top – 01:06:48 up 1:22, 1 user, load average: 0.06, 0.60, 0.48
Tasks: 29 total, 1 running, 28 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.3% us, 1.0% sy, 0.0% ni, 98.7% id, 0.0% wa, 0.0% hi, 0.0% si
Mem: 191272k total, 1 ...
- 2009-10-19 09:29
- 浏览 976
- 评论(0)
dmidecode是一个信息转换工具,能把系统中的硬件信息输出为友好的可读性的信息展现给我们;
一些知名厂商的服务器还可以展现出其服务器型号,序列号等等,可以有效的帮助我们做一些资产管理的工作;
比如我可以在一台dell的服务器上查看到:
bash# dmidecode -t 1Handle 0x0002,
- 2009-10-19 09:28
- 浏览 1084
- 评论(0)
文件管理是Linux 的核心,在Linux系统中,所有的概念都是基于文件的。
常用命令:
cat
将文件内容输出到屏幕或者另外一个文件。
如: cat testfile
cat test1 test2 > test3
chattr 修改ext2和ext3文件系统属性( ...
- 2009-10-16 08:51
- 浏览 838
- 评论(0)
Solaris的硬件相关命令
1.查看当前处理器的类型和速度(主频)
# psrinfo –v
Status of processor 1 as of: 11/24/01 10:34:41
Processor has been on-line since 11/24/01 10:18:20.
The sparcv9 processor operates at 432 MHz,
and has a sparcv9 floating point processor.
Status of processor 3 as of: 11/24/01 10:34:41
...
- 2008-08-04 16:47
- 浏览 1114
- 评论(0)