Python论坛  - 讨论区

标题:[python-chinese] Django新的databrowse初体

2007年04月18日 星期三 16:20

马踏飞燕 honeyday.mj在gmail.com
星期三 四月 18 16:20:22 HKT 2007

今天update了一下django的svn,突然发现多了一个新东西,叫databrowse。
看了一下文档,觉得不错,遂加入到现有的项目中试试看。
以下是简单的步骤:

1:把'django.contrib.databrowse' 加入到INSTALLED_APPS 中。
2:在urls.py里面写上下面的导入语句

from django.contrib import databrowse

3:注册要browse的models,参数是models的类而不是实例。

databrowse.site.register(SomeModel)
databrowse.site.register(SomeOtherModel)

4:在urlmapping中加入

(r'^databrowse/(.*)', databrowse.site.root),

这样就配置好了。

接下来就是启动django的server,在浏览器中输入地址,例如

http://127.0.0.1/databrowse/

就可以看到蓝色的界面了,还是比较漂亮的,而且还可以根据字段进行分组的浏览,哈哈,不错不错。

不过字段里的内容如果是html代码的话就会把页面搞乱了,应该是没有对html的标签进行转码的原因,不过这个东西还在开发中,相信很快就会改好的。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年04月18日 星期三 16:33

Frog isfrog在gmail.com
星期三 四月 18 16:33:08 HKT 2007

good£¬markһϠ£º£©

ÔÚ07-4-18£¬Âí̤·ÉÑà <honeyday.mj在gmail.com> дµÀ£º
>
> ½ñÌìupdateÁËÒ»ÏÂdjangoµÄsvn£¬Í»È»·¢ÏÖ¶àÁËÒ»¸öж«Î÷£¬½Ðdatabrowse¡£
> ¿´ÁËÒ»ÏÂÎĵµ£¬¾õµÃ²»´í£¬Ëì¼ÓÈëµ½ÏÖÓеÄÏîÄ¿ÖÐÊÔÊÔ¿´¡£
> ÒÔÏÂÊǼòµ¥µÄ²½Ö裺
>
> 1£º°Ñ'django.contrib.databrowse' ¼ÓÈëµ½INSTALLED_APPS ÖС£
> 2£ºÔÚurls.pyÀïÃæдÉÏÏÂÃæµÄµ¼ÈëÓï¾ä
>
> from django.contrib import databrowse
>
> 3£º×¢²áÒªbrowseµÄmodels£¬²ÎÊýÊÇmodelsµÄÀà¶ø²»ÊÇʵÀý¡£
>
> databrowse.site.register(SomeModel)
> databrowse.site.register(SomeOtherModel)
>
> 4£ºÔÚurlmappingÖмÓÈë
>
> (r'^databrowse/(.*)', databrowse.site.root),
>
> ÕâÑù¾ÍÅäÖúÃÁË¡£
>
> ½ÓÏÂÀ´¾ÍÊÇÆô¶¯djangoµÄserver£¬ÔÚä¯ÀÀÆ÷ÖÐÊäÈëµØÖ·£¬ÀýÈç
>
> http://127.0.0.1/databrowse/
>
> ¾Í¿ÉÒÔ¿´µ½À¶É«µÄ½çÃæÁË£¬»¹ÊDZȽÏƯÁÁµÄ£¬¶øÇÒ»¹¿ÉÒÔ¸ù¾Ý×ֶνøÐзÖ×éµÄä¯ÀÀ£¬¹þ¹þ£¬²»´í²»´í¡£
>
> ²»¹ý×Ö¶ÎÀïµÄÄÚÈÝÈç¹ûÊÇhtml´úÂëµÄ»°¾Í»á°ÑÒ³Ãæ¸ãÂÒÁË£¬Ó¦¸ÃÊÇûÓжÔhtmlµÄ±êÇ©½øÐÐתÂëµÄÔ­Òò£¬²»¹ýÕâ¸ö¶«Î÷»¹ÔÚ¿ª·¢ÖУ¬ÏàÐźܿì¾Í»á¸ÄºÃµÄ¡£
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070418/2deadbb5/attachment-0001.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年04月18日 星期三 17:52

清风 paradise.qingfeng在gmail.com
星期三 四月 18 17:52:12 HKT 2007

效果不错:),见这里
http://qingfeng.ushared.com/databrowse/

On 4/18/07, 马踏飞燕 <honeyday.mj在gmail.com> wrote:
> 今天update了一下django的svn,突然发现多了一个新东西,叫databrowse。
> 看了一下文档,觉得不错,遂加入到现有的项目中试试看。
> 以下是简单的步骤:
>
> 1:把'django.contrib.databrowse' 加入到INSTALLED_APPS 中。
> 2:在urls.py里面写上下面的导入语句
>
> from django.contrib import databrowse
>
> 3:注册要browse的models,参数是models的类而不是实例。
>
> databrowse.site.register(SomeModel)
> databrowse.site.register(SomeOtherModel)
>
> 4:在urlmapping中加入
>
> (r'^databrowse/(.*)', databrowse.site.root),
>
> 这样就配置好了。
>
> 接下来就是启动django的server,在浏览器中输入地址,例如
>
> http://127.0.0.1/databrowse/
>
> 就可以看到蓝色的界面了,还是比较漂亮的,而且还可以根据字段进行分组的浏览,哈哈,不错不错。
>
> 不过字段里的内容如果是html代码的话就会把页面搞乱了,应该是没有对html的标签进行转码的原因,不过这个东西还在开发中,相信很快就会改好的。
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese


