annotate templates/envSetting.html @ 164:254d8a21bf36

fix: ͽÌóºÑ¤ß¤Î̤¼Â¹ÔÏ¿²è¤Ërecomplete.php¤¬É¬ÍפʤΤÇÌᤷ¤¿
author Sushi-k <epgrec@park.mda.or.jp>
date Tue, 06 Apr 2010 11:03:45 +0900
parents cce6f88590fd
children 10b2306693d9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
2 "http://www.w3.org/TR/html4/loose.dtd">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
3 <html>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
4 <head>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
6 <meta http-equiv="Content-Style-Type" content="text/css">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
7 <title>{$sitetitle}</title>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
8
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
9 <script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
10 <script type="text/javascript" src="js/jquery.validate.min.js"></script>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
11 <script type="text/javascript" src="js/messages_ja.js"></script>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
12
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
13 <script type="text/javascript">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
14 <!--
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
15 {literal}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
16
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
17 var PRG = {
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
18 force_cont:function() {
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
19 if( $('#id_force_cont_rec' ).val() == 0 ) {
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
20 $('#id_rec_switch_time').attr('disabled','disabled');
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
21 }
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
22 else {
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
23 $('#id_rec_switch_time').attr('disabled',false);
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
24 }
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
25 }
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
26 }
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
27 $(document).ready(function(){
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
28 $("#env_setting").validate();
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
29 PRG.force_cont();
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
30 });
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
31
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
32 {/literal}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
33
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
34 -->
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
35 </script>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
36
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
37
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
38 <style type="text/css">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
39 <!--
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
40 {literal}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
41
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
42 body {padding:4px;margin:0;font-size:10pt; width: 85%;}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
43 a {text-decoration:none;}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
44
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
45 .bold {font-weight:bold;}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
46 .small {font-size:75%;}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
47
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
48 div.setting { padding: 0px; margin-left: 20px; margin-bottom: 20px;}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
49
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
50 {/literal}
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
51 -->
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
52 </style>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
53 </head>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
54 <body>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
55
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
56
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
57
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
58 <form id="env_setting" method="post" action="{$post_to}">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
59
40
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents: 32
diff changeset
60 <div>{$message}</div>
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents: 32
diff changeset
61
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
62 <h2>デジタルãƒãƒ¥ãƒ¼ãƒŠãƒ¼è¨­å®š</h2>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
63
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
64
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
65 <h3>地デジãƒãƒ¥ãƒ¼ãƒŠãƒ¼ã®å°æ•°</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
66 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
67 <div class="caption">サーãƒãƒ¼ã«æŽ¥ç¶šã•ã‚Œã¦ã„る地デジãƒãƒ¥ãƒ¼ãƒŠãƒ¼ã®å°æ•°ã‚’設定ã—ã¦ãã ã•ã„。地デジãƒãƒ¥ãƒ¼ãƒŠãƒ¼ã‚’æŒã£ã¦ã„ãªã„å ´åˆã€0ã«ã—ã¾ã™ã€‚</div>
63
3d59472e08dd fix: typo and ereg_replace replace to preg_replace
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 61
diff changeset
68 <input type="text" name="gr_tuners" value="{$settings->gr_tuners}" size="3" class="required digits" />
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
69 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
70
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
71 <h3>BSãƒãƒ¥ãƒ¼ãƒŠãƒ¼ã®å°æ•°</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
72 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
73 <div class="caption">サーãƒãƒ¼ã«æŽ¥ç¶šã•ã‚Œã¦ã„ã‚‹BSãƒãƒ¥ãƒ¼ãƒŠãƒ¼ã®å°æ•°ã‚’設定ã—ã¦ãã ã•ã„。BSãƒãƒ¥ãƒ¼ãƒŠãƒ¼ã‚’æŒã£ã¦ã„ãªã„å ´åˆã€0ã«ã—ã¾ã™ã€‚</div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
74 <input type="text" name="bs_tuners" value="{$settings->bs_tuners}" size="3" class="required digits" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
75 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
76
67
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
77 <h3>CS録画ã®æœ‰ç„¡</h3>
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
78 <div class="setting">
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
79 <div class="caption">ã“ã®è¨­å®šã‚’「行ã†ã€ã«ã™ã‚‹ã¨CS放é€ã‚’加味ã—ãŸå‹•ä½œã¨ãªã‚Šã¾ã™ã€‚CS放é€ã‚’使用ã—ãªã„æ–¹ã¯ã€Œä½¿ã‚ãªã„ã€ã«è¨­å®šã—ã¦ãã ã•ã„。</div>
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
80 <select name="cs_rec_flg" id="id_cs_rec_flg" >
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
81 <option value="0" {if $settings->cs_rec_flg == 0} selected {/if}>è¡Œã‚ãªã„</option>
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
82 <option value="1" {if $settings->cs_rec_flg == 1} selected {/if}>è¡Œã†</option>
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
83 </select>
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
84 </div>
a2c4665b310c add: CS support (thanks to dakku)
Sushi-k <epgrec@park.mda.or.jp>
parents: 63
diff changeset
85
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
86 <h2>録画関連設定</h2>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
87
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
88
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
89 <h3>録画開始ã®ä½™è£•æ™‚間(秒)</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
90 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
91 <div class="caption">epgrecã¯ç•ªçµ„開始時間より早ã録画を開始ã—ã¾ã™ã€‚ã©ã®ãらã„録画開始を早ã‚ã‚‹ã‹ã‚’秒ã§è¨­å®šã—ã¦ãã ã•ã„。早ã‚る時間を短ãã—ã™ãŽã‚‹ã¨ã€ç•ªçµ„冒頭ãŒã¨ãŽã‚Œã‚‹æã‚ŒãŒã‚ã‚Šã¾ã™ã€‚設定ã§ãる時間ã¯0秒以上180秒未満ã§ã™ã€‚</div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
92 <input type="text" name="former_time" value="{$settings->former_time}" size="4" class="required digits" min="0" max="179" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
93 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
94
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
95 <h3>録画時間を長ã‚ã«ã™ã‚‹</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
96 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
97 <div class="caption">下ã®æ¬„ã«0以上ã®ç§’数を設定ã™ã‚‹ã¨ã€ã™ã¹ã¦ã®ç•ªçµ„ã«å¯¾ã—ã¦è¨­å®šã—ãŸç§’数分ã ã‘録画時間を延ã°ã—ã¾ã™ã€‚ã“ã®è¨­å®šã¯ã€Œé€£ç¶šã—ãŸç•ªçµ„ã®äºˆç´„ã€è¨­å®šã¨ç›¸æ€§ãŒè‰¯ãã‚ã‚Šã¾ã›ã‚“。0以外ã®ç§’を設定ã™ã‚‹å ´åˆã€é€£ç¶šã—ãŸç•ªçµ„ã®äºˆç´„ãŒè¡Œã„ã¥ã‚‰ããªã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。推奨値ã¯0ã§ã™ã€‚</div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
98 <input type="text" name="extra_time" value="{$settings->extra_time}" size="4" class="required digits" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
99 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
100
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
101 <h3>連続ã—ãŸç•ªçµ„ã®äºˆç´„</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
102 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
103 <div class="caption">ã“ã®è¨­å®šã‚’「行ã†ã€ã«ã™ã‚‹ã¨epgrecãŒè‡ªå‹•çš„ã«ç›´å‰ã®æ™‚é–“ã«äºˆç´„ã•ã‚Œã¦ã„る番組ã®éŒ²ç”»æ™‚間を短縮ã—ã¦æ™‚é–“ãŒé€£ç¶šã—ã¦ã„る番組ã®äºˆç´„ã‚’å¯èƒ½ã«ã—ã¾ã™ã€‚録画時間を短縮ã™ã‚‹æ™‚é–“ã¯ã€ŒéŒ²ç”»é–‹å§‹ã®ä½™è£•æ™‚é–“ã€ï¼‹ã€ŒéŒ²ç”»ã‚³ãƒžãƒ³ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆæ™‚é–“ã€ã§ã™ã€‚ã“ã®æ©Ÿèƒ½ã‚’使ã£ã¦é€£ç¶šã—ãŸç•ªçµ„を予約ã™ã‚‹å ´åˆã€å‰ã®æ™‚é–“ã®ç•ªçµ„ã®æœ€å¾ŒãŒã¨ãŽã‚Œã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ãŒã€ãƒãƒ¥ãƒ¼ãƒŠãƒ¼ãŒ1å°ã—ã‹ç„¡ãã¦ã‚‚キーワード自動録画ã«ã‚ˆã‚‹é€£ç¶šã—ãŸç•ªçµ„ã®äºˆç´„ãŒå¯èƒ½ã«ãªã‚Šã¾ã™ã€‚メリットã¨ãƒ‡ãƒ¡ãƒªãƒƒãƒˆã‚’よã考ãˆã¦è¨­å®šã—ã¦ãã ã•ã„。</div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
104 <select name="force_cont_rec" id="id_force_cont_rec" onChange="javascript:PRG.force_cont()" >
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
105 <option value="0" {if $settings->force_cont_rec == 0} selected {/if}>è¡Œã‚ãªã„</option>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
106 <option value="1" {if $settings->force_cont_rec == 1} selected {/if}>è¡Œã†</option>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
107 </select>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
108 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
109
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
110
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
111 <h3>録画コマンドã®åˆ‡ã‚Šæ›¿ãˆæ™‚é–“</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
112 <div class="setting">
61
87ded65fa485 add: keyword link
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 52
diff changeset
113 <div class="caption">連続ã—ãŸç•ªçµ„を予約ã™ã‚‹ã¨ãã€éŒ²ç”»ãŒçµ‚了ã—ã¦æ¬¡ã®éŒ²ç”»ã‚’開始ã™ã‚‹ã¾ã§ã®ä½™è£•æ™‚間(秒)を設定ã—ã¾ã™ã€‚1以上ã®ç§’数を設定ã—ã¦ãã ã•ã„。設定ã™ã‚‹ç§’æ•°ãŒçŸ­ã„ã»ã©éŒ²ç”»æ™‚間を短縮ã™ã‚‹æ™‚é–“ãŒçŸ­ããªã‚Šã¾ã™ãŒã€ã“ã®æ™‚間を短ãã—ã™ãŽã‚‹ã¨é€£ç¶šã—ãŸç•ªçµ„ã®äºˆç´„ã«å¤±æ•—ã™ã‚‹æã‚ŒãŒã‚ã‚Šã¾ã™ã€‚失敗ã™ã‚‹ã‹ã©ã†ã‹ã¯ä½¿ç”¨ã—ã¦ã„る録画コマンドやãƒãƒ¥ãƒ¼ãƒŠãƒ¼ã«ä¾å­˜ã—ã¾ã™ã€‚</div>
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
114 <input type="text" name="rec_switch_time" id="id_rec_switch_time" value="{$settings->rec_switch_time}" size="4" class="required digits" min="1" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
115 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
116
66
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
117
80
cce6f88590fd add: db table updater script.
Sushi-k <epgrec@park.mda.or.jp>
parents: 69
diff changeset
118 <h3>優先ã™ã‚‹éŒ²ç”»ãƒ¢ãƒ¼ãƒ‰</h3>
66
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
119 <div class="setting">
80
cce6f88590fd add: db table updater script.
Sushi-k <epgrec@park.mda.or.jp>
parents: 69
diff changeset
120 <div class="caption">キーワード自動録画や簡易録画を行ã†ç•ªçµ„ã®éŒ²ç”»ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã—ã¾ã™ã€‚config.phpã®$RECORD_MODEã«è¤‡æ•°ã®éŒ²ç”»ãƒ¢ãƒ¼ãƒ‰ã‚’登録ã—ã€do-record.shをカスタマイズã¦ã„ã‚‹ã®ã§ã‚ã‚Œã°ã€ãã®éŒ²ç”»ãƒ¢ãƒ¼ãƒ‰ã‚’優先ã—ã¦åˆ©ç”¨ã§ãã¾ã™ã€‚キーワード自動録画ã¯ã‚­ãƒ¼ãƒ¯ãƒ¼ãƒ‰ç™»éŒ²æ™‚ã«éŒ²ç”»ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚デフォルトã¯ãƒ¢ãƒ¼ãƒ‰0ã§ã™ã€‚
66
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
121 </div>
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
122 <select name="autorec_mode" id="id_autorec_mode" >
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
123 {foreach from=$record_mode item=mode name=recmode}
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
124 <option value="{$smarty.foreach.recmode.index}" {if $settings->autorec_mode == $smarty.foreach.recmode.index} selected {/if}>{$mode.name}</option>
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
125 {/foreach}
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
126 </select>
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
127 </div>
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
128
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
129
3d6e7c606896 testing: auto record with mode
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 63
diff changeset
130
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
131 <h3>mediatomb連係機能</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
132 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
133 <div class="caption">ã“ã®è¨­å®šã‚’「使ã†ã€ã«ã™ã‚‹ã¨éŒ²ç”»ã—ãŸç•ªçµ„ã®ã‚¿ã‚¤ãƒˆãƒ«ã¨æ¦‚è¦ã‚’mediatombã«å映ã•ã›ã¾ã™ã€‚mediatombを使用ã—ã¦ã„ãªã„æ–¹ã¯ã€Œä½¿ã‚ãªã„ã€ã«è¨­å®šã—ã¦ãã ã•ã„。ãªãŠã€ã“ã®è¨­å®šã‚’利用ã™ã‚‹ã«ã¯mediatombå´ã®è¨­å®šã‚‚å¿…è¦ã«ãªã‚Šã¾ã™ã€‚詳ã—ãã¯ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆã‚’å‚ç…§ã—ã¦ãã ã•ã„。
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
134 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
135 <select name="mediatomb_update" id="id_mediatomb_update" >
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
136 <option value="0" {if $settings->mediatomb_update == 0} selected {/if}>使ã‚ãªã„</option>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
137 <option value="1" {if $settings->mediatomb_update == 1} selected {/if}>使ã†</option>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
138 </select>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
139 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
140
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
141 <h3>録画ファイルåã®å½¢å¼</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
142 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
143 <div class="caption">epgrecã¯éŒ²ç”»ãƒ•ã‚¡ã‚¤ãƒ«åをカスタマイズã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚下ã®æ¬„ã«ãƒ•ã‚¡ã‚¤ãƒ«åã®ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã‚’記入ã—ã¦ãã ã•ã„。フォーマットã«ä½¿ç”¨ã§ãる特殊文字列ã¯ä»¥ä¸‹ã®é€šã‚Šã§ã™ã€‚
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
144
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
145 <table cellspacing="1" border="1">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
146 <thead>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
147 <tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
148 <th>特殊文字列</th><th>ç½®æ›å¾Œã®å†…容</th>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
149 </tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
150 </thead>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
151 <tbody>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
152 <tr><td>%TITLE%</td><td>番組タイトル</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
153 <tr><td>%ST%</td><td>開始日時(ex.200907201830)</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
154 <tr><td>%ET%</td><td>終了日時(åŒä¸Šï¼‰</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
155 <tr><td>%TYPE%</td><td>GRã¾ãŸã¯BS</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
156 <tr><td>%CH%</td><td>ãƒãƒ£ãƒ³ãƒãƒ«ç•ªå·</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
157 <tr><td>%DOW%</td><td>曜日(英3文字Sun-Mon)</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
158 <tr><td>%DOWJ%</td><td>曜日(漢字1字日-土)</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
159 <tr><td>%YEAR%</td><td>開始年</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
160 <tr><td>%MONTH%</td><td>開始月</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
161 <tr><td>%DAY%</td><td>開始日</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
162 <tr><td>%HOUR%</td><td>開始時</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
163 <tr><td>%MIN%</td><td>開始分</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
164 <tr><td>%SEC%</td><td>開始秒</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
165 <tr><td>%DURATION%</td><td>録画時間(秒)</td></tr>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
166 </tbody>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
167 </table>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
168 ãŸã¨ãˆã°ã€<p>%YEAR%å¹´%MONTH%月%DAY%æ—¥%HOUR%時%MIN%分%SEC%秒_%TYPE%%CH%_%TITLE%</p>ã¨è¨­å®šã™ã‚‹ã¨<p>2009å¹´07月15æ—¥12時49分16秒_GR21_番組タイトル.ts</p>ã¨ã„ã†ã‚ˆã†ãªå½¢å¼ã®éŒ²ç”»ãƒ•ã‚¡ã‚¤ãƒ«ãŒç”Ÿæˆã•ã‚Œã¾ã™ã€‚%TYPE%ã‚„%CH%ãªã©ã‚’æ··ãœã€ç•°ãªã‚‹ç•ªçµ„ã«åŒã˜éŒ²ç”»ãƒ•ã‚¡ã‚¤ãƒ«ãŒç”Ÿæˆã•ã‚Œãªã„よã†æ³¨æ„ã—ã¦ãã ã•ã„。ãªãŠã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ãŒUTF-8以外ã®æ–‡å­—コードã§ã€ãƒ•ã‚¡ã‚¤ãƒ«åã«æ—¥æœ¬èªžã‚’交ãœã‚‹å ´åˆã€config.php内ã®å®šæ•°FILESYSTEM_ENCODINGã«æ–‡å­—コードを設定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ãŸã ã—ã€UTF-8以外ã®æ–‡å­—コードã¯ãƒ†ã‚¹ãƒˆã‚’è¡Œã£ã¦ã„ãªã„ãŸã‚推奨ã—ã¾ã›ã‚“。</div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
169 <input type="text" name="filename_format" value="{$settings->filename_format}" size="40" class="required" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
170 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
171
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
172 <h2>番組表表示設定</h2>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
173
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
174 以下ã®è¨­å®šã¯å®Ÿéš›ã«åˆ©ç”¨ã—ã¦æ§˜å­ã‚’見ãªãŒã‚‰è¨­å®šã—ãŸæ–¹ãŒã„ã„ã§ã—ょã†ã€‚
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
175
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
176 <h3>ページã«è¡¨ç¤ºã™ã‚‹ç•ªçµ„表ã®é•·ã•ï¼ˆæ™‚間)</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
177 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
178 <div class="caption">1ページã«è¡¨ç¤ºã™ã‚‹ç•ªçµ„表ã®é•·ã•ã‚’時間ã§è¨­å®šã—ã¾ã™ã€‚標準ã¯8時間分ã§ã™ã€‚</div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
179 <input type="text" name="program_length" value="{$settings->program_length}" size="2" class="required digits" min="2" max="24" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
180 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
181
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
182
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
183 <h3>1å±€ã‚ãŸã‚Šã®å¹…</h3>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
184 <div class="setting">
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
185 <div class="caption">番組表ã®1局当ãŸã‚Šã®å¹…をピクセル数ã§è¨­å®šã—ã¾ã™ã€‚標準ã¯150ピクセルã§ã™ã€‚</div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
186 <input type="text" id="ch_set_width" name="ch_set_width" value="{$settings->ch_set_width}" size="4" class="required digits" min="20" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
187 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
188
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
189
61
87ded65fa485 add: keyword link
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 52
diff changeset
190 <h3>1時間ã‚ãŸã‚Šã®é«˜ã•</h3>
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
191 <div class="setting">
61
87ded65fa485 add: keyword link
yoneda <yoneda@recorder.localnet.mda.or.jp>
parents: 52
diff changeset
192 <div class="caption">番組表ã®1時間ã‚ãŸã‚Šã®é«˜ã•ã‚’ピクセル数ã§è¨­å®šã—ã¾ã™ã€‚標準ã¯120ピクセルã§ã™ã€‚ãªãŠã€60ã§å‰²ã‚Šåˆ‡ã‚Œãªã„ピクセル数を指定ã™ã‚‹ã¨Firefoxを除ãブラウザã§ã¯ç•ªçµ„ã®é«˜ã•ãŒæƒã‚ãªããªã‚Šè¦‹ãŸç›®ãŒæ‚ªããªã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。ã“ã‚Œã¯Firefox以外ã®ãƒ–ラウザã§ã¯å®Ÿæ•°ã®ãƒ”クセルを正ã—ãレンダリングã—ãªã„ãŸã‚ã§ã™ã€‚</div>
32
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
193 <input type="text" id="height_per_hour" name="height_per_hour" value="{$settings->height_per_hour}" size="4" class="required digits" min="30" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
194 </div>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
195
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
196
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
197 <input type="submit" value="設定をä¿å­˜ã™ã‚‹" id="env_setting-submit" />
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
198 </form>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
199 </body>
01a8fdc0cebb testing: Web base setting page.
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
200 </html>