Skip to content

Commit

Permalink
Merge pull request #188 from hismightiness/development
Browse files Browse the repository at this point in the history
Open Graph Protocol 2.0 Release
  • Loading branch information
Will Strohl authored Nov 24, 2020
2 parents f944270 + 261108d commit 9f41e25
Show file tree
Hide file tree
Showing 19 changed files with 292 additions and 207 deletions.
1 change: 1 addition & 0 deletions Build/ModulePackage.targets
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<InstallInclude Include="**\*.bmp" Exclude="packages\**;node_modules\**;clientApp\**" />
<InstallInclude Include="**\*.xml" Exclude="packages\**;node_modules\**;clientApp\**;bin\**" />
<InstallInclude Include="**\web.config" Exclude="packages\**;node_modules\**;clientApp\**" />
<InstallInclude Include="**\*.xml.resources" Exclude="packages\**;node_modules\**;clientApp\**;Config\ogConfig*.xml.resources;Config\ogSettings*.xml.resources" />
</ItemGroup>

<CreateItem Include="$(DNNFileName).dnn">
Expand Down
22 changes: 15 additions & 7 deletions Modules/WillStrohl.Injection/License.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
<p>Will Strohl (<a href="mailto:[email protected]">[email protected]</a>)<br /><a href="http://hismightiness.github.io/dnnextensions/" target="_blank">http://hismightiness.github.io/dnnextensions/</a></p>
<p>Copyright (c) 2009-2016, Will Strohl</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>
<p>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</p>
<p>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</p>
<p>Neither the name of Will Strohl, the Content Injection Module, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</p>
<p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
<style>
div.uv-install-wrapper h3, div.uv-install-wrapper h4, div.uv-install-wrapper p, div.uv-install-wrapper hr, div.uv-install-wrapper ul { margin-bottom: 0.5em; }
div.uv-install-wrapper ul { padding-left: 2em; }
.muy-importante { color:red;font-weight:bold; }
</style>
<div class="uv-install-wrapper">
<p>Upendo Ventures, LLC(<a href="mailto:[email protected]">[email protected]</a>)<br /><a href="https://upendoventures.com" target="_blank">https://upendoventures.com</a></p>
<p>Copyright (c) Upendo Ventures, LLC</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>
<p>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</p>
<p>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</p>
<p>Neither the name of Will Strohl, the Open Graph Module for DotNetNuke, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior
written permission.</p>
<p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
</div>
35 changes: 21 additions & 14 deletions Modules/WillStrohl.Injection/Module.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,38 +14,45 @@
</Target>
<Target Name="GetFiles">
<ItemGroup>
<Manifest Include="*.dnn;*.dnn5;*.dnn6" />
<Manifest Include="*.dnn;*.dnn5;*.dnn6" Exclude="*_Symbols.dnn" />
<TextFiles Include="*.txt" Exclude="releasenotes.txt;license.txt" />
<SourceFiles Include="*.css;*.htm" />
<SourceFiles Include="*.css;*.htm;*.html" />
<Views Include="*.ascx;" />
<ResourceFiles Include="App_LocalResources/*.resx" />
<Images Include="Images/**/*.*" />
<JsFiles Include="js/**/*.*" />
<Styles Include="Styles/**/*.*" />
<MvcViews Include="Views/**/*.*" />
<Libraries Include="bin/*.dll;bin/*.pdb" Exclude="bin/DotNetNuke*;bin/Telerik*;bin/System.*;bin/Microsoft.*;bin/Newtonsoft.Json.*" />
<Config Include="web.config" />
<DataProvider Include="Providers/DataProviders/SqlDataProvider/*.SqlDataProvider" />
<Resources Include="@(ResourceFiles);@(Views);@(Images);@(TextFiles);@(SourceFiles);@(JsFiles);@(Manifest);@(DataProvider);@(Styles)" />
<Resources Include="@(Manifest);@(TextFiles);@(SourceFiles);@(Views);@(ResourceFiles);@(Images);@(JsFiles);@(Styles);@(MvcViews);@(Libraries);@(Config);@(DataProvider)" />
</ItemGroup>
</Target>
<ItemGroup>
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).dll" />
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).pdb" />
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).xml" />
</ItemGroup>
<ItemGroup>
<BinInstallInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).dll" />
<SymbolsInclude Include="$(DNNFileName)_Symbols.dnn" />
<SymbolsInclude Include="License.txt" />
<SymbolsInclude Include="ReleaseNotes.txt" />
</ItemGroup>
<Target Name="CopyBin">
<Copy SourceFiles="@(BinSourceInclude)" DestinationFolder="$(WebsitePath)/bin" />
<ItemGroup>
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\*.dll" Exclude="$(MSBuildProjectDirectory)\bin\DotNetNuke*;$(MSBuildProjectDirectory)\bin\Telerik*;$(MSBuildProjectDirectory)\bin\System.*;$(MSBuildProjectDirectory)\bin\Microsoft.*;$(MSBuildProjectDirectory)\bin\Newtonsoft.Json.*" />
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\*.pdb" Exclude="$(MSBuildProjectDirectory)\bin\DotNetNuke*;$(MSBuildProjectDirectory)\bin\Telerik*;$(MSBuildProjectDirectory)\bin\System.*;$(MSBuildProjectDirectory)\bin\Microsoft.*;$(MSBuildProjectDirectory)\bin\Newtonsoft.Json.*" />
</ItemGroup>
<Copy SourceFiles="@(BinSourceInclude)" DestinationFolder="$(WebsitePath)\bin" />
</Target>
<Target Name="DebugProject" Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Copy SourceFiles="@(Manifest)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(TextFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(Views)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(ResourceFiles)" DestinationFolder="$(FullModulePath)\App_LocalResources" />
<Copy SourceFiles="@(Images)" DestinationFolder="$(FullModulePath)\Images\%(RecursiveDir)" />
<Copy SourceFiles="@(JsFiles)" DestinationFolder="$(FullModulePath)\Scripts\%(RecursiveDir)" />
<Copy SourceFiles="@(Styles)" DestinationFolder="$(FullModulePath)\Styles\%(RecursiveDir)" />
<Copy SourceFiles="@(TextFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(MvcViews)" DestinationFolder="$(FullModulePath)\Views\%(RecursiveDir)" />
<Copy SourceFiles="@(Libraries)" DestinationFolder="$(WebsitePath)\bin" />
<Copy SourceFiles="@(Config)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(DataProvider)" DestinationFolder="$(FullModulePath)\Providers\DataProviders\SqlDataProvider" />
<Copy SourceFiles="@(ResourceFiles)" DestinationFolder="$(FullModulePath)\App_LocalResources" />
</Target>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
<packages>
<package name="WillStrohl.Injection_Symbols" type="Library" version="03.00.00">
<friendlyName>Content Injection Symbols</friendlyName>
<![CDATA[<p>This is a content injection module, written by Upendo Ventures. Its purpose is to allow you to inject markup into the header, body, and footer of the page.</p>]]>
<description>
<![CDATA[<p>This is a content injection module, written by Upendo Ventures. Its purpose is to allow you to inject markup into the header, body, and footer of the page.</p>]]>
</description>
<iconFile>DesktopModules/WillStrohl.Injection/Images/logo.png</iconFile>
<owner>
<name>Will Strohl</name>
<organization>Upendo Ventures, LLC</organization>
Expand Down
18 changes: 11 additions & 7 deletions Modules/WillStrohl.OpenGraph/Components/OpenGraphController.vb
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
'
' Will Strohl (will.strohl@gmail.com)
' http://www.willstrohl.com
' Upendo Ventures, LLC (solutions@upendoventures.com)
' https://upendoventures.com
'
'Copyright (c) 2011-2013, Will Strohl
'All rights reserved.
'Copyright (c) Upendo Ventures, LLC
'
'Redistribution and use in source and binary forms, with or without modification, are
'permitted provided that the following conditions are met:
Expand Down Expand Up @@ -373,9 +372,14 @@ Namespace WillStrohl.Modules.OpenGraph