-- 
用彩信更新我的Blog,用照片记录我的生活
http://qingfeng.ushared.com/blog/

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年04月18日 星期三 18:04

Zoom.Quiet zoom.quiet在gmail.com
星期三 四月 18 18:04:05 HKT 2007

On 4/18/07, 清风 <paradise.qingfeng在gmail.com> wrote:
> 效果不错:),见这里
> http://qingfeng.ushared.com/databrowse/
>
嗬嗬嗬,大家手脚都够快的! *__*

> On 4/18/07, 马踏飞燕 <honeyday.mj在gmail.com> wrote:
> > 今天update了一下django的svn,突然发现多了一个新东西,叫databrowse。
> > 看了一下文档,觉得不错,遂加入到现有的项目中试试看。
> > 以下是简单的步骤:
> >
> > 1:把'django.contrib.databrowse' 加入到INSTALLED_APPS 中。
> > 2:在urls.py里面写上下面的导入语句
> >
> > from django.contrib import databrowse
> >
> > 3:注册要browse的models,参数是models的类而不是实例。
> >
> > databrowse.site.register(SomeModel)
> > databrowse.site.register(SomeOtherModel)
> >
> > 4:在urlmapping中加入
> >
> > (r'^databrowse/(.*)', databrowse.site.root),
> >
> > 这样就配置好了。
> >
> > 接下来就是启动django的server,在浏览器中输入地址,例如
> >
> > http://127.0.0.1/databrowse/
> >
> > 就可以看到蓝色的界面了,还是比较漂亮的,而且还可以根据字段进行分组的浏览,哈哈,不错不错。
> >
> > 不过字段里的内容如果是html代码的话就会把页面搞乱了,应该是没有对html的标签进行转码的原因,不过这个东西还在开发中,相信很快就会改好的。
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
> --
> 用彩信更新我的Blog,用照片记录我的生活
> http://qingfeng.ushared.com/blog/
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese


-- 
'''Time is unimportant, only life important!
http://zoomquiet.org
blog在http://blog.zoomquiet.org/pyblosxom/
wiki在http://wiki.woodpecker.org.cn/moin/ZoomQuiet
scrap在http://floss.zoomquiet.org
douban在http://www.douban.com/people/zoomq/
____________________________________
Pls. use OpenOffice.org to replace M$ Office.
     http://zh.openoffice.org
Pls. use 7-zip to replace WinRAR/WinZip.
     http://7-zip.org/zh-cn/
You can get the truely Freedom 4 software.
'''

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年04月18日 星期三 23:43

SpitFire spitfire2在gmail.com
星期三 四月 18 23:43:37 HKT 2007

怎么打不开。。


在07-4-18,清风 <paradise.qingfeng在gmail.com> 写道:
>
> 效果不错:),见这里
> http://qingfeng.ushared.com/databrowse/
>
> On 4/18/07, 马踏飞燕 <honeyday.mj在gmail.com> wrote:
> > 今天update了一下django的svn,突然发现多了一个新东西,叫databrowse。
> > 看了一下文档,觉得不错,遂加入到现有的项目中试试看。
> > 以下是简单的步骤:
> >
> > 1:把'django.contrib.databrowse' 加入到INSTALLED_APPS 中。
> > 2:在urls.py里面写上下面的导入语句
> >
> > from django.contrib import databrowse
> >
> > 3:注册要browse的models,参数是models的类而不是实例。
> >
> > databrowse.site.register(SomeModel)
> > databrowse.site.register(SomeOtherModel)
> >
> > 4:在urlmapping中加入
> >
> > (r'^databrowse/(.*)', databrowse.site.root),
> >
> > 这样就配置好了。
> >
> > 接下来就是启动django的server,在浏览器中输入地址,例如
> >
> > http://127.0.0.1/databrowse/
> >
> > 就可以看到蓝色的界面了,还是比较漂亮的,而且还可以根据字段进行分组的浏览,哈哈,不错不错。
> >
> > 不过字段里的内容如果是html代码的话就会把页面搞乱了,应该是没有对html的标签进行转码的原因,不过这个东西还在开发中,相信很快就会改好的。
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
> --
> 用彩信更新我的Blog,用照片记录我的生活
> http://qingfeng.ushared.com/blog/
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese




-- 
SpitFire
-------------- 下一部分 --------------
一个HTML附件被移除...
URL: http://python.cn/pipermail/python-chinese/attachments/20070418/84f6413a/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年04月19日 星期四 09:35

