<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/elfar/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 30 Apr 2012 11:44:51 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/elfar/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v27 
+++ v28 
@@ -7,6 +7,8 @@
     GlobalFilters.Filters.Add(new ErrorLogFilter(provider));
     RouteTable.Routes.Insert(0, new ErrorLogRoute(provider));
 ####
+To access ELFAR, navigate to ~/elfar (where ~/ is the root directory of the MVC application).
+
 ELFAR has 6 out-of-the-box error log providers (which can be [downloaded from Nuget](https://nuget.org/packages?q=elfar&amp;sortOrder=package-title))
 
 * [ErrorLogProvider], in-memory storage 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Mon, 30 Apr 2012 11:44:51 -0000</pubDate><guid>https://sourceforge.netcc0f5d99643339cc997604d9e176a8fc12e5f496</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v26 
+++ v27 
@@ -1,6 +1,6 @@
 ##Error Logging Filter and Route (ELFAR) for ASP.NET MVC
 
-Error Logging Filter and Route (ELFAR) for ASP.NET MVC was inspired by and based on the popular [Error Logging Modules And Handlers (ELMAH) for ASP.NET](http://code.google.com/p/elmah) utility. ELFAR retains the familiar ELMAH user interface but has been built to utilise the architecture of ASP.NET MVC. Unlike ELMAH, ELFAR is not driven by configuration and can be added to your website/web application with just 3 lines of code (usually in the `Application_Start` method):
+Error Logging Filter and Route (ELFAR) for ASP.NET MVC was inspired by and based on the popular [Error Logging Modules and Handlers (ELMAH) for ASP.NET](http://code.google.com/p/elmah) utility. ELFAR retains the familiar ELMAH user interface but has been built to utilise the architecture of ASP.NET MVC. Unlike ELMAH, ELFAR is not driven by configuration and can be added to your website/web application with just 3 lines of code (usually in the `Application_Start` method):
 
     :::c#
     var provider = new ErrorLogProvider();
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Sun, 26 Feb 2012 00:43:27 -0000</pubDate><guid>https://sourceforge.net80c7d7d441a46c2c3e688a2bcefecd0b1c334f7b</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v25 
+++ v26 
@@ -7,7 +7,7 @@
     GlobalFilters.Filters.Add(new ErrorLogFilter(provider));
     RouteTable.Routes.Insert(0, new ErrorLogRoute(provider));
 ####
-ELFAR has 6 out-of-the-box error log providers (which can be [downloaded from Nuget](https://nuget.org/packages?q=elfar))
+ELFAR has 6 out-of-the-box error log providers (which can be [downloaded from Nuget](https://nuget.org/packages?q=elfar&amp;sortOrder=package-title))
 
 * [ErrorLogProvider], in-memory storage 
 * [SqlErrorLogProvider], SQL Server database
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Fri, 24 Feb 2012 01:50:15 -0000</pubDate><guid>https://sourceforge.net8d74811f31c650868ce10a37c176a06902df502d</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v24 
+++ v25 
@@ -16,7 +16,7 @@
 * [AccessErrorLogProvider], Microsoft Office Access database
 * [XmlErrorLogProvider], XML file storage
 
-However you can pass in your own `ErrorLog` provider by implementing the `IErrorLogProvider` interface.
+However you can pass in your own `ErrorLog` provider by implementing the [IErrorLogProvider] interface.
 
 Once ELFAR has been added to your website/web application, you get the following features:
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 23:02:26 -0000</pubDate><guid>https://sourceforge.net4c4ee688ae17d69a36acad42231a2431eaa293b6</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v23 
+++ v24 
@@ -9,28 +9,28 @@
 ####
 ELFAR has 6 out-of-the-box error log providers (which can be [downloaded from Nuget](https://nuget.org/packages?q=elfar))
 
-* [`ErrorLogProvider`](../ErrorLogProvider), in-memory storage 
-* [`SqlErrorLogProvider`](../SqlErrorLogProvider), SQL Server database
-* [`SqlCeErrorLogProvider`](../SqlCeErrorLogProvider), SQL Server Compact Edition database
-* [`SQLiteErrorLogProvider`](../SQLiteErrorLogProvider), SQLite database
-* [`AccessErrorLogProvider`](../AccessErrorLogProvider), Microsoft Office Access database
-* [`XmlErrorLogProvider`](../XmlErrorLogProvider), XML file storage
-
+* [ErrorLogProvider], in-memory storage 
+* [SqlErrorLogProvider], SQL Server database
+* [SqlCeErrorLogProvider], SQL Server Compact Edition database
+* [SQLiteErrorLogProvider], SQLite database
+* [AccessErrorLogProvider], Microsoft Office Access database
+* [XmlErrorLogProvider], XML file storage
+
 However you can pass in your own `ErrorLog` provider by implementing the `IErrorLogProvider` interface.
 
 Once ELFAR has been added to your website/web application, you get the following features:
 
 * a web page to view a list of error logs
 * a web page to view the details of an error log, including a coloured stack trace
 * a view of the original yellow screen of death (where appropriate)
 * XML and JSON downloads of the error log
 * an RSS feed of the last 15 error logs
 * an RSS digest of daily error logs (limited to 900)
 * a CSV download of all error logs
 
 In addition, there are several optional features available:
 
-* [Excluding unwanted exceptions](../Excluding unwanted exceptions)
-* [Restricting access to the ELFAR web pages](../Restricting access to the ELFAR web pages)
-* [Email notification of errors](../Email notification of errors)
-* [Posting errors to Twitter](../Posting errors to Twitter)
+* [Excluding unwanted exceptions]
+* [Restricting access to the ELFAR web pages]
+* [Email notification of errors]
+* [Posting errors to Twitter]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:42:16 -0000</pubDate><guid>https://sourceforge.netf578077718fe02bcea684e54281cb77dd9d5f255</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v22 
+++ v23 
@@ -30,7 +30,7 @@
 
 In addition, there are several optional features available:
 
-* [Excluding unwanted exceptions]
-* [Restricting access to the ELFAR web pages]
-* [Email notification of errors]
-* [Posting errors to Twitter]
+* [Excluding unwanted exceptions](../Excluding unwanted exceptions)
+* [Restricting access to the ELFAR web pages](../Restricting access to the ELFAR web pages)
+* [Email notification of errors](../Email notification of errors)
+* [Posting errors to Twitter](../Posting errors to Twitter)
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:35:39 -0000</pubDate><guid>https://sourceforge.net034ac4f8195357214674bbdd7ca3e3e1e9f92ef7</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v21 
+++ v22 
@@ -9,12 +9,12 @@
 ####
 ELFAR has 6 out-of-the-box error log providers (which can be [downloaded from Nuget](https://nuget.org/packages?q=elfar))
 
-* [ErrorLogProvider], in-memory storage
-* [SqlErrorLogProvider], SQL Server database
-* [SqlCeErrorLogProvider], SQL Server Compact Edition database
-* [SQLiteErrorLogProvider], SQLite database
-* [AccessErrorLogProvider], Microsoft Office Access database
-* [XmlErrorLogProvider], XML file storage
+* [`ErrorLogProvider`](../ErrorLogProvider), in-memory storage 
+* [`SqlErrorLogProvider`](../SqlErrorLogProvider), SQL Server database
+* [`SqlCeErrorLogProvider`](../SqlCeErrorLogProvider), SQL Server Compact Edition database
+* [`SQLiteErrorLogProvider`](../SQLiteErrorLogProvider), SQLite database
+* [`AccessErrorLogProvider`](../AccessErrorLogProvider), Microsoft Office Access database
+* [`XmlErrorLogProvider`](../XmlErrorLogProvider), XML file storage
 
 However you can pass in your own `ErrorLog` provider by implementing the `IErrorLogProvider` interface.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:34:28 -0000</pubDate><guid>https://sourceforge.net710e1b940b3375d3c0cea83b5522a269872eb813</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v20 
+++ v21 
@@ -16,7 +16,7 @@
 * [AccessErrorLogProvider], Microsoft Office Access database
 * [XmlErrorLogProvider], XML file storage
 
-However you can pass in your own ErrorLog Provider by implementing the `IErrorLogProvider` interface.
+However you can pass in your own `ErrorLog` provider by implementing the `IErrorLogProvider` interface.
 
 Once ELFAR has been added to your website/web application, you get the following features:
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:30:48 -0000</pubDate><guid>https://sourceforge.net4a1d04ca955710ceb884cbe047674b4aae393aba</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v19 
+++ v20 
@@ -16,7 +16,7 @@
 * [AccessErrorLogProvider], Microsoft Office Access database
 * [XmlErrorLogProvider], XML file storage
 
-You can pass in your own ErrorLog Provider by implementing the `IErrorLogProvider` interface.
+However you can pass in your own ErrorLog Provider by implementing the `IErrorLogProvider` interface.
 
 Once ELFAR has been added to your website/web application, you get the following features:
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:29:30 -0000</pubDate><guid>https://sourceforge.netef6c7092e68b57b1630f591b9c600aca364e3b1d</guid></item><item><title>WikiPage Home modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/Home/</link><description>&lt;pre&gt;--- v18 
+++ v19 
@@ -31,6 +31,6 @@
 In addition, there are several optional features available:
 
 * [Excluding unwanted exceptions]
-* Restricting access to the ELFAR web pages
+* [Restricting access to the ELFAR web pages]
 * [Email notification of errors]
 * [Posting errors to Twitter]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:28:38 -0000</pubDate><guid>https://sourceforge.net36c7d4bd4325d8d30a16c84d03c2570888c62667</guid></item></channel></rss>