Public Shared Sub NukeSettings(ByVal PortalId As Integer, ByVal ModuleId As Integer, ByVal TabModuleId As Integer)

Dim ctlModule As New ModuleController
ctlModule.DeleteModuleSettings(ModuleId)
ctlModule.DeleteTabModuleSettings(TabModuleId)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, OG_TITLE_SETTING)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, USE_TABTITLE_SETTING)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, OG_DESCRIPTION_SETTING)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, USE_TABDESCRIPTION_SETTING)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, OG_URL_SETTING)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, USE_TABURL_SETTING)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, OG_IMAGE_SETTING)
ModuleController.Instance.DeleteTabModuleSetting(TabModuleId, OG_LOCALE_SETTING)

PortalController.DeletePortalSetting(PortalId, OG_SITENAME_SETTING)
PortalController.DeletePortalSetting(PortalId, USE_PORTALTITLE_SETTING)
Expand Down
9 changes: 4 additions & 5 deletions Modules/WillStrohl.OpenGraph/Components/OpenGraphWriter.vb
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
'
' Will Strohl (will.strohl@gmail.com)
' http://www.willstrohl.com
' Upendo Ventures, LLC (solutions@upendoventures.com)
' https://upendoventures.com
'
'Copyright (c) 2011-2013, Will Strohl
'All rights reserved.
'Copyright (c) Upendo Ventures, LLC
'
'Redistribution and use in source and binary forms, with or without modification, are
'permitted provided that the following conditions are met:
Expand Down Expand Up @@ -50,7 +49,7 @@ Namespace WillStrohl.Modules.OpenGraph

