`
文章列表
Redmine的windows服务安装方法 Ruby提供一个安装Ruby程序为服务的包:mongrel_service。安装其实很简单,只要命令行下运行gem: gem install mongrel_service 过程中安装一些必须的其他包。 然后将RedMine使用mongrel_service安装成Windows服务: mongrel_rails service::install -N RedMine -c D:\WebRoot -p 80 -e production 这里,我指定服务名为RedMine,我的RedMine在D:\WebRoot,你的要修改,注意指向truck ...
IE, FireFox, Chrome浏览器,CSS实现半透明的方法:   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Typ ...
非常诡异的字: 弢   弢 【拼音】:[tāo] 【字义】:1.同“韬”。   在UTF-8编码下正常。   在编辑器中将文件编码修改为GBK或GB2312或GB18030,然后查找"|",这个字的后面就出现了一个"|"字符。。
OSGi4.2规范的Bundle Manifest Headers列表,红色表示必须要配置的项,其余都为可选项。 1、Bundle-ActivationPolicy: lazy      设置bundle的加载策略,本参数只有一个值:lazy,设置本参数后就延迟加载;不设置本参数,bundle启动时就激活 ...
环境:ubuntu9.10。 设置方法: 1、系统-》首选项-》主菜单-》新建项目 2、在弹出的对话框中输入想要自定义的应用程序的名称和路径等参数。 3、在弹出的对话框中点击左侧达“弹簧”图标,打开更换图标达对话框,选择你自己的图标所在的路径,在点击“打开”,系统显示你选择的路径下面的所有图标,支持svg,png,xpm等格式。
1、下载Apache2.2.14并安装,略。设安装目录为:D:\Program Files\Apache Software Foundation\Apache2.2 2、下载Subversion1.6.6并安装,略。设安装目录为:D:\install\svn-win32-1.6.6 3、假设已安装完成上述软件,整合配置步骤如下: 复制D:\install\svn-wi ...
设定Subversion 安装在D:\install\svn-win32-1.6.6; 版本库在D:\svnrepos,使用windows自带的服务安装命令:    sc create svn binpath= "\"D:\install\svn-win32-1.6.6\bin\svnserve.exe\" --service -r \"D:\svnrepos\"" displayname= "Subversion Server" depend= Tcpip start= auto   删除服务:sc de ...
VisualVM是集成了多个JDK命令工具的一个可视化工具,它主要用来监控JVM的运行情况,可以用它来查看和浏览Heap Dump、Thread Dump、内存对象实例情况、GC执行情况、CPU消耗以及类的装载情况。 在JDK Update7之后,VisualVM作为JDK的一部分发布,但同时VisualVM也发布独立的版本。VisualVM必须运行在JDK1.6以上的VM环境下,但可以用它来监控JDK1.4以上的JVM。   下载地址:https://visualvm.dev.java.net/files/documents/7163/144406/visualvm_12.zip ...
javascript获取css样式文件中定义的样式的方法   //Firefox浏览器支持 if (document.defaultView && document.defaultView.getComputedStyle) { var css = document.defaultView.getComputedStyle(element, null); value = css ? css[style] : null; } else if (element.currentStyle) { //IE支持. ...
maven中,从依赖库中导出项目依赖包插件配置参数 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>p ...
div居中对齐的样式设置方法: 1、text-align: center      div内的元素在div中居中对齐。 2、margin: 0 auto          div在其所在的容器中居中对齐。
http://www.ruochi.com/main/flash-params-and-w3c/   Vcastr 3.0 – flash video(flv) player (开源 Open Source) Posted on March 19th, 2008 in gadgets | No Comments » This movie requires Flash Player 9 <script type="text/javascript"> swfobject.embedSWF(&qu ...
<plugin> <artifactId>maven-war-plugin</artifactId> <version>2.0.2</version> <configuration> <warSourceExcludes>uploadFiles/**</warSourceExcludes> </configuration> </plugin> 将排除掉项目根目录下的 ...
http://www.opensymphony.com/quartz/wikidocs/CronTriggers Tutorial.html Quartz - Quartz 1 - CronTriggers Tutorial Some of the content in this tutorial is taken from the Quartz 1.4.2 javadocs for CronTrigger . Introduction cron is a UNIX tool that has been around for ...
问题: FLash遮住浮动的div。   解决: ie:在<object>标签中增加: <param name="wmode" value="transparent"> Firefox:在<object>-><embed>标签中增加 wmode="transparent",即<embed wmode="transparent" ...></embed>    
Global site tag (gtag.js) - Google Analytics