Added Footnotes Plugin (contributed from Jens Felsner).

Updated plugins version numbers.
This commit is contained in:
Dario Solera 2010-02-02 11:48:54 +00:00
parent 0287216b0e
commit 6c3355b3fa
18 changed files with 166 additions and 16 deletions

View file

@ -12,7 +12,7 @@ namespace ScrewTurn.Wiki {
public class CacheProvider : ICacheProviderV30 {
private readonly ComponentInformation _info =
new ComponentInformation("Local Cache Provider", "ScrewTurn Software", Settings.WikiVersion, "http://www.screwturn.eu", null);
new ComponentInformation("Local Cache Provider", "Threeplicate Srl", Settings.WikiVersion, "http://www.screwturn.eu", null);
private IHostV30 _host;

View file

@ -51,7 +51,7 @@ The ##WIKITITLE## Team.";
/// The default content of the edit notice.
/// </summary>
public const string EditNoticeContent = @"Please '''do not''' include contents covered by copyright without the explicit permission of the Author. Always preview the result before saving.{BR}
If you are having trouble, please visit the [http://www.screwturn.eu/Help.aspx|Help section] at [http://www.screwturn.eu|ScrewTurn Software].";
If you are having trouble, please visit the [http://www.screwturn.eu/Help.aspx|Help section] at the [http://www.screwturn.eu|ScrewTurn Wiki Website].";
/// <summary>
/// The default content of the footer.

View file

@ -13,7 +13,7 @@ namespace ScrewTurn.Wiki {
public class FilesStorageProvider : IFilesStorageProviderV30 {
private readonly ComponentInformation info = new ComponentInformation("Local Files Provider",
"ScrewTurn Software", Settings.WikiVersion, "http://www.screwturn.eu", null);
"Threeplicate Srl", Settings.WikiVersion, "http://www.screwturn.eu", null);
// The following strings MUST terminate with DirectorySeparatorPath in order to properly work
// in BuildFullPath method

View file

@ -28,7 +28,7 @@ namespace ScrewTurn.Wiki {
private const string IndexMappingsFile = "IndexMappings.cs";
private readonly ComponentInformation info =
new ComponentInformation("Local Pages Provider", "ScrewTurn Software", Settings.WikiVersion, "http://www.screwturn.eu", null);
new ComponentInformation("Local Pages Provider", "Threeplicate Srl", Settings.WikiVersion, "http://www.screwturn.eu", null);
private IHostV30 host;
// This cache is needed due to performance problems

View file

@ -49,7 +49,7 @@ namespace ScrewTurn.Wiki {
public static readonly string ProviderName = "Local Settings Provider";
private readonly ComponentInformation info =
new ComponentInformation(ProviderName, "ScrewTurn Software", Settings.WikiVersion, "http://www.screwturn.eu", null);
new ComponentInformation(ProviderName, "Threeplicate Srl", Settings.WikiVersion, "http://www.screwturn.eu", null);
private IHostV30 host;

View file

@ -17,7 +17,7 @@ namespace ScrewTurn.Wiki {
private const string GroupsFile = "Groups.cs";
private readonly ComponentInformation info = new ComponentInformation("Local Users Provider",
"ScrewTurn Software", Settings.WikiVersion, "http://www.screwturn.eu", null);
"Threeplicate Srl", Settings.WikiVersion, "http://www.screwturn.eu", null);
private IHostV30 host;