using System;
using System.Collections.Generic;
using System.Text;
namespace ScrewTurn.Wiki {
///
/// Contains default values.
///
public static class Defaults {
///
/// The default content of the main page.
///
public const string MainPageContent = @"Welcome to '''{WIKITITLE}'''!{BR}
This is the main page of your new ScrewTurn Wiki, created for you by the system.
You should [Edit.aspx?Page=MainPage|edit this page] and customize the contents. You can also [Edit.aspx|create a new page] from scratch.
If you need help, try to visit [http://www.screwturn.eu|our website] or [http://www.screwturn.eu/forum|our forum].
'''Warning''': remember to setup the ''admin'' account by editing the {{Web.config}} file placed in the root directory of the Wiki. It is ''extremely dangerous'' to keep the default password.";
///
/// The default content of the main page of a sub-namespace.
///
public const string MainPageContentForSubNamespace = @"Welcome to the '''{NAMESPACE}''' namespace of '''{WIKITITLE}'''!{BR}
This is the main page of the namespace, created for you by the system.
You should [Edit.aspx?Page={NAMESPACE}.MainPage|edit this page] and customize the contents. You can also [Edit.aspx|create a new page] from scratch.
If you need help, try to visit [http://www.screwturn.eu|our website] or [http://www.screwturn.eu/forum|our forum].";
///
/// The default content of the account activation message.
///
public const string AccountActivationMessageContent = @"Hi ##USERNAME## and welcome to ##WIKITITLE##!
You must activate your new ##WIKITITLE## Account within 24 hours, following the link below.
##ACTIVATIONLINK##
If you have any trouble, please contact us at our Email address, ##EMAILADDRESS## .
Thank you.
Best regards,
The ##WIKITITLE## Team.";
///
/// The default content of the edit notice.
///
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].";
///
/// The default content of the footer.
///
public const string FooterContent = @"
[http://www.screwturn.eu|ScrewTurn Wiki] version {WIKIVERSION}. Some of the icons created by [http://www.famfamfam.com|FamFamFam].
";
///
/// The default content of the header.
///
public const string HeaderContent = @"Welcome {USERNAME}, you are in: {NAMESPACEDROPDOWN} • {LOGINLOGOUT}
{WIKITITLE}
";
///
/// The default content of the password reset message.
///
public const string PasswordResetProcedureMessageContent = @"Hi ##USERNAME##!
Your can change your password following the instructions you will see at this link:
##LINK##
If you have any trouble, please contact us at our Email address, ##EMAILADDRESS## .
Thank you.
Best regards,
The ##WIKITITLE## Team.";
///
/// The default content of the sidebar.
///
public const string SidebarContent = @"
====Navigation====
* '''[MainPage|Main Page]'''
* [RandPage.aspx|Random Page]
* [Edit.aspx|Create a new Page]
* [AllPages.aspx|All Pages]
* [Category.aspx|Categories]
* [NavPath.aspx|Navigation Paths]
* [AdminHome.aspx|Administration]
* [Upload.aspx|File Management]
* [Register.aspx|Create Account]
'''Search the wiki'''{BR}
{SEARCHBOX}
[image|PoweredBy|Images/PoweredBy.png|http://www.screwturn.eu]";
///
/// The default content of the sidebar of a sub-namespace.
///
public const string SidebarContentForSubNamespace = @"
====Navigation ({NAMESPACE})====
* '''[MainPage|Main Page]'''
* [++MainPage|Main Page (root)]
* [RandPage.aspx|Random Page]
* [Edit.aspx|Create a new Page]
* [AllPages.aspx|All Pages]
* [Category.aspx|Categories]
* [NavPath.aspx|Navigation Paths]
* [AdminHome.aspx|Administration]
* [Upload.aspx|File Management]
* [Register.aspx|Create Account]
'''Search the wiki'''{BR}
{SEARCHBOX}
[image|PoweredBy|Images/PoweredBy.png|http://www.screwturn.eu]";
///
/// The default content of the page change email message.
///
public const string PageChangeMessage = @"The page ""##PAGE##"" was modified by ##USER## on ##DATETIME##.
Author's comment: ##COMMENT##.
The page can be found at the following address:
##LINK##
Thank you.
Best regards,
The ##WIKITITLE## Team.";
///
/// The default content of the discussion change email message.
///
public const string DiscussionChangeMessage = @"A new message was posted on the page ""##PAGE##"" by ##USER## on ##DATETIME##.
The subject of the message is ""##SUBJECT##"" and it can be found at the following address:
##LINK##
Thank you.
Best regards,
The ##WIKITITLE## Team.";
///
/// The default content of the approve draft email message.
///
public const string ApproveDraftMessage = @"A draft for the page ""##PAGE##"" was created or modified by ##USER## on ##DATETIME## and is currently held for **approval**.
Author's comment: ##COMMENT##.
The draft can be found and edited at the following address:
##LINK##
You can directly approve or reject the draft at the following address:
##LINK2##
Please note that the draft will not be displayed until it is approved.
Thank you.
Best regards,
The ##WIKITITLE## Team.";
}
}