<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1 +1,151 @@
-See http://dima-exe.ru/rails-on-emacs
\ No newline at end of file
+It is minor mode for editing &quot;Ruby On Rails&quot;:ror code with
+&quot;Emacs&quot;:emacs. This minor mode makes your work much easier and user
+friendly
+
+
+== Instalation
+
+You need download last release from RubyForge page 
+&quot;http://rubyforge.org/projects/emacs-rails&quot; and and unpack
+it to directory containing libraries of Emacs, by default it's
+$HOME/.emacs.d/
+
+You can also use SVN
+
+  cd  $HOME/.emacs.d/ 
+  svn co svn://rubyforge/var/svn/emacs-rails/trunk emacs-rails
+
+Download and install required libraries
+
+* &quot;http://www.kazmier.com/computer/snippet.el&quot;:snippets
+* &quot;http://www.webweavertech.com/ovidiu/emacs/find-recursive.txt&quot;:frecursive
+
+*Alert:* From 0.44 release emacs-rails will require the
+ &quot;inf-ruby&quot;:inf-ruby.
+
+After that you must add this code in $HOME/.emacs
+
+  (setq load-path (cons &quot;~/.emacs.d/rails&quot; load-path))
+
+  (defun try-complete-abbrev (old)
+    (if (expand-abbrev) t nil))
+
+  (setq hippie-expand-try-functions-list
+    '(try-complete-abbrev
+      try-complete-file-name
+      try-expand-dabbrev))
+
+  (require 'rails)
+
+For Windows users: you can use your help in CHM format (the default
+*ri*).  This will require utility &quot;KeyHH&quot;:keyhh. And add to a file
+.emacs
+
+  (setq rails-chm-file &quot;full_path_to_rails_chm_manual&quot;)
+
+After that you can run Emacs. Almost all available actions are in the
+menu [Ruby On Rails]. The snippets are in the menu [Ruby On
+Rails-Snippets], for the convenience, they are divided into
+categories.
+
+To change default setting, select [Ruby On Rails - Customize].
+
+== First Acquaintance
+
+Go to directory with your rails application and open any file in Emacs:
+
+  cd $HOME/project/simple_rails_application
+  emacs app/controllers/application.rb
+
+There must be &quot;RoR&quot; sign in the list of active minor-modes in status
+bar. Thi means, that emacs-rails is enabled and ready to help you in
+your not so easy work.
+
+Almoust all actions are in the &quot;RubyOnRails&quot; menu. You can check it
+out and try some of them. Don't forget, that menu will help you only
+first time. After that you better use hot keys for effective work, you
+can find them in the brackets.
+
+== Features
+
+* TextMate-like snippets
+* Display of colored log files
+* Integration with script/generate and script/destroy (controller,
+  model, scaffold, migration, etc)
+* Integration with script/console and script/breakpointer
+* Run rake %(key)C-c C-c r%
+* Quick start svn-status in RAILS_ROOT %(key)f9%
+* Documentation search using *ri* or *chm* file and Rails API
+  reference in HTML %(key)f1%
+* Quick access to the main configuration files
+* Automatic TAGS generation in RAILS_ROOT directory
+
+=== Management of WEBrick/Mongrel
+
+* Your can select Webrick, Mongrel or Lighttpd 
+* Start/stop application server %(key)C-c C-c w s%
+* Automatic browsing on current action (from view or controller)
+  %(key)C-c C-c w a%
+
+=== Navigation in RAILS_ROOT hierarchy
+
+* Quick switch stylesheets, javascripts, migrations, layouts, helpers,
+  controllers, models, observers, plugins
+* In controller file: go to views, functional test, helper
+  %(key)C-down%
+* Switch between action/view %(key)&#209;-up%
+* Go to file in current line (example: cursor at line [redirect_to
+  controller =&gt; :home, :action =&gt; &quot;show&quot;], will be open action &quot;show&quot;
+  in &quot;home&quot; controller) %(key)C-RET%
+* Quick access to the main configuration files using menu
+
+Other hot keys
+
+* %(key)C-c C-c g g% rails-nav:goto-migrate
+* %(key)C-c C-c g j% rails-nav:goto-javascripts
+* %(key)C-c C-c g s% rails-nav:goto-stylesheets
+* %(key)C-c C-c g l% rails-nav:goto-layouts
+* %(key)C-c C-c g h% rails-nav:goto-helpers
+* %(key)C-c C-c g c% rails-nav:goto-controllers
+* %(key)C-c C-c g m% rails-nav:goto-models
+* %(key)C-c C-c g o% rails-nav:goto-observers
+* %(key)C-c C-c g p% rails-nav:goto-plugins
+
+=== ERb refactoring
+
+* Create partial from selection %(key)C-c p%
+* Create helper from block  %(key)C-c b%
+
+= Bugs
+
+emacs-rails designed for current CVS version of Emacs (future Emacs22)
+more probably some functions will not work in older version, or will
+work with errors, so if it is possible, try to update. I will not tell
+you why you should use CVS version, just take my word.
+
+In some version from CVS some time ago, when you use emacs-rails,
+sintax highlight in rhtml was not working, so just update to the
+newest version from CVS.
+
+If you find error, place it description in &quot;BugTrack&quot;:bugtrack.
+
+= Links
+
+* &quot;Emacs W32 (CVS version for Windows)&quot;:http://ourcomments.org/Emacs/EmacsW32.html
+* &quot;HowToUseEmacsWithRails&quot;:http://wiki.rubyonrails.org/rails/pages/HowToUseEmacsWithRails
+* &quot;http://scott.elitists.net/users/scott/posts/rails-on-emacs&quot;:http://scott.elitists.net/users/scott/posts/rails-on-emacs
+* &quot;http://www.emacswiki.org/cgi-bin/wiki/RubyMode&quot;:http://www.emacswiki.org/cgi-bin/wiki/RubyMode
+* &quot;Emacs screencast&quot;:screencast
+* &quot;Effective Emacs&quot;:effectiveemacs
+
+[bugtrack]http://rubyforge.org/tracker/?atid=5809&amp;group_id=1484&amp;func=browse
+[effectiveemacs]http://steve.yegge.googlepages.com/effective-emacs
+[screencast]http://emacsonrails.drozdov.net/
+[lisp]http://en.wikipedia.org/wiki/Lisp_programming_language
+[frecursive]http://www.webweavertech.com/ovidiu/emacs/find-recursive.txt
+[keyhh]http://www.keyworks.net/keyhh.htm
+[snippets]http://www.kazmier.com/computer/snippet.el
+[emacs]http://www.gnu.org/software/emacs/
+[ror]http://rubyonrails.org
+[emacs-rails]http://rubyforge.org/projects/emacs-rails
+[inf-ruby]http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/misc/inf-ruby.el?view=co
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,8 @@
-;;; rails-remote-cmd.el ---
+;;; rails-cmd-proxy.el ---
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
-;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;,
-;;          Rezikov Peter &lt;crazypit13 (at) gmail.com&gt;
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
 ;; Keywords: ruby rails languages oop
 ;; $URL$</diff>
      <filename>rails-cmd-proxy.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-controller-layout.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-fixture-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-functional-test-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-helper-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-layout-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-log.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-migration-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-model-layout.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-model-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-plugin-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-ruby.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-unit-test-minor-mode.el</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,8 @@
 
 ;; Copyright (C) 2006 Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
 
+;; Authors: Dmitry Galinsky &lt;dima dot exe at gmail dot com&gt;
+
 ;; Keywords: ruby rails languages oop
 ;; $URL$
 ;; $Id$</diff>
      <filename>rails-view-minor-mode.el</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5a95c5154dd4e188d967ff2a3611bff83fc0ffe6</id>
    </parent>
  </parents>
  <author>
    <name>dimaexe</name>
    <email>dimaexe@cc5033d0-740f-0410-afc7-949910e492f2</email>
  </author>
  <url>http://github.com/tomtt/emacs-rails/commit/ec5faeb4d65925773a78032ce12b2ccf4ceb1876</url>
  <id>ec5faeb4d65925773a78032ce12b2ccf4ceb1876</id>
  <committed-date>2007-03-24T15:34:38-07:00</committed-date>
  <authored-date>2007-03-24T15:34:38-07:00</authored-date>
  <message>updated copyright
added README


git-svn-id: svn+ssh://rubyforge.org/var/svn/emacs-rails/trunk@112 cc5033d0-740f-0410-afc7-949910e492f2</message>
  <tree>fef2ab8fd72254ff26f69033832fa0acf8377a63</tree>
  <committer>
    <name>dimaexe</name>
    <email>dimaexe@cc5033d0-740f-0410-afc7-949910e492f2</email>
  </committer>
</commit>
