This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Add JS google place api | |
//wp_enqueue_script('google-map-js', 'https://maps.googleapis.com/maps/api/js?key=your_key&libraries=places', null, '1.0', true); | |
/** google map place api */ | |
var placeSearch, autocomplete; | |
var componentForm = { | |
street_number: 'short_name', | |
route: 'long_name', | |
locality: 'long_name', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"address_components": [ | |
{ | |
"long_name": "180", | |
"short_name": "180", | |
"types": [ | |
"street_number" | |
] | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<layout version="0.1.0"> | |
<default> | |
<reference name="root"> | |
<action method="setTemplate"><template>page/2columns-left.phtml</template></action> | |
</reference> | |
<reference name="top.menu"> | |
<!--block type="cms/block" name="top_menu" before="-"> | |
<action method="setBlockId"> | |
<block_id>top_menu</block_id> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/wp-content/themes/twentythirteen/category-portfolio.php b/wp-content/themes/twentythirteen/category-portfolio.php | |
index 05e7b2a..bc75a07 100644 | |
--- a/wp-content/themes/twentythirteen/category-portfolio.php | |
+++ b/wp-content/themes/twentythirteen/category-portfolio.php | |
@@ -16,11 +16,10 @@ get_header(); ?> | |
<div id="bannerText"> | |
<h1 class="entry-title">OUR WORK</h1> | |
</div> | |
- | |
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.exoplatform.web.security; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.concurrent.CountDownLatch; | |
import java.util.concurrent.atomic.AtomicInteger; | |
import junit.framework.TestCase; | |
import org.exoplatform.services.security.ConversationState; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sampleAddon-extension-config/src/main/resources/conf/configuration.xml b/sampleAddon-extension-config/src/main/resources/conf/configuration.xml | |
index 6c3e4ed..cff1a74 100644 | |
--- a/sampleAddon-extension-config/src/main/resources/conf/configuration.xml | |
+++ b/sampleAddon-extension-config/src/main/resources/conf/configuration.xml | |
@@ -12,37 +12,37 @@ | |
http://www.fsf.org. --> | |
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
- xsi:schemaLocation="http://www.exoplaform.org/xml/ns/kernel_1_2.xsd http://www.exoplaform.org/xml/ns/kernel_1_2.xsd" | |
- xmlns="http://www.exoplaform.org/xml/ns/kernel_1_2.xsd"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -25,21 +25,23 @@ import java.util.HashMap; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.Map; | |
+import java.util.TreeMap; | |
import org.exoplatform.portal.config.model.Application; | |
+import org.exoplatform.portal.config.model.TransientApplicationState; | |
public class AddOnServiceImpl implements AddOnService { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/core/src/main/java/juzu/impl/plugin/asset/AssetResolver.java b/core/src/main/java/juzu/impl/plugin/asset/AssetResolver.java | |
index e032169..8b7b7e2 100644 | |
--- a/core/src/main/java/juzu/impl/plugin/asset/AssetResolver.java | |
+++ b/core/src/main/java/juzu/impl/plugin/asset/AssetResolver.java | |
@@ -15,12 +15,12 @@ | |
*/ | |
package juzu.impl.plugin.asset; | |
-import juzu.asset.AssetLocation; | |
-import juzu.impl.resource.ResourceResolver; |
NewerOlder