清风 paradise.qingfeng在gmail.com
星期四 四月 19 09:35:54 HKT 2007

昨天晚上关了:),有些隐藏字段还是不方便展示的,sorry

On 4/18/07, SpitFire <spitfire2在gmail.com> wrote:
> 怎么打不开。。
>
>
> 在07-4-18,清风 <paradise.qingfeng在gmail.com> 写道:
> > 效果不错:),见这里
> > http://qingfeng.ushared.com/databrowse/
> >
> > On 4/18/07, 马踏飞燕 <honeyday.mj在gmail.com> wrote:
> > > 今天update了一下django的svn,突然发现多了一个新东西,叫databrowse。
> > > 看了一下文档,觉得不错,遂加入到现有的项目中试试看。
> > > 以下是简单的步骤:
> > >
> > > 1:把'django.contrib.databrowse' 加入到INSTALLED_APPS 中。
> > > 2:在urls.py里面写上下面的导入语句
> > >
> > > from django.contrib import databrowse
> > >
> > > 3:注册要browse的models,参数是models的类而不是实例。
> > >
> > > databrowse.site.register(SomeModel)
> > > databrowse.site.register(SomeOtherModel)
> > >
> > > 4:在urlmapping中加入
> > >
> > > (r'^databrowse/(.*)', databrowse.site.root),
> > >
> > > 这样就配置好了。
> > >
> > > 接下来就是启动django的server,在浏览器中输入地址,例如
> > >
> > > http://127.0.0.1/databrowse/
> > >
> > > 就可以看到蓝色的界面了,还是比较漂亮的,而且还可以根据字段进行分组的浏览,哈哈,不错不错。
> > >
> > >
> 不过字段里的内容如果是html代码的话就会把页面搞乱了,应该是没有对html的标签进行转码的原因,不过这个东西还在开发中,相信很快就会改好的。
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to
> python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> > > Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
> >
> >
> > --
> > 用彩信更新我的Blog,用照片记录我的生活
> > http://qingfeng.ushared.com/blog/
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to
> python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> > Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>
>
> --
> SpitFire
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>


-- 
用彩信更新我的Blog,用照片记录我的生活
http://qingfeng.ushared.com/blog/

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年04月19日 星期四 10:03

Neil(木野狐) chenrong2003在gmail.com
星期四 四月 19 10:03:54 HKT 2007

不知道是什么,是将会用在新的 admin 里面的东西么?现在我改用 0.96 正式版开发了。不关注 svn 版本.
因为前一阵网站上说了有些功能在改进过程中会不兼容。


在 07-4-19,清风<paradise.qingfeng在gmail.com> 写道:
> 昨天晚上关了:),有些隐藏字段还是不方便展示的,sorry
>
> On 4/18/07, SpitFire <spitfire2在gmail.com> wrote:
> > 怎么打不开。。
> >
> >
> > 在07-4-18,清风 <paradise.qingfeng在gmail.com> 写道:
> > > 效果不错:),见这里
> > > http://qingfeng.ushared.com/databrowse/
> > >
> > > On 4/18/07, 马踏飞燕 <honeyday.mj在gmail.com> wrote:
> > > > 今天update了一下django的svn,突然发现多了一个新东西,叫databrowse。
> > > > 看了一下文档,觉得不错,遂加入到现有的项目中试试看。
> > > > 以下是简单的步骤:
> > > >
> > > > 1:把'django.contrib.databrowse' 加入到INSTALLED_APPS 中。
> > > > 2:在urls.py里面写上下面的导入语句
> > > >
> > > > from django.contrib import databrowse
> > > >
> > > > 3:注册要browse的models,参数是models的类而不是实例。
> > > >
> > > > databrowse.site.register(SomeModel)
> > > > databrowse.site.register(SomeOtherModel)
> > > >
> > > > 4:在urlmapping中加入
> > > >
> > > > (r'^databrowse/(.*)', databrowse.site.root),
> > > >
> > > > 这样就配置好了。
> > > >
> > > > 接下来就是启动django的server,在浏览器中输入地址,例如
> > > >
> > > > http://127.0.0.1/databrowse/
> > > >
> > > > 就可以看到蓝色的界面了,还是比较漂亮的,而且还可以根据字段进行分组的浏览,哈哈,不错不错。
> > > >
> > > >
> > 不过字段里的内容如果是html代码的话就会把页面搞乱了,应该是没有对html的标签进行转码的原因,不过这个东西还在开发中,相信很快就会改好的。
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese在lists.python.cn
> > > > Subscribe: send subscribe to
> > python-chinese-request在lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > > > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > > --
> > > 用彩信更新我的Blog,用照片记录我的生活
> > > http://qingfeng.ushared.com/blog/
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to
> > python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> > --
> > SpitFire
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to
> > python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> --
> 用彩信更新我的Blog,用照片记录我的生活
> http://qingfeng.ushared.com/blog/
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号