Metadata-Version: 1.1
Name: EditOnline
Version: 0.1.6
Summary: A simple online file editor by Python base on Ace.js.
Home-page: https://github.com/sintrb/EditOnline
Author: sintrb
Author-email: sintrb@gmail.com
License: Apache
Description: EditOnline
        ===============
        A simple online text file editor base on Ace.js.
        
        Install
        ===============
        ::
        
         pip install EditOnline
        
        
        Use
        ===============
        cd to you working directory and run command:
        
        ::
        
         EditOnline
        
        on Windows use:
        ::
        
         EditOnline.bat
        
        if can't find EditOnline command, try:
        ::
        
         python -m EditOnline
        
        
        open broswer with url **http://127.0.0.1:8000**
        	
        
        Editor shortcut
        ===============
        - **Ctrl+S** : save file
        
        - **Ctrl+Shif+N** : new file
        
        - **Ctrl+H** : show help info
        
        Other tips
        ===============
        1.set http port 80
        ::
        
         EditOnline 80
        
        2.authenticate with username and password (admin admin)
        ::
        
         EditOnline -u admin -p admin
        
        3.set the working directory (/tmp)
        ::
        
         EditOnline -d /tmp
        
        4.bind address with 127.0.0.1
        ::
        
         EditOnline 127.0.0.1:8000
        
        
        CHANGES
        ===============
        0.1.0
        
        - test
        
        0.1.2
        
        - first version
        
        0.1.3
        
        - setup bug fix
        
        0.1.4
        
        - 1.complete document
        - 2.fix working directory(-d) option bug
        - 3.change to use cdnjs static resource
        
        0.1.5
        
        - 1.using **ThreadingHTTPServer** to handle concurrency request
        - 2.import **static** resource to avoid the slow speed of cdnjs in China, then the EditOnline size increased >.<
        - 3.bind address support, see **-h**
        - 4.add EditOnline.py to scripts
        
        0.1.6
        
        - 1.fix libdir bug
        - 2.change package info
Keywords: EditOnline Ace.js
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Text Editors
