* YavscModel.csproj:
* NewProjectModel.cs: * ITContentProvider.csproj: refactoring * WebApiConfig.cs: Web Api Config * IModule.cs: * RssFeeds.cs: * IRenderer.cs: * Blog.cs: * ITagHandler.cs: * ViewRenderer.cs: * Comment.cs: * IViewRenderer.cs: * People.cs: * SignIn.cs: * BlogEntry.cs: * AuthToken.cs: * BlogHelper.cs: * DataAccess.cs: * Estimate.cs: * BlogManager.cs: * Writting.cs: * AskForADate.cs: * RestoreQuery.cs: * Basket.cs: * BlogProvider.cs: * CalendarList.cs: * Commande.cs: * StatusChange.cs: * WebFileInfo.cs: * WorkFlowManager.cs: * Euro.cs: * Unit.cs: * Text.cs: * Profile.cs: * Note.cs: * Link.cs: * BlogEditEntryModel.cs: * FindBlogEntryFlags.cs: * NewProjectModel.cs: * CalendarListEntry.cs: * CalendarEntryList.cs: * IContentProvider.cs: * CommandStatus.cs: * Label.cs: * Price.cs: * BlogEntryCollection.cs: * Period.cs: * Scalar.cs: * BlogEditCommentModel.cs: * Option.cs: * NpgsqlContentProvider.cs: * Product.cs: * LoginModel.cs: * Service.cs: * Catalog.cs: * Currency.cs: * NewEstimateEvenArgs.cs: * CheckBox.cs: * SaleForm.cs: * FileSystemManager.cs: * FormInput.cs: * TextInput.cs: * NewRoleModel.cs: * FileInfoCollection.cs: * FilesInput.cs: * NewAdminModel.cs: * SelectItem.cs: * SelectInput.cs: * RadioButton.cs: * StockStatus.cs: * Provider.cs: * DirNotFoundException.cs: * FormElement.cs: * ProductImage.cs: * WebFileInfoCollection.cs: * CatalogHelper.cs: * CatalogManager.cs: * RegisterViewModel.cs: * InvalidDirNameException.cs: * PhysicalProduct.cs: * CatalogProvider.cs: * ProductCategory.cs: * OrderStatusChangedEventArgs.cs: * ProviderCollection.cs: * WorkflowConfiguration.cs: * BlogProviderConfigurationElement.cs: * BlogProvidersConfigurationSection.cs: * BlogProvidersConfigurationCollection.cs: * CatalogProviderConfigurationElement.cs: * CatalogProvidersConfigurationSection.cs: * CatalogProvidersConfigurationCollection.cs: xml doc * SalesCatalog.csproj: * XmlCatalogProvider.cs: Maps the catalog using System.Web * BasketController.cs: * FrontOfficeController.cs: a Basket controller * Global.asax.cs: Session in Web Api * App.master: WebApi bas url as Javascript var 'apiBaseUrl' * Index.aspx: !!not sure of this change. * Web.csproj: compiles now includes WebApiConfig.cs * style.css: link background color * FileSystemController.cs: a file system controller
This commit is contained in:
parent
017a6fde23
commit
b505ad90e7
100 changed files with 2520 additions and 212 deletions
|
|
@ -6,9 +6,16 @@ using System.ComponentModel.DataAnnotations;
|
|||
|
||||
namespace Yavsc.Model.Admin
|
||||
{
|
||||
/// <summary>
|
||||
/// Data access.
|
||||
/// </summary>
|
||||
public class DataAccess {
|
||||
private string host = "localhost";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the host.
|
||||
/// </summary>
|
||||
/// <value>The host.</value>
|
||||
[StringLength(2056)]
|
||||
public string Host {
|
||||
get {
|
||||
|
|
@ -21,6 +28,10 @@ namespace Yavsc.Model.Admin
|
|||
|
||||
private int port = 5432;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the port.
|
||||
/// </summary>
|
||||
/// <value>The port.</value>
|
||||
public int Port {
|
||||
get {
|
||||
return port;
|
||||
|
|
@ -32,6 +43,10 @@ namespace Yavsc.Model.Admin
|
|||
|
||||
private string dbname = "yavsc";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the dbname.
|
||||
/// </summary>
|
||||
/// <value>The dbname.</value>
|
||||
public string Dbname {
|
||||
get {
|
||||
return dbname;
|
||||
|
|
@ -43,6 +58,10 @@ namespace Yavsc.Model.Admin
|
|||
|
||||
private string dbuser = "postgres";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the dbuser.
|
||||
/// </summary>
|
||||
/// <value>The dbuser.</value>
|
||||
public string Dbuser {
|
||||
get {
|
||||
return dbuser;
|
||||
|
|
@ -54,7 +73,11 @@ namespace Yavsc.Model.Admin
|
|||
|
||||
private string dbpassword ;
|
||||
private string backupPrefix= "~/backup/global.backup";
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the backup prefix.
|
||||
/// </summary>
|
||||
/// <value>The backup prefix.</value>
|
||||
public string BackupPrefix {
|
||||
get {
|
||||
return backupPrefix;
|
||||
|
|
@ -64,12 +87,19 @@ namespace Yavsc.Model.Admin
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the password.
|
||||
/// </summary>
|
||||
/// <value>The password.</value>
|
||||
[Required(ErrorMessage ="Please, specify a password")]
|
||||
public string Password {
|
||||
get { return dbpassword; }
|
||||
set { dbpassword = value; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Connections the string.
|
||||
/// </summary>
|
||||
/// <returns>The string.</returns>
|
||||
public string ConnectionString() {
|
||||
return string.Format ("Server={0};Port={1};Database={2};User Id={3};Password={4};Encoding=Unicode;",
|
||||
Host,Port,Dbuser,Password);
|
||||
|
|
|
|||
|
|
@ -3,12 +3,22 @@ using System.ComponentModel.DataAnnotations;
|
|||
|
||||
namespace Yavsc.Model.Admin
|
||||
{
|
||||
/// <summary>
|
||||
/// Restore query.
|
||||
/// </summary>
|
||||
public class RestoreQuery: DataAccess
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the file.
|
||||
/// </summary>
|
||||
/// <value>The name of the file.</value>
|
||||
[Required]
|
||||
[StringLength(2056)]
|
||||
public string FileName { get; set ; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Yavsc.Model.Admin.RestoreQuery"/> class.
|
||||
/// </summary>
|
||||
public RestoreQuery ()
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue