[#14614] 大小文字を無視した比較で ' 帰 ' == ' 蟻 ' ? — "K.Umakoshi" <pegacorn@...>
こんにちは。
まつもと ゆきひろです
From: matz@ruby-lang.org (Yukihiro Matsumoto)
なかだです。
まつもと ゆきひろです
[#14636] Re: [REQ] String#slice(re, n) — Minero Aoki <aamine@...>
あおきです。ruby-dev に移します。
[#14658] Socekt::SOL_TCP -> Socket::IPPROTO_TCP — m_seki@...
[#14662] How to abondon saved uid privilege — nobu.nakada@...
なかだです。
永井@知能.九工大です.
なかだです。
永井@知能.九工大です.
まつもと ゆきひろです
永井@知能.九工大です.
In message <20010905184635H.nagai@ai.kyutech.ac.jp>
ちょっと脱線します。 :)
In message <86ofopevkv.wl@archon.local.idaemons.org>
まつもと ゆきひろです
In message <999700675.662743.18683.nullmailer@ev.netlab.jp>
永井@知能.九工大です.
In message <20010906111828R.nagai@ai.kyutech.ac.jp>
永井@知能.九工大です.
In message <20010906132656Z.nagai@ai.kyutech.ac.jp>
永井@知能.九工大です.
In message <20010906174440D.nagai@ai.kyutech.ac.jp>
永井@知能.九工大です.
永井@知能.九工大です.
永井@知能.九工大です.
永井@知能.九工大です.
まつもと ゆきひろです
永井@知能.九工大です.
In article <20011102175733K.nagai@ai.kyutech.ac.jp>,
永井@知能.九工大です.
In article <20011103223903G.nagai@ai.kyutech.ac.jp>,
永井@知能.九工大です.
In article <20011109140713D.nagai@ai.kyutech.ac.jp>,
永井@知能.九工大です.
In article <20011109152213R.nagai@ai.kyutech.ac.jp>,
永井@知能.九工大です.
In article <20011109170952Z.nagai@ai.kyutech.ac.jp>,
[#14668] = in conditional — "Akinori MUSHA" <knu@...>
条件式で代入をすると
[#14716] CGI#header bug — Shugo Maeda <shugo@...>
前田です。
わたなべです。
[#14730] ruby-lex.rb: get value from TkSTRING and TkCOMMENT — TAKAHASHI Masayoshi <maki@...>
高橋征義です。
けいじゅ@日本ラショナルソフトウェアです.
高橋征義です。
けいじゅ@日本ラショナルソフトウェアです.
[#14743] [BUG] $_ on thread switching — nobu.nakada@...
なかだです。
なかだです。
まつもと ゆきひろです
なかだです。
まつもと ゆきひろです
なかだです。
まつもと ゆきひろです
なかだです。
なかだです。
なかだです。
なかだです。
まつもと ゆきひろです
なかだです。
まつもと ゆきひろです
[#14749] forwardable.rb : call Kernel.raise — Kenichi Komiya <kom@...1.accsnet.ne.jp>
けいじゅ@日本ラショナルソフトウェアです.
[#14754] regex.c について — Osamu Shigematsu <shige@...>
重松と申します。
[#14809] WAIT_SELECT value with multithread — nobu.nakada@...
なかだです。
まつもと ゆきひろです
なかだです。
[#14816] Generator — "Akinori MUSHA" <knu@...>
Python 2.2 では iterator と generator というのが導入されていて、
[#14823] ruby-1.6.5 MacOS X 10.1 patch — SHIROYAMA Takayuki - <psi@...>
SHIROYAMA Takayukiさんの<00f901c14652$c08a3470$600aa8c0@turtle>から
[ruby-dev:14742] Forward: [ruby-talk:20964] Re: Is Ruby/Tk being maintained?
まつもと ゆきひろです
これもフォワード。
------- Start of forwarded message -------
Date: Fri, 7 Sep 2001 09:44:00 +0900
Posted: Thu, 6 Sep 2001 19:44:30 -0500
From: Albert Wagner <alwagner@tcac.net>
Subject: [ruby-talk:20964] Re: Is Ruby/Tk being maintained?
To: ruby-talk@ruby-lang.org (ruby-talk ML)
In-Reply-To: <999756887.047188.23474.nullmailer@ev.netlab.jp>
OK. Here's the rest of the info: I'm running SuSe7.1 with the standard rpm
Tcl/Tk 8.3.2-5 installed; ruby1.6.4 compiled from tarball on gcc 2.95.2-149.
Attached is a sample.rb script that duplicates the problem with -rdebug.
BTW, trying to run the tkDemo widget with -rdebug simply prints "Killed"
after starting with the c debug command.
module SampleModule
require 'tk'
#==========================================================
class Sample
def initialize(parent)
# Define master frame to hold table and scrollbars
@bigGrid = TkFrame.new(parent)
@bigGrid.pack(
'expand' => 'yes',
'fill' => 'both',
'padx' => 1,
'pady' => 1
)
TkGrid.rowconfigure(@bigGrid, 0,
'weight' => 1,
'minsize' => 0
)
TkGrid.columnconfigure(@bigGrid, 0,
'weight' => 1,
'minsize' => 0
)
@courierItalicBold12 = '-*-Courier-Bold-O-Normal--*-120-*-*-*-*-*-*'
@courier12 = '-*-Courier-*-R-Normal--*-120-*-*-*-*-*-*'
@courierBold14 = '-*-Courier-Bold-R-Normal--*-140-*-*-*-*-*-*'
@helveticaBold24 = '-*-Helvetica-Bold-R-Normal--*-240-*-*-*-*-*-*'
@adobeHelveticaBold10 = '-Adobe-Helvetica-Bold-R-Normal-*-100-*'
@adobeHelveticaBold10a = '-Adobe-Helvetica-Bold-R-Normal-*-100-*'
# Define text widget
@doc = TkText.new(parent,
'relief' => 'sunken',
'bd' => '2',
'font' => @courier12,
'wrap' => 'none'
)
@doc.grid(\
'in' => @bigGrid,
'padx' => 1,
'pady' => 1,
'row' => 0,
'col' => 0,
'rowspan' => 1,
'columnspan'=> 1,
'sticky' => 'news'
)
20.times {|i|
@doc.insert('end', "Sample text line #{i}\n")
}
# Define Vertical Scrollbar
@vbar = TkScrollbar.new(parent,
'orient' => 'vertical',
'command' => proc{|*args|@doc.yview(*args)}
)
@vbar.grid(\
'in' => @bigGrid,
'padx' => 1,
'pady' => 1,
'row' => 0,
'col' => 1,
'rowspan' => 1,
'columnspan'=> 1,
'sticky' => 'news'
)
@doc.yscrollcommand(proc{|first, last| @vbar.set first, last})
# Define Horizontal Scrollbar
@hbar = TkScrollbar.new(parent,
'orient' => 'horizontal',
'command' => proc{|*args|@doc.xview(*args)}
)
@hbar.grid('in' => @bigGrid,
'padx' => 1,
'pady' => 1,
'row' => 1,
'col' => 0,
'rowspan' => 1,
'columnspan'=> 1,
'sticky' => 'news'
)
@doc.xscrollcommand(proc{|first, last| @hbar.set first, last})
end # initialization ================================
end # class Sample
end # module SampleModule
#=============================================================
# Test
#=============================================================
root = TkRoot.new {title 'Sample Test'}
SampleModule::Sample.new(root)
Tk.mainloop
------- End of forwarded message -------