[SIMILAR] WITH 22627 selected WITH 14500 option WITH 13582 select WITH 9104 false WITH 7748 会管 WITH 6941 user WITH 6397 true WITH 5863 ザ情 WITH 5007 代入 WITH 4903 root WITH 4368 value WITH 3685 controller WITH 3524 rhtml WITH 3310 label WITH 2980 理シ WITH 2960 form WITH 2955 edit WITH 2805 ム( WITH 2103 。us WITH 1741 変数 WITH 1707 片方 WITH 1603 従っ WITH 1127 に従 WITH 856 両方 WITH 842 現在 WITH 782 在の WITH 678 の状 WITH 648 態に WITH 589 、現 WITH 581 適当 WITH 575 状態 WITH 538 選択 の検索結果 72 件中 1 - 10 件目 (2.156257995 秒)
user/editでユーザ情報を表示すると、現在の状態に関らず常にrootでTrueが選択されている。 user/_form.rhtmlで <p><label for="user_root">Root</label><br/> <select id="user_root" name="user[root]"><option value="false">False</option><option value="true" selected>True</option></select></p> となっ ...
プログラム中に日本語を書くことはないけど、CVSで日本語文書を管理することはある。 '='でdiffを取ったら表示が化けたので、ちょびっとパッチした。ささやかな幸せ。 *** pcvs.el.org Sun Sep 23 05:23:16 2001 --- pcvs.el Fri Jun 28 11:20:13 2002 *************** *** 537,542 **** --- 537,543 ---- ;; t ...
_ (スコア:6202)
相変わらず、power save出来ない。 XFree86としては、DVI接続の場合でもOption "DPMS"で行けるはず。 RADEONの場合は、[Xpert]DPMS wih Radeon VE and flat panelの理由で、DPMSが効かない。XFree86.0.logに、(WW) RADEON(0): Option "DPMS" is not usedが出る。 "CRTだったら"という条件を外すと一歩前進して、 ...
_ (スコア:3974)
招待メールを出せるようにしよう。環境設定をconfig/environment.rbに足した。 ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.smtp_settings = { :address => 'server.example.com' } メーラを作る。 % ruby script/generate mailer Mailer invite models/mailer.rbが出来ているので書き換え ...
_ (スコア:3182)
scaffoldを作る。 % ruby script/generate scaffold User User % ruby script/generate scaffold Event Event % ruby script/generate scaffold Membership Membership サーバを起動して % ruby script/server http://0.0.0.0:3000/userにアクセスすると Listing users Nickname Accountnumber Mailaddress Roo ...
_ (スコア:3046)
管理者として認証にパスしたら、という条件は後で考えるとして、飲み会管理画面からユーザを誘えるようにしよう。 とりあえず、editのときだけ誘えればいいや。 models/event.rbで、membershipと招待フラグ、参加フラグをhashで返せるようにしておく。 class Event < ActiveRecord::Base def memberships mhash ...
_ (スコア:2827)
mm/edit.rhtmlに戻ろう。 models/user.rbで、membershipと参加フラグを返せるようにしておく。 class User < ActiveRecord::Base def memberships mhash = Hash::new m = Membership.find(:all, :conditions => ["user_id = ?", self.id]) m.each do |membership| mhash[membership.event_id] = membership end ...
_ (スコア:2788)
Invalid Textリレーションシップを指定する。 class User < ActiveRecord::Base has_many :memberships, :dependent => :destroy has_many :events, :through => :memberships class Event < ActiveRecord::Base has_many :memberships, :dependent => :destroy has_many :users, :through => :memberships cla ...
_ (スコア:2669)
飲み会管理システム = MeetingManager = mm を作ってみよう。 % rails mm 作られたconfig/database.ymlのままで問題はないので、データベース作成 % mysql -u root mysql> create database mm_development; mysql> create database mm_test; mysql> create database mm_production; mysql> quit モデルを作成 % ...
_ (スコア:2635)
昨日、net/imapd.rbのSSLの部分をそのまま真似して書いたら動かず、不思議に思ったのだが、やっぱり証明書のところが変。 /usr/local/lib/ruby/1.8/net/imap.rb:892:in `initialize': \ undefined method `ca_path=' for #<OpenSSL::SSL::SSLSocket:0x829ec18> (NoMethodError) CVSの最新でも同じ。以下を当てる ...
_ (スコア:2495)
_ (スコア:10000)