From a713b930db652ea0c3653699b7c31c6abfb2f2a7 Mon Sep 17 00:00:00 2001 From: Gus Beare Date: Mon, 26 Jun 2017 16:32:43 +0100 Subject: [PATCH] tweaks --- 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 +++ 7 files changed, 256 insertions(+) create mode 100644 Package/DNNContactFormModule.dnn create mode 100644 Package/License.txt create mode 100644 Package/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider create mode 100644 Package/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider create mode 100644 Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider create mode 100644 Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider create mode 100644 Package/ReleaseNotes.txt diff --git a/Package/DNNContactFormModule.dnn b/Package/DNNContactFormModule.dnn new file mode 100644 index 0000000..3ab6feb --- /dev/null +++ b/Package/DNNContactFormModule.dnn @@ -0,0 +1,129 @@ + + + + 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 new file mode 100644 index 0000000..91871ed --- /dev/null +++ b/Package/License.txt @@ -0,0 +1,21 @@ +
+

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 new file mode 100644 index 0000000..3de3a83 --- /dev/null +++ b/Package/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider @@ -0,0 +1,30 @@ +/************************************************************/ +/***** 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 new file mode 100644 index 0000000..f1234bc --- /dev/null +++ b/Package/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider @@ -0,0 +1,15 @@ +/************************************************************/ +/***** 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 new file mode 100644 index 0000000..3de3a83 --- /dev/null +++ b/Package/Providers/DataProviders/SqlDataProvider/01.00.08.SqlDataProvider @@ -0,0 +1,30 @@ +/************************************************************/ +/***** 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 new file mode 100644 index 0000000..f1234bc --- /dev/null +++ b/Package/Providers/DataProviders/SqlDataProvider/Uninstall.SqlDataProvider @@ -0,0 +1,15 @@ +/************************************************************/ +/***** 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 new file mode 100644 index 0000000..64fc0b6 --- /dev/null +++ b/Package/ReleaseNotes.txt @@ -0,0 +1,16 @@ +

DNNContactFormModule

+

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

+
+
+

About the DNNContactFormModule

+

+ Version CHANGEME

+

+ +

Description about version.

+ +
\ No newline at end of file