shopizer-properties.xml

65 lines | 3.125 kB Blame History Raw Download
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:task="http://www.springframework.org/schema/task"
	xmlns:util="http://www.springframework.org/schema/util"
	xsi:schemaLocation="
   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
   http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
   http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
   http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
   http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.1.xsd
   http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd">

	



	<util:properties id="shopizer-properties">
    			<prop key="MULTIPLE_PRICE_AVAILABILITY">false</prop>
    			<prop key="INDEX_PRODUCTS">true</prop>
				<!-- Images -->
				<prop key="PRODUCT_IMAGE_WIDTH_SIZE">350</prop>
				<prop key="PRODUCT_IMAGE_HEIGHT_SIZE">375</prop>
				<prop key="CROP_UPLOADED_IMAGES">false</prop>
				
				<!-- upload image validations -->
				<prop key="PRODUCT_IMAGE_MAX_HEIGHT_SIZE">2000</prop>
				<prop key="PRODUCT_IMAGE_MAX_WIDTH_SIZE">4000</prop>
				<prop key="PRODUCT_IMAGE_MAX_SIZE">9000000</prop>
				<prop key="IMAGE_FORMATS">jpg|png|gif</prop>
				
				<prop key="POPULATE_TEST_DATA">false</prop>
				
				<prop key="ORDER_SCHEME">http</prop>
				<prop key="CONTEXT_PATH">sm-shop</prop>
				<prop key="URL_EXTENSION">.html</prop>
				<!-- #https://www.google.com/recaptcha/admin/create -->
				<prop key="shopizer.recapatcha_public_key">6Lc1Pe0SAAAAADQDlWbv3MYYj7lGEeCEanwC42bv</prop>
				<prop key="shopizer.recapatcha_private_key">6Lc1Pe0SAAAAAFMolDugwnZN9Xe3CnapokqoQjhg</prop>
				<!-- express checkout url -->
				<prop key="PAYPAL_EXPRESSCHECKOUT_SANDBOX"><![CDATA[https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=]]></prop>
				<prop key="PAYPAL_EXPRESSCHECKOUT_PRODUCTION"><![CDATA[https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=]]></prop>
				<prop key="PAYPAL_EXPRESSCHECKOUT_REGULAR"><![CDATA[_express-checkout&token=]]></prop>
				<prop key="PAYPAL_EXPRESSCHECKOUT_MOBILE"><![CDATA[_express-checkout-mobile&token=]]></prop>
	</util:properties>
	
	
	<!-- templates -->
	<!-- Add new templates in the list, should point to pages/shop/templates and resources/templates -->
	<util:list id="templates" value-type="java.lang.String">
		<value>bootstrap</value>
		<value>bootstrap3</value>
    </util:list>
    
    <bean id="initData" class="com.salesmanager.web.init.data.InitStoreData"/>

	
 
 
 
	
 

	
	
</beans>