diff --git a/aspnet/conf.py b/aspnet/conf.py index 02ea546040..d98a2916b8 100644 --- a/aspnet/conf.py +++ b/aspnet/conf.py @@ -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' + diff --git a/mvc/conf.py b/mvc/conf.py index 97f2feb12b..d103ffcc97 100644 --- a/mvc/conf.py +++ b/mvc/conf.py @@ -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' diff --git a/requirements.txt b/requirements.txt index b1d94fbb98..e5c714126b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -Sphinx==1.3.1 \ No newline at end of file +Sphinx==1.3.1 +git+git://github.com/danroth27/yasfb-py3