From: morioka Date: Thu, 10 Sep 1998 02:24:12 +0000 (+0000) Subject: (Content-Type field): Translate. X-Git-Tag: flim-1_9_2~23 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fflim.git;a=commitdiff_plain;h=1126ce6d802977911ec3eb93a67749ba15609b44 (Content-Type field): Translate. (mime-content-type): Translate. (Content-Type parser): Translate. (Content-Disposition): Translate. (mime-content-disposition): Translate. (Content-Disposition parser): Translate. --- diff --git a/mime-en.sgml b/mime-en.sgml index a8e0e42..1ec1758 100644 --- a/mime-en.sgml +++ b/mime-en.sgml @@ -424,14 +424,14 @@ Content-Type field.

Format of Content-Type field Content-Type field

-Content-Type 欄の形式は以下のように定義されています: +Format of Content-Type field is defined as follows: ``Content-Type'' ``:'' type ``/'' subtype *( ``;'' parameter )

-例えば、 +For example: @@ -439,25 +439,20 @@ Content-Type: image/jpeg - -や - Content-Type: text/plain; charset=iso-2022-jp - - -などのように用いられます。

-ここで、`type' と `subtype' は entity の形式を示すもので、両者を総称し -て、`media-type' と呼ぶことにします。上記の例における `image/jpeg' や -`text/plain' は media-type の1つです。 +`type' and `subtype' indicate format of an entity. In this document, +pair of them is called `media-type'. `image/jpeg' or `text/plain' is +a media-type.

-Content-Type 欄のない entity は +If an entity does not have Content-Type field, it is regarded as +following: @@ -466,7 +461,7 @@ Content-Type: text/plain; charset=us-ascii -として解釈される。 + @@ -475,19 +470,20 @@ Content-Type: text/plain; charset=us-ascii

-Content-Type 欄の情報を格納するための構造体。 +Structure to store information of a Content-Type field.

-この構造体を参照するには mime-content-type-要素名 という名 -前の参照関数を用いる。 +Applications should use reference functions +mime-content-type-SLOT to refer information of the +structure.

-この構造体の要素は以下の通りである: +Slots of the structure are following: -

primary-type
media-type の主型 (symbol). +
primary-type
primary type of media-type (symbol).
-
subtype
media-type の副型 (symbol). +
subtype
subtype of media-type (symbol).
-
parameters
Content-Type 欄の parameter (連想 list). +
parameters
parameters of Content-Type field (association-list).
@@ -495,13 +491,13 @@ Content-Type 欄の情報を格納するための構造体。 type subtype parameters -

content-type の生成子。 +

Constructor of content-type. content-type parameter

-content-typeparameter の値を返す。 +Return value of parameter of content-type. @@ -511,14 +507,15 @@ Content-Type 欄の情報を格納するための構造体。 string

-string を content-type として解析した結果を返す。 +Parse string as field-body of Content-Type field.

-現在の buffer の Content-Type 欄を読み取り、解析した結果を返す。 +Read field-body of Content-Type field from current-buffer, +and return parsed it.

-Content-Type 欄が存在しない場合は nil を返す。 +Return nil if Content-Type field is not found. @@ -536,8 +533,9 @@ Return type/subtype string from type and

Information of Content-Disposition field Content-Disposition

-Content-Disposition 欄 は entity の表示や file 名など -の属性になどに関する情報を記述するためのものです。 +Content-Disposition field is an optional field to +specify presentation of an entity or attributes of an entity, such as +file name. type and Internet Messages: The Content-Disposition Header" date="August 1997">

-FLIM は Content-Disposition 欄を構文解析する関数と Content-Disposition -欄の解析結果を格納する構造体 -mime-content-disposition を提供します。 +FLIM provides parser for Content-Disposition field and structure +mime-content-disposition to store information of +Content-Disposition field.

mime-content-disposition structure @@ -555,17 +553,19 @@ FLIM は Content-Disposition 欄を構文解析する関数と Content-Dispositi

-Content-Disposition 欄の解析結果を収めるための構造体。 +Structure to store information of a Content-Disposition field.

-この構造体を参照するには mime-content-disposition-要素名 と -いう名前の参照関数を用いる。 +Applications should use reference functions +mime-content-disposition-SLOT to refer information of the +structure.

-この構造体の要素は以下の通りである: +Slots of the structure are following:

disposition-type
disposition-type (symbol).
-
parameters
Content-Disposition 欄の parameter (連想 list). +
parameters
parameters of Content-Disposition field +(association-list).
@@ -573,13 +573,14 @@ Content-Disposition 欄の解析結果を収めるための構造体。 content-disposition parameter

-content-dispositionparameter の値を返す。 +Return value of parameter of +content-disposition. content-disposition

-content-disposition の filename の値を返す。 +Return filename of content-disposition. @@ -589,14 +590,15 @@ Content-Disposition 欄の解析結果を収めるための構造体。 string

-string を content-disposition として解析した結果を返す。 +Parse string as field-body of Content-Disposition field, +and return the result.

-現在の buffer の Content-Disposition 欄を読み取り、解析した結果を返す。 +Read field-body of Content-Disposition field from current-buffer,

-Content-Disposition 欄が存在しない場合は nil を返す。 +Return nil if Content-Disposition field is not found.