关于frameset

备忘下,关于frameset,这个标签现在用的已经不多了,用法比较特殊。 <http://www.w3.org/TR/REC- html40/present/frames.html#h-16.2> frameset是一个与html并列的一种文档类型,如果frameset文档中出现普通html标签,则会变成普通的html文档。 An HTML document that describes frame layout (called a frameset document) has a different makeup than an HTML document without frames. A standard document has one HEAD section and one BODY. A frameset document has a HEAD, and a FRAMESET in place of the BODY. The FRAMESET section of a document specifies the layout of views in the main user agent window. In addition, the FRAMESET section can contain a NOFRAMES element to provide alternate content for user agents that do not support frames or are configured not to display frames. Elements that might normally be placed in the BODY element must not appear before the first FRAMESET element or the FRAMESET will be ignored. ...

March 17, 2010 · notsobad

webfaction主机的邮件配置

我需要在webfaction的主机上使用email来给注册用户发邮件,它本机是不提供mail server的,需要单独配置邮件 email的配置,参考这个 http://docs.webfaction.com/user-guide/email.html 即新建mailbox,新建个发邮件账户,然后就是django中配置了。 django中配置参考这个: https://help.webfaction.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid;=181 ...

March 12, 2010 · notsobad

pac脚本tips

关于pac脚本,几点tip ie下pac脚本是会cache结果的,如果pac文件会经常变化,以前配置过pac,ie可能不会立即去取这个新的文件,可以改变pac文件的地址,如http://xxx.xx/xx.pac?r=$rand http://support.microsoft.com./kb/271361 ie下的session管理规则和firefox不一样,多个浏览器窗口session可能会不一样,所以pac脚本如果是一个需要登录认证的脚本动态产生,会导致ie取不到pac文件。 firefox下,多个如果在父窗口配置代理,弹出的新窗口却并没有使用这个代理,比较奇怪,需要在新窗口里面配置。 ...

February 1, 2010 · notsobad

查看jquery的代码实现

看到了篇文章 http://james.padolsey.com/javascript/under-jquerys-bonnet/ 查看jquery的代码实现 http://james.padolsey.com/jquery 做的很cool,如果你想知道jquery的attr方法是怎么实现的 http://james.padolsey.com/jquery/#v=1.4&fn;=jQuery.attr 访问上面的地址即可,比自己从几千行源码里翻要快些。 If there’s one thing all library users should be doing more, it’s peeling back the layer of abstraction and seeing what’s really happening underneath. This is the only way to gain a true understanding of what the library provides, and who knows, maybe you’ll find some gems that you didn’t know existed. ...

February 1, 2010 · notsobad

IE下的js调试

关于js调试 今天处理个问题,想起了以前看过的几个方法,很有效果。 firefox下就不说了,用firebug即可。 ie下可以用调试工具,实在没有的话,可以手动调。 ie给出的错误提示很模糊,不好定位到底是哪一行出错了 alert 一般是用alert来输出变量的值,但是alert不止这个作用 由于javascript是单线程方式执行的,语句是在语义块里顺序执行的,alert是阻塞式的,只有用户点击确定,脚本才会执行下一条语句,所以alert实际上就是个相当于个断点。 如果一个比较复杂的程序不知道哪一部出错了,可以用二分法,在代码某一部分插入alert,看alert之前、之后是否出错,可以逐步的定位问题所在。 ...

January 21, 2010 · notsobad

Beautifulsoup的unicode问题

python的unicode问题实在是让人痛苦,本身要写一段小程序,时间都被浪费在处理unicode上面了。 我的python版本 python -c 'import sys;print sys.version' 2.6.4 (r264:75706, Dec 7 2009, 18:45:15) [GCC 4.4.1] import os,sys from BeautifulSoup import BeautifulSoup, SoupStrainer def get_info(cont): print type(cont) soup = BeautifulSoup(cont) a = soup.findAll('a') print type(a) print(a) if __name__ == "__main__": s = sys.stdin.read() s = unicode(s, 'utf-8') get_info(s) 出错信息: 505 ~/script/notsobad/python/tool>cat /tmp/book_2742/index.html | ./book_res.py Traceback (most recent call last): File "./book_res.py", line 28, in get_info(s) File "./book_res.py", line 20, in get_info print(a) UnicodeEncodeError: 'ascii' codec can't encode characters in position 79-82: ordinal not in range(128) type(a) 是unicode,但是print a却报错。 最后在python的mail list里找到了篇 http://mail.python.org/pipermail/tutor/2005-August/040991.html http://mail.python.org/pipermail/tutor/2005-August/040993.html ...

January 9, 2010 · notsobad

Javascript中的保留字

Javascript中的保留字,变量函数名不要使用这些字符。 IE JScript Reserved Words Firefox Reserved Words 注意IE中的“Protected Reserved Words”,在脚本加载时就会报错。

January 8, 2010 · notsobad

PHP curl_exec() url可被用户控制导致的漏洞

通常情况下curl被用来访问远程链接,并取回数据。但是curl支持很多协议。下面是一段php手册中关于curl的描述: PHP supports libcurl, a library created by Daniel Stenberg, that allows you to connect and communicate to many different types of servers with many different types of protocols. libcurl currently supports the http, https, ftp, gopher, telnet, dict, file, and ldap protocols. libcurl also supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading (this can also be done with PHP’s ftp extension), HTTP form based upload, proxies, cookies, and user+password authentication. ...

January 8, 2010 · notsobad

2010.1.3 备忘 django的get_absolute_url

django的get_absolute_url,还是挺有用的。 参考[这里](http://docs.djangoproject.com/en/dev/ref/models/instances/#get- absolute-url) from django.db import models @models.permalink def get_absolute_url(self): return ('people.views.details', [str(self.id)]) Or: (r'/archive/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/$', archive_view) @models.permalink def get_absolute_url(self): return ('archive_view', (), { 'year': self.created.year, 'month': self.created.month, 'day': self.created.day})

January 3, 2010 · notsobad

django备忘

备忘: save() got an unexpected keyword argument ‘force_insert’ 解决: save时需要带上 *args, **kwargs def save(self, *args, **kwargs): #... super(SiteUser, self).save(*args, **kwargs) [参考](http://groups.google.com/group/django- users/browse_thread/thread/2471efd68d56ad59/a8c000a383db3f63?lnk=raot) 另: relation “django_admin_log” does not exist 这是因为启用了admin,但是没有syncdb 运行: ./manage.py syncdb

December 31, 2009 · notsobad