`
文章列表
#安装ubuntu8.04桌面版(服务器装服务器版) #之后修改源配置 sudo vi /etc/apt/sources.list #注意,以下是8.04版本的 #按cG键,删除所有内容,按ctrl+shift+v粘贴以下内容 deb http://mirrors.163.com/ubuntu/ hardy main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ hardy-security main restricted universe multiverse deb http://mirrors.163 ...
转自:http://yangzb.iteye.com/blog/598150 localization 插件介绍 在 Rails 2.2 版本之前,Rails 应用程序都是采用localization插件实现应用程序的本地化,支持多语言。localization有点类似于gettext,使用很简单的方法就可以为你的应用实现多语言支持,进而实现应用的本地化。Rails 2.2 之后,Rails 引进了 I18n 模块,因此不需额外安装插件就支持多语言。 安装 这个插件的安装方式与其他的Rails插件安装没啥太大区别,只需要在Rails项目目录中按照如下命令安装即可: RAILS_ROOT&g ...
搭建环境: Installation on Ubuntu 10.04 : Installation Steps: 1.Setting up the Rails development environment Ruby, rubygems, rails and other required packages can be installed by : "sudo apt-get install rails" 2.Setting up MySQL server Fedena uses mysql, so run, "sudo apt-get ...
有关text_field即时保存: 在使用的实体里登录的用户必须要有资源权限,否则要不校验。 controller in_place_edit_for :user, :mobile 会生成一个action,set_user_mobile,在提示没有权限时,在skip_before_filter里加上此action,还有一点要注意:会对页面的必填字段进行校验,一般放在单独的页面保存。 view in_place_text_field :user, :mobile, :object => @dis_sugg, :saving_text =>"保存中. ...
examinations里面,具体功能: 1、分级水平(Grading levels) 管理courses课程 管理batch批次 2、考试管理(Exam Management) 选择课程新建考试或者关联已有的考试(选择是否发布考试时间表) 3、额外的考试(Additional Exams) 关联课程新建考试 新增考试,打分后可以发送SMS(可以重新发送) 4、考试智者报告(Exam wise report) 查询某个批次下的分组考试报告 还可以查看综合报告(Consolidated report)、导出pdf 5、聪明的报告主题(Subject wise ...
1、搭建环境    安装ruby、rubygems、rails    sudo apt-get install rails 2、安装mysql    sudo apt-get install mysql-server mysql-client libmysql-ruby 3、安装gem 2.3.2    sudo gem install rails -v=2.3.2 4、配置database.yml    database: sms - The name of the database you want to use for fedena    username: root - Mysql ...

array

原文摘自:http://blog.csdn.net/adidaskebi/archive/2010/05/15/5595071.aspx Array & 取两数组相同 * 数组相乘 + 数组相加 - [1,2,3]-[1,2,4] = [3] << 追加 <=> 比较每个元素 小于-1等于0大于1(每个 ...
Processing ChecksController#update (for 192.168.1.35 at 2011-02-25 14:57:19) [PUT] Parameters: {"commit"=>"保存", "authenticity_token"=>"7nU6iaLRykyH7/5WNYVICZMKARKzJBp1FbtKDLddZxY=", "id"=>"save_list", "referer"=>&q ...

flash缩略图

flash鼠标经过缩略图
什么是 Cookie? cookie 常用于识别用户。cookie 是服务器留在用户计算机中的小文件。每当相同的计算机通过浏览器请求页面时,它同时会发送 cookie。通过 PHP,您能够创建并取回 cookie 的值。 如何创建 cookie? setcookie() 函数用于设置 cookie。 注释:setcookie() 函数必须位于 <html> 标签之前。 语法:setcookie(name, value, expire, path, domain); 例子: <?php setcookie("user", "Al ...
在firefox中安装selenium IDE 1、下载selenium IDE插件 2、在firefox的tools下点击selenium IDE 3、选择Options下的options,点击Formats,点击add按钮,添加rsel 4、将rsel的source粘贴为 /* * Selenium on Rails RSelenese format for Selenium IDE * * Written by Shinya Kasatani (kasatani at gmail.com) */ load('formatCommandOnlyAdapt ...
serialize 1、$(":checkbox,:radio").serialize(); 把复选框和单选框的值序列化为字符串形式,只会将选中的值序列化。 2、在JQuery中还有一个与serialize()类似的方法--serializeArray(),该方法不是返回字符串,而是将DOM元素序列化后,返回JSON格式的数据。JQuery代码如下: var fields = $(":checkbox,:radio").serializeArray(); console.log(fields); //用FireBug输出 3、$. ...
=label_tag :querycode, '行政区划' =select_tag :querycode, options_for_select([['','']] + select_dis_options, params[:querycode]), {:style => 'width:> =label_tag "communication[department_id]", '所属部门' %span#depart_container =select_tag "communication[department_id]", ...

jquery

比较齐全的jquery资源
.filter <input id="filterName" /> $(function(){ $("#filterName").keyup(function(){ $("table tbody tr") .hide() .filter(":contains('"+( $(this).val() )+"') ") ...
Global site tag (gtag.js) - Google Analytics