From 3536ff7699a10e1a7d85b39c705b816486055c0b Mon Sep 17 00:00:00 2001 From: Gus Beare Date: Mon, 26 Jun 2017 16:59:42 +0100 Subject: [PATCH] fixes to install package --- DNNContactFormModule.dnn | 2 +- Package/DNNContactFormModule.dnn | 129 ------------------ Package/License.txt | 21 --- .../SqlDataProvider/01.00.08.SqlDataProvider | 30 ---- .../SqlDataProvider/Uninstall.SqlDataProvider | 15 -- .../SqlDataProvider/01.00.08.SqlDataProvider | 30 ---- .../SqlDataProvider/Uninstall.SqlDataProvider | 15 -- Package/ReleaseNotes.txt | 16 --- Properties/AssemblyInfo.cs | 4 +- 9 files changed, 3 insertions(+), 259 deletions(-) delete mode 100644 Package/DNNContactFormModule.dnn delete mode 100644 Package/License.txt delete mode 100644 Package/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider delete mode 100644 Package/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider delete mode 100644 Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider delete mode 100644 Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider delete mode 100644 Package/ReleaseNotes.txt diff --git a/DNNContactFormModule.dnn b/DNNContactFormModule.dnn index 3ab6feb..1d328b0 100644 --- a/DNNContactFormModule.dnn +++ b/DNNContactFormModule.dnn @@ -1,6 +1,6 @@ - + DNNContactFormModule CarawayDesign.com DNNContactFormModule module images/wilf.jpg diff --git a/Package/DNNContactFormModule.dnn b/Package/DNNContactFormModule.dnn deleted file mode 100644 index 3ab6feb..0000000 --- a/Package/DNNContactFormModule.dnn +++ /dev/null @@ -1,129 +0,0 @@ - - - - DNNContactFormModule - CarawayDesign.com DNNContactFormModule module - images/wilf.jpg - - CarawayDesign.com - CarawayDesign.com - http://www.carawaydesign.com/ - gus@carawaydesign.com - - - - true - - 07.00.02 - - - - - - DesktopModules\DNNContactFormModule - - - - - - - - DesktopModules/DNNContactFormModule - - Resources.zip - - - - - - - DNNContactFormModule - DNNContactFormModule - gus.Modules.DNNContactFormModule.Components.FeatureController, DNNContactFormModule - - IPortable - ISearchable - IUpgradeable - - - - DNNContactFormModule - 0 - - - - DesktopModules/DNNContactFormModule/View.ascx - False - - View - - - 0 - - - Edit - DesktopModules/DNNContactFormModule/Edit.ascx - False - Edit Content - Edit - - - 0 - True - - - Settings - DesktopModules/DNNContactFormModule/Settings.ascx - False - DNNContactFormModule Settings - Edit - - - 0 - - - - - - - DotNetNuke.Entities.Modules.EventMessageProcessor, DotNetNuke - UpgradeModule - - gus.Modules.DNNContactFormModule.Components.FeatureController, DNNContactFormModule - [DESKTOPMODULEID] - 00.00.01 - - - - - - - DNNContactFormModule.dll - bin - - - Simple.Data.dll - bin - - - Simple.Data.Ado.dll - bin - - - Simple.Data.SqlServer.dll - bin - - - - - - - \ No newline at end of file diff --git a/Package/License.txt b/Package/License.txt deleted file mode 100644 index 91871ed..0000000 --- a/Package/License.txt +++ /dev/null @@ -1,21 +0,0 @@ -
-

License

-

- CarawayDesign.com http://www.carawaydesign.com/
- Copyright (c) 2016
- by CarawayDesign.com
-

-

- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated - documentation files (the "Software"), to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and - to permit persons to whom the Software is furnished to do so, subject to the following conditions: -

-

- The above copyright notice and this permission notice shall be included in all copies or substantial portions - of the Software. -

-

- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -

