openstackid/.idea/workspace.xml

905 lines
74 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" name="Default" comment="[smarcet] - Refs #4576, #4578 : XRDS discovery and Authentication Workflow main classes">
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/database/migrations/2013_10_17_210518_create_users_table.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/database/migrations/2013_10_17_210730_create_associations_table.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/database/migrations/2013_10_17_211051_create_trusted_sites_table.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/database/migrations/2013_10_17_211839_alter_trusted_sites_table.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/model/IAssociation.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/services/IAssociationService.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/extensions/IOpenIdExtension.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/model/IOpenIdUser.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/services/IServerConfigurationService.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/services/IServerExtensionsService.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/model/ITrustedSite.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/services/ITrustedSitesService.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/exceptions/InvalidOpenIdAuthenticationRequestMode.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/exceptions/InvalidOpenIdMessageMode.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/exceptions/InvalidRequestContextException.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/extensions/implementations/OpenIdAXExtension.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/helpers/OpenIdCryptoHelper.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/strategies/OpenIdDirectResponseStrategy.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/helpers/OpenIdErrorMessages.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdImmediateNegativeAssertion.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdIndirectGenericErrorResponse.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/strategies/OpenIdIndirectResponseStrategy.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdNonImmediateNegativeAssertion.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/extensions/implementations/OpenIdOAuthExtension.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/extensions/implementations/OpenIdPAPEExtension.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdPositiveAssertionResponse.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/strategies/OpenIdResponseStrategyProvider.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/extensions/implementations/OpenIdSREGExtension.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/helpers/OpenIdSignatureBuilder.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/models/OpenIdTrustedSite.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/helpers/OpenIdUriHelper.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/auth/OpenIdUser.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/requests/contexts/PartialView.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/requests/contexts/RequestContext.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/libs/openid/responses/contexts/ResponseContext.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/services/ServerExtensionsService.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/views/extensions/ax.blade.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/views/extensions/oauth.blade.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/views/extensions/pape.blade.php" />
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/app/views/extensions/sreg.blade.php" />
<change type="DELETED" beforePath="$PROJECT_DIR$/app/libs/auth/CustomUser.php" afterPath="" />
<change type="DELETED" beforePath="$PROJECT_DIR$/app/models/User.php" afterPath="" />
<change type="MOVED" beforePath="$PROJECT_DIR$/app/libs/openid/handlers/OpenIdVoidRequestHandler.php" afterPath="$PROJECT_DIR$/app/models/OpenIdAssociation.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/database/migrations/2013_10_14_155702_create_extension_table.php" afterPath="$PROJECT_DIR$/app/database/migrations/2013_10_14_155702_create_extension_table.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/auth/AuthService.php" afterPath="$PROJECT_DIR$/app/libs/auth/AuthService.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/services/AuthenticationStrategy.php" afterPath="$PROJECT_DIR$/app/services/AuthenticationStrategy.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/services/IAuthService.php" afterPath="$PROJECT_DIR$/app/libs/openid/services/IAuthService.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/handlers/IOpenIdAuthenticationStrategy.php" afterPath="$PROJECT_DIR$/app/libs/openid/handlers/IOpenIdAuthenticationStrategy.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/strategies/IOpenIdResponseStrategy.php" afterPath="$PROJECT_DIR$/app/libs/openid/strategies/IOpenIdResponseStrategy.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/repositories/IServerExtensionsRepository.php" afterPath="$PROJECT_DIR$/app/libs/openid/repositories/IServerExtensionsRepository.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/requests/OpenIdAuthenticationRequest.php" afterPath="$PROJECT_DIR$/app/libs/openid/requests/OpenIdAuthenticationRequest.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/handlers/OpenIdAuthenticationRequestHandler.php" afterPath="$PROJECT_DIR$/app/libs/openid/handlers/OpenIdAuthenticationRequestHandler.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdDirectGenericErrorResponse.php" afterPath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdDirectGenericErrorResponse.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdIndirectResponse.php" afterPath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdIndirectResponse.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/OpenIdMessage.php" afterPath="$PROJECT_DIR$/app/libs/openid/OpenIdMessage.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/OpenIdProtocol.php" afterPath="$PROJECT_DIR$/app/libs/openid/OpenIdProtocol.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdResponse.php" afterPath="$PROJECT_DIR$/app/libs/openid/responses/OpenIdResponse.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/repositories/ServerExtensionsRepositoryEloquent.php" afterPath="$PROJECT_DIR$/app/repositories/ServerExtensionsRepositoryEloquent.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/services/ServicesProvider.php" afterPath="$PROJECT_DIR$/app/services/ServicesProvider.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/controllers/UserController.php" afterPath="$PROJECT_DIR$/app/controllers/UserController.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/config/app.php" afterPath="$PROJECT_DIR$/app/config/app.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/composer.json" afterPath="$PROJECT_DIR$/composer.json" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/app/views/login.blade.php" afterPath="$PROJECT_DIR$/app/views/login.blade.php" />
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
</list>
<ignored path="openidIdp.iws" />
<ignored path=".idea/workspace.xml" />
<file path="/DiscoveryController.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381940543859" ignored="false" />
<file path="/DiscoveryControllerTest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381770482258" ignored="false" />
<file path="/2013_10_14_155702_create_extension_table.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382044897650" ignored="false" />
<file path="/ServerExtension.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381766727808" ignored="false" />
<file path="/ServerExtensionTest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381768563012" ignored="false" />
<file path="/tmp/ide-phpunit.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381932516605" ignored="false" />
<file path="/fragment.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382027125981" ignored="false" />
<file path="/HomeController.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381939659852" ignored="false" />
<file path="/XrdsDocumentBuilder.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381773998567" ignored="false" />
<file path="/a.dummy" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382043231261" ignored="false" />
<file path="/Dummy.txt" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382040143611" ignored="false" />
<file path="/IXRDSService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381773588280" ignored="false" />
<file path="/XRDSService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381772341971" ignored="false" />
<file path="/XRDSDocumentTest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381774070136" ignored="false" />
<file path="/OpenIdProtocol.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382038957857" ignored="false" />
<file path="/IServerExtensionsRepository.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381944367232" ignored="false" />
<file path="/IServerConfigurationRepository.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381778188675" ignored="false" />
<file path="/OpenIdProtocolTest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381781851602" ignored="false" />
<file path="/app.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381929077974" ignored="false" />
<file path="/RepositoriesServiceProvider.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381780638618" ignored="false" />
<file path="/ServerConfigurationRepositoryEloquent.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381781085301" ignored="false" />
<file path="/ServerExtensionsRepositoryEloquent.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381946012463" ignored="false" />
<file path="/IOpenIdProtocol.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381858939899" ignored="false" />
<file path="/*.regexp" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382023929834" ignored="false" />
<file path="/IOpenIdMessageHandler.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381784676935" ignored="false" />
<file path="/OpenIdAuthenticationRequestHandler.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382041988563" ignored="false" />
<file path="/OpenIdSessionAssociationRequestHandler.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381784308892" ignored="false" />
<file path="/OpenIdCheckAuthenticationRequestHandler.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381783903261" ignored="false" />
<file path="/OpenIdMessage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382033984714" ignored="false" />
<file path="/OpenIdMessageHandler.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381861117166" ignored="false" />
<file path="/OpenIdProviderController.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381953184255" ignored="false" />
<file path="/OpenIdProviderControllerTest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381786052450" ignored="false" />
<file path="/routes.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381938649068" ignored="false" />
<file path="/OpenIdResponse.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382035157533" ignored="false" />
<file path="/OpenIdDirectResponse.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381845248602" ignored="false" />
<file path="/InvalidKVFormat.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381844314772" ignored="false" />
<file path="/OpenIdDirectGenericErrorResponse.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382038608960" ignored="false" />
<file path="/OpenIdIndirectResponse.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381963106374" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/training/Training.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370381" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/registration/code/EditProfileForm.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/registration/code/EditProfilePage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Project.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/SpeakerVotingPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/training/Frontend/TrainingDirectoryPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/registration/code/MemberDecorator.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/_config.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/registration/code/RegistrationPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/_ss_environment.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381848972509" ignored="false" />
<file path="/_config.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381848980103" ignored="false" />
<file path="/OpenIdRequest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381937700057" ignored="false" />
<file path="/OpenIdAuthenticationRequest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382037263085" ignored="false" />
<file path="$PROJECT_DIR$/../../LaravelTest/test/bootstrap/start.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381851672863" ignored="false" />
<file path="/CustomUser.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382043218430" ignored="false" />
<file path="/IAuthService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382036720942" ignored="false" />
<file path="/AuthService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381935287069" ignored="false" />
<file path="/IMementoRequestService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381852639908" ignored="false" />
<file path="/layout.blade.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381853928575" ignored="false" />
<file path="/error.blade.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381854085102" ignored="false" />
<file path="/global.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381857547950" ignored="false" />
<file path="/IOpenIdResponseStrategy.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381858495548" ignored="false" />
<file path="/OpenIdResponseStrategyFactoryMethod.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381952554728" ignored="false" />
<file path="/IAuthenticationStrategy.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381861012975" ignored="false" />
<file path="/UserController.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381951280957" ignored="false" />
<file path="/login.blade.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381950573256" ignored="false" />
<file path="/consent.blade.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381863616193" ignored="false" />
<file path="/MementoRequestService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381934837267" ignored="false" />
<file path="/AuthenticationStrategy.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381945904565" ignored="false" />
<file path="/ServicesProvider.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381865901188" ignored="false" />
<file path="/AuthenticationServiceProvider.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381866053563" ignored="false" />
<file path="/IMementoOpenIdRequestService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381930275650" ignored="false" />
<file path="/filters.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381939274202" ignored="false" />
<file path="/home.blade.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381939705628" ignored="false" />
<file path="/IOpenIdExtension.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381945256985" ignored="false" />
<file path="/RequestContext.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381951760812" ignored="false" />
<file path="/PartialView.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381944893338" ignored="false" />
<file path="/ResponseContext.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381945217299" ignored="false" />
<file path="/OpenIdAXExtension.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381945303588" ignored="false" />
<file path="/OpenIdSREGExtension.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381945368209" ignored="false" />
<file path="/IOpenIdAuthenticationStrategy.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381945734462" ignored="false" />
<file path="/IServerExtensionsService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381949170421" ignored="false" />
<file path="/ServerExtensionsService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381949632227" ignored="false" />
<file path="/pape.blade.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381951022347" ignored="false" />
<file path="/OpenIdDirectResponseStrategy.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381952729742" ignored="false" />
<file path="/OpenIdIndirectResponseStrategy.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1381953888687" ignored="false" />
<file path="/IAssociationService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382040567532" ignored="false" />
<file path="/IAssociation.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382017552899" ignored="false" />
<file path="$PROJECT_DIR$/../../ZendFramework-1.12.3/demos/Zend/OpenId/test_server.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382020503104" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/_ss_environment.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382021988019" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/sample._live-config.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382022713443" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/input_html_purifier_validator/_config.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382023130737" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/input_html_purifier_validator/code/input_html_purifier_validator.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382023249388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/form_html_purifier/code/input_html_purifier_validator.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382023612389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/form_html_purifier/code/form_html_purifier.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382023668653" ignored="false" />
<file path="/form_html_purifier.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382025598743" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/form_html_purifier/code/SafeXSSForm.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382026977713" ignored="false" />
<file path="/tmp/silverstripe-cache-home-smarcet-git-www.openstack.org/.cache.registration.templates.Layout.EditProfilePage.ss" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382024476892" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/form_html_purifier/_config.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382026977713" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/HasManyFileDataObjectManager.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370381" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/simple_html_editor_field/SimpleHTMLEditorField.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370381" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/training/TrainingProgram.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/ManyManyFileDataObjectManager.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/themes/openstack-old/javascript/jquery.raty-2.1.0/js/jquery.min.js" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/HasManyDataObjectManager.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/event-signin/SigninPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/SpeakerSubmission.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/event-signin/EventSignIn.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/SpeakerListPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/BoardOfDirectorsPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370382" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/deployment-survey/Deployment.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370384" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/FileDataObjectManager.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370384" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/PresentationCategoryPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370384" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/DataObjectManager.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370384" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/ConferenceNewsPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/deployment-survey/DeploymentSurveyPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/SpeakerVote.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/SecureFiles/code/SecureFileAccessToken.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/UserStoriesHolder.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/LogoDownloadPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/JobHolder.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/LegalDocumentPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CompaniesPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/BrandingPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/OpenstackUser.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/JSONMember.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/IVotedPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/LegalAgreement.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370385" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/SpeakerVoteTotals.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CompanyListPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/UserStoryPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/LogoRightsSubmission.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Voter.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CandidatePage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/TechnicalCommitteePage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/FeedbackSubmission.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CandidateNomination.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Page.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/RestrictedDownloadPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/OpenStackUserRequest.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/ProductPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/AffiliationUpdate.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/ElectionVoterPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370386" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/ArticlePage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Feature.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/EventPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CallForSpeakersPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/NewCompanyListPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CallForSpeakersForm.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/PdfPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/PrimaryLogoPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/AttachmentFile.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CommMember.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370387" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/ElectionSystem.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/ArticleHolder.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/ElectionPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/JobPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/uploadify/code/s3/S3File.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/WebBadgeDownloadPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/SangriaPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/LegalDocumentsHolder.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/MemberListPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/LogoRightsPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/MemberVerifyPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Link.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/InvolvementType.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370388" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CommunityPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/CommPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/HomePage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Bio.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Org.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Presentation.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/OneColumn.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/themes/openstack/javascript/jquery.raty-2.1.0/js/jquery.min.js" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Candidate.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/EventHolder.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/LogoGuidelinesPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/AttachmentImage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/BioPage.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/openstack/code/Company.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/ImageDataObjectManager.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/themes/openstack-new/javascript/jquery.raty-2.1.0/js/jquery.min.js" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370389" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/dataobject_manager/code/ManyManyDataObjectManager.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028370390" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/registration/javascript/registration.page.js" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382027810599" ignored="false" />
<file path="/registration.page.js" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382027595478" ignored="false" />
<file path="$PROJECT_DIR$/../../www.openstack.org/registration/javascript/edit.profile.page.js" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382028395150" ignored="false" />
<file path="/OpenIdPositiveAssertionResponse.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382040841463" ignored="false" />
<file path="/OpenIdImmediateNegativeAssertion.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382038406853" ignored="false" />
<file path="/OpenIdNonImmediateNegativeAssertion.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382035302961" ignored="false" />
<file path="/ITrustedSitesService.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382039793081" ignored="false" />
<file path="/IOpenIdUser.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382036261557" ignored="false" />
<file path="/ITrustedSite.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382036504552" ignored="false" />
<file path="/OpenIdUriHelper.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382037709193" ignored="false" />
<file path="/OpenIdIndirectGenericErrorResponse.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382038560203" ignored="false" />
<file path="/OpenIdErrorMessages.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382038761070" ignored="false" />
<file path="/OpenIdCryptoHelper.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382042927540" ignored="false" />
<file path="/OpenIdSignatureBuilder.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382042943494" ignored="false" />
<file path="/2013_10_17_210518_create_users_table.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382043971133" ignored="false" />
<file path="/OpenIdAssociation.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382044104891" ignored="false" />
<file path="/OpenIdTrustedSite.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382044287141" ignored="false" />
<file path="/2013_10_17_211051_create_trusted_sites_table.php" changelist="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" time="1382045588474" ignored="false" />
<option name="TRACKING_ENABLED" value="true" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
<component name="ComposerSettings">
<pharConfigPath>$PROJECT_DIR$/composer.json</pharConfigPath>
<pharPath>$PROJECT_DIR$/composer.phar</pharPath>
</component>
<component name="CreatePatchCommitExecutor">
<option name="PATCH_PATH" value="" />
</component>
<component name="DaemonCodeAnalyzer">
<disable_hints />
</component>
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
<component name="FavoritesManager">
<favorites_list name="openidIdp" />
</component>
<component name="FileEditorManager">
<leaf>
<file leaf-file-name="2013_10_14_155702_create_extension_table.php" pinned="false" current="false" current-in-tab="false">
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_14_155702_create_extension_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="15" column="33" selection-start="286" selection-end="286" vertical-scroll-proportion="-5.7916665">
<folding />
</state>
</provider>
</entry>
</file>
<file leaf-file-name="2013_10_17_210518_create_users_table.php" pinned="false" current="false" current-in-tab="false">
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_210518_create_users_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="15" column="33" selection-start="277" selection-end="277" vertical-scroll-proportion="-7.0416665">
<folding />
</state>
</provider>
</entry>
</file>
<file leaf-file-name="2013_10_17_211051_create_trusted_sites_table.php" pinned="false" current="true" current-in-tab="true">
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_211051_create_trusted_sites_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="14" column="53" selection-start="428" selection-end="428" vertical-scroll-proportion="0.47191012">
<folding />
</state>
</provider>
</entry>
</file>
<file leaf-file-name="2013_10_17_210730_create_associations_table.php" pinned="false" current="false" current-in-tab="false">
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_210730_create_associations_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="10" column="33" selection-start="242" selection-end="242" vertical-scroll-proportion="-5.4166665">
<folding />
</state>
</provider>
</entry>
</file>
<file leaf-file-name="2013_10_17_211839_alter_trusted_sites_table.php" pinned="false" current="false" current-in-tab="false">
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_211839_alter_trusted_sites_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="19" column="0" selection-start="388" selection-end="388" vertical-scroll-proportion="-10.625">
<folding />
</state>
</provider>
</entry>
</file>
</leaf>
</component>
<component name="FindManager">
<FindUsagesManager>
<setting name="OPEN_NEW_TAB" value="false" />
</FindUsagesManager>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="GitLogSettings">
<option name="myDateState">
<MyDateState />
</option>
</component>
<component name="IdeDocumentHistory">
<option name="changedFiles">
<list>
<option value="$PROJECT_DIR$/app/libs/openid/services/ITrustedSitesService.php" />
<option value="$PROJECT_DIR$/app/libs/openid/services/IAssociationService.php" />
<option value="$PROJECT_DIR$/app/libs/openid/responses/OpenIdPositiveAssertionResponse.php" />
<option value="$PROJECT_DIR$/app/libs/openid/services/IServerConfigurationService.php" />
<option value="$PROJECT_DIR$/app/libs/openid/handlers/OpenIdAuthenticationRequestHandler.php" />
<option value="$PROJECT_DIR$/app/libs/openid/helpers/OpenIdCryptoHelper.php" />
<option value="$PROJECT_DIR$/app/libs/openid/helpers/OpenIdSignatureBuilder.php" />
<option value="$PROJECT_DIR$/app/libs/auth/CustomUser.php" />
<option value="$PROJECT_DIR$/app/libs/auth/AuthService.php" />
<option value="$PROJECT_DIR$/app/models/OpenIdAssociation.php" />
<option value="$PROJECT_DIR$/app/models/OpenIdTrustedSite.php" />
<option value="$PROJECT_DIR$/app/database/migrations/2013_10_17_211839_alter_trusted_sites_table.php" />
<option value="$PROJECT_DIR$/app/database/migrations/2013_10_14_155702_create_extension_table.php" />
<option value="$PROJECT_DIR$/app/database/migrations/2013_10_17_210518_create_users_table.php" />
<option value="$PROJECT_DIR$/app/database/migrations/2013_10_17_210730_create_associations_table.php" />
<option value="$PROJECT_DIR$/app/database/migrations/2013_10_17_211051_create_trusted_sites_table.php" />
</list>
</option>
</component>
<component name="PhpServers">
<option name="servers">
<server host="dev.openstackid.com" name="dev.openstackid.com" />
</option>
</component>
<component name="PhpWorkspaceProjectConfiguration" backward_compatibility_performed="true" interpreter_name="PHP 5.4.13" />
<component name="ProjectFrameBounds">
<option name="x" value="65" />
<option name="y" value="32" />
<option name="width" value="1301" />
<option name="height" value="728" />
</component>
<component name="ProjectInspectionProfilesVisibleTreeState">
<entry key="Project Default">
<profile-state>
<expanded-state>
<State>
<id />
</State>
</expanded-state>
<selected-state>
<State>
<id>CoffeeScript</id>
</State>
</selected-state>
</profile-state>
</entry>
</component>
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
<OptionsSetting value="true" id="Add" />
<OptionsSetting value="true" id="Remove" />
<OptionsSetting value="true" id="Checkout" />
<OptionsSetting value="true" id="Update" />
<OptionsSetting value="true" id="Status" />
<OptionsSetting value="true" id="Edit" />
<ConfirmationsSetting value="2" id="Add" />
<ConfirmationsSetting value="0" id="Remove" />
</component>
<component name="ProjectReloadState">
<option name="STATE" value="0" />
</component>
<component name="ProjectView">
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
<flattenPackages />
<showMembers />
<showModules />
<showLibraryContents ProjectPane="true" />
<hideEmptyPackages />
<abbreviatePackageNames />
<autoscrollToSource />
<autoscrollFromSource />
<sortByType />
</navigator>
<panes>
<pane id="Scope" />
<pane id="ProjectPane">
<subPane>
<PATH>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
</PATH_ELEMENT>
</PATH>
<PATH>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
</PATH>
<PATH>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="vendor" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
</PATH>
<PATH>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="app" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
</PATH>
<PATH>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="app" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="models" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
</PATH>
<PATH>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="app" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="database" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
</PATH>
<PATH>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="openidIdp" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="app" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="database" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
<PATH_ELEMENT>
<option name="myItemId" value="migrations" />
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
</PATH_ELEMENT>
</PATH>
</subPane>
</pane>
</panes>
</component>
<component name="PropertiesComponent">
<property name="options.splitter.main.proportions" value="0.3" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="recentsLimit" value="5" />
<property name="options.lastSelected" value="Configurable.PHP.Debug" />
<property name="last_opened_file_path" value="$PROJECT_DIR$/../../www.openstack.org" />
<property name="restartRequiresConfirmation" value="true" />
<property name="options.splitter.details.proportions" value="0.2" />
<property name="options.searchVisible" value="true" />
<property name="GoToClass.includeJavaFiles" value="false" />
</component>
<component name="RunManager" selected="PHP Web Application.dev.openstackid.com">
<configuration default="false" name="OpenIdProviderController.php" type="PhpLocalRunConfigurationType" factoryName="PHP Console" temporary="true" path="$PROJECT_DIR$/app/controllers/OpenIdProviderController.php">
<RunnerSettings RunnerId="PhpScriptDebugRunner" />
<ConfigurationWrapper RunnerId="PhpScriptDebugRunner" />
<method />
</configuration>
<configuration default="false" name="DiscoveryControllerTest" type="PHPUnitRunConfigurationType" factoryName="PHPUnit" temporary="true">
<TestRunner class="DiscoveryControllerTest" file="$PROJECT_DIR$/app/tests/DiscoveryControllerTest.php" scope="Class" />
<RunnerSettings RunnerId="PhpUnitDebugRunner" />
<ConfigurationWrapper RunnerId="PhpUnitDebugRunner" />
<method />
</configuration>
<configuration default="false" name="XRDSDocumentTest" type="PHPUnitRunConfigurationType" factoryName="PHPUnit" temporary="true">
<TestRunner class="XRDSDocumentTest" file="$PROJECT_DIR$/app/tests/XRDSDocumentTest.php" scope="Class" />
<RunnerSettings RunnerId="PhpRunner" />
<RunnerSettings RunnerId="PhpUnitDebugRunner" />
<ConfigurationWrapper RunnerId="PhpRunner" />
<ConfigurationWrapper RunnerId="PhpUnitDebugRunner" />
<method />
</configuration>
<configuration default="false" name="DiscoveryControllerTest.testIdpDiscovery" type="PHPUnitRunConfigurationType" factoryName="PHPUnit" temporary="true">
<TestRunner class="DiscoveryControllerTest" file="$PROJECT_DIR$/app/tests/DiscoveryControllerTest.php" method="testIdpDiscovery" scope="Method" />
<RunnerSettings RunnerId="PhpRunner" />
<RunnerSettings RunnerId="PhpUnitDebugRunner" />
<ConfigurationWrapper RunnerId="PhpRunner" />
<ConfigurationWrapper RunnerId="PhpUnitDebugRunner" />
<method />
</configuration>
<configuration default="false" name="OpenIdProviderControllerTest" type="PHPUnitRunConfigurationType" factoryName="PHPUnit" temporary="true">
<TestRunner class="OpenIdProviderControllerTest" file="$PROJECT_DIR$/app/tests/OpenIdProviderControllerTest.php" scope="Class" />
<RunnerSettings RunnerId="PhpUnitDebugRunner" />
<ConfigurationWrapper RunnerId="PhpUnitDebugRunner" />
<method />
</configuration>
<configuration default="true" type="PHPUnitRunConfigurationType" factoryName="PHPUnit">
<TestRunner />
<method />
</configuration>
<configuration default="true" type="PhpWebAppRunConfigurationType" factoryName="PHP Web Application">
<method />
</configuration>
<configuration default="true" type="PhpLocalRunConfigurationType" factoryName="PHP Console">
<method />
</configuration>
<configuration default="false" name="dev.openstackid.com" type="PhpWebAppRunConfigurationType" factoryName="PHP Web Application" browser="CHROME" server_name="dev.openstackid.com">
<RunnerSettings RunnerId="PhpWebAppDebugRunner" />
<ConfigurationWrapper RunnerId="PhpWebAppDebugRunner" />
<method />
</configuration>
<list size="6">
<item index="0" class="java.lang.String" itemvalue="PHP Web Application.dev.openstackid.com" />
<item index="1" class="java.lang.String" itemvalue="PHP Script.OpenIdProviderController.php" />
<item index="2" class="java.lang.String" itemvalue="PHPUnit.DiscoveryControllerTest" />
<item index="3" class="java.lang.String" itemvalue="PHPUnit.XRDSDocumentTest" />
<item index="4" class="java.lang.String" itemvalue="PHPUnit.DiscoveryControllerTest.testIdpDiscovery" />
<item index="5" class="java.lang.String" itemvalue="PHPUnit.OpenIdProviderControllerTest" />
</list>
<recent_temporary>
<list size="5">
<item index="0" class="java.lang.String" itemvalue="PHPUnit.OpenIdProviderControllerTest" />
<item index="1" class="java.lang.String" itemvalue="PHP Script.OpenIdProviderController.php" />
<item index="2" class="java.lang.String" itemvalue="PHPUnit.DiscoveryControllerTest.testIdpDiscovery" />
<item index="3" class="java.lang.String" itemvalue="PHPUnit.XRDSDocumentTest" />
<item index="4" class="java.lang.String" itemvalue="PHPUnit.DiscoveryControllerTest" />
</list>
</recent_temporary>
</component>
<component name="ShelveChangesManager" show_recycled="false" />
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false" SSL_PROTOCOLS="all">
<option name="USER" value="" />
<option name="PASSWORD" value="" />
<option name="mySSHConnectionTimeout" value="30000" />
<option name="mySSHReadTimeout" value="30000" />
<option name="LAST_MERGED_REVISION" />
<option name="MERGE_DRY_RUN" value="false" />
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
<option name="FORCE_UPDATE" value="false" />
<option name="IGNORE_EXTERNALS" value="false" />
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
</component>
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="cdc3929b-040d-4e45-bbd9-fa8f8bc87073" name="Default" comment="" />
<created>1381763171476</created>
<updated>1381763171476</updated>
</task>
<task id="LOCAL-00001" summary="[smarcet] - Refs #4576, #4578 : XRDS discovery and Authentication Workflow main classes">
<created>1381940958233</created>
<updated>1381940958233</updated>
</task>
<option name="localTasksCounter" value="2" />
<servers />
</component>
<component name="ToolWindowManager">
<frame x="65" y="32" width="1301" height="728" extended-state="0" />
<editor active="true" />
<layout>
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.28182545" sideWeight="0.75261325" order="0" side_tool="false" content_ui="combo" />
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.24707846" sideWeight="0.6180945" order="3" side_tool="false" content_ui="tabs" />
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3554007" sideWeight="0.38190553" order="7" side_tool="true" content_ui="tabs" />
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3292683" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
</layout>
</component>
<component name="VcsContentAnnotationSettings">
<option name="myLimit" value="2678400000" />
</component>
<component name="VcsManagerConfiguration">
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
<option name="CHECK_NEW_TODO" value="true" />
<option name="myTodoPanelSettings">
<value>
<are-packages-shown value="false" />
<are-modules-shown value="false" />
<flatten-packages value="false" />
<is-autoscroll-to-source value="false" />
</value>
</option>
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
<option name="SHORT_DIFF_HORIZONTALLY" value="true" />
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
<option name="LIMIT_HISTORY" value="true" />
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
<option name="UPDATE_FILTER_SCOPE_NAME" />
<option name="USE_COMMIT_MESSAGE_MARGIN" value="false" />
<option name="COMMIT_MESSAGE_MARGIN_SIZE" value="72" />
<option name="WRAP_WHEN_TYPING_REACHES_RIGHT_MARGIN" value="false" />
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
<option name="LAST_COMMIT_MESSAGE" value="[smarcet] - Refs #4576, #4578 : XRDS discovery and Authentication Workflow main classes" />
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
<option name="ACTIVE_VCS_NAME" />
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
<option name="UPDATE_FILTER_BY_SCOPE" value="false" />
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
<MESSAGE value="[smarcet] - Refs #4576, #4578 : XRDS discovery and Authentication Workflow main classes" />
</component>
<component name="XDebuggerManager">
<breakpoint-manager>
<breakpoints>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/app/libs/auth/CustomAuthProvider.php</url>
<line>43</line>
<option name="timeStamp" value="83" />
</line-breakpoint>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/app/libs/auth/CustomAuthProvider.php</url>
<line>57</line>
<option name="timeStamp" value="84" />
</line-breakpoint>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/vendor/laravel/framework/src/Illuminate/Auth/Guard.php</url>
<line>271</line>
<option name="timeStamp" value="89" />
</line-breakpoint>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/app/start/global.php</url>
<line>61</line>
<option name="timeStamp" value="91" />
</line-breakpoint>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/app/controllers/HomeController.php</url>
<line>7</line>
<option name="timeStamp" value="94" />
</line-breakpoint>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/vendor/laravel/framework/src/Illuminate/Foundation/Testing/TestCase.php</url>
<line>57</line>
<option name="timeStamp" value="95" />
</line-breakpoint>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/vendor/symfony/browser-kit/Symfony/Component/BrowserKit/Client.php</url>
<line>297</line>
<option name="timeStamp" value="96" />
</line-breakpoint>
<line-breakpoint enabled="true" type="php">
<url>file://$PROJECT_DIR$/vendor/laravel/framework/src/Illuminate/Routing/Redirector.php</url>
<line>114</line>
<option name="timeStamp" value="108" />
</line-breakpoint>
</breakpoints>
<breakpoints-dialog>
<breakpoints-dialog />
</breakpoints-dialog>
<option name="time" value="109" />
</breakpoint-manager>
</component>
<component name="editorHistoryManager">
<entry file="file://$PROJECT_DIR$/app/libs/openid/helpers/OpenIdCryptoHelper.php">
<provider selected="true" editor-type-id="text-editor">
<state line="42" column="22" selection-start="1060" selection-end="1060" vertical-scroll-proportion="-22.5">
<folding>
<element signature="e#192#218#0" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/libs/openid/responses/OpenIdPositiveAssertionResponse.php">
<provider selected="true" editor-type-id="text-editor">
<state line="9" column="26" selection-start="176" selection-end="192" vertical-scroll-proportion="-1.7916666">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/libs/openid/handlers/OpenIdAuthenticationRequestHandler.php">
<provider selected="true" editor-type-id="text-editor">
<state line="173" column="13" selection-start="8594" selection-end="8594" vertical-scroll-proportion="-10.625">
<folding>
<element signature="e#194#219#0" expanded="true" />
<element signature="e#8626#9554#0" expanded="false" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/vendor/laravel/framework/src/Illuminate/Auth/UserInterface.php">
<provider selected="true" editor-type-id="text-editor">
<state line="18" column="1" selection-start="282" selection-end="282" vertical-scroll-proportion="-11.25">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/libs/auth/OpenIdUser.php">
<provider selected="true" editor-type-id="text-editor">
<state line="14" column="6" selection-start="256" selection-end="266" vertical-scroll-proportion="-5.0">
<folding>
<element signature="e#184#218#0" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/libs/auth/CustomAuthProvider.php">
<provider selected="true" editor-type-id="text-editor">
<state line="50" column="6" selection-start="1087" selection-end="1087" vertical-scroll-proportion="1.2403846">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/libs/auth/AuthService.php">
<provider selected="true" editor-type-id="text-editor">
<state line="52" column="58" selection-start="1034" selection-end="1034" vertical-scroll-proportion="0.7692308">
<folding>
<element signature="e#183#226#0" expanded="true" />
</folding>
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/libs/auth/AuthenticationServiceProvider.php">
<provider selected="true" editor-type-id="text-editor">
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/models/ServerExtension.php">
<provider selected="true" editor-type-id="text-editor">
<state line="11" column="1" selection-start="209" selection-end="209" vertical-scroll-proportion="-3.125">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/models/OpenIdAssociation.php">
<provider selected="true" editor-type-id="text-editor">
<state line="10" column="23" selection-start="203" selection-end="220" vertical-scroll-proportion="-0.8787879">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/models/OpenIdTrustedSite.php">
<provider selected="true" editor-type-id="text-editor">
<state line="10" column="23" selection-start="203" selection-end="220" vertical-scroll-proportion="0.115384616">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_211839_alter_trusted_sites_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="19" column="0" selection-start="388" selection-end="388" vertical-scroll-proportion="-10.625">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_14_155702_create_extension_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="15" column="33" selection-start="286" selection-end="286" vertical-scroll-proportion="-5.7916665">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_210518_create_users_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="15" column="33" selection-start="277" selection-end="277" vertical-scroll-proportion="-7.0416665">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_210730_create_associations_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="10" column="33" selection-start="242" selection-end="242" vertical-scroll-proportion="-5.4166665">
<folding />
</state>
</provider>
</entry>
<entry file="file://$PROJECT_DIR$/app/database/migrations/2013_10_17_211051_create_trusted_sites_table.php">
<provider selected="true" editor-type-id="text-editor">
<state line="14" column="53" selection-start="428" selection-end="428" vertical-scroll-proportion="0.47191012">
<folding />
</state>
</provider>
</entry>
</component>
</project>