Go through this amazon link http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-LAMP.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """ | |
| sphinx.builders.mobi | |
| ~~~~~~~~~~~~~~~~~~~~ | |
| Build mobi files. | |
| Originally derived from epub.py. | |
| :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. | |
| :license: BSD, see LICENSE for details. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import sys, os, shutil | |
| # Check to see what entities are in the file system and categorize them by | |
| # type. | |
| def analyze_path(path): | |
| """Get the file system entries in a path and categorize them.""" |
OlderNewer