Changeset - 7c732f2047f8
[Not reviewed]
default
1 3 0
Mads Kiilerich - 9 years ago 2016-07-28 16:28:34
madski@unity3d.com
docs: drop empty Changelog in the documentation

Changelog.rst is empty and just refer to the Mercurial logs. More readable
release notes and other meta information is also available on the web site and
in announcement mails.
4 files changed with 3 insertions and 18 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
deleted file
docs/index.rst
Show inline comments
 
@@ -55,7 +55,6 @@ Kallithea Documentation
 
   contributing
 
   dev/translation
 
   dev/dbmigrations
 
   changelog
 

	
 
**API**
 

	
scripts/manifest
Show inline comments
 
@@ -23,7 +23,6 @@ docs/Makefile
 
docs/api/
 
docs/api/api.rst
 
docs/api/models.rst
 
docs/changelog.rst
 
docs/conf.py
 
docs/contributing.rst
 
docs/images/
setup.py
Show inline comments
 
@@ -97,15 +97,12 @@ keywords = ' '.join([
 

	
 
# long description
 
README_FILE = 'README.rst'
 
CHANGELOG_FILE = 'docs/changelog.rst'
 
try:
 
    long_description = open(README_FILE).read() + '\n\n' + \
 
        open(CHANGELOG_FILE).read()
 

	
 
    long_description = open(README_FILE).read()
 
except IOError as err:
 
    sys.stderr.write(
 
        "[WARNING] Cannot find file specified as long_description (%s)\n or "
 
        "changelog (%s) skipping that file" % (README_FILE, CHANGELOG_FILE)
 
        "[WARNING] Cannot find file specified as long_description (%s)\n"
 
        % README_FILE
 
    )
 
    long_description = description
 

	
0 comments (0 inline, 0 general)