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
 
@@ -52,13 +52,12 @@ Kallithea Documentation
 
.. toctree::
 
   :maxdepth: 1
 

	
 
   contributing
 
   dev/translation
 
   dev/dbmigrations
 
   changelog
 

	
 
**API**
 

	
 
.. toctree::
 
   :maxdepth: 1
 

	
scripts/manifest
Show inline comments
 
@@ -20,13 +20,12 @@ README.rst
 
development.ini
 
docs/
 
docs/Makefile
 
docs/api/
 
docs/api/api.rst
 
docs/api/models.rst
 
docs/changelog.rst
 
docs/conf.py
 
docs/contributing.rst
 
docs/images/
 
docs/images/.img
 
docs/index.rst
 
docs/installation.rst
setup.py
Show inline comments
 
@@ -94,21 +94,18 @@ keywords = ' '.join([
 
    'repo groups', 'ldap', 'repository management', 'hgweb replacement',
 
    'hgwebdir', 'gitweb replacement', 'serving hgweb',
 
])
 

	
 
# 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
 

	
 
import setuptools
 

	
 
# monkey patch setuptools to use distutils owner/group functionality
0 comments (0 inline, 0 general)