Modified:
shindig/trunk/java/social-api/src/test/java/org/apache/shindig/social/core/oauth/OAuth2ImplicitFlowTest.java
URL:
http://svn.apache.org/viewvc/shindig/trunk/java/social-api/src/test/java/org/apache/shindig/social/core/oauth/OAuth2ImplicitFlowTest.java?rev=1243399&r1=1243398&r2=1243399&view=diff
==============================================================================
---
shindig/trunk/java/social-api/src/test/java/org/apache/shindig/social/core/oauth/OAuth2ImplicitFlowTest.java
(original)
+++
shindig/trunk/java/social-api/src/test/java/org/apache/shindig/social/core/oauth/OAuth2ImplicitFlowTest.java
Mon Feb 13 02:59:33 2012
@@ -1,187 +1,187 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations under the License.
- */
-package org.apache.shindig.social.core.oauth;
-
-import org.apache.shindig.common.testing.FakeHttpServletRequest;
-import org.apache.shindig.common.uri.UriBuilder;
-import org.apache.shindig.social.core.oauth2.OAuth2Servlet;
-import
org.apache.shindig.social.dataservice.integration.AbstractLargeRestfulTests;
-import org.easymock.Capture;
-import org.easymock.EasyMock;
-import org.json.JSONObject;
-import org.junit.Before;
-import org.junit.Test;
-
-import javax.servlet.http.HttpServletResponse;
-
-import java.io.PrintWriter;
-import java.net.URLEncoder;
-
-public class OAuth2ImplicitFlowTest extends AbstractLargeRestfulTests {
- protected OAuth2Servlet servlet = null;
-
- public static final String IMPLICIT_CLIENT_ID = "advancedImplicitClient";
-
- protected static final String REDIRECT_URI =
"http://localhost:8080/oauthclients/ImplicitClientHelper.html";
-
- @Before
- @Override
- public void abstractLargeRestfulBefore() throws Exception {
- super.abstractLargeRestfulBefore();
- servlet = new OAuth2Servlet();
- injector.injectMembers(servlet);
- };
-
- /**
- * Test retrieving an access token using a public client with a redirect uri
- *
- * @throws Exception
- */
- @Test
- public void testGetAccessTokenWithRedirectParamAndState() throws Exception {
- FakeHttpServletRequest req = new FakeHttpServletRequest(
- "http://localhost:8080/oauth2");
- req.setContentType("application/x-www-form-urlencoded");
- req.setPostData(
- "client_id=" + IMPLICIT_CLIENT_ID
- + "&response_type=token&state=PRESERVEME&redirect_uri="
- + URLEncoder.encode(REDIRECT_URI, "UTF-8"), "UTF-8");
- req.setMethod("GET");
- req.setServletPath("/oauth2");
- req.setPathInfo("/authorize");
- HttpServletResponse resp = mock(HttpServletResponse.class);
- Capture<String> redirectURI = new Capture<String>();
- resp.setHeader(EasyMock.eq("Location"), EasyMock.capture(redirectURI));
- resp.setStatus(HttpServletResponse.SC_FOUND);
- MockServletOutputStream outputStream = new MockServletOutputStream();
- EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
- PrintWriter writer = new PrintWriter(outputStream);
- EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
- replay();
- servlet.service(req, resp);
- writer.flush();
- String fragment = UriBuilder.parse(redirectURI.getValue()).getFragment();
- assertTrue(redirectURI.getValue().startsWith(REDIRECT_URI));
- assertTrue(fragment.contains("token_type=bearer"));
- assertTrue(fragment.contains("access_token="));
- assertTrue(fragment.contains("expires_in="));
- assertTrue(fragment.contains("state=PRESERVEME"));
-
- verify();
- }
-
- /**
- * Test retrieving an access token using a public client with redirect uri
- *
- * @throws Exception
- */
- @Test
- public void testGetAccessTokenNoRedirectParam() throws Exception {
- FakeHttpServletRequest req = new FakeHttpServletRequest(
- "http://localhost:8080/oauth2");
- req.setContentType("application/x-www-form-urlencoded");
- req.setPostData("client_id=" + IMPLICIT_CLIENT_ID + "&response_type=token",
- "UTF-8");
- req.setMethod("GET");
- req.setServletPath("/oauth2");
- req.setPathInfo("/authorize");
- HttpServletResponse resp = mock(HttpServletResponse.class);
- Capture<String> redirectURI = new Capture<String>();
- resp.setHeader(EasyMock.eq("Location"), EasyMock.capture(redirectURI));
- resp.setStatus(HttpServletResponse.SC_FOUND);
- MockServletOutputStream outputStream = new MockServletOutputStream();
- EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
- PrintWriter writer = new PrintWriter(outputStream);
- EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
- replay();
- servlet.service(req, resp);
- writer.flush();
- String fragment = UriBuilder.parse(redirectURI.getValue()).getFragment();
- assertTrue(redirectURI.getValue().startsWith(REDIRECT_URI));
- assertTrue(fragment.contains("token_type=bearer"));
- assertTrue(fragment.contains("access_token="));
- assertTrue(fragment.contains("expires_in="));
- verify();
- }
-
- /**
- * Test attempting to retrieve an access token using a bad redirect URI
- *
- * @throws Exception
- */
- @Test
- public void testGetAccessTokenWithBadRedirect() throws Exception {
- FakeHttpServletRequest req = new FakeHttpServletRequest(
- "http://localhost:8080/oauth2");
- req.setContentType("application/x-www-form-urlencoded");
- req.setPostData(
- "client_id=" + IMPLICIT_CLIENT_ID
- + "&response_type=token&redirect_uri="
- + URLEncoder.encode("BAD_REDIRECT", "UTF-8"), "UTF-8");
- req.setMethod("GET");
- req.setServletPath("/oauth2");
- req.setPathInfo("/authorize");
- HttpServletResponse resp = mock(HttpServletResponse.class);
-
- resp.setStatus(EasyMock.eq(HttpServletResponse.SC_FORBIDDEN));
- MockServletOutputStream outputStream = new MockServletOutputStream();
- EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
- PrintWriter writer = new PrintWriter(outputStream);
- EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
- replay();
- servlet.service(req, resp);
- writer.flush();
-
- verify();
- String response = new String(outputStream.getBuffer(), "UTF-8");
- JSONObject respObj = new JSONObject(response);
- assertTrue(respObj.has("error"));
- }
-
- /**
- * Test attempting to retrieve an access token using a bad client id
- *
- * @throws Exception
- */
- @Test
- public void testGetAccessTokenWithBadClientID() throws Exception {
- FakeHttpServletRequest req = new FakeHttpServletRequest(
- "http://localhost:8080/oauth2");
- req.setContentType("application/x-www-form-urlencoded");
- req.setPostData("client_id=BAD-ID&response_type=token&redirect_uri="
- + URLEncoder.encode(REDIRECT_URI, "UTF-8"), "UTF-8");
- req.setMethod("GET");
- req.setServletPath("/oauth2");
- req.setPathInfo("/authorize");
- HttpServletResponse resp = mock(HttpServletResponse.class);
- resp.setStatus(EasyMock.eq(HttpServletResponse.SC_FORBIDDEN));
- MockServletOutputStream outputStream = new MockServletOutputStream();
- EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
- PrintWriter writer = new PrintWriter(outputStream);
- EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
- replay();
- servlet.service(req, resp);
- writer.flush();
-
- verify();
- String response = new String(outputStream.getBuffer(), "UTF-8");
- JSONObject respObj = new JSONObject(response);
- assertTrue(respObj.has("error"));
- }
-
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations under the License.
+ */
+package org.apache.shindig.social.core.oauth;
+
+import org.apache.shindig.common.testing.FakeHttpServletRequest;
+import org.apache.shindig.common.uri.UriBuilder;
+import org.apache.shindig.social.core.oauth2.OAuth2Servlet;
+import
org.apache.shindig.social.dataservice.integration.AbstractLargeRestfulTests;
+import org.easymock.Capture;
+import org.easymock.EasyMock;
+import org.json.JSONObject;
+import org.junit.Before;
+import org.junit.Test;
+
+import javax.servlet.http.HttpServletResponse;
+
+import java.io.PrintWriter;
+import java.net.URLEncoder;
+
+public class OAuth2ImplicitFlowTest extends AbstractLargeRestfulTests {
+ protected OAuth2Servlet servlet = null;
+
+ public static final String IMPLICIT_CLIENT_ID = "advancedImplicitClient";
+
+ protected static final String REDIRECT_URI =
"http://localhost:8080/oauthclients/ImplicitClientHelper.html";
+
+ @Before
+ @Override
+ public void abstractLargeRestfulBefore() throws Exception {
+ super.abstractLargeRestfulBefore();
+ servlet = new OAuth2Servlet();
+ injector.injectMembers(servlet);
+ };
+
+ /**
+ * Test retrieving an access token using a public client with a redirect uri
+ *
+ * @throws Exception
+ */
+ @Test
+ public void testGetAccessTokenWithRedirectParamAndState() throws Exception {
+ FakeHttpServletRequest req = new FakeHttpServletRequest(
+ "http://localhost:8080/oauth2");
+ req.setContentType("application/x-www-form-urlencoded");
+ req.setPostData(
+ "client_id=" + IMPLICIT_CLIENT_ID
+ + "&response_type=token&state=PRESERVEME&redirect_uri="
+ + URLEncoder.encode(REDIRECT_URI, "UTF-8"), "UTF-8");
+ req.setMethod("GET");
+ req.setServletPath("/oauth2");
+ req.setPathInfo("/authorize");
+ HttpServletResponse resp = mock(HttpServletResponse.class);
+ Capture<String> redirectURI = new Capture<String>();
+ resp.setHeader(EasyMock.eq("Location"), EasyMock.capture(redirectURI));
+ resp.setStatus(HttpServletResponse.SC_FOUND);
+ MockServletOutputStream outputStream = new MockServletOutputStream();
+ EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
+ PrintWriter writer = new PrintWriter(outputStream);
+ EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
+ replay();
+ servlet.service(req, resp);
+ writer.flush();
+ String fragment = UriBuilder.parse(redirectURI.getValue()).getFragment();
+ assertTrue(redirectURI.getValue().startsWith(REDIRECT_URI));
+ assertTrue(fragment.contains("token_type=bearer"));
+ assertTrue(fragment.contains("access_token="));
+ assertTrue(fragment.contains("expires_in="));
+ assertTrue(fragment.contains("state=PRESERVEME"));
+
+ verify();
+ }
+
+ /**
+ * Test retrieving an access token using a public client with redirect uri
+ *
+ * @throws Exception
+ */
+ @Test
+ public void testGetAccessTokenNoRedirectParam() throws Exception {
+ FakeHttpServletRequest req = new FakeHttpServletRequest(
+ "http://localhost:8080/oauth2");
+ req.setContentType("application/x-www-form-urlencoded");
+ req.setPostData("client_id=" + IMPLICIT_CLIENT_ID + "&response_type=token",
+ "UTF-8");
+ req.setMethod("GET");
+ req.setServletPath("/oauth2");
+ req.setPathInfo("/authorize");
+ HttpServletResponse resp = mock(HttpServletResponse.class);
+ Capture<String> redirectURI = new Capture<String>();
+ resp.setHeader(EasyMock.eq("Location"), EasyMock.capture(redirectURI));
+ resp.setStatus(HttpServletResponse.SC_FOUND);
+ MockServletOutputStream outputStream = new MockServletOutputStream();
+ EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
+ PrintWriter writer = new PrintWriter(outputStream);
+ EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
+ replay();
+ servlet.service(req, resp);
+ writer.flush();
+ String fragment = UriBuilder.parse(redirectURI.getValue()).getFragment();
+ assertTrue(redirectURI.getValue().startsWith(REDIRECT_URI));
+ assertTrue(fragment.contains("token_type=bearer"));
+ assertTrue(fragment.contains("access_token="));
+ assertTrue(fragment.contains("expires_in="));
+ verify();
+ }
+
+ /**
+ * Test attempting to retrieve an access token using a bad redirect URI
+ *
+ * @throws Exception
+ */
+ @Test
+ public void testGetAccessTokenWithBadRedirect() throws Exception {
+ FakeHttpServletRequest req = new FakeHttpServletRequest(
+ "http://localhost:8080/oauth2");
+ req.setContentType("application/x-www-form-urlencoded");
+ req.setPostData(
+ "client_id=" + IMPLICIT_CLIENT_ID
+ + "&response_type=token&redirect_uri="
+ + URLEncoder.encode("BAD_REDIRECT", "UTF-8"), "UTF-8");
+ req.setMethod("GET");
+ req.setServletPath("/oauth2");
+ req.setPathInfo("/authorize");
+ HttpServletResponse resp = mock(HttpServletResponse.class);
+
+ resp.setStatus(EasyMock.eq(HttpServletResponse.SC_FORBIDDEN));
+ MockServletOutputStream outputStream = new MockServletOutputStream();
+ EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
+ PrintWriter writer = new PrintWriter(outputStream);
+ EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
+ replay();
+ servlet.service(req, resp);
+ writer.flush();
+
+ verify();
+ String response = new String(outputStream.getBuffer(), "UTF-8");
+ JSONObject respObj = new JSONObject(response);
+ assertTrue(respObj.has("error"));
+ }
+
+ /**
+ * Test attempting to retrieve an access token using a bad client id
+ *
+ * @throws Exception
+ */
+ @Test
+ public void testGetAccessTokenWithBadClientID() throws Exception {
+ FakeHttpServletRequest req = new FakeHttpServletRequest(
+ "http://localhost:8080/oauth2");
+ req.setContentType("application/x-www-form-urlencoded");
+ req.setPostData("client_id=BAD-ID&response_type=token&redirect_uri="
+ + URLEncoder.encode(REDIRECT_URI, "UTF-8"), "UTF-8");
+ req.setMethod("GET");
+ req.setServletPath("/oauth2");
+ req.setPathInfo("/authorize");
+ HttpServletResponse resp = mock(HttpServletResponse.class);
+ resp.setStatus(EasyMock.eq(HttpServletResponse.SC_FORBIDDEN));
+ MockServletOutputStream outputStream = new MockServletOutputStream();
+ EasyMock.expect(resp.getOutputStream()).andReturn(outputStream).anyTimes();
+ PrintWriter writer = new PrintWriter(outputStream);
+ EasyMock.expect(resp.getWriter()).andReturn(writer).anyTimes();
+ replay();
+ servlet.service(req, resp);
+ writer.flush();
+
+ verify();
+ String response = new String(outputStream.getBuffer(), "UTF-8");
+ JSONObject respObj = new JSONObject(response);
+ assertTrue(respObj.has("error"));
+ }
+
}
\ No newline at end of file
Propchange:
shindig/trunk/java/social-api/src/test/java/org/apache/shindig/social/core/oauth/OAuth2ImplicitFlowTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/external/Symfony/Component/ClassLoader/ApcUniversalClassLoader.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/external/Symfony/Component/ClassLoader/ClassCollectionLoader.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/external/Symfony/Component/ClassLoader/DebugUniversalClassLoader.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/external/Symfony/Component/ClassLoader/LICENSE
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/external/Symfony/Component/ClassLoader/LICENSE
------------------------------------------------------------------------------
svn:mime-type = text/plain
Propchange:
shindig/trunk/php/external/Symfony/Component/ClassLoader/MapClassLoader.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/external/Symfony/Component/ClassLoader/UniversalClassLoader.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/FrontController.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/bootstrap.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/common/BlobCrypterException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/common/CacheException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/common/ConfigException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/common/Options.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/RemoteContentException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/common/RequestTime.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/ShindigOAuthNoDataException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/ShindigOAuthProblemException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/ShindigOAuthProtocolException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/common/ShindigOAuthRequest.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/common/ShindigOAuthUtil.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/ShindigRsaSha1SignatureMethod.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/sample/BasicSecurityTokenException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/sample/BlobExpiredException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/common/sample/GeneralSecurityException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/GadgetSpecException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/MakeRequestParameterException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/AccesorInfo.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/oauth/ConsumerKeyAndSecret.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/Endpoint.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/GadgetInfo.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/Location.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/Method.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/OAuth2Fetcher.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/oauth/OAuthStoreException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/oauth/OAuthStoreVars.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/ProviderInfo.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/ProviderKey.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/oauth/SpecParserException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/TokenInfo.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/oauth/TokenKey.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/render/EmptyClass.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/templates/ExpLexerException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/templates/ExpParserException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/templates/ExpTypeException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/templates/ExpressionException.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/templates/PrimitiveExp.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/templates/SwfConfig.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/templates/TemplateLibraryContent.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shindig/trunk/php/src/apache/shindig/gadgets/templates/TemplateLibraryEntry.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/gadgets/templates/Token.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/social/model/EnumDrinker.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/social/model/EnumGender.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/social/model/EnumLookingFor.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/social/model/EnumPresence.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/src/apache/shindig/social/model/EnumSmoker.php
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: shindig/trunk/php/test/bootstrap.php
------------------------------------------------------------------------------
svn:eol-style = native