/[suikacvs]/markup/html/html5/spec-ja/data/communications.dat
Suika

Diff of /markup/html/html5/spec-ja/data/communications.dat

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by apache, Tue Aug 12 01:43:26 2008 UTC revision 1.14 by apache, Tue Aug 12 09:11:00 2008 UTC
# Line 8  Line 8 
8  #pattern  #pattern
9  <span class=secno>* </span>Event definitions  <span class=secno>* </span>Event definitions
10  #ja  #ja
 <span class=secno>$1 </span>事象定義  
11    <span class=secno>$1 </span>事象定義
12    
13    #en
14    Messages in <a href="#server-sent">server-sent events</a>, <a
15       href="#web-sockets">Web sockets</a>, <a
16       href="#cross-document">cross-document messaging</a>, and <a
17       href="#channel0">channel messaging</a> use the <dfn id=message2
18       title=event-message><code>message</code></dfn> event.
19    #ja
20    <a href="#server-sent">鯖送信事象</a>、<a
21       href="#web-sockets">Web ソケット</a>、<a
22       href="#cross-document">文書間メッセージ交換</a>、<a
23       href="#channel0">通信路メッセージ交換</a>のメッセージは<dfn id=message2
24       title=event-message><code>message</code></dfn> 事象を使います。
25    
26    #en
27    The following interface is defined for this event:
28    #ja
29    次の界面はこの事象のために定義されています。
30    
31    #pattern
32    The <dfn id=*
33       title=dom-*><code>*()</code></dfn>
34       and <dfn id=*
35       title=dom-*><code>*()</code></dfn>
36       methods must initialise the event in a manner analogous to the
37       similarly-named methods in the DOM3 Events interfaces. <a
38       href="#refsDOM3EVENTS">[DOM3EVENTS]</a>
39    #ja
40    <dfn id=$1
41       title=dom-$2><code>$3()</code></dfn>
42       メソッドと <dfn id=$4
43       title=dom-$5><code>initMessageEventNS()</code></dfn>
44    メソッドは、 DOM3 事象界面の似たような名前のメソッドと同じような方法で事象を初期化しなければ[[MUST:なりません]]。
45    <a
46       href="#refsDOM3EVENTS">[DOM3EVENTS]</a>
47    
48    #en
49    The <dfn id=data4 title=dom-MessageEvent-data><code>data</code></dfn>
50       attribute represents the message being sent.
51    #ja
52    <dfn id=data4 title=dom-MessageEvent-data><code>data</code></dfn>
53    属性は送信されたメッセージを表します。
54    
55    #en
56    The <dfn id=origin1
57       title=dom-MessageEvent-origin><code>origin</code></dfn> attribute
58       represents, in <a href="#server-sent">server-sent events</a> and <a
59       href="#cross-document">cross-document messaging</a>, the <a
60       href="#origin0">origin</a> of the document that sent the message
61       (typically the scheme, hostname, and port of the document, but not its
62       path or fragment identifier).
63    #ja
64    <dfn id=origin1
65       title=dom-MessageEvent-origin><code>origin</code></dfn>
66    属性は、 <a href="#server-sent">鯖送信事象</a>と<a
67       href="#cross-document">文書間メッセージ交換</a>において、メッセージを送信した文書の<a
68       href="#origin0">起源</a>
69    (普通は当該文書の scheme と hostname と port で、 path や素片識別子は含みません。)
70    を表します。
71    
72    #en
73    The <dfn id=lasteventid
74       title=dom-MessageEvent-lastEventId><code>lastEventId</code></dfn>
75       attribute represents, in <a href="#server-sent">server-sent events</a>,
76       the <span>last event ID string</span> of the event source.
77    #ja
78    <dfn id=lasteventid
79       title=dom-MessageEvent-lastEventId><code>lastEventId</code></dfn>
80    属性は、<a href="#server-sent">鯖送信事象</a>において、
81    事象源の<span>最終事象識別子文字列</span>を表します。
82    
83    #en
84    The <dfn id=source3
85       title=dom-MessageEvent-source><code>source</code></dfn> attribute
86       represents, in <a href="#cross-document">cross-document messaging</a>, the
87       <code><a href="#window">Window</a></code> from which the message came.
88    #ja
89    <dfn id=source3
90       title=dom-MessageEvent-source><code>source</code></dfn> 属性は、
91    <a href="#cross-document">文書間メッセージ交換</a>において、
92    メッセージが送られて来た元の
93    <code><a href="#window">Window</a></code> を表します。
94    
95    #en
96    The <dfn id=messageport
97       title=dom-MessageEvent-messagePort><code>messagePort</code></dfn>
98       attribute represents, in <a href="#cross-document">cross-document
99       messaging</a> and <a href="#channel0">channel messaging</a> the <code><a
100       href="#messageport0">MessagePort</a></code> being sent, if any.
101    #ja
102    <dfn id=messageport
103       title=dom-MessageEvent-messagePort><code>messagePort</code></dfn>
104    属性は、<a href="#cross-document">文書間メッセージ交換</a>と<a href="#channel0">通信路メッセージ交換</a>において、
105    送信された <code><a
106       href="#messageport0">MessagePort</a></code> があれば、
107    それを表します。
108    
109    
110    #en
111    Unless otherwise specified, when the user agent creates and dispatches a
112       <code title=event-message><a href="#message2">message</a></code> event in
113       the algorithms described in the following sections, the <code
114       title=dom-MessageEvent-lastEventId><a
115       href="#lasteventid">lastEventId</a></code> attribute must be the empty
116       string, the <code title=dom-MessageEvent-origin><a
117       href="#origin1">origin</a></code> attribute must be the empty string, the
118       <code title=dom-MessageEvent-source><a href="#source3">source</a></code>
119       attribute must be null, and the <code
120       title=dom-MessageEvent-messagePort><a
121       href="#messageport">messagePort</a></code> attribute must be null.
122    #ja
123    特に規定がない場合、利用者エージェントが以後の節で説明する算法の中で
124    <code title=event-message><a href="#message2">message</a></code>
125    事象を作成して発送する時に、 <code
126       title=dom-MessageEvent-lastEventId><a
127       href="#lasteventid">lastEventId</a></code> 属性は空文字列でなければ[[MUST:ならず]]、
128    <code title=dom-MessageEvent-origin><a
129       href="#origin1">origin</a></code> 属性は空文字列でなければ[[MUST:ならず]]、
130    <code title=dom-MessageEvent-source><a href="#source3">source</a></code>
131    属性は null でなければ[[MUST:ならず]]、 <code
132       title=dom-MessageEvent-messagePort><a
133       href="#messageport">messagePort</a></code>
134    属性は null でなければ[[MUST:なりません]]。
135    
136    
137    #pattern
138    <span class=secno>* </span><dfn
139       id=server-sent>Server-sent events</dfn>
140    #ja
141    <span class=secno>$1 </span><dfn
142       id=server-sent>鯖送信事象</dfn>
143    
144    #en
145    This section describes a mechanism for allowing servers to dispatch DOM
146       events into documents that expect it. The <code><a
147       href="#eventsource">eventsource</a></code> element provides a simple
148       interface to this mechanism.
149    #ja
150    この節は、鯖が事象を待ち受けている文書の中に DOM
151    事象を発送できるようにする仕組みを説明します。
152    <code><a
153       href="#eventsource">eventsource</a></code>
154    要素はこの仕組みに対する単純な界面を提供しています。

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.14

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24