Private mApplication As HttpApplication
Private Const INVALID_EXTENSION_MATCH_PATTERN As String = "\.(swf|jpg|jpeg|jpe|gif|bmp|png|doc|docx|xls|xlsx|ppt|pptx|pdf|txt|xml|xsl|xsd|css|zip|template|htmtemplate|ico|avi|mpg|mpeg|mp3|wmv|mov|wav|js|axd|htm|html|ashx)$"
Private Const INVALID_REQUEST_PATCH_MATCH_PATTERN As String = "(ctl=Edit|mid=\d+|popUp=true|ctl/Edit|mid/\d+|/Admin/|/Host/|/DesktopModules/|/Providers/|/Resources/|\.ashx/)"
Private Const INVALID_REQUEST_PATCH_MATCH_PATTERN As String = "(ctl=Edit|mid=\d+|popUp=true|ctl/Edit|mid/\d+|/Admin/|/Host/|/DesktopModules/|/Providers/|/Resources/|\.ashx/|fileticket=)"
'Private Const REQUEST_POST As String = "POST"
'Private Const REQUEST_CONTENTTYPE_AJAX As String = "application/json"
Private Const HEADER_AJAX_KEY As String = "X-MicrosoftAjax"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
'
' Will Strohl (will.strohl@gmail.com)
' http://www.willstrohl.com
' Upendo Ventures, LLC (solutions@upendoventures.com)
' https://upendoventures.com
'
'Copyright (c) 2011-2013, Will Strohl
'All rights reserved.
'Copyright (c) Upendo Ventures, LLC
'
'Redistribution and use in source and binary forms, with or without modification, are
'permitted provided that the following conditions are met:
Expand Down
7 changes: 3 additions & 4 deletions Modules/WillStrohl.OpenGraph/Default.ascx.vb
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
'
' Will Strohl (will.strohl@gmail.com)
' http://www.willstrohl.com
' Upendo Ventures, LLC (solutions@upendoventures.com)
' https://upendoventures.com
'
'Copyright (c) 2011-2013, Will Strohl
'All rights reserved.
'Copyright (c) Upendo Ventures, LLC
'
'Redistribution and use in source and binary forms, with or without modification, are
'permitted provided that the following conditions are met:
Expand Down
Binary file added Modules/WillStrohl.OpenGraph/Images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 8 additions & 3 deletions Modules/WillStrohl.OpenGraph/License.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<div style="width:100%;height:375px;overflow:auto;">
<p>Will Strohl (<a href="mailto:[email protected]">[email protected]</a>)<br /><a href="http://www.willstrohl.com" target="_blank">http://www.willstrohl.com</a></p>
<p>Copyright (c) 2011-2013, Will Strohl<br />All rights reserved.</p>
<style>
div.uv-install-wrapper h3, div.uv-install-wrapper h4, div.uv-install-wrapper p, div.uv-install-wrapper hr, div.uv-install-wrapper ul { margin-bottom: 0.5em; }
div.uv-install-wrapper ul { padding-left: 2em; }
.muy-importante { color:red;font-weight:bold; }
</style>
<div class="uv-install-wrapper">
<p>Upendo Ventures, LLC(<a href="mailto:[email protected]">[email protected]</a>)<br /><a href="https://upendoventures.com" target="_blank">https://upendoventures.com</a></p>
<p>Copyright (c) Upendo Ventures, LLC</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>
<p>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</p>
<p>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</p>
Expand Down
37 changes: 20 additions & 17 deletions Modules/WillStrohl.OpenGraph/Module.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,45 +9,48 @@
<WebsiteInstallPath>$(WebsitePath)\Install\Module</WebsiteInstallPath>
<FullModulePath>$(WebsitePath)\DesktopModules\$(ModulePath)</FullModulePath>
</PropertyGroup>
<Import Project="$(BuildScriptsPath)\ModulePackageSource.Targets" />
<Import Project="$(BuildScriptsPath)\ModulePackage.Targets" />
<Target Name="AfterBuild" DependsOnTargets="CopyBin;GetFiles;DebugProject;PackageModule">
</Target>
<Target Name="GetFiles">
<ItemGroup>
<Manifest Include="*.dnn;*.dnn5;*.dnn6" />
<Manifest Include="*.dnn;*.dnn5;*.dnn6" Exclude="*_Symbols.dnn" />
<TextFiles Include="*.txt" Exclude="releasenotes.txt;license.txt" />
<SourceFiles Include="*.css;*.htm" />
<SourceFiles Include="*.css;*.htm;*.html" />
<Views Include="*.ascx;" />
<ResourceFiles Include="App_LocalResources/*.resx" />
<Images Include="Images/**/*.*" />
<JsFiles Include="js/**/*.*" />
<Styles Include="Styles/**/*.*" />
<Config Include="Config/**/*.*" />
<Configs Include="Config/**/*.xml.resources" Exclude="Config/ogConfig*.xml.resources;Config/ogSettings*.xml.resources" />
<Libraries Include="bin/*.dll;bin/*.pdb" Exclude="bin/DotNetNuke*;bin/Telerik*;bin/System.*;bin/Microsoft.*;bin/Newtonsoft.Json.*" />
<DataProvider Include="Providers/DataProviders/SqlDataProvider/*.SqlDataProvider" />
<Resources Include="@(ResourceFiles);@(Views);@(Images);@(TextFiles);@(SourceFiles);@(JsFiles);@(Manifest);@(DataProvider);@(Styles);@(Config)" />
<Resources Include="@(Manifest);@(TextFiles);@(SourceFiles);@(Views);@(ResourceFiles);@(Images);@(JsFiles);@(Styles);@(Libraries);@(Configs);@(DataProvider)" />
</ItemGroup>
</Target>
<ItemGroup>
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).dll" />
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).pdb" />
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).xml" />
</ItemGroup>
<ItemGroup>
<BinInstallInclude Include="$(MSBuildProjectDirectory)\bin\$(AssemblyName).dll" />
<SymbolsInclude Include="$(DNNFileName)_Symbols.dnn" />
<SymbolsInclude Include="License.txt" />
<SymbolsInclude Include="ReleaseNotes.txt" />
</ItemGroup>
<Target Name="CopyBin">
<Copy SourceFiles="@(BinSourceInclude)" DestinationFolder="$(WebsitePath)/bin" />
<ItemGroup>
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\*.dll" Exclude="$(MSBuildProjectDirectory)\bin\DotNetNuke*;$(MSBuildProjectDirectory)\bin\Telerik*;$(MSBuildProjectDirectory)\bin\System.*;$(MSBuildProjectDirectory)\bin\Microsoft.*;$(MSBuildProjectDirectory)\bin\Newtonsoft.Json.*" />
<BinSourceInclude Include="$(MSBuildProjectDirectory)\bin\*.pdb" Exclude="$(MSBuildProjectDirectory)\bin\DotNetNuke*;$(MSBuildProjectDirectory)\bin\Telerik*;$(MSBuildProjectDirectory)\bin\System.*;$(MSBuildProjectDirectory)\bin\Microsoft.*;$(MSBuildProjectDirectory)\bin\Newtonsoft.Json.*" />
</ItemGroup>
<Copy SourceFiles="@(BinSourceInclude)" DestinationFolder="$(WebsitePath)\bin" />
</Target>
<Target Name="DebugProject" Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Copy SourceFiles="@(Manifest)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(TextFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(Views)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(ResourceFiles)" DestinationFolder="$(FullModulePath)\App_LocalResources" />
<Copy SourceFiles="@(Images)" DestinationFolder="$(FullModulePath)\Images\%(RecursiveDir)" />
<Copy SourceFiles="@(JsFiles)" DestinationFolder="$(FullModulePath)\Scripts\%(RecursiveDir)" />
<Copy SourceFiles="@(Styles)" DestinationFolder="$(FullModulePath)\Styles\%(RecursiveDir)" />
<Copy SourceFiles="@(Config)" DestinationFolder="$(FullModulePath)\Config\%(RecursiveDir)" />
<Copy SourceFiles="@(TextFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(FullModulePath)" />
<Copy SourceFiles="@(Configs)" DestinationFolder="$(FullModulePath)\Config\%(RecursiveDir)" />
<Copy SourceFiles="@(Libraries)" DestinationFolder="$(WebsitePath)\bin" />
<Copy SourceFiles="@(DataProvider)" DestinationFolder="$(FullModulePath)\Providers\DataProviders\SqlDataProvider" />
<Copy SourceFiles="@(ResourceFiles)" DestinationFolder="$(FullModulePath)\App_LocalResources" />
</Target>
</Project>
</Project>
14 changes: 1 addition & 13 deletions Modules/WillStrohl.OpenGraph/Module.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
/*
WillStrohl.OpenGraph Module for DotNetNuke
Version: 01.00.00
Author: Will Strohl
E-Mail: [email protected]
Website: http://www.willstrohl.com
Copyright 2011 Will Strohl
*/

/* option settings */
/* option settings */
.wnsFormCheckbox input, .wnsFormCheckboxDisabled input { margin-left: 5px !important; }
.wnsFormCheckbox label { cursor: pointer !important; }
.wnsFormCheckboxDisabled input, .wnsFormCheckboxDisabled label { cursor: not-allowed !important; }
Expand Down
Loading

0 comments on commit 9f41e25

Please sign in to comment.