Skip to content

Commit a281bcc

Browse files
Changes to support issue #6. Also updated readme file with information on contributing.
1 parent 306e9eb commit a281bcc

File tree

4 files changed

+16
-76
lines changed

4 files changed

+16
-76
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,11 @@ A simple document management module for DotNetNuke & Evoq. This module has been
44

55
## Minimum DNN Versions
66

7-
* Version 6.1.0 - Supports DNN 6.0.0 and later, running .NET 3.5 and later
7+
* Prior to Version 6.2.5 - Supports DNN 6.0.0 and later, running .NET 3.5 and later
8+
* Version 6.2.5 and Later - Supports DNN 6.0.0 and later, running .NET 4.0 and later
89

10+
## Get Involved
11+
12+
Recent releases were completed to maintain high-level functionality within the module. However, this module needs deeper attention. If you would like to help this project we strongly encourage Pull Requests and will promptly process any pull request with stable feature enhancements that meet the Keep it Simple Stupid (KISS) mantra that has been part of this module.
13+
14+
If you have any questions, or would like to get approval prior to working on a Pull Request please don't hesitate to contact me directly at msellers@iowacomputergurus.com

Source/DnnDocuments/DNN_Documents.dnn

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<dotnetnuke type="Package" version="5.0">
22
<packages>
3-
<package name="DNN_Documents" type="Module" version="06.02.00">
3+
<package name="DNN_Documents" type="Module" version="06.02.05">
44
<friendlyName>Documents</friendlyName>
55
<description>This module renders a list of documents, including links to browse or download the document.
66
Documents includes an edit page, which allows authorized users to edit the information about the Documents
@@ -33,6 +33,8 @@
3333
</license>
3434
<releaseNotes>
3535
<![CDATA[
36+
<h3>Version 06.02.05</h3>
37+
<p>This version is the 6.2.0 version compiled to run on .NET 4.0!</p>
3638

3739
<h3>Version 06.02.00</h3>
3840

Source/DnnDocuments/DotNetNuke.Documents.vbproj

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<OldToolsVersion>4.0</OldToolsVersion>
2020
<UpgradeBackupLocation>
2121
</UpgradeBackupLocation>
22-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
22+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
2323
<TargetFrameworkProfile />
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -58,6 +58,9 @@
5858
<Reference Include="System.Data.DataSetExtensions" />
5959
<Reference Include="System.Drawing" />
6060
<Reference Include="System.Web" />
61+
<Reference Include="System.Web.ApplicationServices" />
62+
<Reference Include="System.Web.DynamicData" />
63+
<Reference Include="System.Web.Entity" />
6164
<Reference Include="System.Web.Extensions" />
6265
<Reference Include="System.Xml" />
6366
<Reference Include="System.Configuration" />

Source/DnnDocuments/web.config

+2-73
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,9 @@
11
<?xml version="1.0"?>
22
<configuration>
3-
<configSections>
4-
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
5-
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
6-
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
7-
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
8-
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>
9-
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
10-
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
11-
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
12-
</sectionGroup>
13-
</sectionGroup>
14-
</sectionGroup>
15-
</configSections>
163
<appSettings/>
174
<connectionStrings/>
185
<system.web>
19-
<compilation debug="true">
20-
<assemblies>
21-
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
22-
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
23-
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
24-
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
25-
</assemblies>
26-
</compilation>
6+
<compilation debug="true" targetFramework="4.0"/>
277
<!--
288
The <authentication> section enables configuration
299
of the security authentication mode used by
@@ -42,57 +22,6 @@
4222
<error statusCode="404" redirect="FileNotFound.htm" />
4323
</customErrors>
4424
-->
45-
<pages>
46-
<controls>
47-
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
48-
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
49-
</controls>
50-
</pages>
51-
<httpHandlers>
52-
<remove verb="*" path="*.asmx"/>
53-
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
54-
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
55-
<add verb="GET,HEAD" path="ScriptResource.axd" validate="false" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
56-
</httpHandlers>
57-
<httpModules>
58-
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
59-
</httpModules>
25+
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
6026
</system.web>
61-
<system.codedom>
62-
<compilers>
63-
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
64-
<providerOption name="CompilerVersion" value="v3.5"/>
65-
<providerOption name="OptionInfer" value="true"/>
66-
<providerOption name="WarnAsError" value="false"/>
67-
</compiler>
68-
</compilers>
69-
</system.codedom>
70-
<system.webServer>
71-
<validation validateIntegratedModeConfiguration="false"/>
72-
<modules>
73-
<remove name="ScriptModule"/>
74-
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
75-
</modules>
76-
<handlers>
77-
<remove name="WebServiceHandlerFactory-Integrated"/>
78-
<remove name="ScriptHandlerFactory"/>
79-
<remove name="ScriptHandlerFactoryAppServices"/>
80-
<remove name="ScriptResource"/>
81-
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
82-
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
83-
<add name="ScriptResource" verb="GET,HEAD" path="ScriptResource.axd" preCondition="integratedMode" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
84-
</handlers>
85-
</system.webServer>
86-
<runtime>
87-
<assemblyBinding appliesTo="v2.0.50727" xmlns="urn:schemas-microsoft-com:asm.v1">
88-
<dependentAssembly>
89-
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
90-
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
91-
</dependentAssembly>
92-
<dependentAssembly>
93-
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
94-
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
95-
</dependentAssembly>
96-
</assemblyBinding>
97-
</runtime>
9827
</configuration>

0 commit comments

Comments
 (0)