snarl-snp 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/GUIDE.rdoc.ja +126 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +144 -0
- data/README.rdoc.ja +166 -0
- data/Rakefile +47 -0
- data/VERSION +1 -0
- data/exsample/ping.rb +8 -0
- data/exsample/winamp_nowplaying.rb +227 -0
- data/exsample/yahoo_weather.rb +35 -0
- data/lib/snarl/autotest.rb +112 -0
- data/lib/snarl/snp.rb +11 -0
- data/lib/snarl/snp/action.rb +138 -0
- data/lib/snarl/snp/config.rb +32 -0
- data/lib/snarl/snp/error.rb +76 -0
- data/lib/snarl/snp/request.rb +83 -0
- data/lib/snarl/snp/response.rb +36 -0
- data/lib/snarl/snp/snp.rb +142 -0
- data/snarl-snp.gemspec +78 -0
- data/spec/exsample/data/weather_yahoo_co_jp.html +608 -0
- data/spec/exsample/yahoo_weather_spec.rb +22 -0
- data/spec/snp/action_spec.rb +198 -0
- data/spec/snp/config_spec.rb +53 -0
- data/spec/snp/request_spec.rb +72 -0
- data/spec/snp/response_sprc.rb +96 -0
- data/spec/snp/snp_spec.rb +265 -0
- data/spec/spec_helper.rb +20 -0
- metadata +119 -0
data/snarl-snp.gemspec
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{snarl-snp}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["kitamomonga"]
|
12
|
+
s.date = %q{2010-04-23}
|
13
|
+
s.description = %q{Snarl Network Protocol Client. Snarl is the notification program for Windows. You can send notification messages to Snarl with SNP over LAN.}
|
14
|
+
s.email = %q{ezookojo@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"README.rdoc",
|
17
|
+
"README.rdoc.ja"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
"GUIDE.rdoc.ja",
|
21
|
+
"MIT-LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"README.rdoc.ja",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"exsample/ping.rb",
|
27
|
+
"exsample/winamp_nowplaying.rb",
|
28
|
+
"exsample/yahoo_weather.rb",
|
29
|
+
"lib/snarl/autotest.rb",
|
30
|
+
"lib/snarl/snp.rb",
|
31
|
+
"lib/snarl/snp/action.rb",
|
32
|
+
"lib/snarl/snp/config.rb",
|
33
|
+
"lib/snarl/snp/error.rb",
|
34
|
+
"lib/snarl/snp/request.rb",
|
35
|
+
"lib/snarl/snp/response.rb",
|
36
|
+
"lib/snarl/snp/snp.rb",
|
37
|
+
"snarl-snp.gemspec",
|
38
|
+
"spec/exsample/data/weather_yahoo_co_jp.html",
|
39
|
+
"spec/exsample/yahoo_weather_spec.rb",
|
40
|
+
"spec/snp/action_spec.rb",
|
41
|
+
"spec/snp/config_spec.rb",
|
42
|
+
"spec/snp/request_spec.rb",
|
43
|
+
"spec/snp/response_sprc.rb",
|
44
|
+
"spec/snp/snp_spec.rb",
|
45
|
+
"spec/spec_helper.rb"
|
46
|
+
]
|
47
|
+
s.homepage = %q{http://github.com/kitamomonga/snarl-snp}
|
48
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
49
|
+
s.require_paths = ["lib"]
|
50
|
+
s.rubygems_version = %q{1.3.6}
|
51
|
+
s.summary = %q{Snarl Network Protocol Client. You can notify to Snarl over LAN.}
|
52
|
+
s.test_files = [
|
53
|
+
"spec/exsample/yahoo_weather_spec.rb",
|
54
|
+
"spec/spec_helper.rb",
|
55
|
+
"spec/snp/config_spec.rb",
|
56
|
+
"spec/snp/response_sprc.rb",
|
57
|
+
"spec/snp/request_spec.rb",
|
58
|
+
"spec/snp/snp_spec.rb",
|
59
|
+
"spec/snp/action_spec.rb"
|
60
|
+
]
|
61
|
+
|
62
|
+
if s.respond_to? :specification_version then
|
63
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
64
|
+
s.specification_version = 3
|
65
|
+
|
66
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
67
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
68
|
+
s.add_development_dependency(%q<webmock>, [">= 0"])
|
69
|
+
else
|
70
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
71
|
+
s.add_dependency(%q<webmock>, [">= 0"])
|
72
|
+
end
|
73
|
+
else
|
74
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
75
|
+
s.add_dependency(%q<webmock>, [">= 0"])
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
@@ -0,0 +1,608 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
<html lang="ja">
|
3
|
+
<head>
|
4
|
+
<!---��--->
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
|
6
|
+
<meta http-equiv="Content-Style-Type" content="text/css">
|
7
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript">
|
8
|
+
<title>�м������ʻ��ڡˤ�ŷ�� - Yahoo!ŷ������</title>
|
9
|
+
<meta name="description" content="Yahoo!ŷ������ϡ��Զ�Į¼��ŷ��ͽ��������ŷ����������������Ͽ̡����Ȥʤɤ��ɺҾ����������糰����ȩ�Ӥ�ʤɤλؿ�����˲ä���RSS��֥����ѡ��Ĥ�Ҳ𤷤Ƥ��ޤ���"><meta name="keywords" content="ŷ��ͽ��,ŷ������,�Զ�Į¼ñ��,�ԥ�ݥ����,������ŷ��,�ɺҾ���,�ؿ�����,ŷ��������,�쥸�㡼ŷ��,Ʀ�μ�,�Ѹ콸,RSS,�֥����ѡ���"><meta name = "format-detection" content = "telephone=no"><link rel="stylesheet" href="http://i.yimg.jp/images/weather/css/master-yahoo.css" type="text/css" media="all"><link rel="stylesheet" href="http://i.yimg.jp/images/weather/css/yj_weather.css" type="text/css" media="screen,print">
|
10
|
+
<!---���⥸�塼����CSS--->
|
11
|
+
<link rel="stylesheet" href="http://i.yimg.jp/images/weather/sakura/2009/yjw_sakura.css" type="text/css" media="screen,print">
|
12
|
+
<!---/���⥸�塼����CSS--->
|
13
|
+
<link rel="alternate" media="handheld" type="text/html" href="http://weather.mobile.yahoo.co.jp/p/weather/forecast/days?area=1400&code=1b" />
|
14
|
+
</head>
|
15
|
+
<body class="yj950-2">
|
16
|
+
|
17
|
+
<!---wrapper start--->
|
18
|
+
<div id="wrapper">
|
19
|
+
<!---header start--->
|
20
|
+
<div id="header">
|
21
|
+
<span class="yj-guid"><a name="pagetop" id="pagetop"></a><img src="http://i.yimg.jp/images/clear.gif" width="1" height="1" alt="���Υڡ�������Ƭ�Ǥ�"></span>
|
22
|
+
<span class="yj-skip"><a href="#contents-start"><img src="http://i.yimg.jp/images/clear.gif" alt="���Υڡ�������ʸ��" width="1" height="1"></a></span>
|
23
|
+
|
24
|
+
<!-- SpaceID=0 robot -->
|
25
|
+
<div id="masthead"> <div class="yjmth"> <div class="yjmthproplogoarea"> <a href="http://weather.yahoo.co.jp/weather/"><img id="ygmhlog" src="http://i.yimg.jp/images/mh/weather.gif" width="235" height="40" alt="Yahoo!ŷ������"></a> </div> <div class="yjmthloginarea">
|
26
|
+
<strong><a href="https://login.yahoo.co.jp/config/login?.src=yw&lg=jp&.intl=jp&.done=http%3a//weather.yahoo.co.jp/weather/jp/1b/1400.html">��������</a></strong><br>ID�Ǥ�ä�������[ <a href="https://account.edit.yahoo.co.jp/registration?.src=yw&.done=http%3a//weather.yahoo.co.jp/weather/jp/1b/1400.html">��������</a> ]
|
27
|
+
</div> <div class="yjmthcmnlnkarea"> <a href="http://www.yahoo.co.jp/">Yahoo! JAPAN</a> - <a href="http://help.yahoo.co.jp/help/jp/weather/">�إ��</a> </div> <br class="yjmthclear"> </div></div>
|
28
|
+
|
29
|
+
<!-- SpaceID=0 robot -->
|
30
|
+
<!-- SpaceID=0 robot -->
|
31
|
+
<!-- SpaceID=0 robot -->
|
32
|
+
|
33
|
+
</div><!---/#header end--->
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
<hr class="separation">
|
38
|
+
<!---contents start--->
|
39
|
+
<div id="contents">
|
40
|
+
<div id="contents-header">
|
41
|
+
<div class="yjw_title_h1 yjw_clr">
|
42
|
+
<h1 class="yjM">Yahoo!ŷ������</h1>
|
43
|
+
<div class="widebuttonarea">
|
44
|
+
<!-- SpaceID=0 robot -->
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
<!---WEATHER_SEARCH_TABLE--->
|
48
|
+
<div class="yjw_pnts_search yjw_clr"><form method=get action="http://search.weather.yahoo.co.jp/bin/search"><fieldset> <p class="yjS">�ԥ�ݥ����ŷ�� <select name=pref> <option value="all">����</option> <option value="1" selected>�̳�ƻ</option> <option value="2">�Ŀ���</option> <option value="3">��긩</option> <option value="4">�ܾ븩</option> <option value="5">���ĸ�</option> <option value="6">������</option> <option value="7">ʡ�縩</option> <option value="13">�����</option> <option value="14">�����</option> <option value="11">��̸�</option> <option value="12">���ո�</option> <option value="8">��븩</option> <option value="9">���ڸ�</option> <option value="10">���ϸ�</option> <option value="19">������</option> <option value="15">���㸩</option> <option value="20">Ĺ�</option> <option value="16">�ٻ���</option> <option value="17">���</option> <option value="18">ʡ�温</option> <option value="23">���θ�</option> <option value="21">���츩</option> <option value="22">�Ų���</option> <option value="24">���Ÿ�</option> <option value="27">�����</option> <option value="28">ʼ�˸�</option> <option value="26">������</option> <option value="25">���츩</option> <option value="29">���ɸ�</option> <option value="30">�²λ���</option> <option value="31">Ļ�踩</option> <option value="32">�纬��</option> <option value="33">������</option> <option value="34">���縩</option> <option value="35">������</option> <option value="36">���縩</option> <option value="37">���</option> <option value="38">��ɲ��</option> <option value="39">���θ�</option> <option value="40">ʡ����</option> <option value="41">���츩</option> <option value="42">Ĺ�긩</option> <option value="43">���ܸ�</option> <option value="44">��ʬ��</option> <option value="45">�ܺ긩</option> <option value="46">�����縩</option> <option value="47">���츩</option> </select> ��̾�ޤ������ֹ� <input type=text size=20 name=p> <!--<INPUT TYPE=submit VALUE="����">--> <input type="image" src="http://i.yimg.jp/images/weather/common/yjw_button_search.gif" title="����" alt="����" id="yjw_button_search"> </p></fieldset></form>
|
49
|
+
<p id="yjw_buttonarea"><a href="/weather/public/rss.html"><img src="http://i.yimg.jp/images/weather/common/yjw_button_rss.gif" width="113" height="24" alt="��RSS"></a><a href="/weather/promo/blogparts/"><img src="http://i.yimg.jp/images/weather/common/yjw_button_blogparts.gif" width="113" height="24" alt="�֥����ѡ���"></a></p></div><!---/WEATHER_SEARCH_TABLE--->
|
50
|
+
|
51
|
+
<!--- CAT_LINK_TABLE --->
|
52
|
+
<div id="cat-pass">
|
53
|
+
<p>
|
54
|
+
<span class="yj-guid">���߰��֡�</span>
|
55
|
+
<a href="/weather/">Yahoo!ŷ������ȥå�</a>
|
56
|
+
>
|
57
|
+
<a href="/weather/jp/hokkaido.html">�̳�ƻ</a>
|
58
|
+
>
|
59
|
+
<a href="/weather/jp/1b/index.html">ƻ��</a>
|
60
|
+
>
|
61
|
+
�м������ʻ��ڡ�
|
62
|
+
</p>
|
63
|
+
</div><!--/#cat-pass end-->
|
64
|
+
|
65
|
+
|
66
|
+
<!--- CAT_LINK_TABLE --->
|
67
|
+
</div><!---/#contents-header end--->
|
68
|
+
|
69
|
+
<div id="contents-body">
|
70
|
+
<span class="yj-guid">
|
71
|
+
<a name="contents-start" id="contents-start"></a>
|
72
|
+
<img src="http://i.yimg.jp/images/clear.gif" alt="����������ʸ�Ǥ�" width="1" height="1">
|
73
|
+
</span>
|
74
|
+
|
75
|
+
<!-- SpaceID=0 robot -->
|
76
|
+
|
77
|
+
<!---main start--->
|
78
|
+
|
79
|
+
<div id="main">
|
80
|
+
|
81
|
+
<!---IM--->
|
82
|
+
<script type="text/javascript">
|
83
|
+
var yjaxclookup = function(jo){
|
84
|
+
if(typeof jo[0] != "undefined"){
|
85
|
+
document.getElementById("center1").innerHTML = jo[0];
|
86
|
+
}
|
87
|
+
|
88
|
+
if(typeof jo[1] != "undefined"){
|
89
|
+
document.getElementById("right1").innerHTML = jo[1];
|
90
|
+
}
|
91
|
+
}
|
92
|
+
</script>
|
93
|
+
<!---/IM--->
|
94
|
+
|
95
|
+
<div id="yjw_area_todaytomorrow" class="yjw_main_md">
|
96
|
+
<!---APOLOGY_MODULE--->
|
97
|
+
|
98
|
+
<!---/APOLOGY_MODULE--->
|
99
|
+
<!---DISASTER_MODULE--->
|
100
|
+
|
101
|
+
<!---/DISASTER_MODULE--->
|
102
|
+
<!---INFOMATION_MODULE--->
|
103
|
+
<div class="yjw_main_md" style="font-weight:normal;border:2px solid #C3DCA3;">
|
104
|
+
<table cellpadding="0" cellspacing="2" border="0" width="100%" style="margin:2px;">
|
105
|
+
<tr>
|
106
|
+
<td width=1%><a href="http://rd.yahoo.co.jp/media/weather/top_module_special/kafun/?http://weather.yahoo.co.jp/weather/jp/kafun/"><img src="http://i.yimg.jp/images/weather/kafun/2008/top_kafun.gif" alt="��ʴ����" border=0 hspace="4"></a></td>
|
107
|
+
<td nowrap><strong><a href="http://rd.yahoo.co.jp/media/weather/top_module_special/kafun/?http://weather.yahoo.co.jp/weather/jp/kafun/">��ʴ����</a></strong></td><td width=97% class="yjSt">����ͽ¬������ͽ��Τβ�ʴ����ʤɡ�<a href="http://rd.yahoo.co.jp/media/weather/top_module_special/kafun_mobile/?http://weather.yahoo.co.jp/weather/promo/mobile/">���������Dz�ʴ����</a>�Ǥ�����ͽ¬���ߤ��ޤ���</td>
|
108
|
+
</tr>
|
109
|
+
</table>
|
110
|
+
</div>
|
111
|
+
|
112
|
+
|
113
|
+
<!---/INFOMATION_MODULE--->
|
114
|
+
<!---������������ŷ��--->
|
115
|
+
<!---Today--->
|
116
|
+
<div class="yjw_title_h2 yjw_clr">
|
117
|
+
|
118
|
+
<!---������������ͽ��--->
|
119
|
+
<h2 class="yjMt">������ŷ��</h2>
|
120
|
+
<p class="yjSt yjw_note_h2">2010ǯ4��2����17��00ʬȯɽ</p>
|
121
|
+
</div>
|
122
|
+
|
123
|
+
<p class="yjw_note yjw_bg_blue">
|
124
|
+
<a href="http://e.my.yahoo.co.jp/config/jp_add_rss?url=http://rss.weather.yahoo.co.jp/rss/days/1400.xml" target="_rss">
|
125
|
+
<img src="http://i.yimg.jp/i/jp/my/addtomy2.gif" alt="My Yahoo!���ɲ�" border=0></a>
|
126
|
+
<a href="http://rss.weather.yahoo.co.jp/rss/days/1400.xml" target="_rss">
|
127
|
+
<img src="http://i.yimg.jp/images/common/rss.gif" alt="RSS" border=0></a>
|
128
|
+
</p>
|
129
|
+
|
130
|
+
<!---Today--->
|
131
|
+
<table border=0 cellpadding=4 cellspacing=0 width=100% class="yjw_table">
|
132
|
+
<tr valign=top bgcolor="#ffffff">
|
133
|
+
<td align=center width=25%>
|
134
|
+
|
135
|
+
<table border=0 cellpadding=2 cellspacing=1 width=100%>
|
136
|
+
<tr align=center><td><b>4��2��(��)</b></td></tr>
|
137
|
+
<tr align=center><td>
|
138
|
+
<img src="http://i.yimg.jp/images/weather/general/forcast/moon.gif" border="0" alt="����"><br>
|
139
|
+
����
|
140
|
+
</td></tr>
|
141
|
+
</table>
|
142
|
+
|
143
|
+
</td>
|
144
|
+
<td align=center>
|
145
|
+
|
146
|
+
<table border=0 cellpadding=2 cellspacing=1 width=100%>
|
147
|
+
<tr align=center>
|
148
|
+
<td><small><font color="#ff3300">�ǹⵤ���ʡ��[������]<br>9
|
149
|
+
[ +2 ]</font></small></td>
|
150
|
+
<td><small><font color="#0066ff">���㵤���ʡ��[������]<br>3
|
151
|
+
[ -4 ]</font></small></td>
|
152
|
+
</tr>
|
153
|
+
</table>
|
154
|
+
|
155
|
+
<table border=1 cellpadding=2 cellspacing=0 width=100% class="yjw_table3_s">
|
156
|
+
<tr align=center bgcolor="#e9eefd">
|
157
|
+
<td width=28% nowrap><small>�߿��Ψ�ʡ��</small></td>
|
158
|
+
<td width=18%><small>---</small></td>
|
159
|
+
<td width=18%><small>---</small></td>
|
160
|
+
<td width=18%><small>---</small></td>
|
161
|
+
<td width=18%><small>20</small></td>
|
162
|
+
</tr>
|
163
|
+
<tr align=center bgcolor="#eeeeee">
|
164
|
+
<td width=28% nowrap><small>�����ӡʻ���</small></td>
|
165
|
+
<td width=18%><small>0-6</small></td>
|
166
|
+
<td width=18%><small>6-12</small></td>
|
167
|
+
<td width=18%><small>12-18</small></td>
|
168
|
+
<td width=18%><small>18-24</small></td>
|
169
|
+
</tr>
|
170
|
+
</table>
|
171
|
+
|
172
|
+
<table border=1 cellpadding=2 cellspacing=0 width=100% class="yjw_table3_s">
|
173
|
+
<tr>
|
174
|
+
<td bgcolor="#e9eefd" width=1% nowrap><small>����</small></td>
|
175
|
+
<td width=49%><small>������������Ǥ�����������</small></td>
|
176
|
+
<td bgcolor="#e9eefd" width=1% nowrap><small>�ȡ�</small></td>
|
177
|
+
<td width=49%><small>3��ȥ�</small></td>
|
178
|
+
</tr>
|
179
|
+
</table>
|
180
|
+
|
181
|
+
</td>
|
182
|
+
</tr>
|
183
|
+
</table>
|
184
|
+
<!---/Today--->
|
185
|
+
|
186
|
+
<!--- live -->
|
187
|
+
<script language="javascript" type="text/javascript" src="http://i.yimg.jp/images/weather/live/jsr_class.js"></script>
|
188
|
+
<script language="javascript" type="text/javascript" src="http://i.yimg.jp/images/weather/live/yjw_live-1_0_5.js"></script>
|
189
|
+
<script type="text/javascript"><!--
|
190
|
+
if (window.addEventListener) { //for W3C DOM
|
191
|
+
window.addEventListener("load", loadTextFile, false);
|
192
|
+
} else if (window.attachEvent) { //for IE
|
193
|
+
window.attachEvent("onload", loadTextFile);
|
194
|
+
} else {
|
195
|
+
window.onload = loadTextFile;
|
196
|
+
}
|
197
|
+
|
198
|
+
document.write('<input type="hidden" id="area_nm" value="area">');
|
199
|
+
document.write('<input type="hidden" id="area_cd" value="1400">');
|
200
|
+
|
201
|
+
document.write('<div class="yjw_live_count_table"><table border=0 cellpadding=0 cellspacing=0 width=100%><tr><td align=center width=1%><img src="http://i.yimg.jp/images/weather/live/live_3.gif" alt="�ߤ�ʤǼ¶���������ŷ��"></td><td width=98%><font class="yjw_live_text">���м������ʻ��ڡˤκ���ŷ�����Ƥ���������</font><font class="yjw_live_count_text">��<span id="starttime"></span>��<span id="reftime"></span>�μ¶���</font></td><td width=1% nowrap><a href="/weather/promo/live/#yjwPromoKaniColumn2"><img src="http://i.yimg.jp/i/jp/mb/top/beginner.gif" width="16" height="18" alt="�Ȥ���" border="0" align="absmiddle"></a> <a href="/weather/promo/live/#yjwPromoKaniColumn2"><span class="yjS">�Ȥ���</span></a></td></tr></table><div class="yjw_border_s"></div><table border=0 cellpadding=3 cellspacing=0 width=100%><tr><td width=1%><img src="http://i.yimg.jp/images/weather/live/sun2.gif" id="b_sun" alt="�����¶�����"></td><td nowrap width=24% align=left><font class="yjw_live_count"><span id="sun_total"></span></font>��</td><td width=1%><img src="http://i.yimg.jp/images/weather/live/clouds2.gif" id="b_clouds" alt="�ޤ��¶�����"></td><td nowrap width=24% align=left><font class="yjw_live_count"><span id="clouds_total"></span></font>��</td><td width=1%><img src="http://i.yimg.jp/images/weather/live/rain2.gif" id="b_rain" alt="����¶�����"></td><td nowrap width=24% align=left><font class="yjw_live_count"><span id="rain_total"></span></font>��</td><td width=1%><img src="http://i.yimg.jp/images/weather/live/snow2.gif" id="b_snow" alt="���¶�����"></td><td nowrap width=24% align=left><font class="yjw_live_count"><span id="snow_total"></span></font>��</td></tr><tr><td colspan=8 align=center><span id="warning_post" class="yjw_live_result"></span><span id="warning_api" class="yjw_live_error"></span></td></tr>');
|
202
|
+
|
203
|
+
|
204
|
+
document.write('</table></div>');
|
205
|
+
--></script>
|
206
|
+
|
207
|
+
<noscript>
|
208
|
+
<div class="yjw_main_md" style="border:1px solid #ff0000; padding:2px;">
|
209
|
+
<font class="yjw_live_text"><b>JavaScript��������ͭ����</b>�ˤ���ȡ��֤ߤ�ʤǼ¶�������ŷ���פ������Ѥ��������ޤ���<br>JavaScript���������ˡ��<b><a href="http://help.yahoo.co.jp/help/jp/common/sys/sys-07.html">������</a></b>��</font>
|
210
|
+
</div>
|
211
|
+
</noscript>
|
212
|
+
<!--- /live -->
|
213
|
+
|
214
|
+
<!---Tomorrow--->
|
215
|
+
<div class="yjw_title_h2 yjw_clr">
|
216
|
+
<h2 class="yjMt">������ŷ��</h2>
|
217
|
+
<p class="yjSt yjw_note_h2">2010ǯ4��2����17��00ʬȯɽ</p>
|
218
|
+
</div>
|
219
|
+
|
220
|
+
<table border=0 cellpadding=4 cellspacing=0 width=100% class="yjw_table"><tr valign=top bgcolor="#ffffff"><td align=center width=25%>
|
221
|
+
<table border=0 cellpadding=2 cellspacing=1 width=100%>
|
222
|
+
<tr align=center><td><b>4��3��(��)</b></td></tr>
|
223
|
+
<tr align=center><td>
|
224
|
+
<img src="http://i.yimg.jp/images/weather/general/forcast/sun_snow_st.gif" border="0" alt="��������">
|
225
|
+
<br>
|
226
|
+
��������
|
227
|
+
</td></tr>
|
228
|
+
</table>
|
229
|
+
|
230
|
+
</td>
|
231
|
+
<td align=center>
|
232
|
+
|
233
|
+
<table border=0 cellpadding=2 cellspacing=1 width=100%>
|
234
|
+
<tr align=center>
|
235
|
+
<td><small><font color="#ff3300">�ǹⵤ���ʡ��[������]<br>6
|
236
|
+
[ -3 ]</font></small></td>
|
237
|
+
<td><small><font color="#0066ff">���㵤���ʡ��[������]<br>1
|
238
|
+
[ -2 ]</font></small></td>
|
239
|
+
</tr>
|
240
|
+
</table>
|
241
|
+
|
242
|
+
<table border=1 cellpadding=2 cellspacing=0 width=100% class="yjw_table3_s">
|
243
|
+
<tr align=center bgcolor="#e9eefd">
|
244
|
+
<td width=28% nowrap><small>�߿��Ψ�ʡ��</small></td>
|
245
|
+
<td width=18%><small>40</small></td>
|
246
|
+
<td width=18%><small>50</small></td>
|
247
|
+
<td width=18%><small>20</small></td>
|
248
|
+
<td width=18%><small>20</small></td>
|
249
|
+
</tr>
|
250
|
+
<tr align=center bgcolor="#eeeeee">
|
251
|
+
<td width=28% nowrap><small>�����ӡʻ���</small></td>
|
252
|
+
<td width=18%><small>0-6</small></td>
|
253
|
+
<td width=18%><small>6-12</small></td>
|
254
|
+
<td width=18%><small>12-18</small></td>
|
255
|
+
<td width=18%><small>18-24</small></td>
|
256
|
+
</tr>
|
257
|
+
</table>
|
258
|
+
|
259
|
+
<table border=1 cellpadding=2 cellspacing=0 width=100% class="yjw_table3_s">
|
260
|
+
<tr>
|
261
|
+
<td bgcolor="#e9eefd" width=1% nowrap><small>����</small></td>
|
262
|
+
<td width=49%><small>���������������������ǤϤϤ�������������</small></td>
|
263
|
+
<td bgcolor="#e9eefd" width=1% nowrap><small>�ȡ�</small></td>
|
264
|
+
<td width=49%><small>3��ȥ��2��ȥ�</small></td>
|
265
|
+
</tr>
|
266
|
+
</table>
|
267
|
+
|
268
|
+
</td>
|
269
|
+
</tr>
|
270
|
+
</table>
|
271
|
+
<!---/Tomorrow--->
|
272
|
+
<!---/������������ͽ��--->
|
273
|
+
</div>
|
274
|
+
|
275
|
+
|
276
|
+
<!---IM 1--->
|
277
|
+
<div id="center1"></div>
|
278
|
+
<!---/IM 1--->
|
279
|
+
|
280
|
+
<!---���֤�ŷ��--->
|
281
|
+
<div id="yjw_week" class="yjw_main_md">
|
282
|
+
|
283
|
+
|
284
|
+
<!---���֤�ŷ��--->
|
285
|
+
<div class="yjw_title_h2 yjw_clr">
|
286
|
+
|
287
|
+
<a name="week"></a>
|
288
|
+
<h2 class="yjMt">����ŷ��</h2>
|
289
|
+
|
290
|
+
<p class="yjSt yjw_note_h2">2010ǯ4��2����17��00ʬȯɽ</p>
|
291
|
+
</div>
|
292
|
+
|
293
|
+
<table border=1 cellpadding=2 cellspacing=0 width=100% class="yjw_table">
|
294
|
+
<tr valign=middle align=center>
|
295
|
+
<td bgcolor="#eeeeee" width=10%><small>����</small><br>
|
296
|
+
<img src="http://i.yimg.jp/images/clear.gif" width=50 height=1></td>
|
297
|
+
<td bgcolor="#e9eefd" width=15%><small>4��4��<br>(��)</small></td>
|
298
|
+
<td bgcolor="#e9eefd" width=15%><small>4��5��<br>(��)</small></td>
|
299
|
+
<td bgcolor="#e9eefd" width=15%><small>4��6��<br>(��)</small></td>
|
300
|
+
<td bgcolor="#e9eefd" width=15%><small>4��7��<br>(��)</small></td>
|
301
|
+
<td bgcolor="#e9eefd" width=15%><small>4��8��<br>(��)</small></td>
|
302
|
+
<td bgcolor="#e9eefd" width=15%><small>4��9��<br>(��)</small></td>
|
303
|
+
</tr>
|
304
|
+
<tr valign=middle align=center>
|
305
|
+
<td bgcolor="#eeeeee" width=10%><small>ŷ��</small></td>
|
306
|
+
<td width=15%><img src="http://i.yimg.jp/images/weather/general/forcast/sun_clouds_st.gif" border="0" alt="��������"><br>
|
307
|
+
<small>��������</small></td>
|
308
|
+
<td width=15%><img src="http://i.yimg.jp/images/weather/general/forcast/clouds_rain_af.gif" border="0" alt="�屫"><br>
|
309
|
+
<small>�屫</small></td>
|
310
|
+
<td width=15%><img src="http://i.yimg.jp/images/weather/general/forcast/clouds_rain_st.gif" border="0" alt="������"><br>
|
311
|
+
<small>������</small></td>
|
312
|
+
<td width=15%><img src="http://i.yimg.jp/images/weather/general/forcast/clouds_sun_st.gif" border="0" alt="������"><br>
|
313
|
+
<small>������</small></td>
|
314
|
+
<td width=15%><img src="http://i.yimg.jp/images/weather/general/forcast/sun_clouds_st.gif" border="0" alt="��������"><br>
|
315
|
+
<small>��������</small></td>
|
316
|
+
<td width=15%><img src="http://i.yimg.jp/images/weather/general/forcast/clouds.gif" border="0" alt="�ޤ�"><br>
|
317
|
+
<small>�ޤ�</small></td>
|
318
|
+
</tr>
|
319
|
+
<tr valign=middle align=center bgcolor="#ffffff">
|
320
|
+
<td bgcolor="#eeeeee" width=10%><small>�����ʡ��</small></td>
|
321
|
+
<td width=15%><small><font color="#ff3300">8</font><br>
|
322
|
+
<font color="#0066ff">-1</font></small></td>
|
323
|
+
<td width=15%><small><font color="#ff3300">8</font><br>
|
324
|
+
<font color="#0066ff">0</font></small></td>
|
325
|
+
<td width=15%><small><font color="#ff3300">6</font><br>
|
326
|
+
<font color="#0066ff">1</font></small></td>
|
327
|
+
<td width=15%><small><font color="#ff3300">5</font><br>
|
328
|
+
<font color="#0066ff">-1</font></small></td>
|
329
|
+
<td width=15%><small><font color="#ff3300">7</font><br>
|
330
|
+
<font color="#0066ff">-2</font></small></td>
|
331
|
+
<td width=15%><small><font color="#ff3300">7</font><br>
|
332
|
+
<font color="#0066ff">0</font></small></td>
|
333
|
+
</tr>
|
334
|
+
<tr valign=middle align=center bgcolor="#ffffff">
|
335
|
+
<td bgcolor="#eeeeee" width=10%><small>�߿�<br>��Ψ�ʡ��</small></td>
|
336
|
+
<td width=15%><small>40</small></td>
|
337
|
+
<td width=15%><small>50</small></td>
|
338
|
+
<td width=15%><small>70</small></td>
|
339
|
+
<td width=15%><small>30</small></td>
|
340
|
+
<td width=15%><small>10</small></td>
|
341
|
+
<td width=15%><small>40</small></td>
|
342
|
+
</tr>
|
343
|
+
</table>
|
344
|
+
<!---/���֤�ŷ��--->
|
345
|
+
<!---/���֤�ŷ�����ս�--->
|
346
|
+
<table border=0 cellpadding=0 cellspacing=2 width=100%>
|
347
|
+
<tr valign=top><td with=1%><small>��</small></td>
|
348
|
+
<td width=99%>
|
349
|
+
<small>����ŷ���ε����ϺǴ�δ�¬�������Ȥˤ��Ƥ��뤿�ᡢ�����ºݤ��ϰ�β��٤Ȱۤʤ��礬����ޤ���</small></td></tr>
|
350
|
+
</table>
|
351
|
+
<!---/���֤�ŷ�����ս�--->
|
352
|
+
</div>
|
353
|
+
|
354
|
+
<!---Local_Link--->
|
355
|
+
<!---�ԥ�ݥ����ŷ���ؤΥ��--->
|
356
|
+
<div id="yjw_kakuchi_pnts" class="yjw_main_md">
|
357
|
+
|
358
|
+
<div class="yjw_title_h2">
|
359
|
+
<h2 class="yjMt">�ԥ�ݥ����ŷ��</h2>
|
360
|
+
</div>
|
361
|
+
<ul class="yjw_clr">
|
362
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1101.html">���ڻ������</a></li>
|
363
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1102.html">���ڻ��̶�</a></li>
|
364
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1103.html">���ڻ����</a></li>
|
365
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1104.html">���ڻ����ж�</a></li>
|
366
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1105.html">���ڻ�˭ʿ��</a></li>
|
367
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1106.html">���ڻ����</a></li>
|
368
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1107.html">���ڻ�����</a></li>
|
369
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1108.html">���ڻԸ��̶�</a></li>
|
370
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1109.html">���ڻԼ���</a></li>
|
371
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1110.html">���ڻ����Ķ�</a></li>
|
372
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1217.html">���̻�</a></li>
|
373
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1224.html">��л�</a></li>
|
374
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1231.html">������</a></li>
|
375
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1234.html">�̹����</a></li>
|
376
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1235.html">���</a></li>
|
377
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1303.html">����Į</a></li>
|
378
|
+
<li><a href="http://rd.yahoo.co.jp/media/weather/fuken/pinpo/?http://weather.yahoo.co.jp/weather/jp/1b/1400/1304.html">������¼</a></li>
|
379
|
+
</ul>
|
380
|
+
|
381
|
+
|
382
|
+
</div>
|
383
|
+
<!---/�ԥ�ݥ����ŷ���ؤΥ��--->
|
384
|
+
|
385
|
+
<!--- ���ý�2009 --->
|
386
|
+
|
387
|
+
<!--- ===���ý�=== --->
|
388
|
+
<div class="yjw_main_md_lined_sakura yjw_bg_sakura">
|
389
|
+
<div class="yjw_title_sakura" style="margin-bottom:5px;" >
|
390
|
+
<h2><a href="http://rd.yahoo.co.jp/media/weather/sakura/top/?http://sakura.yahoo.co.jp/">���ָ��ý�2010���ߤ�ʤǤĤ��������</a></h2>
|
391
|
+
<p class="yjSt yjw_note_h2" style="margin-top:5px;" >2010ǯ4��2����17��00ʬȯɽ</p>
|
392
|
+
</div>
|
393
|
+
|
394
|
+
<div class="yjw_innersakura yjSt">
|
395
|
+
|
396
|
+
<div class="yjw_innerbox yjw_clr">
|
397
|
+
|
398
|
+
<table cellpadding="0" cellspacing="0" border="0" width=100%>
|
399
|
+
<tr style="text-align:center;">
|
400
|
+
|
401
|
+
|
402
|
+
<!---�̿�-->
|
403
|
+
<td width="1%" valign=top>
|
404
|
+
<p><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50048.html" ><img src="http://i.yimg.jp/images/evt/sakura2010/spot/photo_s/50048_s.jpg" width="80" height="60" alt=�⥨��¸��� vspace=3 border=0></a></p>
|
405
|
+
<p><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50048.html"></a>�⥨��¸���</p>
|
406
|
+
</td>
|
407
|
+
<td width="1%"><img src="http://i.yimg.jp/images/clear.gif" width="2" height="" alt=""></td>
|
408
|
+
<!---/�̿�-->
|
409
|
+
|
410
|
+
<td width="98%" valign=top>
|
411
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
412
|
+
|
413
|
+
<tr>
|
414
|
+
<td align="center" width=1%><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50024.html" ><img src="http://i.yimg.jp/images/evt/common/sakura/icon1s.gif" width="22" height="22" alt=�Ĥܤ� vspace=3 border=0></a></td>
|
415
|
+
<td width=49% align="left" valign="middle"><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50024.html" class="yjM">�̳�ƻ����</a></td>
|
416
|
+
<td align="center" width=1%><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50026.html" ><img src="http://i.yimg.jp/images/evt/common/sakura/icon1s.gif" width="22" height="22" alt=�Ĥܤ� vspace=3 border=0></a></td>
|
417
|
+
<td width=49% align="left" valign="middle"><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50026.html" class="yjM">�̳�ƻΩ���������</a></td>
|
418
|
+
</tr>
|
419
|
+
<tr>
|
420
|
+
<td align="center" width=1%><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50034.html" ><img src="http://i.yimg.jp/images/evt/common/sakura/icon1s.gif" width="22" height="22" alt=�Ĥܤ� vspace=3 border=0></a></td>
|
421
|
+
<td width=49% align="left" valign="middle"><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50034.html" class="yjM">���̻����ָ���</a></td>
|
422
|
+
<td align="center" width=1%><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50023.html" ><img src="http://i.yimg.jp/images/evt/common/sakura/icon1s.gif" width="22" height="22" alt=�Ĥܤ� vspace=3 border=0></a></td>
|
423
|
+
<td width=49% align="left" valign="middle"><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50023.html" class="yjM">������</a></td>
|
424
|
+
</tr>
|
425
|
+
<tr>
|
426
|
+
<td align="center" width=1%><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50047.html" ><img src="http://i.yimg.jp/images/evt/common/sakura/icon1s.gif" width="22" height="22" alt=�Ĥܤ� vspace=3 border=0></a></td>
|
427
|
+
<td width=49% align="left" valign="middle"><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50047.html" class="yjM">��湾Į�ˤﻳ���Ӽ�������</a></td>
|
428
|
+
<td align="center" width=1%><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50033.html" ><img src="http://i.yimg.jp/images/evt/common/sakura/icon1s.gif" width="22" height="22" alt=�Ĥܤ� vspace=3 border=0></a></td>
|
429
|
+
<td width=49% align="left" valign="middle"><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/detail/50033.html" class="yjM">��������������</a></td>
|
430
|
+
</tr>
|
431
|
+
<tr><td colspan=4 style="text-align:right;font-weight:bold;" class="yjSt yjw_note_arrow"><a href="http://rd.yahoo.co.jp/media/weather/sakura/*http://sakura.yahoo.co.jp/spot/list/01.html">¾�κ�̾��⸫��</a></td></tr></table>
|
432
|
+
</td>
|
433
|
+
</tr>
|
434
|
+
</table>
|
435
|
+
</div>
|
436
|
+
</div>
|
437
|
+
</div>
|
438
|
+
<!---/���ý�ͶƳ--->
|
439
|
+
<!--- /���ý�2009 --->
|
440
|
+
|
441
|
+
|
442
|
+
<!---IM 2--->
|
443
|
+
<div id="right1"></div>
|
444
|
+
<!---/IM 2--->
|
445
|
+
|
446
|
+
<script type="text/javascript" language="javascript">
|
447
|
+
var yjaxc_ad_ds = 'anemos_weather00384';
|
448
|
+
var yjaxc_ad_id = '2077740041';
|
449
|
+
var yjaxc_ad_deli = 'm';
|
450
|
+
</script>
|
451
|
+
<script type="text/javascript" language="javascript" src="http://yjaxc.yahoo.co.jp/js/yjaxc.js"></script>
|
452
|
+
|
453
|
+
|
454
|
+
<!-- SpaceID=0 robot -->
|
455
|
+
|
456
|
+
</div><!---/#main end--->
|
457
|
+
<!---/MAIN_CONTENTS_table--->
|
458
|
+
|
459
|
+
|
460
|
+
<!---RIGHT_COLUMN--->
|
461
|
+
<!---sub start--->
|
462
|
+
<div id="sub">
|
463
|
+
|
464
|
+
<!-- SpaceID=0 robot -->
|
465
|
+
|
466
|
+
<!--- ==========�������Х�ʥӥ��������========== --->
|
467
|
+
<div class="yjw_sub_md_lined" >
|
468
|
+
<div class="yjw_title_h2">
|
469
|
+
<h2 class="yjM">�м������ʻ��ڡ˥��ꥢ�ξ���</h2>
|
470
|
+
</div>
|
471
|
+
|
472
|
+
<dl class="yjw_navi yjw_clr yjSt" id="yjw_cattodaytomorrow">
|
473
|
+
<dt class="catselect">������������ŷ��</dt>
|
474
|
+
<dd id="todaytomorrow01" class="select">������������ŷ��</dd>
|
475
|
+
</dl>
|
476
|
+
<dl class="yjw_navi yjw_clr yjSt" id="yjw_catweek">
|
477
|
+
<dt class="catselect">����ŷ��</dt>
|
478
|
+
<dd id="week01">����ŷ��</dd>
|
479
|
+
</dl>
|
480
|
+
|
481
|
+
<!--- ������ư������ --->
|
482
|
+
<!---�������������+�쥸�㡼��ɽ��������-->
|
483
|
+
<dl class="yjw_simage">
|
484
|
+
<dd class="yjSt">
|
485
|
+
<p>ƻ���α�����ư���ʼ¶���6���ָ��</p>
|
486
|
+
<p><a href="http://weather.yahoo.co.jp/weather/raincloud/1b/index.html"><img src="http://ca.c.yimg.jp/weather/1270220700/weather.yahoo.co.jp/weather/raincloud/img/000000yhpf0116g-4_small.jpg" width="240" height="180" alt="ƻ���α�����ư���ʼ¶���6���ָ��" border="0"></a></p>
|
487
|
+
<p><a href="http://weather.yahoo.co.jp/weather/raincloud/1b/index.html">�ܺ٤�</a></p>
|
488
|
+
<p class="yjS yjw_note_arrow" style="text-align:left;margin:0px 10px 0px 0px;"><a href="http://rd.yahoo.co.jp/media/weather/zoomradar/lead_2/*http://weather.yahoo.co.jp/weather/zoomradar/">10ʬ���Ȥμ¶��ʱ���������졼�����ˤ�</a></p>
|
489
|
+
</dd>
|
490
|
+
</dl>
|
491
|
+
<!--- /������ư������ --->
|
492
|
+
|
493
|
+
|
494
|
+
<!--- �ɺҾ��� --->
|
495
|
+
<dl class="yjw_navi yjw_clr yjSt">
|
496
|
+
<dt>�ɺҾ���</dt>
|
497
|
+
<dd id="disaster01"><a href="http://typhoon.yahoo.co.jp/weather/jp/keihou/1b.html">����������</a>
|
498
|
+
</dd>
|
499
|
+
<dd id="disaster02">�Ͽ�</dd>
|
500
|
+
<dd id="disaster03">����</dd>
|
501
|
+
<dd id="disaster04">����</dd>
|
502
|
+
<dd id="disaster05">�л�</dd>
|
503
|
+
</dl>
|
504
|
+
|
505
|
+
<dl class="yjw_navi yjw_clr yjSt">
|
506
|
+
<dt>ŷ��������</dt>
|
507
|
+
<dd id="guide01">��������</dd>
|
508
|
+
<dd id="guide02">ŷ����</dd>
|
509
|
+
<dd id="guide03">�������</dd>
|
510
|
+
<dd id="guide04">������ư��</dd>
|
511
|
+
<dd id="guide05">����������졼����</dd>
|
512
|
+
<dd id="guide06">�������</dd>
|
513
|
+
<dd id="guide07">����ŷ��</dd>
|
514
|
+
<dd id="guide08">Ĺ��ͽ��</dd>
|
515
|
+
<dd id="guide09"><a href="/weather/jp/past/1b/1400.html">����ŷ��<!--- SUB_AREA ---></a></dd>
|
516
|
+
<dd id="guide10">��ͽ¬</dd>
|
517
|
+
<dd id="guide11">����Ƚ��</dd>
|
518
|
+
<dd id="guide12">��ͽ¬</dd>
|
519
|
+
<dd id="guide13"><a href="/weather/jp/kafun/1b.html">��ʴ����</a></dd>
|
520
|
+
</dl>
|
521
|
+
|
522
|
+
<!--- �ؿ����� --->
|
523
|
+
<dl class="yjw_navi2 yjw_clr yjSt">
|
524
|
+
<dt>�ؿ�����</dt>
|
525
|
+
<dd>
|
526
|
+
<dl class="yjw_clr">
|
527
|
+
<dt>��ǯ</dt>
|
528
|
+
<dd id="sisuu-yearly01"><a href="/weather/jp/expo/clothdried/1b/1400.html">���� </a></dd>
|
529
|
+
<dd id="sisuu-yearly02"><a href="/weather/jp/expo/uv/1b/1400.html">�糰��</a></dd>
|
530
|
+
<dd id="sisuu-yearly03"><a href="/weather/jp/expo/umbrella/1b/1400.html">�� </a></dd>
|
531
|
+
<dd id="sisuu-yearly04"><a href="/weather/jp/expo/starry/1b/1400.html">����</a></dd>
|
532
|
+
</dl>
|
533
|
+
</dd>
|
534
|
+
<dd>
|
535
|
+
<dl class="yjw_clr">
|
536
|
+
<dt>�Ƶ�</dt>
|
537
|
+
<dd id="sisuu-summer01"><a href="/weather/jp/expo/beer/1b/1400.html">�ӡ���</a></dd>
|
538
|
+
<dd id="sisuu-summer02"><a href="/weather/jp/expo/sweat/1b/1400.html">������</a></dd>
|
539
|
+
<dd id="sisuu-summer03"><a href="/weather/jp/expo/icecream/1b/1400.html">������</a></dd>
|
540
|
+
<!---
|
541
|
+
<dd id="sisuu-summer04"><a href="/weather/jp/expo/heatsyndrome/1b/1400.html">Ǯ���</a></dd>
|
542
|
+
<dt>�ߵ�</dt>
|
543
|
+
<dd id="sisuu-winter01"><a href="/weather/jp/expo/cough/1b/1400.html">���٤Ҥ�</a></dd>
|
544
|
+
<dd id="sisuu-winter02"><a href="/weather/jp/expo/hotpot/1b/1400.html">��</a></dd>
|
545
|
+
<dd id="sisuu-winter03"><a href="/weather/jp/expo/skindried/1b/1400.html">ȩ�Ӥ�</a></dd>
|
546
|
+
--->
|
547
|
+
</dl>
|
548
|
+
<!---�����ץ�--->
|
549
|
+
<dd>
|
550
|
+
<dl class="yjw_clr">
|
551
|
+
<dt>����¾�λؿ�����ʳ��������ȡ�</dt>
|
552
|
+
<dd id="sisuu-open01"><a href="http://rd.yahoo.co.jp/media/weather/open/sisuu_leisure/dress/SIG=11d0dvkgk/*http%3A//tenki.jp/indexes/dress/city-4.html" target=open">����</a></dd>
|
553
|
+
<dd id="sisuu-open02"><a href="http://rd.yahoo.co.jp/media/weather/open/sisuu_leisure/selftemp/SIG=11hf0jp1n/*http%3A//tenki.jp/indexes/self_temp/city-4.html" target=open">�����</a></dd>
|
554
|
+
<dd id="sisuu-open03"><a href="http://rd.yahoo.co.jp/media/weather/open/sisuu_leisure/odekake/SIG=11fb5ngn2/*http%3A//tenki.jp/indexes/odekake/city-4.html" target=open">������</a></dd>
|
555
|
+
<dd id="sisuu-open04"><a href="http://rd.yahoo.co.jp/media/weather/open/sisuu_leisure/carwashing/SIG=11i6g3dav/*http%3A//tenki.jp/indexes/carwashing/city-4.html" target=open">����</a></dd>
|
556
|
+
<dd id="sisuu-open05"><a href="http://rd.yahoo.co.jp/media/weather/open/sisuu_leisure/reibo/SIG=11dp57ppi/*http%3A//tenki.jp/indexes/reibo/city-4.html" target=open">��˼</a></dd>
|
557
|
+
<dd id="sisuu-open06"><a href="http://rd.yahoo.co.jp/media/weather/open/sisuu_leisure/discomfort/SIG=11idkh9jr/*http%3A//tenki.jp/indexes/discomfort/city-4.html" target=open">�Բ��ؿ�</a></dd>
|
558
|
+
|
559
|
+
</dl>
|
560
|
+
</dd>
|
561
|
+
<!---/�����ץ�--->
|
562
|
+
</dd>
|
563
|
+
</dl>
|
564
|
+
|
565
|
+
</div>
|
566
|
+
<!--- ==========/�������Х�ʥӥ��������========== --->
|
567
|
+
|
568
|
+
<!-- SpaceID=0 robot -->
|
569
|
+
|
570
|
+
|
571
|
+
<!--- ����� --->
|
572
|
+
<!--- RELATED_CATEGORY --->
|
573
|
+
<div class="yjw_sub_md_lined"><table border="0" cellpadding="0" cellspacing="5" width="100%"><tr><td align="center" width="1%"><a href="http://rd.yahoo.co.jp/mobile/qr/weather/top/?http://weather.yahoo.co.jp/weather/promo/mobile/"><img src="http://i.yimg.jp/images/weather/mobile/qrcode_top.gif" alt="��Х�����Yahoo!ŷ������˥���������" border="0"></a></td><td><p class="yjSt" style="display:block;text-align:center;word-break:break-all;"><a href="http://rd.yahoo.co.jp/mobile/qr/weather/top/?http://mobile.yahoo.co.jp/service/know.html#weather">http://weather.mobile.yahoo.co.jp/</a></p><p class="yjS s130 yjw_bg_gray" style="text-align:center;margin:5px">��Х�����Yahoo!ŷ�������<br>���������� <a href="http://rd.yahoo.co.jp/mobile/qr/weather/top/?http://weather.yahoo.co.jp/weather/promo/mobile/">������</a></p></td></tr></table></div>
|
574
|
+
|
575
|
+
<!--- /RELATED_CATEGORY --->
|
576
|
+
<!--- ����� --->
|
577
|
+
|
578
|
+
</div><!---/sub end--->
|
579
|
+
<!---/RHIGT_COLUMN--->
|
580
|
+
|
581
|
+
</div><!---/#contents-body end--->
|
582
|
+
|
583
|
+
|
584
|
+
<div id="contents-footer">
|
585
|
+
<span class="yj-guid"><img src="http://i.yimg.jp/images/clear.gif" width="1" height="1" alt="��ʸ�Ϥ����ޤǤǤ�"></span>
|
586
|
+
<span class="yj-skip">
|
587
|
+
<a href="#pagetop"><img src="http://i.yimg.jp/images/clear.gif" alt="���Υڡ�������Ƭ��" width="1" height="1"></a></span>
|
588
|
+
</div><!---/#contents-footer end--->
|
589
|
+
</div><!---/#contents end--->
|
590
|
+
<!---/contents end--->
|
591
|
+
|
592
|
+
<hr class="separation">
|
593
|
+
|
594
|
+
<div id="footer">
|
595
|
+
<address>
|
596
|
+
|
597
|
+
|
598
|
+
|
599
|
+
<a href="http://docs.yahoo.co.jp/docs/info/terms/chapter1.html#cf2nd">�ץ饤�Х����ݥꥷ��</a> - <a href="http://docs.yahoo.co.jp/docs/info/terms/">���ѵ���</a> - <a href="http://rd.yahoo.co.jp/media/weather/footer/feedback/?http://ms.yahoo.co.jp/bin/yadv-info/feedback/">���ո�������˾</a> - <a href="http://help.yahoo.co.jp/help/jp/weather/">�إ�ס����䤤��碌</a><br>
|
600
|
+
Copyright (C) 2010 Japan Weather Association All Rights Reserved.<br>Copyright (C) 2010 Yahoo Japan Corporation. All Rights Reserved.</address></div>
|
601
|
+
|
602
|
+
</div><!---/#wrapper end--->
|
603
|
+
<!---/wrapper end--->
|
604
|
+
|
605
|
+
</body>
|
606
|
+
</html>
|
607
|
+
|
608
|
+
<!-- www52.weath.ogk.yahoo.co.jp uncompressed Sat Apr 3 00:37:05 JST 2010 -->
|