]> code.delx.au - gnu-emacs-elpa/commitdiff
preparing for new rst format document
authorZhang Chiyuan <pluskid@gmail.com>
Thu, 20 Mar 2008 09:53:06 +0000 (09:53 +0000)
committerZhang Chiyuan <pluskid@gmail.com>
Thu, 20 Mar 2008 09:53:06 +0000 (09:53 +0000)
README
Rakefile
doc/compile-doc.py [new file with mode: 0755]
doc/index.rst [new file with mode: 0644]
yasnippet.el

diff --git a/README b/README
index f5a14982613429e8782a18a30617513bab4d5637..b6357e12aee2ce1b02d5aac1e04cb17fe681da13 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,5 @@
 YASnippet re-design and re-writing of my original extension
 smart-snippet. The goal is ease of use and full features.
 
-You can find a brief configuration guide on the project homepage:
-http://code.google.com/p/yasnippet/ . Detailed documentation can also
-be found there (the wiki pages on the right sidebar).
+Detailed document can be found in the doc directory of the
+distribution.
\ No newline at end of file
index 22f0c7cb9b77905d487668f6f46059a13f694f3e..23a1f9ca5a2022a287d087cbb698b51dc9c8a388 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -19,9 +19,12 @@ end
 desc "create a release package"
 task :package do
   release_dir = "pkg/yasnippet-#{$version}"
-  FileUtils.mkdir_p(release_dir)
+  FileUtils.mkdir_p(release_dir + "/doc")
   files = ['snippets', 'yasnippet.el', 'Rakefile']
   FileUtils.cp_r files, release_dir
+  Dir['doc/*.html'].each { |f|
+    FileUtils.cp f, release_dir + '/doc' + f.sub(/^doc/, "")
+  }
   FileUtils.rm_r Dir[release_dir + "/**/.svn"]
   FileUtils.cd 'pkg'
   sh "tar cjf yasnippet-#{$version}.tar.bz2 yasnippet-#{$version}"
@@ -40,4 +43,12 @@ task :release => [:bundle, :package] do
 
 end
 
-task :default => :bundle
+desc "Generate document"
+task :doc do
+  docs = Dir['doc/*.rst']
+  docs.each { |file|
+    sh "doc/compile-doc.py #{file} #{file.sub(/rst$/, "html")}"
+  }
+end
+
+task :default => :doc
diff --git a/doc/compile-doc.py b/doc/compile-doc.py
new file mode 100755 (executable)
index 0000000..f44cc84
--- /dev/null
@@ -0,0 +1,56 @@
+#!/usr/bin/python
+# Compile document to HTML use docutils.
+
+# ========================================
+# Pygments syntax highlighting
+# ========================================
+from pygments.formatters import HtmlFormatter
+
+# Set to True if you want inline CSS styles instead of classes
+INLINESTYLES = False
+
+from pygments.formatters import HtmlFormatter
+
+# The default formatter
+DEFAULT = HtmlFormatter(noclasses=INLINESTYLES)
+
+# Add name -> formatter pairs for every variant you want to use
+VARIANTS = {
+    # 'linenos': HtmlFormatter(noclasses=INLINESTYLES, linenos=True),
+}
+
+from docutils import nodes
+from docutils.parsers.rst import directives
+
+from pygments import highlight
+from pygments.lexers import get_lexer_by_name, TextLexer
+
+def pygments_directive(name, arguments, options, content, lineno,
+                       content_offset, block_text, state, state_machine):
+    try:
+        lexer = get_lexer_by_name(arguments[0])
+    except ValueError:
+        # no lexer found - use the text one instead of an exception
+        lexer = TextLexer()
+    # take an arbitrary option if more than one is given
+    formatter = options and VARIANTS[options.keys()[0]] or DEFAULT
+    parsed = highlight(u'\n'.join(content), lexer, formatter)
+    return [nodes.raw('', parsed, format='html')]
+
+pygments_directive.arguments = (1, 0, 1)
+pygments_directive.content = 1
+pygments_directive.options = dict([(key, directives.flag) for key in VARIANTS])
+
+directives.register_directive('sourcecode', pygments_directive)
+
+
+# ========================================
+# Command line processing
+# ========================================
+from docutils.core import publish_cmdline, default_description
+
+
+description = ('Generates (X)HTML documents from standalone reStructuredText '
+               'sources.  ' + default_description)
+
+publish_cmdline(writer_name='html', description=description)
diff --git a/doc/index.rst b/doc/index.rst
new file mode 100644 (file)
index 0000000..fbdf166
--- /dev/null
@@ -0,0 +1,8 @@
+===================================================
+YASnippet - Yet Another Snippet extension for Emacs
+===================================================
+
+:Author: pluskid
+:Contact: pluskid@gmail.com
+:Date: 2008-03-20
+:Version: $Revision: 1 $
index dd856f43be23b120a9b11e63eaa744f099740b89..5979f474d8b0539c6b9303d0a9d8a8b6d0911ab5 100644 (file)
@@ -3,7 +3,7 @@
 ;; Copyright 2008 pluskid
 ;; 
 ;; Author: pluskid <pluskid@gmail.com>
-;; Version: 0.3.2
+;; Version: 0.4.0
 ;; X-URL: http://code.google.com/p/yasnippet/
 
 ;; This file is free software; you can redistribute it and/or modify
@@ -142,7 +142,7 @@ Here's an example:
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Internal variables
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defvar yas/version "0.3.2")
+(defvar yas/version "0.4.0")
 
 (defvar yas/snippet-tables (make-hash-table)
   "A hash table of snippet tables corresponding to each major-mode.")