# HG changeset patch # User Patrick PIERRE # Date 1388054627 -3600 # Node ID f2e60073557f7c67c3d16ae1e41ae8068ebd05fe # Parent f6b8ec2914ef2873e087ebb92161b55921a03c7c Ajout de quelques snippets diff -r f6b8ec2914ef -r f2e60073557f YASnippet/nxml-mode/.yas-compiled-snippets.el --- a/YASnippet/nxml-mode/.yas-compiled-snippets.el mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/nxml-mode/.yas-compiled-snippets.el jeu. déc. 26 11:43:47 2013 +0100 @@ -1,2 +1,2 @@ ;;; Compiled snippets and support files for `nxml-mode' -;;; Do not edit! File generated at Wed Dec 25 18:48:06 2013 +;;; Do not edit! File generated at Thu Dec 26 11:24:20 2013 diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/.yas-compiled-snippets.el --- a/YASnippet/publidoc-inline-mode/.yas-compiled-snippets.el mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/.yas-compiled-snippets.el jeu. déc. 26 11:43:47 2013 +0100 @@ -2,15 +2,20 @@ ;;; Snippet definitions: ;;; (yas-define-snippets 'publidoc-inline-mode - '(("<emp=" "<emphasis>$0</emphasis>" "<emphasis>" nil nil nil nil nil nil) - ("<hig=" "<highlight>$0</highlight>" "<highlight>" nil nil nil nil nil nil) - ("<lin=" "<link idref=\"$1\">$0</link>" "<link idref=\"…\">" nil nil nil nil nil nil) - ("<lin=" "<link uri=\"http://$1\">$0</link>" "<link uri=\"…\">" nil nil nil nil nil nil) - ("<men=" "<mentioned>$0</mentioned>" "<mentioned>" nil nil nil nil nil nil) - ("<nam=" "<name of=\"${1:$$(yas-choose-value '(\"person\" \"company\" \"book\" \"newspaper\" \"party\" \"movie\" \"painting\"))}\">$0</name>" "<name of=\"…\">" nil nil nil nil nil nil) - ("<not=" "<note>$0</note>" "<note>" nil nil nil nil nil nil) - ("<not=" "<note><p>$1</p><p>$0</p></note>" "<note><p>" nil nil nil nil nil nil) - ("<quo=" "<quote>$0</quote>" "<quote>" nil nil nil nil nil nil))) + '(("<emp=" "<emphasis>$0</emphasis>" "<emphasis>" nil nil nil nil "C-+ e" nil) + ("<for=" "<foreign>$0</foreign>" "<foreign>" nil nil nil nil "C-+ f" nil) + ("<for=" "<foreign xml:lang=\"${1:en}\">$0</foreign>" "<foreign xml:lang=\"…\">" nil nil nil nil "C-+ f" nil) + ("<hig=" "<highlight>$0</highlight>" "<highlight>" nil nil nil nil "C-+ h" nil) + ("<lin=" "<link idref=\"$1\">$0</link>" "<link idref=\"…\">" nil nil nil nil "C-+ l" nil) + ("<lin=" "<link uri=\"http://$1\">$0</link>" "<link uri=\"…\">" nil nil nil nil "C-+ l" nil) + ("<men=" "<mentioned>$0</mentioned>" "<mentioned>" nil nil nil nil "C-+ m" nil) + ("<nam=" "<name of=\"${1:$$(yas-choose-value '(\"person\" \"company\" \"book\" \"newspaper\" \"party\" \"movie\" \"painting\"))}\">$0</name>" "<name of=\"…\">" nil nil nil nil "C-+ n a" nil) + ("<not=" "<note>$0</note>" "<note>" nil nil nil nil "C-+ n o" nil) + ("<not=" "<note><p>$1</p><p>$0</p></note>" "<note><p>" nil nil nil nil "C-+ n o" nil) + ("<num=" "<number>$0</number>" "<number>" nil nil nil nil "C-+ n u" nil) + ("<num=" "<number type=\"roman\">$0</number>" "<number type=\"roman\">" nil nil nil nil "C-+ n u" nil) + ("<quo=" "<quote>$0</quote>" "<quote>" nil nil nil nil "C-+ q" nil) + ("<sup=" "<sup>$0</sup>" "<sup>" nil nil nil nil "C-+ s" nil))) -;;; Do not edit! File generated at Wed Dec 25 18:48:07 2013 +;;; Do not edit! File generated at Thu Dec 26 11:24:20 2013 diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_emphasis --- a/YASnippet/publidoc-inline-mode/publidoc_emphasis mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_emphasis jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <emphasis> # key: <emp= +# binding: C-+ e # -- <emphasis>$0</emphasis> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_foreign --- /dev/null jeu. janv. 01 00:00:00 1970 +0000 +++ b/YASnippet/publidoc-inline-mode/publidoc_foreign jeu. déc. 26 11:43:47 2013 +0100 @@ -0,0 +1,5 @@ +# name: <foreign> +# key: <for= +# binding: C-+ f +# -- +<foreign>$0</foreign> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_foreign_lang --- /dev/null jeu. janv. 01 00:00:00 1970 +0000 +++ b/YASnippet/publidoc-inline-mode/publidoc_foreign_lang jeu. déc. 26 11:43:47 2013 +0100 @@ -0,0 +1,5 @@ +# name: <foreign xml:lang="…"> +# key: <for= +# binding: C-+ f +# -- +<foreign xml:lang="${1:en}">$0</foreign> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_highlight --- a/YASnippet/publidoc-inline-mode/publidoc_highlight mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_highlight jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <highlight> # key: <hig= +# binding: C-+ h # -- <highlight>$0</highlight> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_link_idref --- a/YASnippet/publidoc-inline-mode/publidoc_link_idref mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_link_idref jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <link idref="…"> # key: <lin= +# binding: C-+ l # -- <link idref="$1">$0</link> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_link_uri --- a/YASnippet/publidoc-inline-mode/publidoc_link_uri mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_link_uri jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <link uri="…"> # key: <lin= +# binding: C-+ l # -- <link uri="http://$1">$0</link> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_mentioned --- a/YASnippet/publidoc-inline-mode/publidoc_mentioned mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_mentioned jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <mentioned> # key: <men= +# binding: C-+ m # -- <mentioned>$0</mentioned> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_name --- a/YASnippet/publidoc-inline-mode/publidoc_name mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_name jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <name of="…"> # key: <nam= +# binding: C-+ n a # -- <name of="${1:$$(yas-choose-value '("person" "company" "book" "newspaper" "party" "movie" "painting"))}">$0</name> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_note --- a/YASnippet/publidoc-inline-mode/publidoc_note mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_note jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <note> # key: <not= +# binding: C-+ n o # -- <note>$0</note> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_note_p --- a/YASnippet/publidoc-inline-mode/publidoc_note_p mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_note_p jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <note><p> # key: <not= +# binding: C-+ n o # -- <note><p>$1</p><p>$0</p></note> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_number --- /dev/null jeu. janv. 01 00:00:00 1970 +0000 +++ b/YASnippet/publidoc-inline-mode/publidoc_number jeu. déc. 26 11:43:47 2013 +0100 @@ -0,0 +1,5 @@ +# name: <number> +# key: <num= +# binding: C-+ n u +# -- +<number>$0</number> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_number_roman --- /dev/null jeu. janv. 01 00:00:00 1970 +0000 +++ b/YASnippet/publidoc-inline-mode/publidoc_number_roman jeu. déc. 26 11:43:47 2013 +0100 @@ -0,0 +1,5 @@ +# name: <number type="roman"> +# key: <num= +# binding: C-+ n u +# -- +<number type="roman">$0</number> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_quote --- a/YASnippet/publidoc-inline-mode/publidoc_quote mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-inline-mode/publidoc_quote jeu. déc. 26 11:43:47 2013 +0100 @@ -1,4 +1,5 @@ # name: <quote> # key: <quo= +# binding: C-+ q # -- <quote>$0</quote> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-inline-mode/publidoc_sup --- /dev/null jeu. janv. 01 00:00:00 1970 +0000 +++ b/YASnippet/publidoc-inline-mode/publidoc_sup jeu. déc. 26 11:43:47 2013 +0100 @@ -0,0 +1,5 @@ +# name: <sup> +# key: <sup= +# binding: C-+ s +# -- +<sup>$0</sup> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-mode/.yas-compiled-snippets.el --- a/YASnippet/publidoc-mode/.yas-compiled-snippets.el mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publidoc-mode/.yas-compiled-snippets.el jeu. déc. 26 11:43:47 2013 +0100 @@ -11,9 +11,10 @@ ("<med=" "<media>\n <head>\n <title>$1</title>\n </head>\n <video id=\"$2\"/>\n <caption>\n $0\n </caption>\n</media>" "<media><video id=\"…\">" nil nil nil nil nil nil) ("<sec=" "<section>\n <p>\n $0\n </p>\n</section>" "<section><p>" nil nil nil nil nil nil) ("<sec=" "<section>\n <head>\n <title>$1</title>\n </head>\n <p>\n $0\n </p>\n</section>" "<section><head><title>…<p>" nil nil nil nil nil nil) + ("<spe=" "<speech>\n <speaker>$1</speaker>\n <stage>$2</stage>\n <p>$0</p>\n</speech>" "<speech>" nil nil nil nil nil nil) ("<tab=" "<table>\n <head>\n <title>$1</title>\n </head>\n <thead>\n <tr>\n <td>$2</td>\n <td>$3</td>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>$4</td>\n <td>$5</td>\n </tr>\n </tbody>\n</table>" "<table>" nil nil nil nil nil nil) ("<tit=" "<head>\n <title>$0</title>\n</head> " "<head><title>" nil nil nil nil nil nil) ("<top=" "<!-- ================================================================== -->\n<topic>\n <head>\n <title>$1</title>\n </head>\n\n <section>\n <p>\n $0\n </p>\n </section>\n</topic>\n" "<topic>" nil nil nil nil nil nil))) -;;; Do not edit! File generated at Wed Dec 25 18:48:07 2013 +;;; Do not edit! File generated at Thu Dec 26 11:24:20 2013 diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publidoc-mode/publidoc_speech --- /dev/null jeu. janv. 01 00:00:00 1970 +0000 +++ b/YASnippet/publidoc-mode/publidoc_speech jeu. déc. 26 11:43:47 2013 +0100 @@ -0,0 +1,8 @@ +# name: <speech> +# key: <spe= +# -- +<speech> + <speaker>$1</speaker> + <stage>$2</stage> + <p>$0</p> +</speech> \ No newline at end of file diff -r f6b8ec2914ef -r f2e60073557f YASnippet/publiset-mode/.yas-compiled-snippets.el --- a/YASnippet/publiset-mode/.yas-compiled-snippets.el mer. déc. 25 18:48:28 2013 +0100 +++ b/YASnippet/publiset-mode/.yas-compiled-snippets.el jeu. déc. 26 11:43:47 2013 +0100 @@ -6,4 +6,4 @@ ("<sel=" "<?xml version='1.0' encoding='utf-8'?>\n<publiset version=\"1.0\">\n <selection id=\"$1\" xml:lang=\"${2:fr}\">\n <head>\n <title>$3</title>\n </head>\n\n <file>$4</file>\n <file>$5</file>\n </selection>\n</publiset> " "<publiset><selection>…" nil nil nil nil nil nil))) -;;; Do not edit! File generated at Wed Dec 25 18:48:07 2013 +;;; Do not edit! File generated at Thu Dec 26 11:24:20 2013