人的头脑太复杂,时间过得久,有时候连自己也被自己骗了,记下来才是最真实的..
2007年1月5日 09:43
Tags:
网页设计,几个月来,发现自己的很多问题,总结一些,以后不再犯此类错误。同时给各位网友共享,或许对你们有些帮助。
2006年12月20日 10:17
Tags: ,
Mozilla建议的CSS书写顺序

有点重要,影响速度。

* mozilla.org Base Styles
* maintained by fantasai
* (classes defined in the Markup Guide -http://mozilla.org/contribute/writing/markup)
*/
/* Suggested order:
//显示属性
* display
* list-style
* position
* float
* clear
//自身属性
* width
* height
* margin
* padding
* border
* background
//文本属性
* color
* font
* text-decoration
* text-align
* vertical-align
* white-space
* other text
* content
*
*/
2006年12月15日 09:49
General Information

Subversion (SVN) is an alternative to using Concurrent Version System (CVS) for collaborative development, though it has other uses if you develop on more than one machine and wish to keep all your work in a central location.  This guide will show you how to setup Subversion with Webaccess via the Apache2 mod_dav svn module.  If you already use apache 1.3 you can continue to use that, just change the port that apache2 listens on in its httpd.conf file.
Subversion Book is an excellent resource for information outside the scope of this guide.

Requirements

Local root access on the box or be able to su to root.
A SSH client such as puTTy or SecureCRT (if you are setting it up remotely).
A plain text editor, I prefer nano
Installation

We have to start out by building apache2.  Because we are building it with the intention of using Subversion with it, we must build it with Berkeley DB (sleepycat) support, as the Subversion filesystem is actually built as a sleepycat database.  It is this that allows for the versioning of files.
2006年12月15日 09:42
Tags: , ,
操作系统:FreeBSD 5.3
这是第一次在非Windows系统安装软件,对于系统中很多基本的东西都不熟悉,基本上都是看着配置文档来的,很多东西都是需要用的时候才找的,因此也花了不少时间。比较欣慰的时这些软件的文档的都很详细,使一个初次接触者也能够按照文档的说明一步一步完成安装。
目录:
1)  SVN简介
2)准备工作
3)安装使用tar打包的应用软件
4)开始安装
5)创建文件库
6)Apache配置
7)把CVS档案库转换为SVN档案库

1.   SVN简介
     
现在开发的源码,版本等管理一般都是CVS 。Subversion(SVN, http://subversion.tigris.o...项目开始于2000年2月,作者之一是著名的 Open Source Development with CVS 作者Karl Fogel,也是CVS的开发者。
Subversion开始由CollabNet(http://www.collab.net) 所有,但是它确实是一个开源的软件,遵从bsd样式的许可证。CollabNet只是给几个全职开发者发工资,并享有代码的版权,但是这个版权是 Apache/BSD-style的许可证,也就是说,你可以自由下载,修改,发布Subversion,而不需要CollabNet或其他人的许可。
Subversion意为更好的CVS,所以它除了包括了大多数CVS的特点,还有一些新鲜的东西:
Repositories 可以用内建的BerkeleyDB 或者普通文件实现。
目录在Subversion中和文件一样是versionable的对象,还有文件重命名等。Subversion还允许用户追踪文件和目录的任意属性信息,包括元信息(META-DATA)。甚至包括符号连接。在Subversion中,容易移动,复制和重命名。
高效的网络利用率。Subversion 可以用apache的基于HTTP的 WebDAV/DeltaV协议进行通讯。Apache服务器提供repository的服务。
二进制文件处理的增强。
本地化消息Localized messages
Subversion根据本地设置(locale settings) 用gettext()显示翻译过的错误,信息,帮助等。
Branching and tagging are cheap (constant time) operations
Subversion支持目前所有的流行的操作系统,比如Unix, Win32, BeOS, OS/2, MacOS X等。

2006年12月15日 09:39
Tags: , ,
首先我们需要安装 Apache 和 Subversion 软件:


[root@trinity]# cd /usr/ports/www/apache22
[root@trinity]# make WITH_AUTH_MODULES=yes WITH_DAV_MODULES=yes \
                    WITH_SSL_MODULES=yes WITH_BERKELEYDB=db42 install clean
[root@trinity]# cd /usr/ports/devel/subversion
[root@trinity]# make -DWITH_SVNSERVE_WRAPPER -DWITH_MOD_DAV_SVN \
                    -DWITH_APACHE2_APR install clean



安装完成后,我们来初始化仓库目录:
分页: 10/34 第一页 上页 5 6 7 8 9 10 11 12 13 14 下页 最后页 [ 显示模式: 摘要 | 列表 ]