Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.

1-10 of 38Patches < Previous 1 2 3 4 Next >
Status ID Uploaded By Description Work Items Action
Being evaluated
3191 Jun 27 at
6: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
2:23 AM
kccarter this patch includes everything including the files that I overlooked in adding.
Download

Being evaluated
2779 Apr 15 at
2: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
5: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
4: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
3: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
5: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

Being evaluated
1441 Jun 27 2008 at
12:42 PM
amanita option to define if OurPrice include TAX.
and a FlatTaxProvider.
Download

Being evaluated
1371 Jun 11 2008 at
1:01 PM
Dekker500 I wanted the option to put html Anchor <a> tags on region titles, so I decided to do it myself. Here is the patch to enable this functionality.

Content/Controllers/Generated/RegionController.cs
Content/Models/Generated/Region.cs
Content/PageBuilder.cs
Localization/help.resx
Localization/labels.resx

This patch was created against the SVN repository, but it should work for any 3.0 source. The only catch might be the "Localization/labels.resx", since I had to hand-modify the patch because I have my own custom labels in there (that I didn't think you all would want), and the line index may be off. If the patch fails on this file, just add the Anchor Title label from the patch manually.

Also included is an SQL file for updating the database. It simply adds a new column to the dashCommerce_Content_Region table (SQL was tested successfully against base DB)

16992
Download

Being evaluated
1368 Jun 10 2008 at
8:14 PM
aczarto Allows for programatically setting a custom PaymentProvider.
Modifications to:
/Store/Services/PaymentService.cs
/Store/Controllers/OrderController.cs
/Store/Controllers/OrderNoteController.cs
Added /Store/Controller/SkuController.cs

Download

1-10 of 38Patches < Previous 1 2 3 4 Next >
Updating...
© 2006-2009 Microsoft | About CodePlex | Privacy Statement | Terms of Use | Code of Conduct | Version 2009.6.1.15196