Setup what's new feed generation
parent
92a0a356f8
commit
9841ee60f7
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
Sphinx==1.3.1
|
||||
Sphinx==1.3.1
|
||||
git+git://github.com/danroth27/yasfb-py3
|
||||
|
|
Loading…
Reference in New Issue