Wrox Programmer Forums
|
BOOK: Professional DotNetNuke Module Programming ISBN: 978-0-470-17116-5
This is the forum to discuss the Wrox book Professional DotNetNuke Module Programming by Mitchel Sellers and Shaun Walker - Wrox DotNetNuke Series Editor; ISBN: 978-0-470-17116-5
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional DotNetNuke Module Programming ISBN: 978-0-470-17116-5 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 26th, 2010, 12:12 AM
Registered User
 
Join Date: Feb 2010
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default newbie module creator

Hello Mitchel,

I found out what others have concerning the lack of import module feature in the DNN 5.2.2 version and tried to follow the new way of going about getting my newly compiled module up on my testing environment and after creating the module via manifest I got the same response as another member of the site in that no confirmation happened either error or success.

However unlike the member who got to this point I noticed that after clicking on module definitions the guestbookcs module did not show up in my module definitions so I am not sure if some logic issue is going on with the .dnn file or what.

Here is my fully developed dnn manifest file see if anything looks odd in it that might be erroring out without DNN telling me.
-----------------------------------------------------------------------

<dotnetnuke type="package" version="5.0">
<packages>
<package name="bo.guestbookcs" type="module" version="1.0.0">
<friendlyName>Guestbook Module CS Version</friendlyName>
<description>This is a prett snazzy module for having guests sign your book</description>
<owner>
<name>Bo Suriner</name>
<organization>Bo's Berry Barn</organization>
<url />
<email>[email protected]</email>
</owner>
<license>
&lt;p&gt; 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 funished to do so, subject to the following conditions:
<!--&lt;/p&gt;; -->The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. &lt;/p&gt; 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 NONINFRINGEMENT. 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.&lt;/P&gt;
</license>
<releaseNotes>&lt;p&gt; Example Module &lt; /p&gt;</releaseNotes>
<components>

<component type="Script">

<scripts>
<basePath>DesktopModules\guestbookcs</basePath>
<script type="Install">
<name>01.00.00.sqldataprovider</name>
<Version>01.00.00</Version>
</script>
<script type="Uninstall">
<name>uninstall.sqldataprovider</name>
<version>01.00.00</version>
</script>
</scripts>
</component>
<component type="Module">
<desktopModule>
<moduleName>bo.guestbookcs</moduleName>
<foldername>guestbookcs</foldername>
<businessControllerClass></businessControllerClass>
<moduleDefinitions>
<moduleDefinition>
<friendlyName>Guestbook Module CS Version</friendlyName>
<defaultCacheTime>0</defaultCacheTime>
<moduleControls>
<modulecontrol>
<controlKey />
<controlSrc>
DesktopModules/guestbookcs/ViewGuestbookcs.ascx
</controlSrc>
<supportsPartialRendering>True</supportsPartialRendering>
<controlTitle />
<controlType>View</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</modulecontrol>
<modulecontrol>
<controlKey>Settings</controlKey>
<controlSrc>
DesktopModules/guestbookcs/ViewSettings.ascx
</controlSrc>
<supportsPartialRendering>False</supportsPartialRendering>
<controlTitle>View Guestbook CS Settings</controlTitle>
<controlType>Edit</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</modulecontrol>
</moduleControls>
</moduleDefinition>

<moduleDefinition>
<friendlyName> Sign Guestbook CS
</friendlyName>
<defaultCacheTime>0</defaultCacheTime>
<moduleControl>
<controlKey />
<controlSrc>DesktopModules/guestbookcs/SignGuestbook.ascx</controlSrc>
<supportsPartialRendering>false</supportsPartialRendering>
<controlTitle>Sign Guestbook</controlTitle>
<controltype>View</controltype>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</moduleControl>
<moduleControl>
<controlKey>Settings</controlKey>
<controlSrc>DesktopModules/guestbookcs/Settings.ascx</controlSrc>
<supportsPartialRendering>false</supportsPartialRendering>
<controlTitle>Sign Guestbook Settings</controlTitle>
<controlType>Edit</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</moduleControl>
</moduleDefinition>
</moduleDefinitions>
</desktopModule>
</component>
<component type="Assembly">
<assemblies>
<assembly>
<path>bin</path>
<name>bo.Modules.guestbookcs.dll</name>
</assembly>
</assemblies>
</component>
<component type="File">
<files>
<basePath>DesktopModules\guestbookcs</basePath>
<file>
<path>app_localresources</path>
<name>Editguestbookcs.ascx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>Settings.aspx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>Viewguestbookcs.ascx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>SignGuestbook.ascx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>ViewSettings.ascx.resx</name>
</file>
<file>
<name>SignGuestbook.ascx</name>
</file>
<file>
<name>ViewSettings.ascx</name>
</file>
<file>
<name>Editguestbookcs.ascx</name>
</file>
<file>
<name>Settings.aspx</name>
</file>
<file>
<name>Viewguestbookcs.ascx</name>
</file>
<file>
<name>module.css</name>
</file>
</files>
</component>
</components>
</package>
</packages>
</dotnetnuke>

----------------------------------------------------------------

thanks,

Bo





Similar Threads
Thread Thread Starter Forum Replies Last Post
phpFox Account Creator phpFoxHelp Pro PHP 0 February 16th, 2008 04:03 AM
module umeshtheone Beginning VB 6 2 May 17th, 2007 05:48 AM
module umeshtheone VB Databases Basics 1 May 14th, 2007 01:41 PM
c# class creator mm80x C# 0 January 19th, 2007 07:45 PM
Process flow diagram creator application madhukp VB How-To 0 November 12th, 2004 06:10 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.