-
\ No newline at end of file diff --git a/Package/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider b/Package/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider deleted file mode 100644 index 3de3a83..0000000 --- a/Package/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider +++ /dev/null @@ -1,30 +0,0 @@ -/************************************************************/ -/***** SqlDataProvider *****/ -/***** *****/ -/***** *****/ -/***** Note: To manually execute this script you must *****/ -/***** perform a search and replace operation *****/ -/***** for {databaseOwner} and {objectQualifier} *****/ -/***** *****/ -/************************************************************/ - -SET ANSI_NULLS ON -GO - -SET QUOTED_IDENTIFIER ON -GO - -IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'{databaseOwner}{objectQualifier}ContactUsFormLog') AND type IN (N'U')) - BEGIN - CREATE TABLE {databaseOwner}{objectQualifier}ContactUsFormLog( - [ID] [INT] IDENTITY NOT NULL, - [Name] [NVARCHAR](100) NOT NULL, - [Email] [NVARCHAR](255) NOT NULL, - [Phone] [VARCHAR](100) NOT NULL, - [Comment] [NVARCHAR](255) NOT NULL, - [IPAddress] NVARCHAR(50), - [UserAgent] NVARCHAR(200), - [CreatedDate] [DATETIME2] NOT NULL - ) - END -GO \ No newline at end of file diff --git a/Package/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider b/Package/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider deleted file mode 100644 index f1234bc..0000000 --- a/Package/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider +++ /dev/null @@ -1,15 +0,0 @@ -/************************************************************/ -/***** SqlDataProvider *****/ -/***** *****/ -/***** *****/ -/***** Note: To manually execute this script you must *****/ -/***** perform a search and replace operation *****/ -/***** for {databaseOwner} and {objectQualifier} *****/ -/***** *****/ -/************************************************************/ - - - -/************************************************************/ -/***** SqlDataProvider *****/ -/************************************************************/ \ No newline at end of file diff --git a/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider b/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider deleted file mode 100644 index 3de3a83..0000000 --- a/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider +++ /dev/null @@ -1,30 +0,0 @@ -/************************************************************/ -/***** SqlDataProvider *****/ -/***** *****/ -/***** *****/ -/***** Note: To manually execute this script you must *****/ -/***** perform a search and replace operation *****/ -/***** for {databaseOwner} and {objectQualifier} *****/ -/***** *****/ -/************************************************************/ - -SET ANSI_NULLS ON -GO - -SET QUOTED_IDENTIFIER ON -GO - -IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'{databaseOwner}{objectQualifier}ContactUsFormLog') AND type IN (N'U')) - BEGIN - CREATE TABLE {databaseOwner}{objectQualifier}ContactUsFormLog( - [ID] [INT] IDENTITY NOT NULL, - [Name] [NVARCHAR](100) NOT NULL, - [Email] [NVARCHAR](255) NOT NULL, - [Phone] [VARCHAR](100) NOT NULL, - [Comment] [NVARCHAR](255) NOT NULL, - [IPAddress] NVARCHAR(50), - [UserAgent] NVARCHAR(200), - [CreatedDate] [DATETIME2] NOT NULL - ) - END -GO \ No newline at end of file diff --git a/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider b/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider deleted file mode 100644 index f1234bc..0000000 --- a/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider +++ /dev/null @@ -1,15 +0,0 @@ -/************************************************************/ -/***** SqlDataProvider *****/ -/***** *****/ -/***** *****/ -/***** Note: To manually execute this script you must *****/ -/***** perform a search and replace operation *****/ -/***** for {databaseOwner} and {objectQualifier} *****/ -/***** *****/ -/************************************************************/ - - - -/************************************************************/ -/***** SqlDataProvider *****/ -/************************************************************/ \ No newline at end of file diff --git a/Package/ReleaseNotes.txt b/Package/ReleaseNotes.txt deleted file mode 100644 index 64fc0b6..0000000 --- a/Package/ReleaseNotes.txt +++ /dev/null @@ -1,16 +0,0 @@ -

DNNContactFormModule

-

- CarawayDesign.com
- gus@carawaydesign.com
- http://www.carawaydesign.com/
-

-
-
-

About the DNNContactFormModule

-

- Version CHANGEME

-

- -

Description about version.

- -
\ No newline at end of file diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 51f53e7..fa500b9 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("01.00.08.0")] -[assembly: AssemblyFileVersion("01.00.08.0")] +[assembly: AssemblyVersion("01.00.09.0")] +[assembly: AssemblyFileVersion("01.00.09.0")]