`
huangro
  • 浏览: 336923 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
     Python2.2统一了类型和类,所有的内建类型现在也都是类,在这基础之上,原来的所谓内建转换函数比如int()、type()、list()等,现在都成了工厂函数。也就是说虽然他们看上去有点像函数,实质上他们是类。     下面这些大家熟悉的工厂函数在之前的Python版本中被称为内建函数: int(),long(), float(), complex() str(), unicode(), basestring() list(), tuple() type()     以前没有工厂函数的其他函数,现在也都有了工厂函数。除此之外,那些支持新式类的全新数据类型,也添加了相 ...
# -*- coding: utf-8 -*- #!/usr/bin/env python from twisted.scripts.twistd import run import os import sys try: os.unlink('twistd.pid') except OSError: pass run() 我采用的是wing IDE, 可以将该文件设置为Debug的默认启动文件,然后右键点击其属性,添加调试辅助命令,比如 -noy ***.tac 等。
  1 Nevow XML Templates 2 =================== 3 4 Stan syntax is cool, but eventually you are going to want to integrate your 5 Python code with a template designed by an HTML monkey. Nevow accomplishes this 6 by providing an xmlfile loader which uses the bu ...
1 Nevow Object Traversal 2 ====================== 3 4 *Object traversal* is the process Nevow uses to determine what object to use to 5 render HTML for a particular URL. When an HTTP request comes in to the web 6 server, the object publisher splits the URL in ...
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript"><!-- _uacct = "UA-99018-3"; urchinTracker(); // --></script> 1 Nevow Object Publishing 2 ===================== ...
.tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) --------------------------------------------- .gz 解压1:gunzip FileName.gz 解压2:gzip -d FileName.gz 压缩:gzip FileName .tar.gz 和 .tgz 解压:tar zxvf FileName.tar.gz 压缩:tar zcvf FileName.tar.gz DirName ---- ...
引用:Nevow , a python based web construction toolkit , has a lot of nice features, that deserve attention: 1 - LivePage ( Ajax ). 2 - Canvas ( Flash to server ). 3 - XUL , the python way. 4 - Stan ( Python...ized XHTML ) 5 - Formless ( automatic Form generation ). 
1. 首先,编写一个HTML文件,helloword.html <html> <head> <title>Hello, world!</title> </head> <body> <p>Hello, world!</p> </body> </html> 2. 编写一个Nevow控制程序文件,helloword.py from nevow import loaders, rend class HelloWorld( ...
Twisted + Nevow  在python web开发上具有一定的优势,Nevow是一种比较新的CGI框架,而最近又有nufox(nevow+xul=nufox)出现,它是基于Nevow的技术,更加新颖,打算抽空学习一下。 引用: Nufox is a python, XUL toolkit written ontop of the Twisted Networking Framework and Nevow. The idea is that you should be able to write server-side cross platform XUL application ...
 PostgreSQL的配置文件及用户权限 作者:小P 来自:LinuxSir.Org 摘要:为了能够远程修改和维护PostgreSQL数据库,我们会涉及到配置文件和用户权限的问题,本文主要介绍了如何配置PostgreSQL的主要配置文件,修改用户权限,使我们能够远程打开数据库; 目录 1. 修改配置文件; 1.1 postgresql.conf; 1.2 pg_hba.conf; 1.3 重新启动postgresql服务器; 2. 配置用户权限; 2.1 创建一个用户; 2.2 创建一个数据库data1,属主为test1; 2.3 ...
 在pg 8.3中, 可以使用多个-t来分割不同的table, 其他版本不清楚是否支持多个table导出. 例如: 我要一次性导出table1, table2, table3, 可以这么来写: pg_dump -t table1 -t table2 -t table3 -F c -Z 9 databasename > abc.backup 比较诡异的用法 顺便把pg_ ...
常见问题 1.1)PostgreSQL 是什么?该怎么发音? 1.2)谁控制和管理PostgreSQL ? 1.3)PostgreSQL的版权是什么? 1.4)PostgreSQL可以运行在哪些操作系统平台上? 1.5)我从哪里能得到PostgreSQL? 1.6)最新版的PostgreSQL 是什么? 1.7)我从哪里能得 ...
使用psql命令导入备份的数据,具体命令如下: psql -U 用户名 -d 数据库名 < 备份数据文件的完整路径 也可以用psql命令来导入特定的数据,具体可使用psql --help来看帮助文档。
pg_dump 是一个将 PostgreSQL 数据库保存到一个脚本或者归档文件中的工具. 这个脚本文件的格式是纯文本,它包含许多 SQL 命令, 这些 SQL 命令可以用于重建该数据库并将之恢复到保存成脚本的时候的状态. 要恢复这些脚本,使用 ...
使用Request.Params["id"]来获取参数是一种比较有效的途径。 有三种方式可以进行参数传递:(1). Form   (2). ?id=   (3).cookie request.params其实是一个集合,它依次包括request.querystring、request.form、request.cookies和request.servervariables。 如果要在两个页面传递数据的话,只能用request.querystring、request.form、request.cookies Request.Params 是在 QueryString、F ...
Global site tag (gtag.js) - Google Analytics