Setup what's new feed generation

pull/683/head
danroth27 2015-11-19 15:18:57 -08:00
parent 92a0a356f8
commit 9841ee60f7
3 changed files with 15 additions and 1 deletions

View File

@ -31,6 +31,7 @@ import os
# ones.
extensions = [
'sphinx.ext.intersphinx',
'yasfb'
]
# Add any paths that contain templates here, relative to this directory.
@ -359,3 +360,9 @@ intersphinx_mapping = {
'dotnet': ('http://dotnet.readthedocs.org/en/latest', 'dotnet.inv')
}
feed_num_items = 15
feed_skip_regex = '(.)*index'
feed_base_url = 'http://docs.asp.net/en/latest'
feed_description = 'ASP.NET Documentation'
feed_author = 'Microsoft'

View File

@ -32,6 +32,7 @@ import shlex
# ones.
extensions = [
'sphinx.ext.intersphinx',
'yasfb'
]
# Add any paths that contain templates here, relative to this directory.
@ -381,3 +382,8 @@ epub_exclude_files = ['search.html']
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'aspnet': ('http://docs.asp.net/en/latest', 'aspnet.inv')}
feed_num_items = 15
feed_skip_regex = '(.)*index'
feed_base_url = 'http://docs.asp.net/projects/mvc/en/latest'
feed_description = 'ASP.NET MVC Documentation'
feed_author = 'Microsoft'

View File

@ -1 +1,2 @@
Sphinx==1.3.1
Sphinx==1.3.1
git+git://github.com/danroth27/yasfb-py3