Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.
Being evaluated
|
4423 |
Nov 13 at 1:51 PM |
yocuteem |
This patch is related to patch 2309, which I submitted back in January 2009. Apparently I forgot to include two files. This patch contains the following file: CatalogListing.cs. This single file has both the CatalogList and CatalogListCollection within it. Sorry about that.
Tim
|
|
Download
|
Being evaluated
|
3706 |
Aug 28 at 2:30 PM |
Dekker500 |
Oops. This is an update to the previous patch. This new patch supersedes the other one. providerId was not set correctly, but is now included.
|
23575
|
Download
|
Being evaluated
|
3705 |
Aug 28 at 1:47 PM |
Dekker500 |
This patch is for SimpleWeightShippingProvider.ascx.cs, as found in dashCommerce 3.x.
The SimpleWeightShippingProvider didn't properly remember the current provider ID when navigating between data tabs. This resolves the issue by appending the providerId attribute, as used by the RegionCode.ascx.cs class.
Simply apply this patch to Web\admin\controls\navigation\simpleweightshippingprovider.ascx.cs.
Also apply the content of this patch to any of your own custom payment providers to fix the problem in your own code.
|
23575
|
Download
|
Being evaluated
|
3191 |
Jun 27 at 7:23 PM |
kccarter |
WebPart ContentManagement.
there is a class in the store library called CommercePart which derives from WebPart. Symbios.Web.dll contains a virtual webservice that that ContentManagement system uses for ajax enabled server controls. below is an example of what needs to be configured foreach web server that will host the virtual webservice.
the one advantage that this has over a conventional web service is that the file path on the server to reach the service is virtual. basicaly the file name consists of the Full Namespace of the webservice folled by the extension .symx
<configuration> <system.web> <httpHandlers> <add verb="*" path="*.symx" validate="false" type="Symbios.Web.Services.Protocols.SymWebServiceHandlerFactory, Symbios.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> </httpHandlers> </system.web> <system.webServer> <handlers> <add name="SymWebServiceFactory" path="*.symx" verb="*" modules="IsapiModule" scriptProcessor="E:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode,runtimeVersionv2.0,bitness64" /> <add name="SymWebServiceHandlerFactory" verb="*" path="*.symx" preCondition="integratedMode" type="Symbios.Web.Services.Protocols.SymWebServiceHandlerFactory, Symbios.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> </handlers> </system.webServer> </configuration>
this patch is ready for testing. I have this management system up and running at http://cummings.symbios.us/
|
|
Download
|
Being evaluated
|
2780 |
Apr 15 at 3:23 AM |
kccarter |
this patch includes everything including the files that I overlooked in adding.
|
|
Download
|
Being evaluated
|
2779 |
Apr 15 at 3:08 AM |
kccarter |
disclaimer: this is my first patch.
This patch contains IPackageInfo Interface.
the SimpleWeightShippingProvider has been updated to use the interface. Weight, length, width, height have been removed from the products table. a product_package_info table has been created in the sql scripts. to support the IPackageInfo interface.
this patch also includes a new content manager that extends the old manager with webpart technology. anonymous authentication is also a part of this patch. alot of changes had to be made because page.user.isauthenticated no longer can be used. it is imperative that the users role is checked to ensure proper operation.
as i have stated this is my first patch. feedback would be appreciated. as a precaution you might want to apply this patch to a new build to test it out.
Subsonic 2.1 final is in the dependecies. this version is fixed and it works very well with this patch.
|
|
Download
|
Being evaluated
|
2309 |
Jan 6 at 6:11 PM |
yocuteem |
This is related to the patch that I uploaded back in November (ID: 2037) for the catalog listing content provider. I forgot to include the CatalogListing.cs file. This file needs to be added to the Content project under: Models/Generated.
Tim
|
|
Download
|
Being evaluated
|
2245 |
Dec 15 2008 at 5:46 PM |
yocuteem |
This patch contains the code changes and db changes needed to implement the money order, checks, and cash payment methods in dashCommerce. The only db script that I left out was adding the payment methods to the dashCommerce_Core_ConfigurationData table. You just need to add the "</PaymentMethodSettings>" xml node to value for the siteSettings record in this table.
Tim
|
|
Download
|
Being evaluated
|
2037 |
Nov 3 2008 at 4:08 PM |
yocuteem |
I created a custom content editor that will allow you to display products, from a given category, within any of your content pages. This content provider uses the same code that is used to display products for categories (when you click on the category in the left menu and the products appear in the right side of the page). I created this for a client that wanted to be able to create a category named: "Featured Items" and have these products displayed on the main page. I just thought I'd share this with everyone.
To use this content provider, all you need to do is run the sql file to insert the new content provider into the dashCommerce_Content_Provider table, and then copy the two ascx files to the following locations:
control/content/Custom/viewCategoryListing.ascx admin/controls/content/Custom/CatalogListEditor.ascx
|
|
Download
|
Being evaluated
|
1442 |
Jun 27 2008 at 6:10 PM |
amanita |
path ID:1441 have fake values for testing.
new option on General sitesettings "TaxIncluded" when enable, it will display the same value as we give in "OurPrice" on the "Cart/Final CheckOut" it will calculate the tax as normal but it's not included in "Total", since the prices already have TAX. to have the right TAX value we have to change the way that "SomeTaxPrivider" calculate the value
ex: SomeTaxProvider.cs on "GetTaxRate" if (SiteSettings.TaxIncluded) { (PaidPrice - (PaidPrice / 1,"TaxValue"));....
this patch dosnt effect the normal function of taxproviders.
|
|
Download
|