* import 処理命令 (WinIE HTML) [1] ''IMPORT Processing Instruction'' [8] hm8568x-uuan2pi-tw6q97e9-0 buy hydrocodone http://www.onlinerx-phentermine.com/buying_phentermine.html#1 [url=http://www.ingilizce.com/forum/topic.asp?TOPIC_ID=4021#3]viagra online[/url] [url]http://dpx.aranadesign.com/forums/topic.asp?TOPIC_ID=27#4[/url] ([[buy viagra now]] [d81s_test49@hotmail.com]) [9] hm8568x-uuan2pi-tw6q97e9-0 buy hydrocodone http://www.onlinerx-phentermine.com/buying_phentermine.html#1 [url=http://www.ingilizce.com/forum/topic.asp?TOPIC_ID=4021#3]viagra online[/url] [url]http://dpx.aranadesign.com/forums/topic.asp?TOPIC_ID=27#4[/url] ([[buy viagra now]] [d81s_test49@hotmail.com]) [10] hm8568x-uuan2pi-tw6q97e9-0 buy hydrocodone http://www.onlinerx-phentermine.com/buying_phentermine.html#1 [url=http://www.ingilizce.com/forum/topic.asp?TOPIC_ID=4021#3]viagra online[/url] [url]http://dpx.aranadesign.com/forums/topic.asp?TOPIC_ID=27#4[/url] ([[buy viagra now]] [d81s_test49@hotmail.com]) [11] hm8568x-uuan2pi-tw6q97e9-0 buy hydrocodone http://www.onlinerx-phentermine.com/buying_phentermine.html#1 [url=http://www.ingilizce.com/forum/topic.asp?TOPIC_ID=4021#3]viagra online[/url] [url]http://dpx.aranadesign.com/forums/topic.asp?TOPIC_ID=27#4[/url] ([[buy viagra now]] [d81s_test49@hotmail.com]) [12] hm8568x-uuan2pi-tw6q97e9-0 buy hydrocodone http://www.onlinerx-phentermine.com/buying_phentermine.html#1 [url=http://www.ingilizce.com/forum/topic.asp?TOPIC_ID=4021#3]viagra online[/url] [url]http://dpx.aranadesign.com/forums/topic.asp?TOPIC_ID=27#4[/url] ([[buy viagra now]] [d81s_test49@hotmail.com]) [13] hm8568x-uuan2pi-tw6q97e9-0 buy hydrocodone http://www.onlinerx-phentermine.com/buying_phentermine.html#1 [url=http://www.ingilizce.com/forum/topic.asp?TOPIC_ID=4021#3]viagra online[/url] [url]http://dpx.aranadesign.com/forums/topic.asp?TOPIC_ID=27#4[/url] ([[buy viagra now]] [d81s_test49@hotmail.com]) [14] hm8568x-uuan2pi-tw6q97e9-0 buy hydrocodone http://www.onlinerx-phentermine.com/buying_phentermine.html#1 [url=http://www.ingilizce.com/forum/topic.asp?TOPIC_ID=4021#3]viagra online[/url] [url]http://dpx.aranadesign.com/forums/topic.asp?TOPIC_ID=27#4[/url] ([[buy viagra now]] [d81s_test49@hotmail.com]) [16] [PRE[ [URL=http://anxizqqh.com]rwqphprt[/URL] tiolvyed http://fmbjjctt.com zckjavyv aqanxzvl aajebabg ([[vuppytgd]] [ixjtcgva@hzbjxiwb.com] [WEAK[2007-06-16 12:08:14 +00:00]]) ]PRE] [17] fygxbavs [URL=http://mxgldjjc.com]dgwpakmn[/URL] remslugq http://uqxcagjp.com nawibbcf gsrquvdv ([[fmwzpsgj]] [jhvhosvr@xbviyrcx.com] [WEAK[2007-06-16 12:28:47 +00:00]]) [[#comment]] * メモ - [2] [CODE(XML)[import]] 要素 ([[XSLT]]) [3] ''Complex @import rules'' [CODE(CSS)[@import]] の各 UA の対応表。たしかに IE の対応状況は複雑怪奇。 ([[名無しさん]] [WEAK[2004-03-30 08:15:47 +00:00]]) [4] [CITE[New Internet Explorer @import hack - Anne’s Weblog about Markup & Style]] ([[名無しさん]] [WEAK[2005-10-17 23:42:31 +00:00]]) [5] [CITE[URI Expressions]] ([[名無しさん]]) [6] ERights Home / elang / io No Previous Sibling On to: Text File I/O [PRE[ ]PRE] URI Expressions The URI Literal Expression Example Meaning Value A file on the local file system a java.io.File object A web page a java.net.URL object Load a Java class or an EMaker the Class object for Vector Sturdy Reference A remote E object The URLs familiar from web browsing -- such as http://www.erights.org -- are actually a special case of a syntax known as a URI. (Not that it matters, but URL stands for Uniform Resource Locator, while URI stands for Uniform Resource Identifier.) E's grammar recognizes legal URIs (and therefore, legal URLs) enclosed in angle brackets as URI literal expressions. A URI literal expression starts with a protocol-identifier, such as "http" or "file", is followed immediately by a colon, which is immediately followed by the uri-body characters, such as "//www.erights.org" or "/jabberwocky.txt": [PRE[ ]PRE] The protocol-identifier is a simple identifier that names a URI-protocol handler. It is up to the named handler to interpret the uri-body and return the value of the URI expression. The value of a URI expression will usually depend on which protocol handler is named. The URI body must begin with one of these characters: [PRE[ a-z, A-Z, 0-9, any of ;/?@&+$-_.!~*'().%#\| ]PRE] After the first character, the URI body consists of characters from this set, plus "=" and ":". *** details: E doesn't quite recognize all legal URIs. The exceptions are the exclusion of "=" and ":" from the first uri-body character -- since it would cause confusion with ":=" (assignment) and "::" (reserved for future use). *** *** details: \ and | are not actually legal URI characters, but appear in Netscape and/or Internet Explorer (clarify this) to mean / and : respectively. Accordingly, E normalizes \ to / and | to : before passing these to the protocol handler. *** The URI Unary Expression (left associative) Example Meaning Value use a calculated value the File whose name is the value of expr To look up a file or a web page using a calculated name, rather than a name you know when you write the program, use the URI unary expression: [PRE[ ]PRE] So, for example, both [PRE[ def name := "c:/jabbertest/jabberwocky.txt" ]PRE] and [PRE[ ]PRE] mean the same thing. You can also use the URI unary expression to look up names that contain non-URI characters. For example, Windows machines have a top level directory names "Program Files". Since this name contains a space, you can't use the URI literal expression. But [PRE[ ]PRE] is just as good. The "file:" URI See Text File I/O. *** detail: to accomodate the way modern browsers operate on windows, a one-letter protocol handler is assumed to be a drive letter and turned into a file: uri whose body consists of the original uri. For example, [PRE[ ]PRE] is turned into [PRE[ ]PRE] which will fetch the file from your A drive (typically, a floppy). *** Standard URLs (http:, ftp:, gopher:, news:, and mailto:) These all evaluate to java.net.URL objects. See URLs. The "import:" URI > After "import:" comes a Java fully qualified class name. If there is a class by this name (or if one can be loaded), that class is the value of this expression. This enables the equivalent of Java's import statement. ([[名無しさん]] [sage]) [7] [CITE@en[Useful CSS Snippets - webSemantics]] ([[Mike Foskett]] 著, [CODE[2007-01-13 16:06:46 +09:00]] 版) ([[名無しさん]]) [15] [CITE@ja[XHTML BasicとCSS Mobile Profileを徹底マスターする]] ([CODE[2007-06-10 21:04:09 +09:00]] 版) > ※リンクとインポートの違い > 一見すると、リンクとインポートには違いがないように見える。実はスタイルを1 つだけ定義する場合には、どちらを使っても同じ結果になるのだ。ところが、1つのドキュメントに複数のスタイルを次々にリンクした場合、またはインポートした場合には事情が変わってくる。複数のリンクでは、次々と定義を上書きしていってしまう。これに対して、インポートではスタイルはマージされる。設定したスタイルで矛盾が発生する場合は、より後方で設定されたスタイルが使用される。 意味がわからない。 ([[名無しさん]])