25
07年4月
贝贝终于又要长牙了。自5个多月贝贝开始长下面的2颗门牙后,其他牙齿就一直没有动静了。前几天觉得贝贝的食欲有所下降,而且刚喂进去的食物她就会把吐出来。接着发现她磨牙,发出咯吱咯吱的声音。我琢磨着贝贝要长牙了。于是,担心她牙床是不是会胀得难受,会不会吵夜。结果这几夜睡的都挺好。今天我给她刷牙时,摸到了破土而出的牙齿了,只有那么一点点,一颗露出来多一点,另一颗少一点。白的近乎透明,像百玉那般。
等这两颗牙都长好了,贝贝吃东西就更加利索了,很多水果应该可以直接吃了,软点的米饭也可以吃了,不知道我的RT会不会遭殃,555
贝贝妈 发表在 日记图片 |
25
07年4月
svn服务出了问题,可以checkout,已经存在的文件,可以修改,提交,但是新加的文件add后不能commit。
报错说什么”Propfind xxx 302 found”
Adding: D:\workspace\test\New Text Document.txt
Error: Commit failed (details follow):
Error: PROPFIND request failed on '/svn/test/New%20Text%20Document.txt'
Error: PROPFIND of '/svn/test/New%20Text%20Document.txt': 302 Found (http://svn.test.com)
google了一下,说是启用了ErrorDocument 404 handler 就会遇到这个问题,需要禁用Subversion目录特殊的404 error handling,
解决方法是添加
ErrorDocument 404 default
到svn的Location立面
改了之后,httpd.conf里面的svn配置大概如下:
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
<Location /svn> #设置访问路径
# Uncomment this to enable the repository,
DAV svn
# Set this to the path to your repository
SVNParentPath /data/svn_repository/
# The following allows for basic http authentication. Basic authentication
# should not be considered secure for any particularly rigorous definition of
# secure.
# to create a passwd file #按下面的步骤创建Apache用户验证文件
# # rm -f /etc/apache2/dav_svn.passwd
# # htpasswd2 -c /etc/apache2/dav_svn.passwd dwhedon
# New password:
# Re-type new password:
# Adding password for user dwhedon
#
# Uncomment the following 3 lines to enable Basic Authentication
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile conf/extra/svnpasswd.file
# Uncomment the following line to enable Authz Authentication
AuthzSVNAccessFile conf/extra/dav_svn.authz
# The following three lines allow anonymous read, but make
# committers authenticate themselves.
#<LimitExcept GET PROPFIND OPTIONS REPORT>
#允许匿名访问,不允许Commit,不能与AuthzSVNAccessFile同时使用
Require valid-user
#</LimitExcept>
ErrorDocument 404 default
</Location>
贝贝爸 发表在 原创技术文章 |