2006年08月07日 星期一 10:04
这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就每天都要开着一个命令行窗口,想放在win 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载svnservice执行svnservice -install -d -r d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService failed - Commandline set: "-d" "-r" "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过修改注册表或者其他方式注册为windows服务的? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060807/585b2f54/attachment.htm
2006年08月07日 星期一 10:16
推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文档一步步地做下去就好。 2006/8/7, icebird <icebirds at gmail.com>: > > 这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就每天都要开着一个命令行窗口,想放在win > 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载svnservice执行svnservice -install -d -r > d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService failed - Commandline set: > "-d" "-r" "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过修改注册表或者其他方式注册为windows服务的? > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060807/6fbd2431/attachment.htm
2006年08月07日 星期一 10:52
On 8/7/06, 刘鑫 <march.liu at gmail.com> wrote: > 推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文档一步步地做下去就好。 > 现在的问题是M$ 重启时,无法自动启动哪! Apache 也没有办法作到此点, 思路有三: 1. 尝试将SVN和IIS结合 2. 尝试使用工具将 svnsrver 包装为标准M$服务 3. 尝试写检测脚本,使用Win 计划任务定期执行,自动启动! > 2006/8/7, icebird <icebirds at gmail.com>: > > > > 这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就每天都要开着一个命令行窗口,想放在win > 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载svnservice执行svnservice > -install -d -r > d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService failed - > Commandline set: "-d" "-r" > "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过修改注册表或者其他方式注册为windows服务的? > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > > > -- > 欢迎访问: > http://blog.csdn.net/ccat > > 刘鑫 > March.Liu > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > -- """Time is unimportant, only life important! blogging : http://blog.zoomquiet.org/pyblosxom/ wiki enter: http://wiki.woodpecker.org.cn/moin/ZoomQuiet in douban: http://www.douban.com/people/zoomq/ """
2006年08月07日 星期一 10:55
On 8/7/06, Zoom. Quiet <zoom.quiet at gmail.com> wrote: > On 8/7/06, 刘鑫 <march.liu at gmail.com> wrote: > > 推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文档一步步地做下去就好。 > > > 现在的问题是M$ 重启时,无法自动启动哪! > > Apache 也没有办法作到此点, > > 思路有三: > 1. 尝试将SVN和IIS结合 > 2. 尝试使用工具将 svnsrver 包装为标准M$服务 > 3. 尝试写检测脚本,使用Win 计划任务定期执行,自动启动! > > Apache做成服务当然可以随着windows的启动启动啊。 -- I like python! My Blog: http://www.donews.net/limodou My Django Site: http://www.djangocn.org NewEdit Maillist: http://groups.google.com/group/NewEdit
2006年08月07日 星期一 11:00
就像limodou说的那样,Apache可以作为Windows 服务运行的。我现在就是这样用的,很方便。 2006/8/7, Zoom. Quiet <zoom.quiet at gmail.com>: > > On 8/7/06, 刘鑫 <march.liu at gmail.com> wrote: > > > 推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文档一步步地做下去就好。 > > > 现在的问题是M$ 重启时,无法自动启动哪! > > Apache 也没有办法作到此点, > > 思路有三: > 1. 尝试将SVN和IIS结合 > 2. 尝试使用工具将 svnsrver 包装为标准M$服务 > 3. 尝试写检测脚本,使用Win 计划任务定期执行,自动启动! > > > > 2006/8/7, icebird <icebirds at gmail.com>: > > > > > > > 这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就每天都要开着一个命令行窗口,想放在win > > 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载svnservice执行svnservice > > -install -d -r > > d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService failed - > > Commandline set: "-d" "-r" > > "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过修改注册表或者其他方式注册为windows服务的? > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to > > python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > -- > > 欢迎访问: > > http://blog.csdn.net/ccat > > > > 刘鑫 > > March.Liu > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to > > python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > """Time is unimportant, only life important! > blogging : http://blog.zoomquiet.org/pyblosxom/ > wiki enter: http://wiki.woodpecker.org.cn/moin/ZoomQuiet > in douban: http://www.douban.com/people/zoomq/ > """ > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060807/9df5dacd/attachment-0001.htm
2006年08月07日 星期一 11:33
是svn + webDAV ----- Original Message ----- From: 刘鑫 To: python-chinese at lists.python.cn Sent: Monday, August 07, 2006 10:16 AM Subject: Re: [python-chinese] 求助!谁懂SVN服务器配置? 推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文档一步步地做下去就好。 2006/8/7, icebird <icebirds at gmail.com>: 这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就每天都要开着一个命令行窗口,想放在win 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载svnservice执行svnservice -install -d -r d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService failed - Commandline set: "-d" "-r" "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过修改注册表或者其他方式注册为windows服务的? _______________________________________________ python-chinese Post: send python-chinese at lists.python.cn Subscribe: send subscribe to python-chinese-request at lists.python.cn Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn Detail Info: http://python.cn/mailman/listinfo/python-chinese -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu ------------------------------------------------------------------------------ _______________________________________________ python-chinese Post: send python-chinese at lists.python.cn Subscribe: send subscribe to python-chinese-request at lists.python.cn Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn Detail Info: http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060807/250fadaa/attachment.html
2006年08月07日 星期一 13:19
在命令行前echo 一句 "SVN服务运行中,请勿关闭窗口...." "笨蛋系统管理员"懂中文吧,呵呵 在 06-8-7,netkiller<openunix at 163.com> 写道: > > > 是svn + webDAV > > ----- Original Message ----- > From: 刘鑫 > To: python-chinese at lists.python.cn > Sent: Monday, August 07, 2006 10:16 AM > Subject: Re: [python-chinese] 求助!谁懂SVN服务器配置? > > 推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文档一步步地做下去就好。 > > > > 2006/8/7, icebird <icebirds at gmail.com>: > > > > 这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就每天都要开着一个命令行窗口,想放在win > 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载svnservice执行svnservice > -install -d -r > d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService failed - > Commandline set: "-d" "-r" > "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过修改注册表或者其他方式注册为windows服务的? > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > > > > -- > 欢迎访问: > http://blog.csdn.net/ccat > > 刘鑫 > March.Liu > > > ________________________________ > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > >
2006年08月07日 星期一 14:07
= =! 虎老大出现了。 On 8/7/06, samhoo <samhoo at gmail.com> wrote: > 在命令行前echo 一句 "SVN服务运行中,请勿关闭窗口...." > "笨蛋系统管理员"懂中文吧,呵呵 > > 在 06-8-7,netkiller<openunix at 163.com> 写道: > > > > > > 是svn + webDAV > > > > ----- Original Message ----- > > From: 刘鑫 > > To: python-chinese at lists.python.cn > > Sent: Monday, August 07, 2006 10:16 AM > > Subject: Re: [python-chinese] 求助!谁懂SVN服务器配置? > > > > 推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文档一步步地做下去就好。 > > > > > > > > 2006/8/7, icebird <icebirds at gmail.com>: > > > > > > > 这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就每天都要开着一个命令行窗口,想放在win > > 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载svnservice执行svnservice > > -install -d -r > > d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService failed - > > Commandline set: "-d" "-r" > > "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过修改注册表或者其他方式注册为windows服务的? > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to > > python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > -- > > 欢迎访问: > > http://blog.csdn.net/ccat > > > > 刘鑫 > > March.Liu > > > > > > ________________________________ > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to > > python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: > > http://python.cn/mailman/listinfo/python-chinese > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to > > python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: > > http://python.cn/mailman/listinfo/python-chinese > > > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- Dreamingk (tc, 天成) email: dreamingk at gmail.com tc at exoweb.net website: http://www.exoweb.net http://python.cn http://django.cn http://zope.cn Exoweb (北京轩辕互动科技有限公司) 北京市朝阳区金台路甜水园东街2号 甜水园商务中心A505 100026 Python, I love this language.
2006年08月08日 星期二 12:34
你把locale目录的zh_CN改名或删除,svn找不到中文的字符串文件,就显示英文的了。 2006/8/9, kuoxin at tjub.com.cn <kuoxin at tjub.com.cn>: > > > 不知道为什么我的svn在cmd中,提示都是数字(utf8编码),不能看,如何解决这 > 个问题? > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060808/a8ddbd2f/attachment.htm
2006年08月08日 星期二 17:55
前阵子也玩过svn,说说我的经验 1.svnservice就是把svn设置成服务的软件,具体用法,文档上写的很详细 2.apache+svn 的设置也挺好的,把apache设为自动运行的服务也可以,具体配置可以看看TortoiseSVN 3。svn的乱码,我也是把zh_CN删了 On 8/8/06, ar. cr..... <arcr.gg at gmail.com> wrote: > 你把locale目录的zh_CN改名或删除,svn找不到中文的字符串文件,就显示英文的了。 > > > > 2006/8/9, kuoxin at tjub.com.cn <kuoxin at tjub.com.cn >: > > > > 不知道为什么我的svn在cmd中,提示都是数字(utf8编码),不能看,如何解决这 > > 个问题? > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > >
2006年08月09日 星期三 03:25
Dreamingk(天成) wrote: > = =! 虎老大出现了。 > > On 8/7/06, samhoo <samhoo at gmail.com> wrote: >> 在命令行前echo 一句 "SVN服务运行中,请勿关闭窗口...." >> "笨蛋系统管理员"懂中文吧,呵呵 >> >> 在 06-8-7,netkiller<openunix at 163.com> 写道: >> > >> > >> > 是svn + webDAV >> > >> > ----- Original Message ----- >> > From: 刘鑫 >> > To: python-chinese at lists.python.cn >> > Sent: Monday, August 07, 2006 10:16 AM >> > Subject: Re: [python-chinese] 求助!谁懂SVN服务器配置? >> > >> > 推荐你将SVN嵌入apache使用,这样就可以舒舒服服的享受后台服务的安静和 >> 可靠,以及Apache带来的完备权限管理。至于SVN+Apache的管理,按照SVN的文 >> 档一步步地做下去就好。 >> > >> > >> > >> > 2006/8/7, icebird <icebirds at gmail.com>: >> > > >> > >> > 这些天SVN服务器架好之后就一直把这个SVN服务器在命令行上启动,这样就 >> 每天都要开着一个命令行窗口,想放在win >> > 2003服务器上,但那些笨蛋系统管理员成天把它关掉,看了一片文章说下载 >> svnservice执行svnservice >> > -install -d -r >> > d:\svnhost想把它配置成windows服务,结果我这里一直提示CreateService >> failed - >> > Commandline set: "-d" "-r" >> > "d:\svnhost",根本就添加不上,痛苦死了,请问有没有办法把svn服务通过 >> 修改注册表或者其他方式注册为windows服务的? >> > _______________________________________________ >> > python-chinese >> > Post: send python-chinese at lists.python.cn >> > Subscribe: send subscribe to >> > python-chinese-request at lists.python.cn >> > Unsubscribe: send unsubscribe to >> > python-chinese-request at lists.python.cn >> > Detail Info: >> > http://python.cn/mailman/listinfo/python-chinese >> > >> > >> > >> > >> > >> > -- >> > 欢迎访问: >> > http://blog.csdn.net/ccat >> > >> > 刘鑫 >> > March.Liu >> > >> > >> > ________________________________ >> > >> > >> > _______________________________________________ >> > python-chinese >> > Post: send python-chinese at lists.python.cn >> > Subscribe: send subscribe to >> > python-chinese-request at lists.python.cn >> > Unsubscribe: send unsubscribe to >> > python-chinese-request at lists.python.cn >> > Detail Info: >> > http://python.cn/mailman/listinfo/python-chinese >> > >> > >> > _______________________________________________ >> > python-chinese >> > Post: send python-chinese at lists.python.cn >> > Subscribe: send subscribe to >> > python-chinese-request at lists.python.cn >> > Unsubscribe: send unsubscribe to >> > python-chinese-request at lists.python.cn >> > Detail Info: >> > http://python.cn/mailman/listinfo/python-chinese >> > >> > >> >> _______________________________________________ >> python-chinese >> Post: send python-chinese at lists.python.cn >> Subscribe: send subscribe to python-chinese-request at lists.python.cn >> Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn >> Detail Info: http://python.cn/mailman/listinfo/python-chinese >> >> > > > ------------------------------------------------------------------------ > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese 不知道为什么我的svn在cmd中,提示都是数字(utf8编码),不能看,如何解决这 个问题?
2006年08月11日 星期五 12:00
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 弱智问题,安装手册上有,如果用installer也没有这个问题,只有自己解压zip文 件时,因为没有设置环境变量,所以出现乱码。只要自己增加环境变量就可以了, 例如: APR_ICONV_PATH=C:\usr\svn-1.3\iconv kuoxin at tjub.com.cn 写道: > 在此感谢arcr.gg & anti403 ! > > > anti403 wrote: >> 前阵子也玩过svn,说说我的经验 >> 1.svnservice就是把svn设置成服务的软件,具体用法,文档上写的很详细 >> 2.apache+svn 的设置也挺好的,把apache设为自动运行的服务也可以,具体配 >> 置可以看看TortoiseSVN >> 3。svn的乱码,我也是把zh_CN删了 >> >> >> On 8/8/06, ar. cr..... <arcr.gg at gmail.com> wrote: >>> 你把locale目录的zh_CN改名或删除,svn找不到中文的字符串文件,就显示英 >>> 文的了。 >>> >>> >>> >>> 2006/8/9, kuoxin at tjub.com.cn <kuoxin at tjub.com.cn >: >>> > >>> > 不知道为什么我的svn在cmd中,提示都是数字(utf8编码),不能看,如何 >>> 解决这 >>> > 个问题? >>> > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (MingW32) iD8DBQFE3ADm90pbDJCgbHoRAtKvAJ4nXdSS5RLZVit2FOkZ7AEu4v8O1ACfUgkC ga2RCsHQxePBSE7LXOMnmFo= =BBEL -----END PGP SIGNATURE-----
2006年08月12日 星期六 00:03
在此感谢arcr.gg & anti403 ! anti403 wrote: > 前阵子也玩过svn,说说我的经验 > 1.svnservice就是把svn设置成服务的软件,具体用法,文档上写的很详细 > 2.apache+svn 的设置也挺好的,把apache设为自动运行的服务也可以,具体配 > 置可以看看TortoiseSVN > 3。svn的乱码,我也是把zh_CN删了 > > > On 8/8/06, ar. cr..... <arcr.gg at gmail.com> wrote: >> 你把locale目录的zh_CN改名或删除,svn找不到中文的字符串文件,就显示英 >> 文的了。 >> >> >> >> 2006/8/9, kuoxin at tjub.com.cn <kuoxin at tjub.com.cn >: >> > >> > 不知道为什么我的svn在cmd中,提示都是数字(utf8编码),不能看,如何 >> 解决这 >> > 个问题? >> > >> > _______________________________________________ >> > python-chinese >> > Post: send python-chinese at lists.python.cn >> > Subscribe: send subscribe to >> python-chinese-request at lists.python.cn >> > Unsubscribe: send unsubscribe to >> python-chinese-request at lists.python.cn >> > Detail Info: >> http://python.cn/mailman/listinfo/python-chinese >> > >> >> >> _______________________________________________ >> python-chinese >> Post: send python-chinese at lists.python.cn >> Subscribe: send subscribe to >> python-chinese-request at lists.python.cn >> Unsubscribe: send unsubscribe to >> python-chinese-request at lists.python.cn >> Detail Info: >> http://python.cn/mailman/listinfo/python-chinese >> >> > ------------------------------------------------------------------------ > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese
Zeuux © 2025
京ICP备05028076号