Skip to content

Commit

Permalink
Updates for DNN 8 & resolving EVS warnings & cleanup license & releas…
Browse files Browse the repository at this point in the history
…e notes.

Closes #2
  • Loading branch information
EPTamminga committed Feb 24, 2016
1 parent 6eadb34 commit 6652471
Show file tree
Hide file tree
Showing 36 changed files with 4,404 additions and 1,197 deletions.
2 changes: 1 addition & 1 deletion App_LocalResources/ExportCSV.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/FieldEditor.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/ImportCSV.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/configuration.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/default.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/form.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/helppopup.aspx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/list.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/settings.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/sharedresources.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/template.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/templatelist.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
2 changes: 1 addition & 1 deletion App_LocalResources/token2xsl.ascx.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down
8 changes: 5 additions & 3 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[assembly: AssemblyTitle("DotNetNuke.Modules.UserDefinedTable")]
[assembly: AssemblyDescription("ASP.NET Open Source Portal Application,Form and List Module")]
[assembly: AssemblyCompany("DotNetNuke Inc")]
[assembly: AssemblyCompany("DNN Corp")]
[assembly: AssemblyProduct("http://www.dotnetnuke.com")]
[assembly:
AssemblyCopyright("Portal engine source code is copyright &copy; 2002-YYYY by DotNetNuke. All Rights Reserved")]
Expand All @@ -32,5 +32,7 @@
// übernehmen, indem Sie "*" eingeben:
// <Assembly: AssemblyVersion("1.0.*")>

[assembly: AssemblyVersion("06.02.00.*")]
[assembly: CLSCompliant(true)]
[assembly: AssemblyVersion("06.02.00.00")]
[assembly: CLSCompliant(true)]
[assembly: AssemblyFileVersion("06.02.00.00")]

4 changes: 4 additions & 0 deletions BuildScripts/ModulePackage.targets
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@
<Output TaskParameter="Include" ItemName="PackageTxtFiles" />
</CreateItem>

<CreateItem Include="**\Cleanup_*.txt">
<Output TaskParameter="Include" ItemName="PackageTxtFiles" />
</CreateItem>


<CreateItem Include="**\*.sqldataprovider">
<Output TaskParameter="Include" ItemName="SqlDataProviderFiles" />
Expand Down
6 changes: 3 additions & 3 deletions DataTypes/Time.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace DotNetNuke.Modules.UserDefinedTable.DataTypes
public class EditTime : EditControl
{
DnnTimePicker _ctlTime;


public override string Value
{
Expand All @@ -49,7 +49,7 @@ public override string Value
{
if (value == string.Empty)
{

}
else
{
Expand All @@ -59,7 +59,7 @@ public override string Value
}
}



void EditTime_Init(object sender, EventArgs e)
{
Expand Down
Loading

0 comments on commit 6652471

Please sign in to comment.