├── .gitignore ├── README.txt ├── Release_Notes.html ├── cdi ├── contexts │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── gatein │ │ │ └── cdi │ │ │ ├── CDIPortletContextExtension.java │ │ │ └── contexts │ │ │ ├── AbstractCDIPortletContext.java │ │ │ ├── CDIPortletContext.java │ │ │ ├── PortletLifecycleContext.java │ │ │ ├── PortletLifecycleContextImpl.java │ │ │ ├── PortletRedisplayedContext.java │ │ │ ├── PortletRedisplayedContextImpl.java │ │ │ ├── PortletRequestLifecycle.java │ │ │ ├── SerializableBeanStoreInstance.java │ │ │ ├── SerializableContextual.java │ │ │ ├── beanstore │ │ │ ├── AbstractBeanStore.java │ │ │ ├── BeanStore.java │ │ │ ├── BeanStoreInstance.java │ │ │ ├── LocalBeanStore.java │ │ │ ├── LockStore.java │ │ │ ├── LockedBean.java │ │ │ ├── ResourceTempBeanStore.java │ │ │ └── SessionBeanStore.java │ │ │ └── listeners │ │ │ ├── AbstractCDIServletListener.java │ │ │ ├── CDIServletListener.java │ │ │ └── TomcatCDIServletListener.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── javax.enterprise.inject.spi.Extension ├── injection │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── gatein │ │ └── cdi │ │ └── CDIInjectionListener.java └── pom.xml ├── component ├── api │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── api │ │ │ │ ├── BasicPortalRequest.java │ │ │ │ ├── Comparators.java │ │ │ │ ├── PortalImpl.java │ │ │ │ ├── Util.java │ │ │ │ ├── application │ │ │ │ ├── ApplicationImpl.java │ │ │ │ └── ApplicationRegistryImpl.java │ │ │ │ ├── composition │ │ │ │ ├── BareContainerImpl.java │ │ │ │ ├── ColumnContainerBuilderImpl.java │ │ │ │ ├── ColumnContainerImpl.java │ │ │ │ ├── ContainerBuilderImpl.java │ │ │ │ ├── ContainerImpl.java │ │ │ │ ├── CustomContainerBuilderImpl.java │ │ │ │ ├── LayoutBuilderImpl.java │ │ │ │ └── PageBuilderImpl.java │ │ │ │ ├── management │ │ │ │ ├── GateInApiManagementExtension.java │ │ │ │ ├── GateInApiManagementResource.java │ │ │ │ ├── NavigationManagementResource.java │ │ │ │ ├── PageManagementResource.java │ │ │ │ └── Utils.java │ │ │ │ ├── navigation │ │ │ │ ├── ApiFilteredNode.java │ │ │ │ ├── ApiNode.java │ │ │ │ ├── ApiNodeAttributes.java │ │ │ │ ├── ApiNodeChange.java │ │ │ │ ├── ApiNodeModel.java │ │ │ │ ├── MultiPathNodeVisitor.java │ │ │ │ ├── Navigation18NResolver.java │ │ │ │ ├── NavigationImpl.java │ │ │ │ ├── NodeVisitorScope.java │ │ │ │ └── ObjectFactory.java │ │ │ │ ├── oauth │ │ │ │ ├── AccessTokenImpl.java │ │ │ │ ├── BasicOAuthProviderAccessorImpl.java │ │ │ │ ├── BasicOAuthProviderImpl.java │ │ │ │ └── OAuthProviderAccessor.java │ │ │ │ ├── page │ │ │ │ └── PageImpl.java │ │ │ │ └── site │ │ │ │ └── SiteImpl.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.gatein.management.spi.ManagementExtension │ │ │ └── conf │ │ │ └── portal │ │ │ └── configuration.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── gatein │ │ │ └── api │ │ │ ├── AbstractApiTest.java │ │ │ ├── Assert.java │ │ │ ├── OAuthProviderTest.java │ │ │ ├── PortalImplTest.java │ │ │ ├── SerializationUtils.java │ │ │ ├── composition │ │ │ └── PageBuilderImplTest.java │ │ │ └── navigation │ │ │ ├── ApiFilteredNodeTest.java │ │ │ ├── ApiNodeAttributesTest.java │ │ │ ├── ApiNodeTest.java │ │ │ ├── NavigationImplTest.java │ │ │ └── NodeVisitorScopeTest.java │ │ └── resources │ │ ├── conf │ │ └── exo.portal.component.api-configuration.xml │ │ └── log4j.properties ├── application-registry │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── conf │ │ │ └── application-nodetypes.xml │ │ │ ├── gadgets_1_0.xsd │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── application │ │ │ ├── gadget │ │ │ ├── EncodingDetector.java │ │ │ ├── Gadget.java │ │ │ ├── GadgetDeployer.java │ │ │ ├── GadgetImporter.java │ │ │ ├── GadgetRegistryService.java │ │ │ ├── RemoteImporter.java │ │ │ ├── ServletLocalImporter.java │ │ │ ├── Source.java │ │ │ ├── SourceStorage.java │ │ │ └── impl │ │ │ │ ├── GadgetData.java │ │ │ │ ├── GadgetDefinition.java │ │ │ │ ├── GadgetRegistry.java │ │ │ │ ├── GadgetRegistryServiceImpl.java │ │ │ │ ├── LocalGadgetData.java │ │ │ │ ├── RemoteGadgetData.java │ │ │ │ └── SourceStorageImpl.java │ │ │ └── registry │ │ │ ├── Application.java │ │ │ ├── ApplicationCategoriesPlugins.java │ │ │ ├── ApplicationCategory.java │ │ │ ├── ApplicationRegistryService.java │ │ │ └── impl │ │ │ ├── ApplicationRegistryChromatticLifeCycle.java │ │ │ ├── ApplicationRegistryServiceImpl.java │ │ │ ├── CategoryDefinition.java │ │ │ ├── ContentDefinition.java │ │ │ ├── ContentRegistry.java │ │ │ └── Injector.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── application │ │ │ ├── AbstractApplicationRegistryTest.java │ │ │ ├── gadget │ │ │ ├── TestEncodingDetector.java │ │ │ └── TestGadgetRegistryService.java │ │ │ └── registry │ │ │ └── TestApplicationRegistryService.java │ │ └── resources │ │ ├── conf │ │ └── exo.portal.component.application-registry-configuration.xml │ │ └── org │ │ └── exoplatform │ │ └── application │ │ └── gadgets │ │ └── weather.xml ├── common │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── conf │ │ │ ├── configuration-jboss.properties │ │ │ ├── configuration-jetty.properties │ │ │ ├── configuration-tomcat.properties │ │ │ └── configuration.xml │ │ │ └── org │ │ │ ├── exoplatform │ │ │ ├── commons │ │ │ │ ├── InitialContextInitializer2.java │ │ │ │ ├── cache │ │ │ │ │ ├── SimpleExoCacheCreator.java │ │ │ │ │ └── future │ │ │ │ │ │ ├── FutureCache.java │ │ │ │ │ │ ├── FutureExoCache.java │ │ │ │ │ │ ├── FutureMap.java │ │ │ │ │ │ ├── Loader.java │ │ │ │ │ │ └── Retrieval.java │ │ │ │ ├── chromattic │ │ │ │ │ ├── AbstractContext.java │ │ │ │ │ ├── ChromatticImpl.java │ │ │ │ │ ├── ChromatticLifeCycle.java │ │ │ │ │ ├── ChromatticManager.java │ │ │ │ │ ├── ContextualTask.java │ │ │ │ │ ├── LocalContext.java │ │ │ │ │ ├── PortalSessionLifeCycle.java │ │ │ │ │ ├── SessionContext.java │ │ │ │ │ ├── Synchronization.java │ │ │ │ │ ├── SynchronizationListener.java │ │ │ │ │ ├── SynchronizationStatus.java │ │ │ │ │ └── SynchronizedContext.java │ │ │ │ ├── scope │ │ │ │ │ ├── AbstractScopedKey.java │ │ │ │ │ ├── ScopeManager.java │ │ │ │ │ └── ScopedKey.java │ │ │ │ ├── serialization │ │ │ │ │ ├── MarshalledObject.java │ │ │ │ │ ├── SerializationContext.java │ │ │ │ │ ├── api │ │ │ │ │ │ ├── DefaultTypeConverter.java │ │ │ │ │ │ ├── TypeConverter.java │ │ │ │ │ │ ├── annotations │ │ │ │ │ │ │ ├── Converted.java │ │ │ │ │ │ │ └── Serialized.java │ │ │ │ │ │ └── factory │ │ │ │ │ │ │ ├── CreateException.java │ │ │ │ │ │ │ ├── DefaultObjectFactory.java │ │ │ │ │ │ │ └── ObjectFactory.java │ │ │ │ │ ├── model │ │ │ │ │ │ ├── ClassTypeModel.java │ │ │ │ │ │ ├── ConvertedTypeModel.java │ │ │ │ │ │ ├── FieldModel.java │ │ │ │ │ │ ├── SerializationMode.java │ │ │ │ │ │ ├── TypeDomain.java │ │ │ │ │ │ ├── TypeException.java │ │ │ │ │ │ ├── TypeModel.java │ │ │ │ │ │ ├── TypeModelBuilder.java │ │ │ │ │ │ └── metadata │ │ │ │ │ │ │ ├── ClassTypeMetaData.java │ │ │ │ │ │ │ ├── ConvertedTypeMetaData.java │ │ │ │ │ │ │ ├── DomainMetaData.java │ │ │ │ │ │ │ └── TypeMetaData.java │ │ │ │ │ └── serial │ │ │ │ │ │ ├── DataContainer.java │ │ │ │ │ │ ├── DataKind.java │ │ │ │ │ │ ├── ObjectReader.java │ │ │ │ │ │ ├── ObjectWriter.java │ │ │ │ │ │ └── SerializationStatus.java │ │ │ │ ├── utils │ │ │ │ │ ├── AbstractSerializablePageList.java │ │ │ │ │ ├── BinaryOutput.java │ │ │ │ │ ├── BufferingOutputStream.java │ │ │ │ │ ├── ByteArrayOutput.java │ │ │ │ │ ├── CharEncoder.java │ │ │ │ │ ├── CharsetCharEncoder.java │ │ │ │ │ ├── CharsetTextEncoder.java │ │ │ │ │ ├── CompositeReader.java │ │ │ │ │ ├── EmptySerializablePageList.java │ │ │ │ │ ├── GrowingOutputStream.java │ │ │ │ │ ├── HTMLEntityEncoder.java │ │ │ │ │ ├── I18N.java │ │ │ │ │ ├── IOFailureFlow.java │ │ │ │ │ ├── ListAccessImpl.java │ │ │ │ │ ├── OutputStreamPrinter.java │ │ │ │ │ ├── PageListAccess.java │ │ │ │ │ ├── Printer.java │ │ │ │ │ ├── PropertyResolverReader.java │ │ │ │ │ ├── Queues.java │ │ │ │ │ ├── Safe.java │ │ │ │ │ ├── SerializablePageList.java │ │ │ │ │ ├── Spliterator.java │ │ │ │ │ ├── StatelessPageList.java │ │ │ │ │ ├── TableCharEncoder.java │ │ │ │ │ ├── Text.java │ │ │ │ │ ├── TextEncoder.java │ │ │ │ │ └── WriterPrinter.java │ │ │ │ └── xml │ │ │ │ │ ├── DOMSerializer.java │ │ │ │ │ ├── DocumentSource.java │ │ │ │ │ ├── ResourceEntityResolver.java │ │ │ │ │ ├── ValidationReporter.java │ │ │ │ │ ├── XMLDeclarationParser.java │ │ │ │ │ └── XMLValidator.java │ │ │ ├── resolver │ │ │ │ ├── ApplicationResourceResolver.java │ │ │ │ ├── ClasspathResourceResolver.java │ │ │ │ ├── FileResourceResolver.java │ │ │ │ ├── MockResourceResolver.java │ │ │ │ ├── PortletResourceResolver.java │ │ │ │ ├── ResourceKey.java │ │ │ │ ├── ResourceResolver.java │ │ │ │ └── ServletResourceResolver.java │ │ │ └── util │ │ │ │ └── ReflectionUtil.java │ │ │ └── gatein │ │ │ ├── common │ │ │ ├── classloader │ │ │ │ └── DelegatingClassLoader.java │ │ │ ├── transaction │ │ │ │ ├── JTAUserTransactionLifecycleListener.java │ │ │ │ ├── JTAUserTransactionLifecycleService.java │ │ │ │ └── JTAUserTransactionLifecycleServiceImpl.java │ │ │ └── xml │ │ │ │ └── stax │ │ │ │ ├── CollectionXmlHandler.java │ │ │ │ ├── XmlHandler.java │ │ │ │ ├── navigator │ │ │ │ ├── Exceptions.java │ │ │ │ ├── StaxNavUtils.java │ │ │ │ └── builder │ │ │ │ │ ├── StaxNavBuilder.java │ │ │ │ │ └── StaxNavBuilderImpl.java │ │ │ │ └── writer │ │ │ │ ├── StaxWriter.java │ │ │ │ ├── StaxWriterImpl.java │ │ │ │ ├── StaxWriterUtils.java │ │ │ │ ├── WritableValueType.java │ │ │ │ ├── WritableValueTypes.java │ │ │ │ ├── builder │ │ │ │ ├── StaxFormatterBuilder.java │ │ │ │ ├── StaxFormatterBuilderImpl.java │ │ │ │ ├── StaxWriterBuilder.java │ │ │ │ └── StaxWriterBuilderImpl.java │ │ │ │ └── formatting │ │ │ │ ├── NoOpFormatter.java │ │ │ │ ├── SimpleFormatter.java │ │ │ │ └── XmlStreamingFormatter.java │ │ │ └── version │ │ │ └── Version.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ ├── exoplatform │ │ │ ├── commons │ │ │ │ ├── cache │ │ │ │ │ └── future │ │ │ │ │ │ ├── ConcurrentGetWhenPutTestCase.java │ │ │ │ │ │ ├── GetTestCase.java │ │ │ │ │ │ └── StringLoader.java │ │ │ │ ├── chromattic │ │ │ │ │ ├── ChromatticIntegrationTestCase.java │ │ │ │ │ ├── FooEntity.java │ │ │ │ │ ├── SynchronizationEvent.java │ │ │ │ │ └── SynchronizationEventQueue.java │ │ │ │ ├── scope │ │ │ │ │ └── ScopeTestCase.java │ │ │ │ ├── serialization │ │ │ │ │ ├── A.java │ │ │ │ │ ├── B.java │ │ │ │ │ ├── C1.java │ │ │ │ │ ├── C2.java │ │ │ │ │ ├── D.java │ │ │ │ │ ├── E1.java │ │ │ │ │ ├── E2.java │ │ │ │ │ ├── F.java │ │ │ │ │ ├── G.java │ │ │ │ │ ├── MapBuilder.java │ │ │ │ │ ├── SetBuilder.java │ │ │ │ │ ├── TestSerialization.java │ │ │ │ │ ├── TestTypeModel.java │ │ │ │ │ ├── converter │ │ │ │ │ │ ├── A1.java │ │ │ │ │ │ ├── A2.java │ │ │ │ │ │ ├── A3.java │ │ │ │ │ │ ├── B1.java │ │ │ │ │ │ ├── B2.java │ │ │ │ │ │ ├── B3.java │ │ │ │ │ │ └── TestConverter.java │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── A1.java │ │ │ │ │ │ ├── A2.java │ │ │ │ │ │ ├── B.java │ │ │ │ │ │ └── TestObjectFactory.java │ │ │ │ │ └── metadata │ │ │ │ │ │ ├── ArrayListTypeConverter.java │ │ │ │ │ │ ├── TestMetaData.java │ │ │ │ │ │ └── ThreadTypeConverter.java │ │ │ │ ├── utils │ │ │ │ │ ├── StringPageListAccess.java │ │ │ │ │ ├── TestBufferingOutputStream.java │ │ │ │ │ ├── TestCompositeReader.java │ │ │ │ │ ├── TestHTMLEntityEncoder.java │ │ │ │ │ ├── TestI18N.java │ │ │ │ │ ├── TestMarshalledObject.java │ │ │ │ │ ├── TestOutputStreamPrinter.java │ │ │ │ │ ├── TestPageListAccess.java │ │ │ │ │ ├── TestPrinter.java │ │ │ │ │ ├── TestPropertyResolverReader.java │ │ │ │ │ ├── TestQueues.java │ │ │ │ │ ├── TestSafe.java │ │ │ │ │ ├── TestSpliterator.java │ │ │ │ │ └── TestTextEncoder.java │ │ │ │ └── xml │ │ │ │ │ ├── TestDOMSerializer.java │ │ │ │ │ └── TestXMLDeclarationParser.java │ │ │ └── resolver │ │ │ │ └── ClasspathResourceResolverTestCase.java │ │ │ └── gatein │ │ │ └── common │ │ │ ├── classloader │ │ │ ├── DelegatingClassLoaderTest.java │ │ │ └── FilteringClassLoader.java │ │ │ ├── transaction │ │ │ ├── CounterListener.java │ │ │ └── JTAUserTransactionTest.java │ │ │ └── xml │ │ │ └── stax │ │ │ ├── AbstractStaxWriterTest.java │ │ │ ├── LocalStaxWriterTest.java │ │ │ └── QualifiedStaxWriterTest.java │ │ └── resources │ │ └── org │ │ ├── exoplatform │ │ ├── commons │ │ │ ├── chromattic │ │ │ │ └── configuration.xml │ │ │ └── scope │ │ │ │ └── configuration.xml │ │ └── resolver │ │ │ └── foo.gtmpl │ │ └── gatein │ │ └── common │ │ ├── classloader │ │ ├── one │ │ │ ├── sub │ │ │ │ └── test.properties │ │ │ └── test.properties │ │ ├── three │ │ │ ├── test.conf │ │ │ └── test.properties │ │ └── two │ │ │ └── test.properties │ │ └── transaction │ │ └── configuration.xml ├── identity │ ├── DisableUserMigration_Manual.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── conf │ │ │ │ └── portal │ │ │ │ │ └── idm-config.xml │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── services │ │ │ │ └── organization │ │ │ │ └── idm │ │ │ │ ├── AbstractDAOImpl.java │ │ │ │ ├── Config.java │ │ │ │ ├── CustomHibernateServiceImpl.java │ │ │ │ ├── CustomMembershipLoginModule.java │ │ │ │ ├── DisabledUserMigrationScript.java │ │ │ │ ├── ExtGroup.java │ │ │ │ ├── GroupDAOImpl.java │ │ │ │ ├── IDMMembershipListAccess.java │ │ │ │ ├── IDMTransactionSyncListener.java │ │ │ │ ├── IDMUserListAccess.java │ │ │ │ ├── InfinispanCacheFactory.java │ │ │ │ ├── IntegrationCache.java │ │ │ │ ├── MembershipDAOImpl.java │ │ │ │ ├── MembershipImpl.java │ │ │ │ ├── MembershipTypeDAOImpl.java │ │ │ │ ├── PicketLinkIDMCacheService.java │ │ │ │ ├── PicketLinkIDMOrganizationServiceImpl.java │ │ │ │ ├── PicketLinkIDMService.java │ │ │ │ ├── PicketLinkIDMServiceImpl.java │ │ │ │ ├── Tools.java │ │ │ │ ├── UserDAOImpl.java │ │ │ │ ├── UserImpl.java │ │ │ │ ├── UserProfileDAOImpl.java │ │ │ │ └── UserTransactionJtaPlatform.java │ │ └── resources │ │ │ ├── configuration.properties │ │ │ ├── hibernate.cfg.xml │ │ │ ├── log4j.properties │ │ │ └── picketlink-idm-config.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── services │ │ │ └── organization │ │ │ ├── AbstractTestOrganizationService.java │ │ │ ├── TestBootstrap.java │ │ │ ├── TestOrganization.java │ │ │ ├── TestOrganizationService.java │ │ │ └── TestOrganizationServiceJTA.java │ │ └── resources │ │ ├── conf │ │ ├── cache │ │ │ └── infinispan.xml │ │ ├── exo.portal.component.identity-configuration.xml │ │ ├── exo.portal.component.identity-picketlink-idm-config.xml │ │ ├── mappings │ │ │ ├── HibernateIdentityObject.hbm.xml │ │ │ ├── HibernateIdentityObjectAttribute.hbm.xml │ │ │ ├── HibernateIdentityObjectAttributeBinaryValue.hbm.xml │ │ │ ├── HibernateIdentityObjectCredential.hbm.xml │ │ │ ├── HibernateIdentityObjectCredentialBinaryValue.hbm.xml │ │ │ ├── HibernateIdentityObjectCredentialType.hbm.xml │ │ │ ├── HibernateIdentityObjectRelationship.hbm.xml │ │ │ ├── HibernateIdentityObjectRelationshipName.hbm.xml │ │ │ ├── HibernateIdentityObjectRelationshipType.hbm.xml │ │ │ ├── HibernateIdentityObjectType.hbm.xml │ │ │ └── HibernateRealm.hbm.xml │ │ └── standalone │ │ │ ├── configuration.properties │ │ │ └── test-configuration.xml │ │ └── org │ │ └── exoplatform │ │ └── services │ │ └── organization │ │ ├── TestOrganization-configuration.xml │ │ ├── TestOrganizationService-configuration.xml │ │ ├── TestOrganizationService-jdbc-configuration.xml │ │ └── TestOrganizationService-jta-configuration.xml ├── management │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ ├── exoplatform │ │ │ └── management │ │ │ │ ├── ResourceKey.java │ │ │ │ ├── RestManagementProvider.java │ │ │ │ ├── ValueWrapper.java │ │ │ │ ├── data │ │ │ │ ├── RestResource.java │ │ │ │ ├── RestResourceMethod.java │ │ │ │ ├── RestResourceMethodParameter.java │ │ │ │ └── RestResourceProperty.java │ │ │ │ └── invocation │ │ │ │ ├── GetterInvoker.java │ │ │ │ ├── MethodInvoker.java │ │ │ │ ├── NoSuchMethodInvoker.java │ │ │ │ ├── SetterInvoker.java │ │ │ │ └── SimpleMethodInvoker.java │ │ │ └── gatein │ │ │ └── management │ │ │ └── runtime │ │ │ ├── ExternalContextImpl.java │ │ │ ├── ManagementBootstrap.java │ │ │ └── RuntimeContextImpl.java │ │ └── resources │ │ └── conf │ │ └── portal │ │ └── configuration.xml ├── pc │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── exoplatform │ │ ├── portal │ │ └── pc │ │ │ ├── ExoKernelIntegration.java │ │ │ ├── ExoPortletApplicationDeployer.java │ │ │ ├── ExoPortletState.java │ │ │ ├── ExoPortletStateType.java │ │ │ ├── ExoResourceBundleFactory.java │ │ │ ├── ExoStateConverter.java │ │ │ ├── GlobalPortletMetaData.java │ │ │ └── aspects │ │ │ └── PortletLifecyclePhaseInterceptor.java │ │ └── services │ │ └── portletcontainer │ │ ├── PortletContainerException.java │ │ └── bundle │ │ └── ResourceBundleDelegate.java ├── pom.xml ├── portal │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── conf │ │ │ │ ├── content-nodetypes.xml │ │ │ │ └── gatein-nodetypes.xml │ │ │ ├── gatein_objects_1_0.xsd │ │ │ ├── gatein_objects_1_1.xsd │ │ │ ├── gatein_objects_1_1_1.xsd │ │ │ ├── gatein_objects_1_2.xsd │ │ │ ├── gatein_objects_1_3.xsd │ │ │ ├── gatein_objects_1_4.xsd │ │ │ ├── gatein_objects_1_5.xsd │ │ │ ├── gatein_objects_1_6.xsd │ │ │ ├── gatein_objects_1_7.xsd │ │ │ └── org │ │ │ │ ├── exoplatform │ │ │ │ └── portal │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── application │ │ │ │ │ ├── PortletPreferences.java │ │ │ │ │ ├── Preference.java │ │ │ │ │ └── ResourceBundleDelegateImpl.java │ │ │ │ │ ├── config │ │ │ │ │ ├── DataStorage.java │ │ │ │ │ ├── DataStorageImpl.java │ │ │ │ │ ├── GroupPortalConfigListener.java │ │ │ │ │ ├── NewPortalConfig.java │ │ │ │ │ ├── NewPortalConfigListener.java │ │ │ │ │ ├── NoSuchDataException.java │ │ │ │ │ ├── PortalACLPlugin.java │ │ │ │ │ ├── Query.java │ │ │ │ │ ├── RemoveGroupPortalConfigListener.java │ │ │ │ │ ├── RemoveUserPortalConfigListener.java │ │ │ │ │ ├── SiteConfigTemplates.java │ │ │ │ │ ├── StaleModelException.java │ │ │ │ │ ├── StorageException.java │ │ │ │ │ ├── UserACL.java │ │ │ │ │ ├── UserACLMetaData.java │ │ │ │ │ ├── UserPortalConfig.java │ │ │ │ │ ├── UserPortalConfigListener.java │ │ │ │ │ ├── UserPortalConfigService.java │ │ │ │ │ ├── model │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ ├── ApplicationState.java │ │ │ │ │ │ ├── ApplicationType.java │ │ │ │ │ │ ├── CloneApplicationState.java │ │ │ │ │ │ ├── Container.java │ │ │ │ │ │ ├── Dashboard.java │ │ │ │ │ │ ├── DevicePropertyCondition.java │ │ │ │ │ │ ├── I18NString.java │ │ │ │ │ │ ├── I18NValue.java │ │ │ │ │ │ ├── LocalizedString.java │ │ │ │ │ │ ├── LocalizedValue.java │ │ │ │ │ │ ├── ModelObject.java │ │ │ │ │ │ ├── ModelUnmarshaller.java │ │ │ │ │ │ ├── NavigationFragment.java │ │ │ │ │ │ ├── NodeMap.java │ │ │ │ │ │ ├── Page.java │ │ │ │ │ │ ├── PageBody.java │ │ │ │ │ │ ├── PageNavigation.java │ │ │ │ │ │ ├── PageNode.java │ │ │ │ │ │ ├── PageNodeContainer.java │ │ │ │ │ │ ├── PersistentApplicationState.java │ │ │ │ │ │ ├── PortalConfig.java │ │ │ │ │ │ ├── PortalProperties.java │ │ │ │ │ │ ├── PortalRedirect.java │ │ │ │ │ │ ├── Properties.java │ │ │ │ │ │ ├── RedirectCondition.java │ │ │ │ │ │ ├── RedirectMappings.java │ │ │ │ │ │ ├── SiteBody.java │ │ │ │ │ │ ├── SiteConfig.java │ │ │ │ │ │ ├── TransientApplicationState.java │ │ │ │ │ │ ├── UnmarshalledObject.java │ │ │ │ │ │ ├── UserAgentConditions.java │ │ │ │ │ │ └── Version.java │ │ │ │ │ └── serialize │ │ │ │ │ │ ├── AbstractApplicationHandler.java │ │ │ │ │ │ ├── GadgetApplication.java │ │ │ │ │ │ ├── GadgetApplicationHandler.java │ │ │ │ │ │ ├── JibxArraySerialize.java │ │ │ │ │ │ ├── JibxPropertiesMapper.java │ │ │ │ │ │ ├── JibxStringSerialize.java │ │ │ │ │ │ ├── LocalizedValueMapper.java │ │ │ │ │ │ ├── PortletApplication.java │ │ │ │ │ │ └── PortletApplicationHandler.java │ │ │ │ │ ├── mop │ │ │ │ │ ├── Described.java │ │ │ │ │ ├── EventType.java │ │ │ │ │ ├── ProtectedContainer.java │ │ │ │ │ ├── ProtectedResource.java │ │ │ │ │ ├── QueryResult.java │ │ │ │ │ ├── RestrictAccess.java │ │ │ │ │ ├── SiteKey.java │ │ │ │ │ ├── SiteType.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ ├── Visibility.java │ │ │ │ │ ├── Visible.java │ │ │ │ │ ├── description │ │ │ │ │ │ ├── CacheKey.java │ │ │ │ │ │ ├── CacheValue.java │ │ │ │ │ │ ├── DataCache.java │ │ │ │ │ │ ├── DescriptionService.java │ │ │ │ │ │ ├── DescriptionServiceImpl.java │ │ │ │ │ │ ├── ExoDataCache.java │ │ │ │ │ │ └── SimpleDataCache.java │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── I18NAdapter.java │ │ │ │ │ │ ├── I18Nized.java │ │ │ │ │ │ ├── Injector.java │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ ├── LanguageSpace.java │ │ │ │ │ │ └── Resolution.java │ │ │ │ │ ├── importer │ │ │ │ │ │ ├── ImportConfig.java │ │ │ │ │ │ ├── ImportMode.java │ │ │ │ │ │ ├── Imported.java │ │ │ │ │ │ ├── NavigationFragmentImporter.java │ │ │ │ │ │ ├── NavigationImporter.java │ │ │ │ │ │ ├── PageImporter.java │ │ │ │ │ │ └── PortalConfigImporter.java │ │ │ │ │ ├── management │ │ │ │ │ │ ├── MopManagementExtension.java │ │ │ │ │ │ ├── binding │ │ │ │ │ │ │ ├── MopBindingProvider.java │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ ├── AbstractMarshaller.java │ │ │ │ │ │ │ │ ├── DelimitedValueType.java │ │ │ │ │ │ │ │ ├── Element.java │ │ │ │ │ │ │ │ ├── Namespace.java │ │ │ │ │ │ │ │ ├── NavigationMarshaller.java │ │ │ │ │ │ │ │ ├── PageMarshaller.java │ │ │ │ │ │ │ │ ├── SiteLayoutMarshaller.java │ │ │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ │ │ └── portal │ │ │ │ │ │ │ │ └── redirects │ │ │ │ │ │ │ │ ├── ConditionXmlHandler.java │ │ │ │ │ │ │ │ ├── DevicePropertyConditionXmlHandler.java │ │ │ │ │ │ │ │ ├── NodeMapXmlHandler.java │ │ │ │ │ │ │ │ ├── PortalRedirectXmlHandler.java │ │ │ │ │ │ │ │ ├── RedirectMappingsXmlHandler.java │ │ │ │ │ │ │ │ └── UserAgentConditionXmlHandler.java │ │ │ │ │ │ ├── exportimport │ │ │ │ │ │ │ ├── AbstractExportTask.java │ │ │ │ │ │ │ ├── AbstractImportTask.java │ │ │ │ │ │ │ ├── ImportTask.java │ │ │ │ │ │ │ ├── NavigationExportTask.java │ │ │ │ │ │ │ ├── NavigationImportTask.java │ │ │ │ │ │ │ ├── POMSessionExportTask.java │ │ │ │ │ │ │ ├── PageExportTask.java │ │ │ │ │ │ │ ├── PageImportTask.java │ │ │ │ │ │ │ ├── SiteLayoutExportTask.java │ │ │ │ │ │ │ └── SiteLayoutImportTask.java │ │ │ │ │ │ └── operations │ │ │ │ │ │ │ ├── AbstractMopOperationHandler.java │ │ │ │ │ │ │ ├── MOPSiteProvider.java │ │ │ │ │ │ │ ├── MopImportResource.java │ │ │ │ │ │ │ ├── MopReadResource.java │ │ │ │ │ │ │ ├── SecureOperationHandler.java │ │ │ │ │ │ │ ├── TemplateImportResource.java │ │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ ├── AbstractNavigationOperationHandler.java │ │ │ │ │ │ │ ├── FilteredNavigationExportResource.java │ │ │ │ │ │ │ ├── NavigationExportResource.java │ │ │ │ │ │ │ ├── NavigationKey.java │ │ │ │ │ │ │ ├── NavigationReadConfig.java │ │ │ │ │ │ │ ├── NavigationReadResource.java │ │ │ │ │ │ │ └── NavigationUtils.java │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ ├── AbstractPageOperationHandler.java │ │ │ │ │ │ │ ├── PageExportResource.java │ │ │ │ │ │ │ ├── PageReadConfig.java │ │ │ │ │ │ │ ├── PageReadResource.java │ │ │ │ │ │ │ └── PageUtils.java │ │ │ │ │ │ │ └── site │ │ │ │ │ │ │ ├── AbstractSiteOperationHandler.java │ │ │ │ │ │ │ ├── SiteLayoutExportResource.java │ │ │ │ │ │ │ ├── SiteLayoutReadConfig.java │ │ │ │ │ │ │ ├── SiteLayoutReadResource.java │ │ │ │ │ │ │ ├── SiteReadResource.java │ │ │ │ │ │ │ └── SiteTypeReadResource.java │ │ │ │ │ ├── navigation │ │ │ │ │ │ ├── AttributesState.java │ │ │ │ │ │ ├── DataCache.java │ │ │ │ │ │ ├── ExoDataCache.java │ │ │ │ │ │ ├── FederatingVisitor.java │ │ │ │ │ │ ├── GenericScope.java │ │ │ │ │ │ ├── InvalidationBridge.java │ │ │ │ │ │ ├── NavigationContext.java │ │ │ │ │ │ ├── NavigationData.java │ │ │ │ │ │ ├── NavigationError.java │ │ │ │ │ │ ├── NavigationService.java │ │ │ │ │ │ ├── NavigationServiceException.java │ │ │ │ │ │ ├── NavigationServiceImpl.java │ │ │ │ │ │ ├── NavigationServiceWrapper.java │ │ │ │ │ │ ├── NavigationState.java │ │ │ │ │ │ ├── NodeChange.java │ │ │ │ │ │ ├── NodeChangeListener.java │ │ │ │ │ │ ├── NodeChangeQueue.java │ │ │ │ │ │ ├── NodeContext.java │ │ │ │ │ │ ├── NodeContextChangeAdapter.java │ │ │ │ │ │ ├── NodeData.java │ │ │ │ │ │ ├── NodeFilter.java │ │ │ │ │ │ ├── NodeModel.java │ │ │ │ │ │ ├── NodeState.java │ │ │ │ │ │ ├── Scope.java │ │ │ │ │ │ ├── SimpleDataCache.java │ │ │ │ │ │ ├── TreeContext.java │ │ │ │ │ │ ├── TreeMerge.java │ │ │ │ │ │ ├── TreeUpdate.java │ │ │ │ │ │ ├── TreeUpdateAdapter.java │ │ │ │ │ │ └── VisitMode.java │ │ │ │ │ ├── page │ │ │ │ │ │ ├── DataCache.java │ │ │ │ │ │ ├── ExoDataCache.java │ │ │ │ │ │ ├── PageContext.java │ │ │ │ │ │ ├── PageData.java │ │ │ │ │ │ ├── PageError.java │ │ │ │ │ │ ├── PageKey.java │ │ │ │ │ │ ├── PageService.java │ │ │ │ │ │ ├── PageServiceException.java │ │ │ │ │ │ ├── PageServiceImpl.java │ │ │ │ │ │ ├── PageServiceWrapper.java │ │ │ │ │ │ ├── PageState.java │ │ │ │ │ │ └── SimpleDataCache.java │ │ │ │ │ ├── redirects │ │ │ │ │ │ ├── Condition.java │ │ │ │ │ │ ├── DeviceProperty.java │ │ │ │ │ │ ├── Mappings.java │ │ │ │ │ │ ├── NodeMap.java │ │ │ │ │ │ ├── Redirect.java │ │ │ │ │ │ └── Redirectable.java │ │ │ │ │ └── user │ │ │ │ │ │ ├── UserNavigation.java │ │ │ │ │ │ ├── UserNode.java │ │ │ │ │ │ ├── UserNodeContext.java │ │ │ │ │ │ ├── UserNodeFilter.java │ │ │ │ │ │ ├── UserNodeFilterConfig.java │ │ │ │ │ │ ├── UserNodeListener.java │ │ │ │ │ │ ├── UserPortal.java │ │ │ │ │ │ ├── UserPortalContext.java │ │ │ │ │ │ ├── UserPortalException.java │ │ │ │ │ │ ├── UserPortalImpl.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ ├── pom │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ExecutorDispatcher.java │ │ │ │ │ │ ├── MOPChromatticLifeCycle.java │ │ │ │ │ │ ├── POMDataStorage.java │ │ │ │ │ │ ├── POMSession.java │ │ │ │ │ │ ├── POMSessionManager.java │ │ │ │ │ │ ├── POMTask.java │ │ │ │ │ │ ├── PortalMOPService.java │ │ │ │ │ │ ├── TaskExecutionDecorator.java │ │ │ │ │ │ ├── TaskExecutor.java │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ ├── CacheableDataTask.java │ │ │ │ │ │ │ ├── DataAccessMode.java │ │ │ │ │ │ │ ├── DataCache.java │ │ │ │ │ │ │ ├── LayoutUpdateListener.java │ │ │ │ │ │ │ ├── NullObject.java │ │ │ │ │ │ │ └── PortalNamesCache.java │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ ├── DashboardTask.java │ │ │ │ │ │ │ ├── PageTask.java │ │ │ │ │ │ │ ├── PortalConfigTask.java │ │ │ │ │ │ │ ├── PreferencesTask.java │ │ │ │ │ │ │ └── SearchTask.java │ │ │ │ │ │ └── todo.txt │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ApplicationData.java │ │ │ │ │ │ ├── BodyData.java │ │ │ │ │ │ ├── BodyType.java │ │ │ │ │ │ ├── ComponentData.java │ │ │ │ │ │ ├── ContainerData.java │ │ │ │ │ │ ├── DashboardData.java │ │ │ │ │ │ ├── MappedAttributes.java │ │ │ │ │ │ ├── Mapper.java │ │ │ │ │ │ ├── ModelChange.java │ │ │ │ │ │ ├── ModelData.java │ │ │ │ │ │ ├── ModelDataStorage.java │ │ │ │ │ │ ├── NavigationKey.java │ │ │ │ │ │ ├── NodeData.java │ │ │ │ │ │ ├── OwnerKey.java │ │ │ │ │ │ ├── PageData.java │ │ │ │ │ │ ├── PageKey.java │ │ │ │ │ │ ├── PortalData.java │ │ │ │ │ │ ├── PortalKey.java │ │ │ │ │ │ ├── RedirectConditionData.java │ │ │ │ │ │ ├── RedirectData.java │ │ │ │ │ │ ├── RedirectDevicePropertyConditionData.java │ │ │ │ │ │ ├── RedirectMappingsData.java │ │ │ │ │ │ └── RedirectUserAgentConditionData.java │ │ │ │ │ └── spi │ │ │ │ │ │ ├── gadget │ │ │ │ │ │ ├── Gadget.java │ │ │ │ │ │ ├── GadgetContentProvider.java │ │ │ │ │ │ └── GadgetState.java │ │ │ │ │ │ ├── portlet │ │ │ │ │ │ ├── Portlet.java │ │ │ │ │ │ ├── PortletBuilder.java │ │ │ │ │ │ ├── PortletContentProvider.java │ │ │ │ │ │ ├── PortletState.java │ │ │ │ │ │ ├── Preference.java │ │ │ │ │ │ └── PreferenceState.java │ │ │ │ │ │ └── wsrp │ │ │ │ │ │ ├── WSRP.java │ │ │ │ │ │ ├── WSRPContentProvider.java │ │ │ │ │ │ ├── WSRPPortletStateType.java │ │ │ │ │ │ └── WSRPState.java │ │ │ │ │ ├── portlet │ │ │ │ │ ├── LogPortletExceptionListener.java │ │ │ │ │ ├── PortletExceptionHandleService.java │ │ │ │ │ └── PortletExceptionListener.java │ │ │ │ │ ├── registration │ │ │ │ │ └── PostRegistrationService.java │ │ │ │ │ ├── tree │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── Adapters.java │ │ │ │ │ │ ├── HierarchyAdapter.java │ │ │ │ │ │ ├── HierarchyChangeIterator.java │ │ │ │ │ │ ├── HierarchyChangeType.java │ │ │ │ │ │ ├── HierarchyContext.java │ │ │ │ │ │ ├── HierarchyDiff.java │ │ │ │ │ │ ├── ListAdapter.java │ │ │ │ │ │ ├── ListChangeIterator.java │ │ │ │ │ │ ├── ListChangeType.java │ │ │ │ │ │ └── ListDiff.java │ │ │ │ │ └── list │ │ │ │ │ │ └── ListTree.java │ │ │ │ │ └── url │ │ │ │ │ └── URLWriter.java │ │ │ │ └── gatein │ │ │ │ └── portal │ │ │ │ ├── encoder │ │ │ │ └── EncoderService.java │ │ │ │ ├── init │ │ │ │ └── PortalCheckInitFilter.java │ │ │ │ └── installer │ │ │ │ ├── PBEUtils.java │ │ │ │ ├── PortalSetupCommand.java │ │ │ │ └── PortalSetupService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ ├── org.gatein.management.spi.ManagementExtension │ │ │ │ └── org.gatein.mop.spi.AdapterLifeCycle │ │ │ └── binding.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ ├── exoplatform │ │ │ └── portal │ │ │ │ ├── AbstractPortalTest.java │ │ │ │ ├── TestXSDCorruption.java │ │ │ │ ├── config │ │ │ │ ├── AbstractConfigTest.java │ │ │ │ ├── AbstractDataImportTest.java │ │ │ │ ├── AbstractImportFragmentTest.java │ │ │ │ ├── AbstractImportNavigationTest.java │ │ │ │ ├── AbstractImportTest.java │ │ │ │ ├── AbstractSiteDataImportTest.java │ │ │ │ ├── EventQueue.java │ │ │ │ ├── SampleMixin.java │ │ │ │ ├── TestCache.java │ │ │ │ ├── TestContentRegistry.java │ │ │ │ ├── TestDataStorage.java │ │ │ │ ├── TestEscape.java │ │ │ │ ├── TestImportFragmentConserve.java │ │ │ │ ├── TestImportFragmentInsert.java │ │ │ │ ├── TestImportFragmentOverwrite.java │ │ │ │ ├── TestImportNavigationConserve.java │ │ │ │ ├── TestImportNavigationInsert.java │ │ │ │ ├── TestImportNavigationMerge.java │ │ │ │ ├── TestImportNavigationOverwrite.java │ │ │ │ ├── TestJIBXXmlMapping.java │ │ │ │ ├── TestLoadedPOM.java │ │ │ │ ├── TestMOP.java │ │ │ │ ├── TestSearch.java │ │ │ │ ├── TestSerialization.java │ │ │ │ ├── TestSiteDataImportConserve.java │ │ │ │ ├── TestSiteDataImportInsert.java │ │ │ │ ├── TestSiteDataImportMerge.java │ │ │ │ ├── TestSiteDataImportOverwrite.java │ │ │ │ ├── TestUserPortalConfigService.java │ │ │ │ ├── security │ │ │ │ │ ├── AbstractTestUserACL.java │ │ │ │ │ ├── impersonation │ │ │ │ │ │ └── TestUserImpersonationACL.java │ │ │ │ │ ├── nav │ │ │ │ │ │ ├── TestGroupNavACL.java │ │ │ │ │ │ ├── TestPortalNavACL.java │ │ │ │ │ │ └── TestUserNavACL.java │ │ │ │ │ ├── page │ │ │ │ │ │ ├── AbstractTestSharedPageACL.java │ │ │ │ │ │ ├── TestGroupPageACL.java │ │ │ │ │ │ ├── TestPortalPageACL.java │ │ │ │ │ │ └── TestUserPageACL.java │ │ │ │ │ └── portal │ │ │ │ │ │ ├── TestCreatePortalACL.java │ │ │ │ │ │ └── TestPortalACL.java │ │ │ │ └── serialize │ │ │ │ │ └── JibxArraySerializeTest.java │ │ │ │ ├── mop │ │ │ │ ├── AbstractMOPTest.java │ │ │ │ ├── description │ │ │ │ │ └── TestDescriptionService.java │ │ │ │ ├── importer │ │ │ │ │ ├── Builder.java │ │ │ │ │ ├── FragmentBuilder.java │ │ │ │ │ ├── NodeBuilder.java │ │ │ │ │ ├── TestNavigationFragmentImporter.java │ │ │ │ │ └── TestNavigationImporter.java │ │ │ │ ├── management │ │ │ │ │ ├── binding │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── AbstractMarshallerTest.java │ │ │ │ │ │ │ ├── NavigationMarshallerTest.java │ │ │ │ │ │ │ ├── PageMarshallerTest.java │ │ │ │ │ │ │ ├── SiteLayoutMarshallerTest.java │ │ │ │ │ │ │ └── UtilsTest.java │ │ │ │ │ └── exportimport │ │ │ │ │ │ └── PageImportTaskTest.java │ │ │ │ ├── navigation │ │ │ │ │ ├── AbstractTestNavigationService.java │ │ │ │ │ ├── AttributesStateTest.java │ │ │ │ │ ├── Node.java │ │ │ │ │ ├── TestNavigationService.java │ │ │ │ │ ├── TestNavigationServiceRebase.java │ │ │ │ │ ├── TestNavigationServiceSave.java │ │ │ │ │ ├── TestNavigationServiceUpdate.java │ │ │ │ │ ├── TestNavigationServiceWrapper.java │ │ │ │ │ ├── TestScope.java │ │ │ │ │ └── TestSerialization.java │ │ │ │ ├── page │ │ │ │ │ ├── AbstractTestPageService.java │ │ │ │ │ ├── TestPageKey.java │ │ │ │ │ ├── TestPageService.java │ │ │ │ │ └── TestPageServiceWrapper.java │ │ │ │ └── user │ │ │ │ │ ├── SimpleUserPortalContext.java │ │ │ │ │ ├── TestParsePath.java │ │ │ │ │ └── TestUserPortal.java │ │ │ │ └── tree │ │ │ │ └── list │ │ │ │ └── TestListTree.java │ │ │ └── gatein │ │ │ └── portal │ │ │ └── encoder │ │ │ └── TestEncoderService.java │ │ └── resources │ │ ├── WEB-INF │ │ └── gatein-resources.xml │ │ ├── conf │ │ ├── exo.portal.component.encoder-configuration.xml │ │ ├── exo.portal.component.portal-configuration.xml │ │ ├── exo.portal.component.portal-mop-configuration.xml │ │ └── test-mop-nodetypes.xml │ │ ├── jibx │ │ ├── extended-navigation.xml │ │ ├── fragment-navigation.xml │ │ ├── gadget-application.xml │ │ ├── navigation-with-properties.xml │ │ ├── portlet-application.xml │ │ └── simple-navigation.xml │ │ └── org │ │ └── exoplatform │ │ └── portal │ │ ├── config │ │ ├── TestImport0-configuration.xml │ │ ├── TestImport1-configuration.xml │ │ ├── TestImport2-configuration.xml │ │ ├── conf │ │ │ ├── configuration.xml │ │ │ ├── group │ │ │ │ ├── organization │ │ │ │ │ └── management │ │ │ │ │ │ └── executive-board │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ ├── platform │ │ │ │ │ ├── administrators │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ │ ├── guests │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ │ └── users │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ ├── template │ │ │ │ │ └── group │ │ │ │ │ │ └── group.xml │ │ │ │ └── test │ │ │ │ │ ├── legacy │ │ │ │ │ ├── group.xml │ │ │ │ │ ├── navigation.xml │ │ │ │ │ └── pages.xml │ │ │ │ │ └── normalized │ │ │ │ │ ├── group.xml │ │ │ │ │ ├── navigation.xml │ │ │ │ │ └── pages.xml │ │ │ ├── portal │ │ │ │ ├── classic │ │ │ │ │ ├── navigation.xml │ │ │ │ │ ├── pages.xml │ │ │ │ │ └── portal.xml │ │ │ │ ├── system │ │ │ │ │ ├── navigation.xml │ │ │ │ │ ├── pages.xml │ │ │ │ │ └── portal.xml │ │ │ │ ├── template │ │ │ │ │ ├── classic │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ └── portal.xml │ │ │ │ │ └── test │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ └── portal.xml │ │ │ │ └── test │ │ │ │ │ ├── navigation.xml │ │ │ │ │ ├── pages.xml │ │ │ │ │ └── portal.xml │ │ │ ├── template │ │ │ │ ├── container.xml │ │ │ │ ├── containers │ │ │ │ │ ├── four-columns │ │ │ │ │ │ └── container.xml │ │ │ │ │ ├── one-column │ │ │ │ │ │ └── container.xml │ │ │ │ │ ├── three-columns │ │ │ │ │ │ └── container.xml │ │ │ │ │ └── two-columns │ │ │ │ │ │ └── container.xml │ │ │ │ └── pages │ │ │ │ │ ├── dashboard │ │ │ │ │ └── page.xml │ │ │ │ │ ├── empty │ │ │ │ │ └── page.xml │ │ │ │ │ ├── one-row-two-columns │ │ │ │ │ └── page.xml │ │ │ │ │ ├── three-columns │ │ │ │ │ └── page.xml │ │ │ │ │ ├── three-rows-two-columns │ │ │ │ │ └── page.xml │ │ │ │ │ ├── three-rows │ │ │ │ │ └── page.xml │ │ │ │ │ ├── three-tabs │ │ │ │ │ └── page.xml │ │ │ │ │ ├── two-columns-one-row │ │ │ │ │ └── page.xml │ │ │ │ │ ├── two-columns │ │ │ │ │ └── page.xml │ │ │ │ │ ├── two-rows │ │ │ │ │ └── page.xml │ │ │ │ │ └── two-tabs │ │ │ │ │ └── page.xml │ │ │ └── user │ │ │ │ ├── overwritelayout │ │ │ │ └── user.xml │ │ │ │ └── template │ │ │ │ └── user │ │ │ │ ├── navigation.xml │ │ │ │ ├── pages.xml │ │ │ │ └── user.xml │ │ ├── fragment1-conf │ │ │ └── portal │ │ │ │ └── classic │ │ │ │ └── navigation.xml │ │ ├── fragment2-conf │ │ │ └── portal │ │ │ │ └── classic │ │ │ │ └── navigation.xml │ │ ├── navigation1-conf │ │ │ └── portal │ │ │ │ └── classic │ │ │ │ └── navigation.xml │ │ ├── navigation2-conf │ │ │ └── portal │ │ │ │ └── classic │ │ │ │ └── navigation.xml │ │ ├── site1-conf │ │ │ ├── group │ │ │ │ └── platform │ │ │ │ │ └── administrators │ │ │ │ │ └── group.xml │ │ │ ├── portal │ │ │ │ └── classic │ │ │ │ │ ├── pages.xml │ │ │ │ │ └── portal.xml │ │ │ └── user │ │ │ │ └── root │ │ │ │ ├── navigation.xml │ │ │ │ └── pages.xml │ │ └── site2-conf │ │ │ ├── group │ │ │ └── platform │ │ │ │ └── administrators │ │ │ │ └── pages.xml │ │ │ ├── portal │ │ │ └── classic │ │ │ │ ├── pages.xml │ │ │ │ └── portal.xml │ │ │ └── user │ │ │ └── root │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ └── mop │ │ ├── management │ │ ├── navigation-empty.xml │ │ ├── navigation-extended.xml │ │ ├── navigation-fragment.xml │ │ ├── navigation.xml │ │ ├── pages-empty.xml │ │ ├── pages-homepage.xml │ │ ├── pages-loaded.xml │ │ ├── pages-template.xml │ │ ├── portal-pagebody.xml │ │ ├── portal-redirects.xml │ │ └── portal.xml │ │ ├── navigation │ │ ├── configuration.xml │ │ └── portal │ │ │ ├── classic │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ │ ├── large │ │ │ └── navigation.xml │ │ │ └── test │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ ├── page │ │ ├── configuration.xml │ │ └── portal │ │ │ └── classic │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ └── user │ │ ├── configuration.xml │ │ ├── group │ │ ├── organization │ │ │ └── management │ │ │ │ └── executive-board │ │ │ │ ├── group.xml │ │ │ │ ├── navigation.xml │ │ │ │ └── pages.xml │ │ └── platform │ │ │ ├── administrators │ │ │ ├── group.xml │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ │ ├── guests │ │ │ ├── group.xml │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ │ └── users │ │ │ ├── group.xml │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ └── portal │ │ ├── classic │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── extended │ │ ├── navigation.xml │ │ └── portal.xml │ │ ├── limited │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── system │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ └── test │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml ├── resources │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── services │ │ │ └── resources │ │ │ ├── ExoResourceBundle.java │ │ │ ├── IdentityResourceBundle.java │ │ │ ├── InputStreamURLConnection.java │ │ │ ├── InputStreamURLStreamHandler.java │ │ │ ├── LocaleConfig.java │ │ │ ├── LocaleConfigService.java │ │ │ ├── LocaleContextInfo.java │ │ │ ├── LocalePolicy.java │ │ │ ├── Orientation.java │ │ │ ├── PropertiesClassLoader.java │ │ │ ├── Query.java │ │ │ ├── ResourceBundleData.java │ │ │ ├── ResourceBundleDescription.java │ │ │ ├── ResourceBundleLoader.java │ │ │ ├── ResourceBundleManager.java │ │ │ ├── ResourceBundleService.java │ │ │ ├── XMLResourceBundleParser.java │ │ │ └── impl │ │ │ ├── BaseResourceBundlePlugin.java │ │ │ ├── BaseResourceBundleService.java │ │ │ ├── LocaleConfigImpl.java │ │ │ ├── LocaleConfigServiceImpl.java │ │ │ └── SimpleResourceBundleService.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── services │ │ │ └── resources │ │ │ ├── AbstractResourceBundleTest.java │ │ │ ├── TestExoResourceBundle.java │ │ │ ├── TestLocaleConfig.java │ │ │ ├── TestLocaleConfigService.java │ │ │ └── TestResourceBundleService.java │ │ └── resources │ │ ├── bundles │ │ ├── locales-config.xml │ │ ├── portal │ │ │ ├── base.properties │ │ │ ├── base_en.properties │ │ │ ├── base_it.properties │ │ │ ├── no-base_en.properties │ │ │ ├── no-base_it.properties │ │ │ ├── no-base_vi.properties │ │ │ ├── test.properties │ │ │ ├── test_en.properties │ │ │ ├── test_fr.properties │ │ │ ├── test_it.properties │ │ │ ├── test_ru.properties │ │ │ ├── test_vi.properties │ │ │ └── test_vi.xml │ │ ├── portlet │ │ │ ├── base.properties │ │ │ ├── base_en.properties │ │ │ ├── base_it.properties │ │ │ ├── no-base_en.properties │ │ │ ├── no-base_it.properties │ │ │ ├── no-base_vi.properties │ │ │ ├── test.properties │ │ │ ├── test_en.properties │ │ │ ├── test_fr.properties │ │ │ ├── test_it.properties │ │ │ ├── test_ru.properties │ │ │ ├── test_vi.properties │ │ │ └── test_vi.xml │ │ └── resource-bundle-configuration.xml │ │ ├── conf │ │ ├── exo.portal.component.resources-configuration.xml │ │ └── locales-config.xml │ │ ├── locale │ │ └── navigation │ │ │ └── portal │ │ │ ├── classic_ar.properties │ │ │ ├── classic_en.properties │ │ │ ├── classic_fr.properties │ │ │ └── classic_vi.properties │ │ └── resources │ │ └── locales-config.xml ├── scripting │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ ├── commons │ │ │ └── utils │ │ │ │ └── PortalPrinter.java │ │ │ └── groovyscript │ │ │ ├── BaseScript.java │ │ │ ├── GroovyCompilationException.java │ │ │ ├── GroovyPrinter.java │ │ │ ├── GroovyScript.java │ │ │ ├── GroovyScriptBuilder.java │ │ │ ├── GroovyTemplate.java │ │ │ ├── GroovyTemplateEngine.java │ │ │ ├── GroovyText.java │ │ │ ├── LineBreakItem.java │ │ │ ├── OutputStreamWriterGroovyPrinter.java │ │ │ ├── Position.java │ │ │ ├── SectionItem.java │ │ │ ├── SectionType.java │ │ │ ├── TemplateCompilationException.java │ │ │ ├── TemplateParser.java │ │ │ ├── TemplateRuntimeException.java │ │ │ ├── TemplateSection.java │ │ │ ├── TextItem.java │ │ │ ├── WriterGroovyPrinter.java │ │ │ └── text │ │ │ ├── BindingContext.java │ │ │ ├── TemplateService.java │ │ │ ├── TemplateStatistic.java │ │ │ └── TemplateStatisticService.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── groovyscript │ │ │ ├── TestGroovyTemplateEngine.java │ │ │ ├── TestTemplateCompiler.java │ │ │ ├── TestTemplateParser.java │ │ │ └── TestTemplateRendering.java │ │ └── resources │ │ └── UIPortalApplication.gtmpl ├── test │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── exoplatform │ │ │ │ │ └── component │ │ │ │ │ └── test │ │ │ │ │ ├── AbstractGateInTest.java │ │ │ │ │ ├── AbstractKernelTest.java │ │ │ │ │ ├── BaseGateInTest.java │ │ │ │ │ ├── ConfigurationUnit.java │ │ │ │ │ ├── ConfiguredBy.java │ │ │ │ │ ├── ContainerScope.java │ │ │ │ │ ├── GateInTestClassLoader.java │ │ │ │ │ ├── KernelBootstrap.java │ │ │ │ │ ├── KernelLifeCycle.java │ │ │ │ │ └── package-info.java │ │ │ └── resources │ │ │ │ ├── conf │ │ │ │ ├── portal-configuration.xml │ │ │ │ └── root-configuration.xml │ │ │ │ └── gatein-log4j.properties │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── component │ │ │ │ └── test │ │ │ │ ├── BootstrapTestCase.java │ │ │ │ ├── CustomService.java │ │ │ │ ├── KernelBootstrapTestCase.java │ │ │ │ ├── KernelRuleClassScopedTestCase.java │ │ │ │ ├── KernelRuleTestCase.java │ │ │ │ └── KernelRuleTestScopedTestCase.java │ │ │ └── resources │ │ │ └── conf │ │ │ └── test-configuration.xml │ ├── jcr │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ └── conf │ │ │ │ ├── exo.portal.component.test.jcr-configuration.xml │ │ │ │ ├── exo.portal.component.test.jcr-infinispan-config.xml │ │ │ │ ├── exo.portal.component.test.jcr-infinispan-lock.xml │ │ │ │ └── exo.portal.component.test.jcr-repository-configuration.xml │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── component │ │ │ └── test │ │ │ └── jcr │ │ │ └── BootstrapTestCase.java │ ├── pom.xml │ └── web │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── component │ │ │ └── test │ │ │ └── web │ │ │ ├── ServletContextImpl.java │ │ │ └── WebAppImpl.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── component │ │ │ └── test │ │ │ └── web │ │ │ └── ServletContextTestCase.java │ │ └── resources │ │ └── org │ │ └── exoplatform │ │ └── component │ │ └── test │ │ └── web │ │ ├── folder │ │ └── bar.txt │ │ └── foo.txt └── web │ ├── api │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ ├── exoplatform │ │ │ └── web │ │ │ │ ├── GenericHttpListener.java │ │ │ │ ├── filter │ │ │ │ ├── ExtensibleFilter.java │ │ │ │ ├── Filter.java │ │ │ │ ├── FilterDefinition.java │ │ │ │ ├── FilterDefinitionPlugin.java │ │ │ │ ├── FilterMapping.java │ │ │ │ ├── GenericFilter.java │ │ │ │ └── RedefinableResourceFilter.java │ │ │ │ └── resource │ │ │ │ └── config │ │ │ │ └── xml │ │ │ │ └── FCKConfigListener.java │ │ │ └── gatein │ │ │ └── portal │ │ │ └── installer │ │ │ └── PortalSetupFilter.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── web │ │ │ └── filter │ │ │ ├── TestExtensibleFilter.java │ │ │ └── TestFilterDefinition.java │ │ └── resources │ │ └── TestJSonFormat.html │ ├── controller │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── gatein_controller_1_0.xsd │ │ │ ├── gatein_controller_1_1.xsd │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── web │ │ │ ├── ControllerContext.java │ │ │ ├── WebAppController.java │ │ │ ├── WebRequestHandler.java │ │ │ ├── application │ │ │ ├── AbstractApplicationMessage.java │ │ │ ├── Application.java │ │ │ ├── ApplicationFactory.java │ │ │ ├── ApplicationLifecycle.java │ │ │ ├── ApplicationMessage.java │ │ │ ├── ApplicationRequestPhaseLifecycle.java │ │ │ ├── ApplicationSession.java │ │ │ ├── CompoundApplicationMessage.java │ │ │ ├── Parameter.java │ │ │ ├── Phase.java │ │ │ ├── RequestContext.java │ │ │ ├── RequestFailure.java │ │ │ └── URLBuilder.java │ │ │ ├── controller │ │ │ ├── QualifiedName.java │ │ │ ├── metadata │ │ │ │ ├── ControllerDescriptor.java │ │ │ │ ├── DescriptorBuilder.java │ │ │ │ ├── Element.java │ │ │ │ ├── ParamDescriptor.java │ │ │ │ ├── PathParamDescriptor.java │ │ │ │ ├── RequestParamDescriptor.java │ │ │ │ ├── RouteDescriptor.java │ │ │ │ └── RouteParamDescriptor.java │ │ │ ├── regexp │ │ │ │ ├── GroupType.java │ │ │ │ ├── Kind.java │ │ │ │ ├── Lexer.java │ │ │ │ ├── Literal.java │ │ │ │ ├── Quantifier.java │ │ │ │ ├── RENode.java │ │ │ │ ├── REParser.java │ │ │ │ ├── RERenderer.java │ │ │ │ ├── REVisitor.java │ │ │ │ ├── Stream.java │ │ │ │ └── SyntaxException.java │ │ │ └── router │ │ │ │ ├── BitStack.java │ │ │ │ ├── CaptureGroupTransformation.java │ │ │ │ ├── CharEscapeTransformation.java │ │ │ │ ├── ControlMode.java │ │ │ │ ├── EncodingMode.java │ │ │ │ ├── MalformedRouteException.java │ │ │ │ ├── NonCaptureGroupTransformation.java │ │ │ │ ├── Param.java │ │ │ │ ├── Path.java │ │ │ │ ├── PathParam.java │ │ │ │ ├── PatternBuilder.java │ │ │ │ ├── PatternRoute.java │ │ │ │ ├── PercentEncoding.java │ │ │ │ ├── Regex.java │ │ │ │ ├── RegexFactory.java │ │ │ │ ├── RenderContext.java │ │ │ │ ├── RequestParam.java │ │ │ │ ├── Route.java │ │ │ │ ├── RouteEscaper.java │ │ │ │ ├── RouteParam.java │ │ │ │ ├── Router.java │ │ │ │ ├── RouterConfigException.java │ │ │ │ ├── SegmentRoute.java │ │ │ │ ├── URIWriter.java │ │ │ │ ├── ValueMapping.java │ │ │ │ ├── ValueResolverFactory.java │ │ │ │ └── ValueType.java │ │ │ ├── portal │ │ │ └── RefreshCurrentUserPortal.java │ │ │ └── url │ │ │ ├── MimeType.java │ │ │ ├── PortalURL.java │ │ │ ├── ResourceType.java │ │ │ ├── URLContext.java │ │ │ ├── URLFactory.java │ │ │ ├── URLFactoryPlugin.java │ │ │ ├── URLFactoryService.java │ │ │ ├── navigation │ │ │ ├── NavigationResource.java │ │ │ ├── NodeURL.java │ │ │ └── NodeURLFactoryPlugin.java │ │ │ └── simple │ │ │ ├── SimpleURL.java │ │ │ ├── SimpleURLContext.java │ │ │ └── SimpleURLFactoryPlugin.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── web │ │ │ ├── controller │ │ │ ├── performance │ │ │ │ ├── ControllerRendererDriver.java │ │ │ │ ├── NullAppendable.java │ │ │ │ └── Standalone.java │ │ │ ├── regexp │ │ │ │ ├── TestParser.java │ │ │ │ ├── TestRegExpAnalyser.java │ │ │ │ ├── TestRegExpParser.java │ │ │ │ └── TestRegExpRenderer.java │ │ │ └── router │ │ │ │ ├── AbstractTestController.java │ │ │ │ ├── JRegexFactory.java │ │ │ │ ├── Names.java │ │ │ │ ├── RegexTestCase.java │ │ │ │ ├── TestBitStack.java │ │ │ │ ├── TestBuildRoute.java │ │ │ │ ├── TestCharEscapeTransformation.java │ │ │ │ ├── TestDescriptorBuilder.java │ │ │ │ ├── TestDuplicateParam.java │ │ │ │ ├── TestFooRenderer.java │ │ │ │ ├── TestFooVisitor.java │ │ │ │ ├── TestGroupTransformation.java │ │ │ │ ├── TestHierarchy.java │ │ │ │ ├── TestLegacyPortal.java │ │ │ │ ├── TestMatch.java │ │ │ │ ├── TestPath.java │ │ │ │ ├── TestPathEncoding.java │ │ │ │ ├── TestPatternBuilder.java │ │ │ │ ├── TestPortal.java │ │ │ │ ├── TestPortalConfiguration.java │ │ │ │ ├── TestQualifiedName.java │ │ │ │ ├── TestRender.java │ │ │ │ ├── TestRequestParam.java │ │ │ │ ├── TestRouteEscaper.java │ │ │ │ ├── TestRoutePriority.java │ │ │ │ ├── URIHelper.java │ │ │ │ └── router.xml │ │ │ └── portal │ │ │ └── TestRefreshCurrentUserPortal.java │ │ └── resources │ │ └── org │ │ └── exoplatform │ │ └── web │ │ ├── controller │ │ └── performance │ │ │ └── controller.xml │ │ └── portal │ │ ├── configuration.xml │ │ ├── group │ │ └── platform │ │ │ ├── group.xml │ │ │ └── pages.xml │ │ └── portal │ │ └── classic │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ ├── oauth-common │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── gatein │ │ │ └── security │ │ │ └── oauth │ │ │ ├── common │ │ │ └── OAuthConstants.java │ │ │ ├── data │ │ │ ├── AccessTokenInvalidationListener.java │ │ │ ├── SocialNetworkServiceImpl.java │ │ │ └── UniqueOAuthProviderUsernameListener.java │ │ │ ├── exception │ │ │ ├── OAuthException.java │ │ │ └── OAuthExceptionCode.java │ │ │ ├── facebook │ │ │ ├── FacebookAccessTokenContext.java │ │ │ ├── GateInFacebookProcessor.java │ │ │ └── GateInFacebookProcessorImpl.java │ │ │ ├── google │ │ │ ├── GoogleAccessTokenContext.java │ │ │ ├── GoogleProcessor.java │ │ │ ├── GoogleProcessorImpl.java │ │ │ └── GoogleRequest.java │ │ │ ├── jaas │ │ │ └── OAuthLoginModule.java │ │ │ ├── linkedin │ │ │ ├── LinkedInPrincipalProcessor.java │ │ │ ├── LinkedinAccessTokenContext.java │ │ │ ├── LinkedinProcessor.java │ │ │ └── LinkedinProcessorImpl.java │ │ │ ├── principal │ │ │ └── DefaultPrincipalProcessor.java │ │ │ ├── registry │ │ │ ├── OAuthProviderTypeRegistryImpl.java │ │ │ └── OauthProviderTypeRegistryPlugin.java │ │ │ ├── social │ │ │ ├── FacebookConstants.java │ │ │ ├── FacebookPrincipal.java │ │ │ ├── FacebookProcessor.java │ │ │ └── FacebookRequest.java │ │ │ ├── spi │ │ │ ├── AccessTokenContext.java │ │ │ ├── InteractionState.java │ │ │ ├── OAuthCodec.java │ │ │ ├── OAuthPrincipal.java │ │ │ ├── OAuthPrincipalProcessor.java │ │ │ ├── OAuthProviderProcessor.java │ │ │ ├── OAuthProviderType.java │ │ │ ├── OAuthProviderTypeRegistry.java │ │ │ └── SocialNetworkService.java │ │ │ ├── twitter │ │ │ ├── TwitterAccessTokenContext.java │ │ │ ├── TwitterProcessor.java │ │ │ └── TwitterProcessorImpl.java │ │ │ └── utils │ │ │ ├── HttpResponseContext.java │ │ │ ├── OAuthPersistenceUtils.java │ │ │ └── OAuthUtils.java │ │ └── test │ │ └── java │ │ ├── conf │ │ ├── exo.portal.component.web.oauth-configuration-overrided.xml │ │ └── exo.portal.component.web.oauth-configuration.xml │ │ └── org │ │ └── gatein │ │ └── security │ │ └── oauth │ │ └── test │ │ ├── DefaultPrincipalProcessorOverrided.java │ │ ├── TestOAuthPrincipalProcessor.java │ │ ├── TestOAuthPrincipalProcessorOverrided.java │ │ └── TestSocialNetworkService.java │ ├── oauth-web │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── gatein │ │ └── security │ │ └── oauth │ │ ├── web │ │ ├── OAuthAuthenticationFilter.java │ │ ├── OAuthLinkAccountFilter.java │ │ ├── OAuthProviderFilter.java │ │ ├── facebook │ │ │ └── FacebookFilter.java │ │ ├── google │ │ │ └── GoogleFilter.java │ │ ├── linkedin │ │ │ └── LinkedInFilter.java │ │ └── twitter │ │ │ └── TwitterFilter.java │ │ └── webapi │ │ ├── OAuthDelegateFilter.java │ │ ├── OAuthFilterIntegrator.java │ │ ├── OAuthFilterIntegratorImpl.java │ │ └── OAuthFilterIntegratorPlugin.java │ ├── pom.xml │ ├── resources │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── gatein_resources_1_0.xsd │ │ │ ├── gatein_resources_1_1.xsd │ │ │ ├── gatein_resources_1_2.xsd │ │ │ ├── gatein_resources_1_3.xsd │ │ │ ├── gatein_resources_1_4.xsd │ │ │ ├── gatein_resources_1_5.xsd │ │ │ └── org │ │ │ ├── exoplatform │ │ │ ├── portal │ │ │ │ ├── application │ │ │ │ │ ├── Image.java │ │ │ │ │ ├── ImageType.java │ │ │ │ │ └── ResourceRequestFilter.java │ │ │ │ └── resource │ │ │ │ │ ├── AbstractResourceService.java │ │ │ │ │ ├── CachedStylesheet.java │ │ │ │ │ ├── CharSequenceReader.java │ │ │ │ │ ├── Codec.java │ │ │ │ │ ├── CommentBlockHandler.java │ │ │ │ │ ├── CompositeResourceResolver.java │ │ │ │ │ ├── CompositeSkin.java │ │ │ │ │ ├── GateInResourcesDeployer.java │ │ │ │ │ ├── GateInResourcesSchemaValidator.java │ │ │ │ │ ├── InvalidResourceException.java │ │ │ │ │ ├── MainResourceResolver.java │ │ │ │ │ ├── RenderingException.java │ │ │ │ │ ├── Resource.java │ │ │ │ │ ├── ResourceDeploymentService.java │ │ │ │ │ ├── ResourceRenderer.java │ │ │ │ │ ├── ResourceResolver.java │ │ │ │ │ ├── SimpleResourceContext.java │ │ │ │ │ ├── SimpleSkin.java │ │ │ │ │ ├── Skin.java │ │ │ │ │ ├── SkinConfig.java │ │ │ │ │ ├── SkinConfigParser.java │ │ │ │ │ ├── SkinDependentManager.java │ │ │ │ │ ├── SkinKey.java │ │ │ │ │ ├── SkinResourceRequestHandler.java │ │ │ │ │ ├── SkinService.java │ │ │ │ │ ├── SkinURL.java │ │ │ │ │ ├── SkinVisitor.java │ │ │ │ │ ├── SkipCommentReader.java │ │ │ │ │ ├── compressor │ │ │ │ │ ├── BaseResourceCompressorPlugin.java │ │ │ │ │ ├── ResourceCompressor.java │ │ │ │ │ ├── ResourceCompressorException.java │ │ │ │ │ ├── ResourceCompressorPlugin.java │ │ │ │ │ ├── ResourceType.java │ │ │ │ │ ├── css │ │ │ │ │ │ ├── YUICSSCompressor.java │ │ │ │ │ │ └── YUICSSCompressorPlugin.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── ClosureCompressorPlugin.java │ │ │ │ │ │ ├── JSMinCompressorPlugin.java │ │ │ │ │ │ └── ResourceCompressorService.java │ │ │ │ │ └── config │ │ │ │ │ └── tasks │ │ │ │ │ ├── AbstractSkinModule.java │ │ │ │ │ ├── PortalSkinTask.java │ │ │ │ │ ├── PortletSkinTask.java │ │ │ │ │ ├── SkinConfigTask.java │ │ │ │ │ └── ThemeTask.java │ │ │ └── web │ │ │ │ └── application │ │ │ │ ├── JavascriptManager.java │ │ │ │ ├── RequireJS.java │ │ │ │ └── javascript │ │ │ │ ├── CachedJavascript.java │ │ │ │ ├── DependencyDescriptor.java │ │ │ │ ├── DuplicateResourceKeyException.java │ │ │ │ ├── JSMin.java │ │ │ │ ├── Javascript.java │ │ │ │ ├── JavascriptConfigParser.java │ │ │ │ ├── JavascriptConfigService.java │ │ │ │ ├── ScriptResourceDescriptor.java │ │ │ │ └── ScriptResources.java │ │ │ └── gatein │ │ │ └── portal │ │ │ └── controller │ │ │ └── resource │ │ │ ├── Resource.java │ │ │ ├── ResourceId.java │ │ │ ├── ResourceRequestHandler.java │ │ │ ├── ResourceScope.java │ │ │ ├── ResourceType.java │ │ │ ├── ScriptKey.java │ │ │ ├── ScriptLoader.java │ │ │ ├── ScriptResult.java │ │ │ └── script │ │ │ ├── BaseScriptResource.java │ │ │ ├── FetchMap.java │ │ │ ├── FetchMode.java │ │ │ ├── Module.java │ │ │ ├── ScriptFetch.java │ │ │ ├── ScriptGraph.java │ │ │ ├── ScriptGroup.java │ │ │ ├── ScriptResource.java │ │ │ ├── StaticScriptResource.java │ │ │ └── StaticScriptResourceRequestHandler.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ ├── exoplatform │ │ │ ├── portal │ │ │ │ └── resource │ │ │ │ │ ├── AbstractSkinServiceTest.java │ │ │ │ │ ├── AbstractWebResourceTest.java │ │ │ │ │ ├── MockResourceRenderer.java │ │ │ │ │ ├── MockResourceResolver.java │ │ │ │ │ ├── TestGateInResourcesDeployer.java │ │ │ │ │ ├── TestGateInResourcesSchemaValidator.java │ │ │ │ │ ├── TestJavascriptConfigService.java │ │ │ │ │ ├── TestJavascriptManager.java │ │ │ │ │ ├── TestSkinConfigParser.java │ │ │ │ │ ├── TestSkinService.java │ │ │ │ │ ├── TestSkinServiceInDevelopingMode.java │ │ │ │ │ ├── TestSkipCommentReader.java │ │ │ │ │ ├── TestXSDCorruption.java │ │ │ │ │ └── compressor │ │ │ │ │ ├── MockCompressorPlugin.java │ │ │ │ │ └── TestResourceCompressorService.java │ │ │ └── web │ │ │ │ └── application │ │ │ │ └── javascript │ │ │ │ ├── TestJavascriptConfigParser.java │ │ │ │ ├── TestJavascriptConfigParserAmd.java │ │ │ │ ├── TestPathMappings.java │ │ │ │ └── TestStaticScriptResources.java │ │ │ └── gatein │ │ │ └── portal │ │ │ └── controller │ │ │ └── resource │ │ │ └── script │ │ │ ├── TestModule.java │ │ │ ├── TestScriptGraph.java │ │ │ └── TestScriptResource.java │ │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── org.gatein.portal │ │ │ └── exo.portal.component.web.resources │ │ │ └── pom.properties │ │ ├── Stylesheet.css │ │ ├── conf │ │ ├── resource-compressor-service-configuration.xml │ │ └── test-configuration.xml │ │ ├── javascript.js │ │ ├── mockwebapp │ │ ├── gatein-resources.xml │ │ └── skin │ │ │ ├── FirstPortlet.css │ │ │ ├── SecondPortlet.css │ │ │ └── Stylesheet.css │ │ ├── org │ │ ├── exoplatform │ │ │ └── portal │ │ │ │ └── resource │ │ │ │ ├── gatein-resources-1_0-with-skin-module.xml │ │ │ │ ├── gatein-resources-1_0.xml │ │ │ │ ├── gatein-resources-1_1.xml │ │ │ │ ├── gatein-resources-1_2.xml │ │ │ │ ├── gatein-resources-1_3.xml │ │ │ │ ├── gatein-resources-1_4.xml │ │ │ │ └── gatein-resources-1_5.xml │ │ └── gatein │ │ │ └── portal │ │ │ └── controller │ │ │ └── resource │ │ │ └── script │ │ │ ├── WEB-INF │ │ │ └── classes │ │ │ │ ├── bundle_en.properties │ │ │ │ ├── bundle_fr.properties │ │ │ │ ├── bundle_fr_FR.properties │ │ │ │ ├── bundle_it.properties │ │ │ │ ├── double_quote_bundle_en.properties │ │ │ │ ├── double_quote_bundle_it.properties │ │ │ │ ├── simple_quote_bundle_en.properties │ │ │ │ └── simple_quote_bundle_it.properties │ │ │ ├── localized.js │ │ │ ├── missing.js │ │ │ └── simple.js │ │ ├── resources-deployment-service │ │ ├── gatein-resources-valid-dependent.xml │ │ ├── gatein-resources-valid.xml │ │ ├── gatein-resources-with-broken-amd-paths.xml │ │ ├── gatein-resources-with-broken-gmd-deps.xml │ │ └── skin │ │ │ └── FirstPortlet.css │ │ ├── skin │ │ └── test_1.css │ │ └── validator │ │ ├── amd-cdn-invalid-prefix.xml │ │ ├── amd-cdn-invalid-target-path.xml │ │ ├── amd-cdn.xml │ │ ├── differScopes.xml │ │ ├── duplicatePortal.xml │ │ ├── duplicatePortlet.xml │ │ ├── duplicateShared.xml │ │ ├── f0.xml │ │ ├── f1.xml │ │ ├── f2.xml │ │ ├── f3.xml │ │ ├── f4.xml │ │ ├── f5.xml │ │ ├── f6.xml │ │ ├── f7.xml │ │ ├── f8.xml │ │ ├── f9.xml │ │ └── invalid-1_3.xml │ ├── security-jboss │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── gatein │ │ └── portal │ │ └── security │ │ └── jboss │ │ └── PortalClusteredSSOSupportValve.java │ ├── security │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── conf │ │ │ ├── autologin-nodetypes.xml │ │ │ └── configuration.xml │ │ │ └── org │ │ │ ├── exoplatform │ │ │ └── web │ │ │ │ ├── CacheUserProfileFilter.java │ │ │ │ ├── login │ │ │ │ ├── ClusteredSSOFilter.java │ │ │ │ ├── ConversationStateUpdateFilter.java │ │ │ │ ├── FilterDisabledLoginModule.java │ │ │ │ ├── LoginError.java │ │ │ │ ├── LoginServlet.java │ │ │ │ ├── LogoutControl.java │ │ │ │ └── RememberMeFilter.java │ │ │ │ └── security │ │ │ │ ├── AuthenticationRegistry.java │ │ │ │ ├── AuthenticationRegistryImpl.java │ │ │ │ ├── AuthenticationRegistryListener.java │ │ │ │ ├── GateInToken.java │ │ │ │ ├── InitSharedStateLoginModule.java │ │ │ │ ├── PortalLoginModule.java │ │ │ │ ├── Token.java │ │ │ │ ├── TokenStore.java │ │ │ │ ├── codec │ │ │ │ ├── AbstractCodec.java │ │ │ │ ├── AbstractCodecBuilder.java │ │ │ │ ├── CodecInitializer.java │ │ │ │ ├── JCASymmetricCodec.java │ │ │ │ ├── JCASymmetricCodecBuilder.java │ │ │ │ └── NoCodec.java │ │ │ │ ├── errorlogin │ │ │ │ ├── ErrorLoginFilter.java │ │ │ │ ├── InvalidAttemptKey.java │ │ │ │ ├── InvalidLoginAttemptsService.java │ │ │ │ ├── InvalidLoginPolicy.java │ │ │ │ └── LoginDetectorFilter.java │ │ │ │ ├── hash │ │ │ │ ├── JCASaltedHashService.java │ │ │ │ ├── NoSaltedHashService.java │ │ │ │ ├── SaltedHash.java │ │ │ │ ├── SaltedHashCodec.java │ │ │ │ ├── SaltedHashEncodingException.java │ │ │ │ ├── SaltedHashException.java │ │ │ │ ├── SaltedHashService.java │ │ │ │ └── XmlSafeSaltedHashCodec.java │ │ │ │ ├── proxy │ │ │ │ └── ProxyFilterService.java │ │ │ │ ├── security │ │ │ │ ├── AbstractTokenService.java │ │ │ │ ├── AutoReseedRandom.java │ │ │ │ ├── CookieToken.java │ │ │ │ ├── CookieTokenService.java │ │ │ │ ├── HashedToken.java │ │ │ │ ├── PlainTokenService.java │ │ │ │ ├── RemindPasswordTokenService.java │ │ │ │ ├── SecureRandomService.java │ │ │ │ ├── TokenContainer.java │ │ │ │ ├── TokenEntry.java │ │ │ │ ├── TokenException.java │ │ │ │ ├── TokenExistsException.java │ │ │ │ ├── TokenParseException.java │ │ │ │ ├── TokenServiceInitializationException.java │ │ │ │ └── TransientTokenService.java │ │ │ │ └── sso │ │ │ │ └── SSOHelper.java │ │ │ └── gatein │ │ │ └── web │ │ │ └── security │ │ │ └── impersonation │ │ │ ├── ImpersonatedIdentity.java │ │ │ ├── ImpersonationFilter.java │ │ │ ├── ImpersonationServlet.java │ │ │ └── ImpersonationUtils.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── web │ │ │ └── security │ │ │ ├── AbstractCookieTokenServiceTest.java │ │ │ ├── AbstractTokenServiceTest.java │ │ │ ├── SimpleGeneratorCookieTokenService.java │ │ │ ├── TestHashingCookieTokenService.java │ │ │ ├── TestPlainCookieTokenService.java │ │ │ ├── TestSecureRandomService.java │ │ │ ├── TestSimpleGeneratorService.java │ │ │ ├── TestTransientTokenService.java │ │ │ ├── codec │ │ │ └── TestJCASymmetricCodec.java │ │ │ └── hash │ │ │ ├── TestJCASaltedHashService.java │ │ │ └── TestXmlSafeSaltedHashCodec.java │ │ └── resources │ │ └── conf │ │ ├── jcr-configuration.xml │ │ ├── key-ibmjvm.txt │ │ ├── key.txt │ │ ├── secure-random-service-configuration.xml │ │ ├── token-nodetypes.xml │ │ └── tokenservice-configuration.xml │ └── server │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── org │ │ └── exoplatform │ │ ├── download │ │ ├── ClasspathDownloadResource.java │ │ ├── DownloadResource.java │ │ ├── DownloadService.java │ │ ├── FileDownloadResource.java │ │ └── InputStreamDownloadResource.java │ │ ├── services │ │ ├── chars │ │ │ └── CharsUtil.java │ │ └── html │ │ │ └── refs │ │ │ ├── CharRef.java │ │ │ ├── CharRefs.java │ │ │ ├── CharSequence.java │ │ │ └── RefsDecoder.java │ │ ├── upload │ │ ├── MimeTypeUploadPlugin.java │ │ ├── ParameterParser.java │ │ ├── RequestStreamReader.java │ │ ├── UploadResource.java │ │ ├── UploadService.java │ │ └── UploadSessionListener.java │ │ └── web │ │ └── handler │ │ ├── DownloadHandler.java │ │ └── UploadHandler.java │ └── test │ ├── java │ └── org │ │ └── exoplatform │ │ ├── download │ │ ├── MockDownloadResource.java │ │ └── TestDownloadService.java │ │ └── upload │ │ └── TestCorrectFileName.java │ └── resources │ └── conf │ └── services │ ├── download-service.xml │ └── upload-service.xml ├── examples ├── extension │ ├── README.txt │ ├── config │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── conf │ │ │ └── configuration.xml │ ├── ear │ │ └── pom.xml │ ├── jar │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── sample │ │ │ └── ext │ │ │ └── web │ │ │ ├── SampleContextDestroyedListener.java │ │ │ ├── SampleContextInitializedListener.java │ │ │ ├── SampleFilter.java │ │ │ ├── SampleHttpSessionCreatedListener.java │ │ │ └── SampleHttpSessionDestroyedListener.java │ ├── pom.xml │ └── war │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── resources │ │ └── locale │ │ │ ├── navigation │ │ │ ├── group │ │ │ │ └── platform │ │ │ │ │ ├── users_cs.properties │ │ │ │ │ ├── users_en.properties │ │ │ │ │ ├── users_es.properties │ │ │ │ │ └── users_it.properties │ │ │ └── portal │ │ │ │ ├── classic_cs.properties │ │ │ │ ├── classic_en.properties │ │ │ │ ├── classic_es.properties │ │ │ │ └── classic_it.properties │ │ │ └── portal │ │ │ ├── sample_cs.properties │ │ │ ├── sample_en.properties │ │ │ ├── sample_es.properties │ │ │ ├── sample_it.properties │ │ │ ├── webui_cs.properties │ │ │ ├── webui_en.properties │ │ │ ├── webui_es.properties │ │ │ └── webui_it.properties │ │ └── webapp │ │ ├── WEB-INF │ │ ├── conf │ │ │ ├── configuration.xml │ │ │ └── sample-ext │ │ │ │ ├── common │ │ │ │ └── common-configuration.xml │ │ │ │ ├── jcr │ │ │ │ ├── jcr-configuration.xml │ │ │ │ └── repository-configuration.xml │ │ │ │ ├── portal │ │ │ │ ├── group │ │ │ │ │ └── platform │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ ├── portal-configuration.xml │ │ │ │ ├── portal │ │ │ │ │ └── classic │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ └── user │ │ │ │ │ └── root │ │ │ │ │ ├── navigation.xml │ │ │ │ │ └── pages.xml │ │ │ │ └── web │ │ │ │ └── web-inf-extension-configuration.xml │ │ ├── gatein-resources.xml │ │ ├── jboss-web.xml │ │ └── web.xml │ │ ├── login │ │ └── jsp │ │ │ └── login.jsp │ │ └── templates │ │ ├── groovy │ │ └── webui │ │ │ └── component │ │ │ └── UIHomePagePortlet.gtmpl │ │ └── skin │ │ └── webui │ │ └── component │ │ └── UIHomePagePortlet │ │ ├── DefaultSkin │ │ └── background │ │ │ ├── BgRepeat.gif │ │ │ ├── BgRightColumn.gif │ │ │ ├── HomePagePortlet.gif │ │ │ ├── Line.gif │ │ │ └── RightHome.jpg │ │ └── DefaultStylesheet.css ├── pom.xml ├── portal │ ├── README.txt │ ├── config │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── conf │ │ │ └── configuration.xml │ ├── ear │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── application │ │ │ └── META-INF │ │ │ └── gatein-jboss-beans.xml │ ├── jar │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── exoplatform │ │ │ └── sample │ │ │ └── portal │ │ │ └── web │ │ │ ├── SampleContextDestroyedListener.java │ │ │ ├── SampleContextInitializedListener.java │ │ │ ├── SampleFilter.java │ │ │ ├── SampleHttpSessionCreatedListener.java │ │ │ └── SampleHttpSessionDestroyedListener.java │ ├── pom.xml │ ├── rest-war │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── jboss-web.xml │ │ │ └── web.xml │ └── war │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── resources │ │ └── locale │ │ │ ├── navigation │ │ │ ├── group │ │ │ │ └── platform │ │ │ │ │ ├── users_cs.properties │ │ │ │ │ ├── users_en.properties │ │ │ │ │ ├── users_es.properties │ │ │ │ │ └── users_it.properties │ │ │ └── portal │ │ │ │ ├── classic_cs.properties │ │ │ │ ├── classic_en.properties │ │ │ │ ├── classic_es.properties │ │ │ │ └── classic_it.properties │ │ │ └── portal │ │ │ ├── sample_cs.properties │ │ │ ├── sample_en.properties │ │ │ ├── sample_es.properties │ │ │ ├── sample_it.properties │ │ │ ├── webui_cs.properties │ │ │ ├── webui_en.properties │ │ │ ├── webui_es.properties │ │ │ └── webui_it.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── conf │ │ │ ├── configuration.xml │ │ │ ├── mimetype │ │ │ │ └── mimetypes.properties │ │ │ └── sample-portal │ │ │ │ ├── common │ │ │ │ └── common-configuration.xml │ │ │ │ ├── jcr │ │ │ │ ├── jcr-configuration.xml │ │ │ │ └── repository-configuration.xml │ │ │ │ ├── portal │ │ │ │ ├── group │ │ │ │ │ └── platform │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ ├── portal-configuration.xml │ │ │ │ ├── portal │ │ │ │ │ └── classic │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ └── user │ │ │ │ │ └── root │ │ │ │ │ ├── navigation.xml │ │ │ │ │ └── pages.xml │ │ │ │ └── web │ │ │ │ └── web-inf-extension-configuration.xml │ │ ├── gatein-resources.xml │ │ ├── jboss-web.xml │ │ └── web.xml │ │ ├── favicon.ico │ │ ├── login │ │ ├── jsp │ │ │ └── login.jsp │ │ └── skin │ │ │ ├── Stylesheet.css │ │ │ └── images │ │ │ └── LoginBackground.gif │ │ └── templates │ │ ├── groovy │ │ └── webui │ │ │ └── component │ │ │ └── UIHomePagePortlet.gtmpl │ │ └── skin │ │ └── webui │ │ └── component │ │ └── UIHomePagePortlet │ │ ├── DefaultSkin │ │ └── background │ │ │ ├── BgRepeat.gif │ │ │ ├── BgRightColumn.gif │ │ │ ├── HomePagePortlet.gif │ │ │ ├── Line.gif │ │ │ └── RightHome.jpg │ │ └── DefaultStylesheet.css ├── portlets │ ├── amd-js │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ ├── amd │ │ │ │ ├── JQueryPluginPortlet.java │ │ │ │ └── Sample1Portlet.java │ │ │ │ ├── commonjs │ │ │ │ └── CommonJSPortlet.java │ │ │ │ └── requirejs │ │ │ │ └── RequireJSPortlet.java │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── commonjs │ │ │ ├── commonjs.jsp │ │ │ ├── increment.js │ │ │ ├── math.js │ │ │ └── starter.js │ │ │ ├── highlight │ │ │ ├── highlight.css │ │ │ └── highlight.js │ │ │ ├── jqueryPlugin │ │ │ ├── jquery-plugin.js │ │ │ ├── jqueryPluginPortlet.js │ │ │ └── view.jsp │ │ │ ├── requirejs │ │ │ ├── js │ │ │ │ ├── plugins │ │ │ │ │ ├── mustache.js │ │ │ │ │ └── text.js │ │ │ │ └── requirejsPortlet.js │ │ │ ├── jsp │ │ │ │ ├── hello.mustache │ │ │ │ └── requirejsPortlet.jsp │ │ │ └── skin │ │ │ │ └── RequireJSPortlet │ │ │ │ ├── DefaultStylesheet.css │ │ │ │ └── bootstrap │ │ │ │ └── css │ │ │ │ └── bootstrap.css │ │ │ └── sample1 │ │ │ ├── script.js │ │ │ └── view.jsp │ ├── api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portal │ │ │ │ └── samples │ │ │ │ └── api │ │ │ │ ├── LocaleURLPortlet.java │ │ │ │ ├── NavigationPortlet.java │ │ │ │ └── PRPPortlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── portlet.xml │ │ │ └── web.xml │ ├── ipc │ │ ├── consumer │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── gatein │ │ │ │ │ └── portal │ │ │ │ │ └── samples │ │ │ │ │ └── ipc │ │ │ │ │ ├── ConsumerEventPortlet.java │ │ │ │ │ ├── ConsumerPublicRenderParameterPortlet.java │ │ │ │ │ └── events │ │ │ │ │ └── ExampleEvent.java │ │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── portlet.xml │ │ │ │ └── web.xml │ │ ├── pom.xml │ │ └── producer │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portal │ │ │ │ └── samples │ │ │ │ └── ipc │ │ │ │ ├── ProducerEventPortlet.java │ │ │ │ ├── ProducerPublicRenderParameterPortlet.java │ │ │ │ └── events │ │ │ │ └── ExampleEvent.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── portlet.xml │ │ │ └── web.xml │ ├── jquery │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portal │ │ │ │ └── samples │ │ │ │ └── jquery │ │ │ │ └── JQueryPortlet.java │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── javascript │ │ │ ├── jquery-1.6.4.js │ │ │ └── version.js │ │ │ └── jsp │ │ │ └── views │ │ │ └── index.jsp │ ├── jsphellouser │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── portal │ │ │ │ └── portlet │ │ │ │ └── samples │ │ │ │ └── JSPHelloUserPortlet.java │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ └── jsp │ │ │ ├── edit.jsp │ │ │ ├── hello.jsp │ │ │ ├── help.jsp │ │ │ └── welcome.jsp │ ├── pom.xml │ ├── readme.txt │ ├── resourceserving │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portal │ │ │ │ └── samples │ │ │ │ └── resourceserving │ │ │ │ └── ResourceServingDemoPortlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── portlet.xml │ │ │ └── web.xml │ ├── simplesthelloworld │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── portal │ │ │ │ └── portlet │ │ │ │ └── samples │ │ │ │ └── SimplestHelloWorldPortlet.java │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── WEB-INF │ │ │ ├── portlet.xml │ │ │ └── web.xml │ ├── struts-jpetstore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── ibatis │ │ │ │ │ │ └── jpetstore │ │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── Account.java │ │ │ │ │ │ ├── Cart.java │ │ │ │ │ │ ├── CartItem.java │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ ├── Item.java │ │ │ │ │ │ ├── LineItem.java │ │ │ │ │ │ ├── Order.java │ │ │ │ │ │ ├── Product.java │ │ │ │ │ │ └── Sequence.java │ │ │ │ │ │ ├── persistence │ │ │ │ │ │ ├── DaoConfig.java │ │ │ │ │ │ ├── iface │ │ │ │ │ │ │ ├── AccountDao.java │ │ │ │ │ │ │ ├── CategoryDao.java │ │ │ │ │ │ │ ├── ItemDao.java │ │ │ │ │ │ │ ├── OrderDao.java │ │ │ │ │ │ │ ├── ProductDao.java │ │ │ │ │ │ │ └── SequenceDao.java │ │ │ │ │ │ └── sqlmapdao │ │ │ │ │ │ │ ├── AccountSqlMapDao.java │ │ │ │ │ │ │ ├── BaseSqlMapDao.java │ │ │ │ │ │ │ ├── CategorySqlMapDao.java │ │ │ │ │ │ │ ├── ItemSqlMapDao.java │ │ │ │ │ │ │ ├── OrderSqlMapDao.java │ │ │ │ │ │ │ ├── ProductSqlMapDao.java │ │ │ │ │ │ │ └── SequenceSqlMapDao.java │ │ │ │ │ │ ├── presentation │ │ │ │ │ │ ├── AbstractBean.java │ │ │ │ │ │ ├── AccountBean.java │ │ │ │ │ │ ├── CartBean.java │ │ │ │ │ │ ├── CatalogBean.java │ │ │ │ │ │ └── OrderBean.java │ │ │ │ │ │ └── service │ │ │ │ │ │ ├── AccountService.java │ │ │ │ │ │ ├── CatalogService.java │ │ │ │ │ │ └── OrderService.java │ │ │ │ └── org │ │ │ │ │ ├── apache │ │ │ │ │ └── struts │ │ │ │ │ │ └── beanaction │ │ │ │ │ │ ├── ActionContext.java │ │ │ │ │ │ ├── ActionInterceptor.java │ │ │ │ │ │ ├── ActionInvoker.java │ │ │ │ │ │ ├── BaseBean.java │ │ │ │ │ │ ├── BeanAction.java │ │ │ │ │ │ ├── BeanActionException.java │ │ │ │ │ │ ├── DefaultActionInterceptor.java │ │ │ │ │ │ └── httpmap │ │ │ │ │ │ ├── ApplicationMap.java │ │ │ │ │ │ ├── BaseHttpMap.java │ │ │ │ │ │ ├── CookieMap.java │ │ │ │ │ │ ├── ParameterMap.java │ │ │ │ │ │ ├── RequestMap.java │ │ │ │ │ │ └── SessionMap.java │ │ │ │ │ └── jboss │ │ │ │ │ └── portal │ │ │ │ │ └── portlet │ │ │ │ │ └── samples │ │ │ │ │ └── util │ │ │ │ │ └── SimpleHtmlExtractor.java │ │ │ ├── resources │ │ │ │ ├── com │ │ │ │ │ └── ibatis │ │ │ │ │ │ └── jpetstore │ │ │ │ │ │ └── persistence │ │ │ │ │ │ ├── dao.xml │ │ │ │ │ │ └── sqlmapdao │ │ │ │ │ │ └── sql │ │ │ │ │ │ ├── Account.xml │ │ │ │ │ │ ├── Category.xml │ │ │ │ │ │ ├── Item.xml │ │ │ │ │ │ ├── LineItem.xml │ │ │ │ │ │ ├── Order.xml │ │ │ │ │ │ ├── Product.xml │ │ │ │ │ │ ├── Sequence.xml │ │ │ │ │ │ └── sql-map-config.xml │ │ │ │ ├── ddl │ │ │ │ │ ├── hsql │ │ │ │ │ │ ├── jpetstore-hsqldb-dataload.sql │ │ │ │ │ │ └── jpetstore-hsqldb-schema.sql │ │ │ │ │ ├── mssql │ │ │ │ │ │ ├── jpetstore-mssql-dataload.sql │ │ │ │ │ │ └── jpetstore-mssql-schema.sql │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── jpetstore-mysql-create-user.sql │ │ │ │ │ │ ├── jpetstore-mysql-dataload.sql │ │ │ │ │ │ └── jpetstore-mysql-schema.sql │ │ │ │ │ ├── oracle │ │ │ │ │ │ ├── jpetstore-oracle-dataload.sql │ │ │ │ │ │ └── jpetstore-oracle-schema.sql │ │ │ │ │ └── postgres │ │ │ │ │ │ ├── jpetstore-postgres-dataload.sql │ │ │ │ │ │ └── jpetstore-postgres-schema.sql │ │ │ │ └── properties │ │ │ │ │ ├── database.properties │ │ │ │ │ └── messages.properties │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── jboss-web.xml │ │ │ │ ├── portlet.xml │ │ │ │ ├── struts-config.xml │ │ │ │ ├── struts-portlet-config.xml │ │ │ │ ├── validation.xml │ │ │ │ ├── validator-rules.xml │ │ │ │ └── web.xml │ │ │ │ ├── account │ │ │ │ ├── EditAccountForm.jsp │ │ │ │ ├── IncludeAccountFields.jsp │ │ │ │ ├── NewAccountForm.jsp │ │ │ │ └── SignonForm.jsp │ │ │ │ ├── cart │ │ │ │ ├── Cart.jsp │ │ │ │ ├── Checkout.jsp │ │ │ │ └── IncludeMyList.jsp │ │ │ │ ├── catalog │ │ │ │ ├── Category.jsp │ │ │ │ ├── Item.jsp │ │ │ │ ├── Main.jsp │ │ │ │ ├── Product.jsp │ │ │ │ └── SearchProducts.jsp │ │ │ │ ├── common │ │ │ │ ├── Error.jsp │ │ │ │ ├── IncludeBottom.jsp │ │ │ │ └── IncludeTop.jsp │ │ │ │ ├── css │ │ │ │ └── jpetstore.css │ │ │ │ ├── help.html │ │ │ │ ├── help.jsp │ │ │ │ ├── images │ │ │ │ ├── banner_birds.gif │ │ │ │ ├── banner_cats.gif │ │ │ │ ├── banner_dogs.gif │ │ │ │ ├── banner_fish.gif │ │ │ │ ├── banner_reptiles.gif │ │ │ │ ├── bird1.gif │ │ │ │ ├── bird2.gif │ │ │ │ ├── birds_icon.gif │ │ │ │ ├── cart.gif │ │ │ │ ├── cat1.gif │ │ │ │ ├── cat2.gif │ │ │ │ ├── cats_icon.gif │ │ │ │ ├── dog1.gif │ │ │ │ ├── dog2.gif │ │ │ │ ├── dog3.gif │ │ │ │ ├── dog4.gif │ │ │ │ ├── dog5.gif │ │ │ │ ├── dog6.gif │ │ │ │ ├── dogs.gif │ │ │ │ ├── dogs_icon.gif │ │ │ │ ├── fish.gif │ │ │ │ ├── fish1.gif │ │ │ │ ├── fish2.gif │ │ │ │ ├── fish3.gif │ │ │ │ ├── fish4.gif │ │ │ │ ├── fish_icon.gif │ │ │ │ ├── lizard1.gif │ │ │ │ ├── logo-topbar.gif │ │ │ │ ├── poweredby.gif │ │ │ │ ├── reptiles_icon.gif │ │ │ │ ├── separator.gif │ │ │ │ ├── sm_birds.gif │ │ │ │ ├── sm_cats.gif │ │ │ │ ├── sm_dogs.gif │ │ │ │ ├── sm_fish.gif │ │ │ │ ├── sm_reptiles.gif │ │ │ │ ├── snake1.gif │ │ │ │ └── splash.gif │ │ │ │ ├── index.html │ │ │ │ ├── index.jsp │ │ │ │ └── order │ │ │ │ ├── ConfirmOrder.jsp │ │ │ │ ├── ListOrders.jsp │ │ │ │ ├── NewOrderForm.jsp │ │ │ │ ├── ShippingForm.jsp │ │ │ │ └── ViewOrder.jsp │ │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ibatis │ │ │ │ └── jpetstore │ │ │ │ ├── domain │ │ │ │ ├── BeanTest.java │ │ │ │ └── DomainFixture.java │ │ │ │ ├── persistence │ │ │ │ ├── AccountDaoTest.java │ │ │ │ ├── BasePersistenceTest.java │ │ │ │ ├── CategoryDaoTest.java │ │ │ │ ├── ItemDaoTest.java │ │ │ │ ├── OrderDaoTest.java │ │ │ │ ├── PersistenceFixture.java │ │ │ │ ├── ProductDaoTest.java │ │ │ │ └── SequenceDaoTest.java │ │ │ │ ├── presentation │ │ │ │ ├── AccountBeanTest.java │ │ │ │ ├── CartBeanTest.java │ │ │ │ ├── CatalogBeanTest.java │ │ │ │ └── OrderBeanTest.java │ │ │ │ └── service │ │ │ │ ├── AccountServiceTest.java │ │ │ │ ├── CatalogServiceTest.java │ │ │ │ └── OrderServiceTest.java │ │ │ └── resources │ │ │ ├── ddl │ │ │ ├── hsql │ │ │ │ ├── jpetstore-hsqldb-dataload.sql │ │ │ │ └── jpetstore-hsqldb-schema.sql │ │ │ ├── mssql │ │ │ │ ├── jpetstore-mssql-dataload.sql │ │ │ │ └── jpetstore-mssql-schema.sql │ │ │ ├── mysql │ │ │ │ ├── jpetstore-mysql-create-user.sql │ │ │ │ ├── jpetstore-mysql-dataload.sql │ │ │ │ └── jpetstore-mysql-schema.sql │ │ │ ├── oracle │ │ │ │ ├── jpetstore-oracle-dataload.sql │ │ │ │ └── jpetstore-oracle-schema.sql │ │ │ └── postgres │ │ │ │ ├── jpetstore-postgres-dataload.sql │ │ │ │ └── jpetstore-postgres-schema.sql │ │ │ └── properties │ │ │ ├── database.properties │ │ │ └── messages.properties │ ├── todomvc │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ └── mvc │ │ │ │ └── TodoPortlet.java │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ └── todos │ │ │ ├── DefaultStylesheet.css │ │ │ ├── model.js │ │ │ ├── todo.html │ │ │ ├── todo.js │ │ │ ├── vendor │ │ │ ├── backbone-localstorage.js │ │ │ ├── backbone.js │ │ │ ├── json2.js │ │ │ └── underscore.js │ │ │ └── view.js │ └── useridentity │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── jboss │ │ │ └── portal │ │ │ └── portlet │ │ │ └── samples │ │ │ └── UserIdentityPortlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── portlet.xml │ │ └── web.xml │ │ └── jsp │ │ ├── hello.jsp │ │ └── help.jsp └── skins │ ├── pom.xml │ └── simpleskin │ ├── pom.xml │ └── src │ └── main │ ├── resources │ └── tomcat │ │ └── simpleDeployableSkin.xml │ └── webapp │ ├── WEB-INF │ ├── gatein-resources.xml │ └── web.xml │ └── skin │ ├── Portlet │ └── Stylesheet.css │ ├── PortletThemes │ └── background │ │ └── IconWindowPortlet.gif │ ├── SimpleSkin │ ├── portal │ │ └── webui │ │ │ └── component │ │ │ ├── UIPortalApplicationSkin.css │ │ │ └── view │ │ │ ├── Stylesheet.css │ │ │ ├── UIPage │ │ │ └── Stylesheet.css │ │ │ ├── UITabPaneDashboard │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── AddDashboard.gif │ │ │ │ └── IconClose.gif │ │ │ └── UIToolbarContainer │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ ├── GateinLogo.gif │ │ │ ├── GateinLogo.jpg │ │ │ ├── ToolbarContainer.gif │ │ │ └── UseIcon.gif │ └── webui │ │ └── component │ │ ├── Stylesheet.css │ │ ├── UIBarDecorator │ │ ├── Stylesheet.css │ │ ├── UIAction │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ └── SimpleStyle1.gif │ │ └── UIBarStyle │ │ │ └── Stylesheet.css │ │ ├── UIBreadcumbs │ │ ├── Stylesheet.css │ │ └── background │ │ │ └── HomeIcon.gif │ │ ├── UISearch │ │ ├── Stylesheet.css │ │ └── background │ │ │ ├── QuickSearch.gif │ │ │ └── QuickSearchHover.gif │ │ ├── UISelector │ │ ├── Stylesheet.css │ │ └── UIItemSelector │ │ │ └── Stylesheet.css │ │ ├── UITabSystem │ │ ├── Stylesheet.css │ │ └── UITabs │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ ├── GrayTabStyle.gif │ │ │ ├── NormalTabStyle.gif │ │ │ └── SelectTab.gif │ │ ├── UIToolbar │ │ ├── Stylesheet.css │ │ └── background │ │ │ ├── BlueLargeToolbar.gif │ │ │ ├── GrayLine2x2.gif │ │ │ ├── HeaderToolbar.gif │ │ │ ├── IconLargeToolBar.gif │ │ │ ├── LargeToolBar.gif │ │ │ ├── LargeToolbar_.gif │ │ │ ├── LightToolbar.gif │ │ │ └── SeparateLine2x1.gif │ │ └── UITree │ │ ├── Stylesheet.css │ │ └── background │ │ ├── NormalGroup.gif │ │ └── SelectedGroup.gif │ ├── Stylesheet.css │ ├── exoadmin │ └── organization │ │ └── webui │ │ └── component │ │ └── UIOrganizationPortlet │ │ ├── SimpleSkin │ │ └── background │ │ │ ├── AddIcon.gif │ │ │ ├── BinIcon.gif │ │ │ ├── BreadcumbsBar.gif │ │ │ ├── BreadcumbsBar_.gif │ │ │ ├── EditIcon.gif │ │ │ ├── IconLargeToolBar.gif │ │ │ └── SmallGroup.gif │ │ └── SimpleStylesheet.css │ └── webPortlet │ └── webui │ └── component │ ├── UIBannerPortlet │ ├── Stylesheet.css │ └── background │ │ ├── LogoGatein.gif │ │ └── UIBanner.gif │ ├── UIFooterPortlet │ └── Stylesheet.css │ ├── UIHomePagePortlet │ ├── Stylesheet.css │ └── background │ │ ├── HomePagePortlet.gif │ │ ├── RightCol.jpg │ │ └── RightHome.jpg │ └── UIPortalNavigationPortlet │ ├── Stylesheet.css │ └── background │ ├── Button.gif │ ├── NavDownArrow.gif │ └── NavDownArrow_ar.gif ├── gadgets ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── conf │ │ │ │ └── gadgettoken-nodetypes.xml │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── portal │ │ │ │ └── gadget │ │ │ │ └── core │ │ │ │ ├── ExoContainerConfig.java │ │ │ │ ├── ExoDefaultSecurityTokenGenerator.java │ │ │ │ ├── ExoHttpFetcher.java │ │ │ │ ├── ExoModule.java │ │ │ │ ├── ExoOAuthModule.java │ │ │ │ ├── ExoOAuthStore.java │ │ │ │ ├── ExoPropertiesModule.java │ │ │ │ ├── ExtraFeatureModule.java │ │ │ │ ├── GadgetToken.java │ │ │ │ ├── GadgetTokenContainer.java │ │ │ │ ├── GadgetTokenEntry.java │ │ │ │ ├── GadgetTokenInfoService.java │ │ │ │ ├── GateInContainerConfigLoader.java │ │ │ │ ├── GateInGuiceServletContextListener.java │ │ │ │ ├── GateInJsonContainerConfig.java │ │ │ │ ├── ProxyServletFilter.java │ │ │ │ └── SecurityTokenGenerator.java │ │ └── javascript │ │ │ ├── features │ │ │ ├── default-features.txt │ │ │ └── online-features.txt │ │ │ └── gatein-features │ │ │ ├── features.txt │ │ │ └── gatein-container │ │ │ ├── ExoBasedUserPrefStore.js │ │ │ ├── Gadgets.js │ │ │ └── feature.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── portal │ │ │ └── gadget │ │ │ └── TestGadgetTokenInfoService.java │ │ └── resources │ │ └── conf │ │ ├── gadget-jcr-configuration.xml │ │ ├── gadget-tokenservice-configuration.xml │ │ └── gadgettoken-nodetypes.xml ├── eXoGadgets │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── WEB-INF │ │ ├── gadget.xml │ │ └── web.xml │ │ ├── gadgets │ │ ├── Calculator │ │ │ ├── Calculator.xml │ │ │ └── images │ │ │ │ └── Calculator.gif │ │ ├── Calendar │ │ │ ├── Calendar.xml │ │ │ └── images │ │ │ │ └── Calendar.gif │ │ ├── ServicesManagement │ │ │ ├── ServicesManagement.xml │ │ │ ├── locale │ │ │ │ ├── ALL_ALL.xml │ │ │ │ ├── en_ALL.xml │ │ │ │ ├── fr_ALL.xml │ │ │ │ ├── it_ALL.xml │ │ │ │ └── vi_ALL.xml │ │ │ ├── script │ │ │ │ ├── handlers.js │ │ │ │ ├── jquery-1.4.2.min.js │ │ │ │ └── script.js │ │ │ └── style │ │ │ │ ├── canvas.css │ │ │ │ ├── home.css │ │ │ │ └── images │ │ │ │ ├── DesIcon.png │ │ │ │ ├── DesIconHome.gif │ │ │ │ ├── GadgetStyle.gif │ │ │ │ ├── IconClose_Gadget.gif │ │ │ │ └── ServicesManagement.png │ │ ├── Todo │ │ │ ├── Todo.xml │ │ │ ├── images │ │ │ │ └── Todo.gif │ │ │ └── locale │ │ │ │ ├── ALL_ALL.xml │ │ │ │ ├── ar_ALL.xml │ │ │ │ ├── de_ALL.xml │ │ │ │ ├── es_ALL.xml │ │ │ │ ├── fr_ALL.xml │ │ │ │ ├── ja_ALL.xml │ │ │ │ ├── kr_ALL.xml │ │ │ │ ├── vi_ALL.xml │ │ │ │ ├── zh_ALL.xml │ │ │ │ └── zh_TW_ALL.xml │ │ └── rssAggregator │ │ │ ├── images │ │ │ └── rssAggregator.png │ │ │ ├── rssAggregator.xml │ │ │ ├── script.js │ │ │ └── style.css │ │ └── skin │ │ ├── DefaultSkin │ │ └── portletIcons │ │ │ ├── Calculator.gif │ │ │ ├── Calendar.gif │ │ │ ├── Todo.gif │ │ │ └── rssAggregator.png │ │ └── image │ │ ├── Button.gif │ │ ├── ButtonCalendarleft.gif │ │ ├── ButtonCalendarright.gif │ │ ├── Calculator.png │ │ ├── Display.png │ │ ├── Noteleft.jpg │ │ ├── Noteright.jpg │ │ ├── calender.gif │ │ └── line.gif ├── pom.xml └── server │ ├── pom.xml │ └── src │ ├── main │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── config │ │ └── oauth.json │ │ ├── containers │ │ └── default │ │ │ └── container.js │ │ └── oauth.xml │ └── test │ ├── java │ └── org │ │ └── exoplatform │ │ └── portal │ │ └── gadget │ │ └── server │ │ ├── EndToEndServer.java │ │ └── EndToEndTest.java │ └── resources │ ├── conf │ └── gadgets │ │ └── key.txt │ ├── containers │ └── default │ │ └── container.js │ └── endtoend │ ├── coreFeatures.xml │ ├── hello.xml │ ├── messages.xml │ ├── messages_ar.xml │ ├── test.json │ └── testframework.js ├── ide-configs ├── README.md ├── eclipse │ ├── gtn-cleanup.xml │ ├── gtn-formatter.xml │ └── gtn-templates.xml ├── idea │ ├── README.md │ └── idea-gtn-codestyle.xml └── netbeans │ ├── README.md │ └── netbeans-jboss-community-formatter.zip ├── mobile-integration ├── extension-configuration │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ └── WEB-INF │ │ ├── conf │ │ ├── configuration.xml │ │ └── portal │ │ │ ├── group │ │ │ └── template │ │ │ │ └── group │ │ │ │ └── group.xml │ │ │ ├── portal │ │ │ ├── classic │ │ │ │ └── portal.xml │ │ │ ├── mobile │ │ │ │ ├── navigation.xml │ │ │ │ ├── pages.xml │ │ │ │ └── portal.xml │ │ │ └── template │ │ │ │ └── mobile │ │ │ │ ├── navigation.xml │ │ │ │ ├── pages.xml │ │ │ │ └── portal.xml │ │ │ └── user │ │ │ └── template │ │ │ └── user │ │ │ └── user.xml │ │ └── web.xml ├── extension-ear │ └── pom.xml ├── extension-login-war │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── login │ │ ├── css │ │ ├── default.css │ │ ├── enchanced.css │ │ └── ie8.css │ │ ├── images │ │ ├── icon-close.png │ │ └── uiportal-background.jpg │ │ ├── js │ │ └── login.js │ │ ├── jsp │ │ └── login.jsp │ │ └── resources │ │ ├── copyright.txt │ │ ├── ubuntu-font-licence-1.0.txt │ │ └── ubuntu-font.woff ├── pom.xml ├── portlets │ ├── banner │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ └── responsive │ │ │ │ └── banner │ │ │ │ └── BannerPortlet.java │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── responsivebanner_en.properties │ │ │ │ └── responsivebanner_it.properties │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── DefaultStylesheet.css │ │ │ └── ResponsiveStylesheet.css │ │ │ ├── images │ │ │ ├── banner-masthead-bg.jpg │ │ │ ├── banner-masthead-border.png │ │ │ └── banner-shadow.png │ │ │ ├── jsp │ │ │ └── banner.jsp │ │ │ └── skin │ │ │ └── DefaultSkin │ │ │ └── portletIcons │ │ │ └── ResponsiveBannerPortlet.png │ ├── community │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ └── responsive │ │ │ │ └── community │ │ │ │ ├── CommunityPortlet.java │ │ │ │ ├── RomeRssControllerBean.java │ │ │ │ ├── RssAuthorBean.java │ │ │ │ ├── RssReaderBean.java │ │ │ │ └── RssTitleBean.java │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── responsivecommunity_en.properties │ │ │ │ └── responsivecommunity_it.properties │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── DefaultStylesheet.css │ │ │ └── ResponsiveStylesheet.css │ │ │ ├── images │ │ │ ├── rss.png │ │ │ ├── vimeo.png │ │ │ └── welcome-book.png │ │ │ ├── js │ │ │ ├── accordion.jquery.js │ │ │ └── community.js │ │ │ ├── jsp │ │ │ ├── community.jsp │ │ │ ├── feedBlog.jsp │ │ │ └── feedVimeo.jsp │ │ │ └── skin │ │ │ └── DefaultSkin │ │ │ └── portletIcons │ │ │ └── ResponsiveCommunityPortlet.png │ ├── features │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ └── responsive │ │ │ │ └── features │ │ │ │ └── FeaturesPortlet.java │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── responsivefeatures_en.properties │ │ │ │ └── responsivefeatures_it.properties │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── DefaultStylesheet.css │ │ │ └── ResponsiveStylesheet.css │ │ │ ├── images │ │ │ ├── feature-asd.png │ │ │ ├── feature-asd.svg │ │ │ ├── feature-nui.png │ │ │ ├── feature-nui.svg │ │ │ ├── feature-pb.png │ │ │ ├── feature-pb.svg │ │ │ ├── feature-ps.png │ │ │ ├── feature-ps.svg │ │ │ ├── feature-separator.png │ │ │ ├── feature-sso.png │ │ │ ├── feature-sso.svg │ │ │ ├── feature-ugm.png │ │ │ ├── feature-ugm.svg │ │ │ ├── feature-wsrp.png │ │ │ └── feature-wsrp.svg │ │ │ ├── js │ │ │ ├── features.js │ │ │ └── modernizr.js │ │ │ ├── jsp │ │ │ └── features.jsp │ │ │ └── skin │ │ │ └── DefaultSkin │ │ │ └── portletIcons │ │ │ └── ResponsiveFeaturesPortlet.png │ ├── footer │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ └── responsive │ │ │ │ └── footer │ │ │ │ └── FooterPortlet.java │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── responsivefooter_ar.xml │ │ │ │ ├── responsivefooter_en.properties │ │ │ │ └── responsivefooter_it.properties │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── ClassicStylesheet.css │ │ │ └── ResponsiveStylesheet.css │ │ │ ├── images │ │ │ └── bullet-separator.png │ │ │ ├── jsp │ │ │ └── footer.jsp │ │ │ └── skin │ │ │ └── DefaultSkin │ │ │ └── portletIcons │ │ │ └── ResponsiveFooterPortlet.png │ ├── header │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ └── responsive │ │ │ │ └── header │ │ │ │ ├── HeaderBean.java │ │ │ │ ├── HeaderPortlet.java │ │ │ │ ├── NodeBean.java │ │ │ │ └── NodePortlet.java │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── responsiveheader_ar.xml │ │ │ │ ├── responsiveheader_en.properties │ │ │ │ ├── responsiveheader_fr.properties │ │ │ │ └── responsiveheader_it.properties │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── DefaultStylesheet.css │ │ │ ├── ResponsiveMenuStylesheet.css │ │ │ └── ResponsiveStylesheet.css │ │ │ ├── images │ │ │ ├── bullet-separator.png │ │ │ ├── icon-user.png │ │ │ ├── icon-user.svg │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── logo_ltr.png │ │ │ ├── logo_ltr.svg │ │ │ ├── menu-separator.png │ │ │ └── preference.svg │ │ │ ├── js │ │ │ ├── dropdownmenu.jquery.js │ │ │ ├── menu.js │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── responsive │ │ │ │ └── collapsiblecontainer.js │ │ │ ├── jsp │ │ │ ├── header.jsp │ │ │ └── node.jsp │ │ │ └── skin │ │ │ └── DefaultSkin │ │ │ └── portletIcons │ │ │ └── ResponsiveHeaderPortlet.png │ ├── navigation │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── gatein │ │ │ │ └── portlet │ │ │ │ └── responsive │ │ │ │ └── navigation │ │ │ │ ├── NavigationNodeBean.java │ │ │ │ └── NavigationPortlet.java │ │ │ ├── resources │ │ │ └── locale │ │ │ │ └── portlet │ │ │ │ ├── responsivenavigation_en.properties │ │ │ │ └── responsivenavigation_it.properties │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── gatein-resources.xml │ │ │ ├── portlet.xml │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── DefaultStylesheet.css │ │ │ └── ResponsiveStylesheet.css │ │ │ ├── images │ │ │ ├── icon-nav.png │ │ │ ├── icon-nav.svg │ │ │ └── navbar-separator.png │ │ │ ├── js │ │ │ ├── dropdownmenu.jquery.js │ │ │ └── navigation.js │ │ │ ├── jsp │ │ │ ├── navigation.jsp │ │ │ └── node.jsp │ │ │ └── skin │ │ │ └── DefaultSkin │ │ │ └── portletIcons │ │ │ └── ResponsiveNavigationPortlet.png │ └── pom.xml └── skin │ ├── pom.xml │ └── src │ └── main │ ├── resources │ └── tomcat │ │ └── responsiveSkin.xml │ └── webapp │ ├── WEB-INF │ ├── gatein-resources.xml │ └── web.xml │ ├── fonts │ └── Ubuntu │ │ ├── copyright.txt │ │ ├── ubuntu-font-licence-1.0.txt │ │ └── ubuntu.woff │ └── skin │ ├── Portlet │ └── Stylesheet.css │ ├── ResponsiveSkin │ ├── custom │ │ └── Stylesheet.css │ ├── portal │ │ └── webui │ │ │ └── component │ │ │ ├── EditInline │ │ │ └── EditInline.css │ │ │ ├── UIAction │ │ │ └── UIAction.css │ │ │ ├── UIBannerPortlet │ │ │ ├── UIBannerPortlet.css │ │ │ ├── gatein_logo.svg │ │ │ └── gatein_logo_ltr.svg │ │ │ ├── UIBreadCrumbs │ │ │ └── UIBreadCrumbs.css │ │ │ ├── UICategoryForm │ │ │ └── UICategoryForm.css │ │ │ ├── UIChangeLanguageForm │ │ │ ├── UIChangeLanguageForm.css │ │ │ └── images │ │ │ │ └── icon-ok.png │ │ │ ├── UIDashboard │ │ │ └── UIDashboard.css │ │ │ ├── UIFormTabPane │ │ │ └── UIFormTabPane.css │ │ │ ├── UIFormWithTitle │ │ │ └── UIFormWithTitle.css │ │ │ ├── UIForms │ │ │ └── UIForms.css │ │ │ ├── UILoginForm │ │ │ └── UILoginForm.css │ │ │ ├── UIMaskWorkspace │ │ │ └── UIMaskWorkspace.css │ │ │ ├── UIPageBrowser │ │ │ └── UIPageBrowser.css │ │ │ ├── UIPopupWindow │ │ │ └── UIPopupWindow.css │ │ │ ├── UIPortal │ │ │ ├── UIPortalApplicationSkin.css │ │ │ ├── UIPortalComponents.css │ │ │ └── images │ │ │ │ └── uiportal-background.jpg │ │ │ ├── UITab │ │ │ ├── UITab.css │ │ │ ├── ok-square.svg │ │ │ ├── ok.svg │ │ │ └── square.svg │ │ │ ├── UIToolbar │ │ │ └── UIToolbar.css │ │ │ └── UIWorkspace │ │ │ └── UIWorkspace.css │ └── portlet │ │ ├── redirect-admin │ │ └── RedirectAdmin.css │ │ ├── redirect │ │ └── Redirect.css │ │ ├── webui │ │ ├── UIAccountPortlet │ │ │ └── UIAccountPortlet.css │ │ ├── UIFooterPortlet │ │ │ └── UIFooterPortlet.css │ │ ├── UIHomePagePortlet │ │ │ └── UIHomePagePortlet.css │ │ ├── UIIFramePortlet │ │ │ └── UIIFramePortlet.css │ │ ├── UINavigationPortlet │ │ │ └── UINavigationPortlet.css │ │ └── UIPageManagementPortlet │ │ │ └── UIPageManagementPortlet.css │ │ └── wsrp │ │ └── WSRP.css │ └── Stylesheet.css ├── packaging ├── common │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── controller.xml │ │ ├── gadgets │ │ ├── oauthcert.pem │ │ ├── oauthkey.pem │ │ ├── oauthkey_pub.pem │ │ └── shindig.properties │ │ └── portlet.xml ├── jboss │ ├── .gitignore │ ├── README.txt │ ├── extension │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── gatein │ │ │ │ │ └── integration │ │ │ │ │ └── jboss │ │ │ │ │ └── as7 │ │ │ │ │ ├── Attribute.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── Element.java │ │ │ │ │ ├── GateInConfiguration.java │ │ │ │ │ ├── GateInExtension.java │ │ │ │ │ ├── GateInSubsystemAdd.java │ │ │ │ │ ├── GateInSubsystemDefinition.java │ │ │ │ │ ├── GateInSubsystemParser.java │ │ │ │ │ ├── PortletWarDependencyAdd.java │ │ │ │ │ ├── PortletWarDependencyDefinition.java │ │ │ │ │ ├── SharedPortletTldsMetaDataBuilder.java │ │ │ │ │ ├── deployment │ │ │ │ │ ├── CdiContextDependencyProcessor.java │ │ │ │ │ ├── CdiContextExtensionProcessor.java │ │ │ │ │ ├── CdiWebIntegrationProcessor.java │ │ │ │ │ ├── DeploymentScannerService.java │ │ │ │ │ ├── GateInCleanupDeploymentProcessor.java │ │ │ │ │ ├── GateInConfigurationKey.java │ │ │ │ │ ├── GateInDependenciesDeploymentProcessor.java │ │ │ │ │ ├── GateInEarKey.java │ │ │ │ │ ├── GateInExtKey.java │ │ │ │ │ ├── GateInInitDeploymentProcessor.java │ │ │ │ │ ├── GateInStarterDeploymentProcessor.java │ │ │ │ │ ├── GateInStructureDeploymentProcessor.java │ │ │ │ │ ├── GateInTransactionsFixProcessor.java │ │ │ │ │ ├── GateInWarStructureDeploymentProcessor.java │ │ │ │ │ ├── PortletBridgeDependencyProcessor.java │ │ │ │ │ ├── PortletWarClassloadingDependencyProcessor.java │ │ │ │ │ ├── PortletWarDeploymentInitializingProcessor.java │ │ │ │ │ ├── PortletWarKey.java │ │ │ │ │ ├── WarDependenciesDeploymentProcessor.java │ │ │ │ │ └── wsrp │ │ │ │ │ │ ├── GateInWSRPKey.java │ │ │ │ │ │ ├── WSRPPostModuleDeploymentProcessor.java │ │ │ │ │ │ └── WSRPStructureDeploymentProcessor.java │ │ │ │ │ ├── portal │ │ │ │ │ ├── GateInContext.java │ │ │ │ │ ├── GateInRuntimeService.java │ │ │ │ │ ├── PortalContext.java │ │ │ │ │ ├── PortalReadOperationHandler.java │ │ │ │ │ ├── PortalResourceConstants.java │ │ │ │ │ ├── PortalResourceDescriptions.java │ │ │ │ │ ├── PortalResourceRegistrar.java │ │ │ │ │ ├── StatisticsMetricHandler.java │ │ │ │ │ └── resources │ │ │ │ │ │ ├── AbstractPortalResource.java │ │ │ │ │ │ ├── AbstractRuntimeResource.java │ │ │ │ │ │ ├── ApplicationRuntimeResource.java │ │ │ │ │ │ ├── PortalRuntimeResource.java │ │ │ │ │ │ └── SiteRuntimeResource.java │ │ │ │ │ └── web │ │ │ │ │ ├── InitService.java │ │ │ │ │ └── StartupService.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── org.jboss.as.controller.Extension │ │ │ │ ├── org │ │ │ │ └── gatein │ │ │ │ │ └── integration │ │ │ │ │ └── jboss │ │ │ │ │ └── as7 │ │ │ │ │ └── LocalDescriptions.properties │ │ │ │ └── schema │ │ │ │ └── jboss-as-gatein-1.0.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── gatein │ │ │ └── integration │ │ │ └── jboss │ │ │ └── as7 │ │ │ └── SubsystemParsingTestCase.java │ ├── modules │ │ ├── build.xml │ │ ├── lib.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── modules │ │ │ ├── com │ │ │ ├── google │ │ │ │ ├── apis │ │ │ │ │ └── main │ │ │ │ │ │ └── module.xml │ │ │ │ ├── guava │ │ │ │ │ └── gatein │ │ │ │ │ │ └── module.xml │ │ │ │ └── javascript │ │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── jhlabs │ │ │ │ └── filters │ │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ └── thoughtworks │ │ │ │ └── xstream │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── de │ │ │ └── odysseus │ │ │ │ └── juel │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── edu │ │ │ └── oswego │ │ │ │ └── concurrent │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── eu │ │ │ └── medsea │ │ │ │ └── mimeutil │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── javax │ │ │ ├── ccpp │ │ │ │ └── api │ │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── jcr │ │ │ │ └── api │ │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ └── portlet │ │ │ │ └── api │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── net │ │ │ └── oauth │ │ │ │ └── core │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ └── org │ │ │ ├── apache │ │ │ ├── commons │ │ │ │ ├── chain │ │ │ │ │ └── main │ │ │ │ │ │ └── module.xml │ │ │ │ ├── dbcp │ │ │ │ │ └── main │ │ │ │ │ │ └── module.xml │ │ │ │ └── fileupload │ │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── lucene │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── pdfbox │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── poi │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── portals-bridges-common │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── sanselan │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── tika │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── ws │ │ │ │ └── commons │ │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ └── xmlbeans │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── bouncycastle │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── chromattic │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── codehaus │ │ │ ├── groovy │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ └── plexus │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── enhydra │ │ │ └── xapool │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── gatein │ │ │ ├── cdi-contexts │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── cdi-portlet-integration │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── common │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── lib │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── main │ │ │ │ └── module.xml │ │ │ ├── management │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── naming │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── oauth │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── pc │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── portal │ │ │ │ ├── container-dependencies-basic │ │ │ │ │ └── main │ │ │ │ │ │ └── module.xml │ │ │ │ └── container-dependencies │ │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── shindig │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── sso │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ ├── wci │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ └── wsrp │ │ │ │ ├── catalog │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ │ ├── integration │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── htmlparser │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── infinispan │ │ │ ├── cachestore │ │ │ │ └── jdbc │ │ │ │ │ └── gatein │ │ │ │ │ └── module.xml │ │ │ └── gatein │ │ │ │ └── module.xml │ │ │ ├── jasig │ │ │ └── cas │ │ │ │ └── client │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── jboss │ │ │ └── portletbridge │ │ │ │ ├── api │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ │ └── impl │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── jgroups │ │ │ └── gatein │ │ │ │ └── module.xml │ │ │ ├── jibx │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── json │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── mozilla │ │ │ ├── javascript │ │ │ │ └── main │ │ │ │ │ └── module.xml │ │ │ └── universalchardet │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── objectweb │ │ │ └── howl │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── picketlink │ │ │ └── idm │ │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── picocontainer │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── reflext │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── slf4j │ │ │ └── gatein │ │ │ │ └── module.xml │ │ │ ├── staxnav │ │ │ └── main │ │ │ │ └── module.xml │ │ │ ├── twitter4j │ │ │ └── main │ │ │ │ └── module.xml │ │ │ └── xmlpull │ │ │ └── main │ │ │ └── module.xml │ ├── pkg │ │ ├── download-jboss.xml │ │ ├── package.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── jboss │ │ │ │ ├── main │ │ │ │ ├── bin │ │ │ │ │ ├── demo-domain-setup.sh │ │ │ │ │ ├── migration │ │ │ │ │ │ ├── migration.configuration │ │ │ │ │ │ └── migration.hibernate.cfg.xml │ │ │ │ │ ├── portal-disabledusers-migration.bat │ │ │ │ │ ├── portal-disabledusers-migration.sh │ │ │ │ │ ├── portal-setup.bat │ │ │ │ │ └── portal-setup.sh │ │ │ │ ├── domain │ │ │ │ │ └── configuration │ │ │ │ │ │ ├── domain.xml │ │ │ │ │ │ └── host.xml │ │ │ │ ├── gatein │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── gatein-wsrp-integration.ear │ │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ ├── application.xml │ │ │ │ │ │ │ ├── jboss-deployment-structure.xml │ │ │ │ │ │ │ └── jboss-scanning.xml │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── jboss7integration.jar │ │ │ │ │ │ │ └── conf │ │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ └── gatein.ear │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ ├── application.xml │ │ │ │ │ │ └── jboss-deployment-structure.xml │ │ │ │ │ │ ├── integration.war │ │ │ │ │ │ └── WEB-INF │ │ │ │ │ │ │ └── web.xml │ │ │ │ │ │ └── portal.war │ │ │ │ │ │ └── WEB-INF │ │ │ │ │ │ └── conf │ │ │ │ │ │ └── jcr │ │ │ │ │ │ └── jcr-datasource-configuration.xml │ │ │ │ ├── modules │ │ │ │ │ └── layers.conf │ │ │ │ └── standalone │ │ │ │ │ └── configuration │ │ │ │ │ └── gatein │ │ │ │ │ ├── configuration.properties │ │ │ │ │ ├── configuration.xml │ │ │ │ │ └── wsrp │ │ │ │ │ └── cxf │ │ │ │ │ ├── producer.features │ │ │ │ │ └── ws-security │ │ │ │ │ ├── consumer │ │ │ │ │ ├── .info │ │ │ │ │ └── WSS4JOutInterceptor.properties │ │ │ │ │ └── producer │ │ │ │ │ ├── .info │ │ │ │ │ └── GTNSubjectCreatingInterceptor.properties │ │ │ │ └── samples │ │ │ │ └── gatein │ │ │ │ └── extensions │ │ │ │ ├── gatein-sample-extension.ear │ │ │ │ └── META-INF │ │ │ │ │ ├── MANIFEST.MF │ │ │ │ │ └── application.xml │ │ │ │ └── gatein-sample-portal.ear │ │ │ │ └── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── application.xml │ │ │ └── xslt │ │ │ └── standalone.xsl │ └── pom.xml ├── jetty │ ├── pkg │ │ ├── download-jetty.xml │ │ ├── package.xml │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── jetty │ │ │ │ ├── bin │ │ │ │ ├── gatein-dev.bat │ │ │ │ ├── gatein-dev.sh │ │ │ │ ├── gatein.bat │ │ │ │ └── gatein.sh │ │ │ │ ├── contexts │ │ │ │ ├── eXoGadgetServer.xml │ │ │ │ ├── eXoResources.xml │ │ │ │ ├── portal.xml │ │ │ │ └── rest.xml │ │ │ │ ├── etc │ │ │ │ ├── jetty.xml │ │ │ │ ├── login.conf │ │ │ │ └── webdefault.xml │ │ │ │ ├── gatein │ │ │ │ └── conf │ │ │ │ │ ├── configuration.xml │ │ │ │ │ └── logging.properties │ │ │ │ └── webapps │ │ │ │ └── ROOT │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ └── index.jsp │ │ └── transform.xsl │ └── pom.xml ├── pom.xml ├── release │ ├── prepare.sh │ └── upload.sh └── tomcat │ ├── pkg │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── tomcat │ │ │ ├── bin │ │ │ ├── gatein-dev.bat │ │ │ ├── gatein-dev.sh │ │ │ ├── gatein.bat │ │ │ ├── gatein.sh │ │ │ ├── portal-setup.bat │ │ │ └── portal-setup.sh │ │ │ ├── conf │ │ │ └── jaas.conf │ │ │ ├── gatein │ │ │ └── conf │ │ │ │ └── configuration.xml │ │ │ └── webapps │ │ │ └── ROOT │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ └── index.jsp │ └── transform.xsl │ ├── pom.xml │ └── tomcat7 │ ├── download-tomcat.xml │ ├── extract-download-urls.xsl │ ├── package.xml │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── exoplatform │ │ └── server │ │ └── tomcat │ │ └── PortalContainersCreator.java │ ├── resources │ └── tomcat │ │ └── conf │ │ ├── catalina.properties │ │ ├── context.xml │ │ ├── logging.properties │ │ └── server.xml │ └── webapp │ ├── META-INF │ └── context.xml │ └── WEB-INF │ └── web.xml ├── pom.xml ├── portlet ├── admin │ └── redirect │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── assembly │ │ └── jsf-bundled.xml │ │ ├── java │ │ └── org │ │ │ └── gatein │ │ │ └── ui │ │ │ └── admin │ │ │ ├── importexport │ │ │ └── beans │ │ │ │ ├── ExportSiteBean.java │ │ │ │ └── ImportSiteBean.java │ │ │ └── redirect │ │ │ └── beans │ │ │ ├── DevicePropertyConditionWrapper.java │ │ │ ├── EditRedirectBean.java │ │ │ ├── RedirectsBean.java │ │ │ ├── SessionBean.java │ │ │ └── util │ │ │ ├── NodeMappingValidator.java │ │ │ ├── PropertiesConverter.java │ │ │ └── RedirectNameValidator.java │ │ ├── resources │ │ ├── META-INF │ │ │ └── richfaces │ │ │ │ └── static-resource-mappings.properties │ │ └── locale │ │ │ └── admin_en.properties │ │ └── webapp │ │ ├── WEB-INF │ │ ├── faces-config.xml │ │ ├── gatein-resources.xml │ │ ├── portlet.xml │ │ └── web.xml │ │ ├── admin │ │ └── redirects │ │ │ ├── index.xhtml │ │ │ ├── menu.xhtml │ │ │ └── modals │ │ │ ├── modal-condition.xhtml │ │ │ ├── modal-delete_redirect.xhtml │ │ │ ├── modal-delete_site.xhtml │ │ │ ├── modal-import_site.xhtml │ │ │ └── modal-select_node.xhtml │ │ ├── resources │ │ ├── css │ │ │ ├── admin-responsive.css │ │ │ ├── admin.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap.css │ │ │ ├── empty.css │ │ │ ├── main.css │ │ │ ├── modal-import_site.css │ │ │ └── ubuntu.css │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.css │ │ │ ├── font │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.svgz │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ └── font-awesome.less │ │ │ └── sass │ │ │ │ ├── font-awesome.sass │ │ │ │ └── font-awesome.scss │ │ ├── img │ │ │ ├── actions-border-top.png │ │ │ ├── body-bg.jpg │ │ │ ├── bullet-separator.png │ │ │ ├── divider-vertical.png │ │ │ ├── favicon.ico │ │ │ ├── gatein_logo_grey.png │ │ │ ├── icon-arrow-closed.png │ │ │ ├── icon-arrow-opened.png │ │ │ ├── icon-close.png │ │ │ ├── icon-grippy.png │ │ │ ├── icon-ok.png │ │ │ ├── icon-switch-on-off.png │ │ │ ├── logo.png │ │ │ ├── rcue-icons-gray.png │ │ │ ├── rcue-icons-white.png │ │ │ ├── rcue-icons.png │ │ │ └── site-redirects.png │ │ └── js │ │ │ ├── admin.js │ │ │ ├── bootstrap.js │ │ │ ├── empty.js │ │ │ └── jquery-ui-1.10.2-sortable.js │ │ ├── skin │ │ └── DefaultSkin │ │ │ └── portletIcons │ │ │ └── RedirectsAndImportExportAdminPortlet.png │ │ └── template.xhtml ├── dashboard │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ ├── dashboard │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIDashboardPortlet.java │ │ │ │ ├── UITabPaneDashboard.java │ │ │ │ └── UITabbedDashboardPortlet.java │ │ │ └── gadget │ │ │ └── webui │ │ │ └── component │ │ │ ├── UIGadgetPortlet.java │ │ │ └── UIGadgetViewMode.java │ │ ├── resources │ │ ├── locale │ │ │ └── portlet │ │ │ │ ├── dashboard │ │ │ │ ├── TabbedDashboardPortlet_ar.xml │ │ │ │ ├── TabbedDashboardPortlet_cs.properties │ │ │ │ ├── TabbedDashboardPortlet_de.properties │ │ │ │ ├── TabbedDashboardPortlet_en.properties │ │ │ │ ├── TabbedDashboardPortlet_es.properties │ │ │ │ ├── TabbedDashboardPortlet_fr.properties │ │ │ │ ├── TabbedDashboardPortlet_it.properties │ │ │ │ ├── TabbedDashboardPortlet_ja.properties │ │ │ │ ├── TabbedDashboardPortlet_ko.xml │ │ │ │ ├── TabbedDashboardPortlet_ne.properties │ │ │ │ ├── TabbedDashboardPortlet_nl.properties │ │ │ │ ├── TabbedDashboardPortlet_pt_BR.properties │ │ │ │ ├── TabbedDashboardPortlet_ru.properties │ │ │ │ ├── TabbedDashboardPortlet_uk.properties │ │ │ │ ├── TabbedDashboardPortlet_vi.properties │ │ │ │ ├── TabbedDashboardPortlet_zh.xml │ │ │ │ └── TabbedDashboardPortlet_zh_TW.xml │ │ │ │ └── gadget │ │ │ │ ├── GadgetPortlet_ar.xml │ │ │ │ ├── GadgetPortlet_cs.properties │ │ │ │ ├── GadgetPortlet_de.properties │ │ │ │ ├── GadgetPortlet_en.properties │ │ │ │ ├── GadgetPortlet_es.properties │ │ │ │ ├── GadgetPortlet_it.properties │ │ │ │ ├── GadgetPortlet_ja.properties │ │ │ │ ├── GadgetPortlet_ko.xml │ │ │ │ ├── GadgetPortlet_ne.properties │ │ │ │ ├── GadgetPortlet_nl.properties │ │ │ │ ├── GadgetPortlet_pt_BR.properties │ │ │ │ ├── GadgetPortlet_ru.properties │ │ │ │ ├── GadgetPortlet_uk.properties │ │ │ │ ├── GadgetPortlet_vi.xml │ │ │ │ ├── GadgetPortlet_zh.xml │ │ │ │ └── GadgetPortlet_zh_TW.xml │ │ └── suppressions.xml │ │ └── webapp │ │ ├── WEB-INF │ │ ├── conf │ │ │ └── portlet │ │ │ │ ├── dashboard │ │ │ │ ├── DashboardPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ └── TabbedDashboardPortlet │ │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ └── gadget │ │ │ │ └── GadgetPortlet │ │ │ │ └── webui │ │ │ │ └── configuration.xml │ │ ├── gatein-resources.xml │ │ ├── portlet.xml │ │ └── web.xml │ │ ├── groovy │ │ ├── dashboard │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIDashboardPortlet.gtmpl │ │ │ │ ├── UITabPaneDashboard.gtmpl │ │ │ │ └── UITabbedDashboardPortlet.gtmpl │ │ └── gadget │ │ │ └── webui │ │ │ └── component │ │ │ ├── UIGadgetPortlet.gtmpl │ │ │ └── UIGadgetViewMode.gtmpl │ │ ├── javascript │ │ └── eXo │ │ │ └── webui │ │ │ └── UITabbedDashboard.js │ │ └── skin │ │ ├── DefaultSkin │ │ └── portletIcons │ │ │ ├── DashboardPortlet.png │ │ │ ├── GadgetPortlet.png │ │ │ └── TabbedDashboardPortlet.png │ │ └── gadget │ │ └── webui │ │ └── component │ │ └── UIGadgetPortlet │ │ └── DefaultStylesheet.css ├── exoadmin │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ ├── account │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── RegisterPortletApplicationController.java │ │ │ │ ├── UIAccountPortlet.java │ │ │ │ └── UIRegisterPortlet.java │ │ │ ├── applicationregistry │ │ │ └── webui │ │ │ │ ├── Util.java │ │ │ │ └── component │ │ │ │ ├── FormInputSetListAccess.java │ │ │ │ ├── PortletExtraSerializer.java │ │ │ │ ├── UIAddApplicationForm.java │ │ │ │ ├── UIAddGadget.java │ │ │ │ ├── UIApplicationForm.java │ │ │ │ ├── UIApplicationInfo.java │ │ │ │ ├── UIApplicationOrganizer.java │ │ │ │ ├── UIApplicationRegistryEditMode.java │ │ │ │ ├── UIApplicationRegistryPortlet.java │ │ │ │ ├── UICategoryForm.java │ │ │ │ ├── UICategorySelector.java │ │ │ │ ├── UIFormTableIteratorInputSet.java │ │ │ │ ├── UIGadgetEditor.java │ │ │ │ ├── UIGadgetInfo.java │ │ │ │ ├── UIGadgetManagement.java │ │ │ │ ├── UIMessageBoard.java │ │ │ │ ├── UIPermissionForm.java │ │ │ │ ├── UIPortletInfo.java │ │ │ │ └── UIPortletManagement.java │ │ │ ├── navigation │ │ │ └── webui │ │ │ │ ├── TreeNode.java │ │ │ │ └── component │ │ │ │ ├── UIGroupNavigationManagement.java │ │ │ │ ├── UIGroupNavigationPortlet.java │ │ │ │ ├── UINavigationManagement.java │ │ │ │ ├── UINavigationNodeSelector.java │ │ │ │ ├── UIPageManagementPortlet.java │ │ │ │ ├── UIPageNodeForm.java │ │ │ │ ├── UIPortalNavigationPortlet.java │ │ │ │ └── UISiteManagement.java │ │ │ ├── organization │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── FindMembershipByGroupPageList.java │ │ │ │ ├── FindMembershipTypesPageList.java │ │ │ │ ├── FindUsersPageList.java │ │ │ │ ├── GroupManagement.java │ │ │ │ ├── UIAccountEditInputSet.java │ │ │ │ ├── UIGridUsers.java │ │ │ │ ├── UIGroupDetail.java │ │ │ │ ├── UIGroupEditMembershipForm.java │ │ │ │ ├── UIGroupExplorer.java │ │ │ │ ├── UIGroupForm.java │ │ │ │ ├── UIGroupInfo.java │ │ │ │ ├── UIGroupManagement.java │ │ │ │ ├── UIGroupMembershipForm.java │ │ │ │ ├── UIListMembershipType.java │ │ │ │ ├── UIListUsers.java │ │ │ │ ├── UIMembershipManagement.java │ │ │ │ ├── UIMembershipTypeForm.java │ │ │ │ ├── UIOrganizationPortlet.java │ │ │ │ ├── UIUserInGroup.java │ │ │ │ ├── UIUserInfo.java │ │ │ │ └── UIUserManagement.java │ │ │ └── toolbar │ │ │ └── webui │ │ │ └── component │ │ │ ├── BasePartialUpdateToolbar.java │ │ │ ├── UIAdminToolbarPortlet.java │ │ │ ├── UIStarToolbarPortlet.java │ │ │ ├── UIUserInfoPortlet.java │ │ │ ├── UIUserToolBarDashboardPortlet.java │ │ │ ├── UIUserToolBarGroupPortlet.java │ │ │ └── UIUserToolBarSitePortlet.java │ │ ├── resources │ │ └── locale │ │ │ └── portlet │ │ │ └── exoadmin │ │ │ ├── AccountPortlet_ar.xml │ │ │ ├── AccountPortlet_cs.properties │ │ │ ├── AccountPortlet_de.properties │ │ │ ├── AccountPortlet_en.properties │ │ │ ├── AccountPortlet_es.properties │ │ │ ├── AccountPortlet_fr.properties │ │ │ ├── AccountPortlet_it.properties │ │ │ ├── AccountPortlet_ja.properties │ │ │ ├── AccountPortlet_ko.xml │ │ │ ├── AccountPortlet_ne.properties │ │ │ ├── AccountPortlet_nl.properties │ │ │ ├── AccountPortlet_pt_BR.properties │ │ │ ├── AccountPortlet_ru.properties │ │ │ ├── AccountPortlet_uk.properties │ │ │ ├── AccountPortlet_vi.xml │ │ │ ├── AccountPortlet_zh.xml │ │ │ ├── AccountPortlet_zh_TW.xml │ │ │ ├── AdminToolbarPortlet_ar.xml │ │ │ ├── AdminToolbarPortlet_cs.properties │ │ │ ├── AdminToolbarPortlet_de.properties │ │ │ ├── AdminToolbarPortlet_en.properties │ │ │ ├── AdminToolbarPortlet_es.properties │ │ │ ├── AdminToolbarPortlet_fr.properties │ │ │ ├── AdminToolbarPortlet_it.properties │ │ │ ├── AdminToolbarPortlet_ja.properties │ │ │ ├── AdminToolbarPortlet_ko.xml │ │ │ ├── AdminToolbarPortlet_ne.properties │ │ │ ├── AdminToolbarPortlet_nl.properties │ │ │ ├── AdminToolbarPortlet_pt_BR.properties │ │ │ ├── AdminToolbarPortlet_ru.properties │ │ │ ├── AdminToolbarPortlet_uk.properties │ │ │ ├── AdminToolbarPortlet_vi.properties │ │ │ ├── AdminToolbarPortlet_zh.xml │ │ │ ├── AdminToolbarPortlet_zh_TW.xml │ │ │ ├── ApplicationRegistryPortlet_ar.xml │ │ │ ├── ApplicationRegistryPortlet_cs.properties │ │ │ ├── ApplicationRegistryPortlet_de.properties │ │ │ ├── ApplicationRegistryPortlet_en.properties │ │ │ ├── ApplicationRegistryPortlet_es.properties │ │ │ ├── ApplicationRegistryPortlet_fr.properties │ │ │ ├── ApplicationRegistryPortlet_it.properties │ │ │ ├── ApplicationRegistryPortlet_ja.properties │ │ │ ├── ApplicationRegistryPortlet_ko.xml │ │ │ ├── ApplicationRegistryPortlet_ne.properties │ │ │ ├── ApplicationRegistryPortlet_nl.properties │ │ │ ├── ApplicationRegistryPortlet_pt_BR.properties │ │ │ ├── ApplicationRegistryPortlet_ru.properties │ │ │ ├── ApplicationRegistryPortlet_uk.properties │ │ │ ├── ApplicationRegistryPortlet_vi.xml │ │ │ ├── ApplicationRegistryPortlet_zh.xml │ │ │ ├── ApplicationRegistryPortlet_zh_TW.xml │ │ │ ├── GroupNavigationPortlet_cs.properties │ │ │ ├── GroupNavigationPortlet_de.properties │ │ │ ├── GroupNavigationPortlet_en.properties │ │ │ ├── GroupNavigationPortlet_es.properties │ │ │ ├── GroupNavigationPortlet_it.properties │ │ │ ├── GroupNavigationPortlet_ja.properties │ │ │ ├── GroupNavigationPortlet_ko.xml │ │ │ ├── GroupNavigationPortlet_ne.properties │ │ │ ├── GroupNavigationPortlet_nl.properties │ │ │ ├── GroupNavigationPortlet_pt_BR.properties │ │ │ ├── GroupNavigationPortlet_uk.properties │ │ │ ├── GroupNavigationPortlet_zh.xml │ │ │ ├── GroupNavigationPortlet_zh_TW.xml │ │ │ ├── OrganizationPortlet_ar.xml │ │ │ ├── OrganizationPortlet_cs.properties │ │ │ ├── OrganizationPortlet_de.properties │ │ │ ├── OrganizationPortlet_en.properties │ │ │ ├── OrganizationPortlet_es.properties │ │ │ ├── OrganizationPortlet_fr.properties │ │ │ ├── OrganizationPortlet_it.properties │ │ │ ├── OrganizationPortlet_ja.properties │ │ │ ├── OrganizationPortlet_ko.xml │ │ │ ├── OrganizationPortlet_ne.properties │ │ │ ├── OrganizationPortlet_nl.properties │ │ │ ├── OrganizationPortlet_pt_BR.properties │ │ │ ├── OrganizationPortlet_ru.properties │ │ │ ├── OrganizationPortlet_uk.properties │ │ │ ├── OrganizationPortlet_vi.xml │ │ │ ├── OrganizationPortlet_zh.xml │ │ │ ├── OrganizationPortlet_zh_TW.xml │ │ │ ├── PortalNavigationPortlet_cs.properties │ │ │ ├── PortalNavigationPortlet_de.properties │ │ │ ├── PortalNavigationPortlet_en.properties │ │ │ ├── PortalNavigationPortlet_es.properties │ │ │ ├── PortalNavigationPortlet_fr.properties │ │ │ ├── PortalNavigationPortlet_it.properties │ │ │ ├── PortalNavigationPortlet_ja.properties │ │ │ ├── PortalNavigationPortlet_ko.xml │ │ │ ├── PortalNavigationPortlet_ne.properties │ │ │ ├── PortalNavigationPortlet_nl.properties │ │ │ ├── PortalNavigationPortlet_pt_BR.properties │ │ │ ├── PortalNavigationPortlet_ru.properties │ │ │ ├── PortalNavigationPortlet_uk.properties │ │ │ ├── PortalNavigationPortlet_vi.xml │ │ │ ├── PortalNavigationPortlet_zh.xml │ │ │ ├── PortalNavigationPortlet_zh_TW.xml │ │ │ ├── RegisterPortlet_ar.xml │ │ │ ├── RegisterPortlet_cs.properties │ │ │ ├── RegisterPortlet_de.properties │ │ │ ├── RegisterPortlet_en.properties │ │ │ ├── RegisterPortlet_fr.properties │ │ │ ├── RegisterPortlet_it.properties │ │ │ ├── RegisterPortlet_ja.properties │ │ │ ├── RegisterPortlet_ko.xml │ │ │ ├── RegisterPortlet_ne.properties │ │ │ ├── RegisterPortlet_nl.properties │ │ │ ├── RegisterPortlet_pt_BR.properties │ │ │ ├── RegisterPortlet_vi.properties │ │ │ ├── RegisterPortlet_zh.xml │ │ │ ├── RegisterPortlet_zh_TW.xml │ │ │ ├── StarToolbarPortlet_ar.xml │ │ │ ├── StarToolbarPortlet_cs.properties │ │ │ ├── StarToolbarPortlet_de.properties │ │ │ ├── StarToolbarPortlet_en.properties │ │ │ ├── StarToolbarPortlet_es.properties │ │ │ ├── StarToolbarPortlet_fr.properties │ │ │ ├── StarToolbarPortlet_it.properties │ │ │ ├── StarToolbarPortlet_ja.properties │ │ │ ├── StarToolbarPortlet_ko.xml │ │ │ ├── StarToolbarPortlet_ne.properties │ │ │ ├── StarToolbarPortlet_nl.properties │ │ │ ├── StarToolbarPortlet_pt_BR.properties │ │ │ ├── StarToolbarPortlet_ru.properties │ │ │ ├── StarToolbarPortlet_uk.properties │ │ │ ├── StarToolbarPortlet_vi.properties │ │ │ ├── StarToolbarPortlet_zh.xml │ │ │ ├── StarToolbarPortlet_zh_TW.xml │ │ │ ├── UserToolbarPortlet_cs.properties │ │ │ ├── UserToolbarPortlet_de.properties │ │ │ ├── UserToolbarPortlet_en.properties │ │ │ ├── UserToolbarPortlet_es.properties │ │ │ ├── UserToolbarPortlet_fr.properties │ │ │ ├── UserToolbarPortlet_it.properties │ │ │ ├── UserToolbarPortlet_ja.properties │ │ │ ├── UserToolbarPortlet_ko.xml │ │ │ ├── UserToolbarPortlet_ne.properties │ │ │ ├── UserToolbarPortlet_nl.properties │ │ │ ├── UserToolbarPortlet_pt_BR.properties │ │ │ ├── UserToolbarPortlet_uk.properties │ │ │ ├── UserToolbarPortlet_vi.properties │ │ │ ├── UserToolbarPortlet_zh.xml │ │ │ └── UserToolbarPortlet_zh_TW.xml │ │ └── webapp │ │ ├── WEB-INF │ │ ├── conf │ │ │ ├── portlet │ │ │ │ └── exoadmin │ │ │ │ │ ├── AccountPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── AdminToolbarPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── ApplicationRegistryPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── GroupNavigationPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── OrganizationPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── PageManagementPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── PortalNavigationPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── RegisterPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── StarToolbarPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UserInfoPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UserToolbarDashboardPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UserToolbarGroupPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ ├── UserToolbarPortlet │ │ │ │ │ └── webui │ │ │ │ │ │ └── configuration.xml │ │ │ │ │ └── UserToolbarSitePortlet │ │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ └── uiconf │ │ │ │ └── applicationregistry │ │ │ │ └── component │ │ │ │ └── SampleGadget.groovy │ │ ├── gatein-resources.xml │ │ ├── portlet.xml │ │ └── web.xml │ │ ├── groovy │ │ ├── admintoolbar │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIAdminToolbarPortlet.gtmpl │ │ │ │ ├── UIStarToolBarPortlet.gtmpl │ │ │ │ ├── UIUserInfoPortlet.gtmpl │ │ │ │ ├── UIUserToolBarDashboardPortlet.gtmpl │ │ │ │ ├── UIUserToolBarGroupPortlet.gtmpl │ │ │ │ └── UIUserToolBarSitePortlet.gtmpl │ │ ├── applicationregistry │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIApplicationInfo.gtmpl │ │ │ │ ├── UIApplicationOrganizer.gtmpl │ │ │ │ ├── UIApplicationRegistryPortlet.gtmpl │ │ │ │ ├── UIFormTableIteratorInputSet.gtmpl │ │ │ │ ├── UIGadgetInfo.gtmpl │ │ │ │ ├── UIGadgetManagement.gtmpl │ │ │ │ ├── UIMessageBoard.gtmpl │ │ │ │ ├── UIPortletInfo.gtmpl │ │ │ │ └── UIPortletManagement.gtmpl │ │ ├── navigation │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIGroupNavigationManagement.gtmpl │ │ │ │ ├── UINavigationGrid.gtmpl │ │ │ │ ├── UINavigationManagement.gtmpl │ │ │ │ └── UISiteManagement.gtmpl │ │ ├── organization │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIGridUsers.gtmpl │ │ │ │ ├── UIGroupInfoContainer.gtmpl │ │ │ │ ├── UIGroupManagement.gtmpl │ │ │ │ ├── UIGroupMembershipForm.gtmpl │ │ │ │ ├── UIOrganizationPortlet.gtmpl │ │ │ │ ├── UIRegisterPortlet.gtmpl │ │ │ │ └── UISocialRegisterButtons.gtmpl │ │ └── resources │ │ │ └── webui │ │ │ └── component │ │ │ └── UII18nPortlet.gtmpl │ │ └── skin │ │ ├── DefaultSkin │ │ └── portletIcons │ │ │ ├── AccountPortlet.png │ │ │ ├── ApplicationRegistryPortlet.png │ │ │ ├── GroupNavigationPortlet.png │ │ │ ├── I18nPortlet.png │ │ │ ├── OrganizationPortlet.png │ │ │ ├── PageManagementPortlet.png │ │ │ ├── PortalNavigationPortlet.png │ │ │ └── RegisterPortlet.png │ │ ├── account │ │ └── webui │ │ │ └── component │ │ │ └── UIAccountPortlet │ │ │ ├── DefaultSkin │ │ │ └── background │ │ │ │ └── TemplateImage.gif │ │ │ ├── DefaultStylesheet.css │ │ │ └── UILoginForm │ │ │ ├── DefaultSkin │ │ │ └── background │ │ │ │ ├── BlueLoginIcon.gif │ │ │ │ └── OverBlueLoginIcon.gif │ │ │ ├── DefaultStylesheet.css │ │ │ ├── MacSkin │ │ │ └── background │ │ │ │ ├── BlueLoginIcon.gif │ │ │ │ ├── GrayLoginIcon.gif │ │ │ │ ├── GrayLogoutIcon.gif │ │ │ │ ├── NormalLogoutIcon.gif │ │ │ │ ├── NormalRedLogoutIcon.png │ │ │ │ ├── OverLogoutIcon.gif │ │ │ │ └── OverLogoutIcon.png │ │ │ ├── MacStylesheet.css │ │ │ ├── VistaSkin │ │ │ └── background │ │ │ │ ├── BlueLoginIcon.gif │ │ │ │ ├── GrayLoginIcon.gif │ │ │ │ ├── GrayLogoutIcon.gif │ │ │ │ ├── Logout.png │ │ │ │ └── OverLogoutIcon.gif │ │ │ └── VistaStylesheet.css │ │ ├── applicationregistry │ │ └── webui │ │ │ └── component │ │ │ └── UIApplicationRegistryPortlet │ │ │ ├── DefaultSkin │ │ │ └── background │ │ │ │ ├── AppRegistryControl.gif │ │ │ │ ├── BlueDownArrow.gif │ │ │ │ ├── BlueNextArrow.gif │ │ │ │ ├── ControlIcon.gif │ │ │ │ ├── CopyIcon.gif │ │ │ │ └── Repeat-Y16x2.gif │ │ │ └── DefaultStylesheet.css │ │ ├── navigation │ │ └── webui │ │ │ └── component │ │ │ ├── DefaultStylesheet.css │ │ │ └── background │ │ │ ├── BgEvenRow.gif │ │ │ ├── BgOddRow.gif │ │ │ ├── ContentBg.gif │ │ │ ├── GroupImage.gif │ │ │ ├── GroupImage.png │ │ │ ├── LineBg.gif │ │ │ ├── MiniIcon.gif │ │ │ └── PlImg.gif │ │ ├── organization │ │ └── webui │ │ │ └── component │ │ │ └── UIOrganizationPortlet │ │ │ ├── DefaultSkin │ │ │ └── background │ │ │ │ └── BreadcumbsBar.gif │ │ │ └── DefaultStylesheet.css │ │ └── register │ │ └── webui │ │ └── component │ │ └── DefaultStylesheet.css ├── pom.xml ├── redirect │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── gatein │ │ │ └── portlet │ │ │ └── redirect │ │ │ ├── RedirectBean.java │ │ │ ├── RedirectLink.java │ │ │ └── RedirectPortlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── gatein-resources.xml │ │ ├── portlet.xml │ │ └── web.xml │ │ ├── css │ │ ├── DefaultStylesheet.css │ │ └── SimpleSkinStylesheet.css │ │ ├── jsp │ │ └── redirect.jsp │ │ └── skin │ │ └── DefaultSkin │ │ └── portletIcons │ │ └── SiteRedirectPortlet.png └── web │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── exoplatform │ │ └── portal │ │ └── webui │ │ └── component │ │ ├── UIBannerPortlet.java │ │ ├── UIBreadcumbsPortlet.java │ │ ├── UIIFrameEditMode.java │ │ ├── UIIFramePortlet.java │ │ ├── UILogoEditMode.java │ │ ├── UILogoPortlet.java │ │ ├── UINavigationPortlet.java │ │ └── UISitemapPortlet.java │ ├── resources │ └── locale │ │ └── portlet │ │ ├── portal │ │ ├── ConsolePortlet_it.properties │ │ ├── ConsolePortlet_ru.properties │ │ ├── ConsolePortlet_uk.properties │ │ ├── NavigationPortlet_ar.xml │ │ ├── NavigationPortlet_cs.properties │ │ ├── NavigationPortlet_de.properties │ │ ├── NavigationPortlet_en.properties │ │ ├── NavigationPortlet_es.properties │ │ ├── NavigationPortlet_fr.properties │ │ ├── NavigationPortlet_it.properties │ │ ├── NavigationPortlet_ja.properties │ │ ├── NavigationPortlet_ko.xml │ │ ├── NavigationPortlet_ne.properties │ │ ├── NavigationPortlet_nl.properties │ │ ├── NavigationPortlet_pt_BR.properties │ │ ├── NavigationPortlet_ru.properties │ │ ├── NavigationPortlet_uk.properties │ │ ├── NavigationPortlet_zh.xml │ │ ├── NavigationPortlet_zh_TW.xml │ │ ├── PortalNavigationPortlet_ar.xml │ │ ├── PortalNavigationPortlet_cs.properties │ │ ├── PortalNavigationPortlet_de.properties │ │ ├── PortalNavigationPortlet_en.properties │ │ ├── PortalNavigationPortlet_es.properties │ │ ├── PortalNavigationPortlet_it.properties │ │ ├── PortalNavigationPortlet_ja.properties │ │ ├── PortalNavigationPortlet_ko.xml │ │ ├── PortalNavigationPortlet_ne.properties │ │ ├── PortalNavigationPortlet_nl.properties │ │ ├── PortalNavigationPortlet_pt_BR.properties │ │ ├── PortalNavigationPortlet_uk.properties │ │ ├── PortalNavigationPortlet_zh.xml │ │ └── PortalNavigationPortlet_zh_TW.xml │ │ └── web │ │ ├── BreadcumbsPortlet_ar.xml │ │ ├── BreadcumbsPortlet_cs.properties │ │ ├── BreadcumbsPortlet_de.properties │ │ ├── BreadcumbsPortlet_en.properties │ │ ├── BreadcumbsPortlet_es.properties │ │ ├── BreadcumbsPortlet_fr.properties │ │ ├── BreadcumbsPortlet_it.properties │ │ ├── BreadcumbsPortlet_ja.properties │ │ ├── BreadcumbsPortlet_ko.xml │ │ ├── BreadcumbsPortlet_ne.properties │ │ ├── BreadcumbsPortlet_nl.properties │ │ ├── BreadcumbsPortlet_pt_BR.properties │ │ ├── BreadcumbsPortlet_ru.properties │ │ ├── BreadcumbsPortlet_uk.properties │ │ ├── BreadcumbsPortlet_zh.xml │ │ ├── BreadcumbsPortlet_zh_TW.xml │ │ ├── BrowserPortlet_it.properties │ │ ├── BrowserPortlet_uk.properties │ │ ├── GroovyPortlet_ar.xml │ │ ├── GroovyPortlet_cs.properties │ │ ├── GroovyPortlet_de.properties │ │ ├── GroovyPortlet_en.properties │ │ ├── GroovyPortlet_es.properties │ │ ├── GroovyPortlet_fr.properties │ │ ├── GroovyPortlet_it.properties │ │ ├── GroovyPortlet_ja.properties │ │ ├── GroovyPortlet_ko.xml │ │ ├── GroovyPortlet_ne.properties │ │ ├── GroovyPortlet_nl.properties │ │ ├── GroovyPortlet_pt_BR.properties │ │ ├── GroovyPortlet_ru.properties │ │ ├── GroovyPortlet_uk.properties │ │ ├── GroovyPortlet_vi.properties │ │ ├── GroovyPortlet_zh.xml │ │ ├── GroovyPortlet_zh_TW.xml │ │ ├── LogoPortlet_cs.properties │ │ ├── LogoPortlet_de.properties │ │ ├── LogoPortlet_en.properties │ │ ├── LogoPortlet_es.properties │ │ ├── LogoPortlet_it.properties │ │ ├── LogoPortlet_ja.properties │ │ ├── LogoPortlet_ko.xml │ │ ├── LogoPortlet_ne.properties │ │ ├── LogoPortlet_nl.properties │ │ ├── LogoPortlet_pt_BR.properties │ │ ├── LogoPortlet_zh.xml │ │ └── LogoPortlet_zh_TW.xml │ └── webapp │ ├── WEB-INF │ ├── conf │ │ ├── portlet │ │ │ └── web │ │ │ │ ├── BannerPortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ ├── BreadcumbsPortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ ├── FooterPortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ ├── HomePagePortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ ├── IFramePortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ ├── LoginPortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ ├── LogoPortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ ├── NavigationPortlet │ │ │ │ └── webui │ │ │ │ │ └── configuration.xml │ │ │ │ └── SitemapPortlet │ │ │ │ └── webui │ │ │ │ └── configuration.xml │ │ └── webui │ │ │ └── component │ │ │ └── PortalTemplate.groovy │ ├── gatein-resources.xml │ ├── portlet.xml │ └── web.xml │ ├── groovy │ ├── groovy │ │ └── webui │ │ │ └── component │ │ │ ├── UIBannerPortlet.gtmpl │ │ │ └── UIFooterPortlet.gtmpl │ └── portal │ │ └── webui │ │ └── component │ │ ├── UIBreadcumbsPortlet.gtmpl │ │ ├── UIIFramePortlet.gtmpl │ │ ├── UILogoPortlet.gtmpl │ │ └── UIPortalNavigation.gtmpl │ ├── javascript │ └── eXo │ │ └── webui │ │ ├── UIIFramePortlet.js │ │ └── UISiteMap.js │ └── skin │ ├── DefaultSkin │ └── portletIcons │ │ ├── BannerPortlet.png │ │ ├── BreadcumbsPortlet.png │ │ ├── FooterPortlet.png │ │ ├── HomePagePortlet.png │ │ ├── IFramePortlet.png │ │ ├── LogoPortlet.png │ │ ├── NavigationPortlet.png │ │ └── SiteMapPortlet.png │ └── portal │ └── webui │ └── component │ ├── UIBannerPortlet │ ├── DefaultSkin │ │ └── background │ │ │ ├── BannerPortlet.gif │ │ │ ├── Container.gif │ │ │ └── Logo.gif │ └── DefaultStylesheet.css │ ├── UIBrowserPortlet │ ├── DefaultSkin │ │ ├── background │ │ │ ├── ActiveTabDetail1x20.jpg │ │ │ ├── BrowserPortletIcons.gif │ │ │ ├── NewTabBG1x20.jpg │ │ │ ├── RightNewTab2x20.jpg │ │ │ ├── Separator.jpg │ │ │ ├── TabContainerBG1x20.jpg │ │ │ └── UIToolbarBG1x32.jpg │ │ └── icons │ │ │ ├── 16x16 │ │ │ ├── ActiveClose.gif │ │ │ ├── ActiveGlobal.gif │ │ │ ├── ArrowDownButton.gif │ │ │ ├── ClipTab.gif │ │ │ ├── Go.gif │ │ │ ├── InactiveClose.gif │ │ │ ├── InactiveGlobal.gif │ │ │ ├── NewTab.gif │ │ │ ├── OverGo.gif │ │ │ └── ScollTab.gif │ │ │ └── 24x24 │ │ │ ├── Back.gif │ │ │ ├── Foward.gif │ │ │ ├── Home.gif │ │ │ ├── Refresh.gif │ │ │ ├── Status.gif │ │ │ └── Stop.gif │ └── DefaultStylesheet.css │ ├── UIFooterPortlet │ ├── DefaultSkin │ │ └── background │ │ │ ├── FooterBG.gif │ │ │ └── FooterLogo.gif │ └── DefaultStylesheet.css │ ├── UIIFramePortlet │ └── DefaultStylesheet.css │ ├── UILogoPortlet │ └── DefaultStylesheet.css │ ├── UINavigationPortlet │ ├── DefaultSkin │ │ └── background │ │ │ ├── Button.gif │ │ │ ├── HoverItem.gif │ │ │ ├── LeftNavigation.gif │ │ │ ├── MiddleNavigation.gif │ │ │ ├── NavDownArrow.gif │ │ │ ├── NavDownArrowHover.gif │ │ │ ├── NavGroup.gif │ │ │ ├── Navigation.gif │ │ │ ├── NavigationTab.gif │ │ │ └── RightNavigation.gif │ └── DefaultStylesheet.css │ ├── UIPortalNavigationPortlet │ ├── DefaultSkin │ │ └── background │ │ │ ├── BottomMenuItem220x1.gif │ │ │ ├── Button.gif │ │ │ ├── HoverItem.gif │ │ │ └── Navigation.gif │ └── DefaultStylesheet.css │ └── UISiteMap │ ├── DefaultSkin │ └── background │ │ ├── CollapseAllIcon.gif │ │ ├── CollapseIcon.gif │ │ ├── Dotted.gif │ │ ├── ExpandIcon.gif │ │ ├── LastNode.gif │ │ ├── NullItem.gif │ │ ├── RootTree.gif │ │ ├── SitemapItemBoxTitle150x1.gif │ │ └── default_sitemap.gif │ └── DefaultStylesheet.css ├── starter ├── ear │ └── pom.xml ├── pom.xml └── war │ ├── pom.xml │ └── src │ └── main │ └── webapp │ └── WEB-INF │ └── web.xml ├── testsuite ├── htmlunit-tests │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── org │ │ └── jboss │ │ └── gatein │ │ └── htmlunit │ │ ├── AbstractWebTest.java │ │ ├── common │ │ └── WebHelper.java │ │ └── jira │ │ ├── Test_GTNPORTAL_1823_FailToCreatePage.java │ │ └── Test_GTNPORTAL_1823_FailToCreatePageNavNode.java ├── pom.xml ├── selenium-snifftests │ ├── Readme.txt │ ├── pom.xml │ ├── src │ │ ├── eclipse │ │ │ ├── gatein-selenium-GenerateSniffTests.launch │ │ │ └── gatein-selenium-StartSeleniumServer.launch │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── portal │ │ │ │ └── selenium │ │ │ │ └── SeleniumTestCaseGenerator.java │ │ └── suite │ │ │ ├── org │ │ │ └── exoplatform │ │ │ │ └── portal │ │ │ │ └── selenium │ │ │ │ ├── Test_POR_01_002_SignInByAdminAccount.html │ │ │ │ ├── Test_POR_01_003_SignInByNormalAccount.html │ │ │ │ ├── Test_POR_01_004_SignInWithBlankUserNameAndPassword.html │ │ │ │ ├── Test_POR_01_005_SignInByUnregisteredUserName.html │ │ │ │ ├── Test_POR_01_008_SignInByClickTheseAcoountOnHomepage.html │ │ │ │ ├── Test_POR_06_002_ChangeSkinForUser.html │ │ │ │ ├── Test_POR_07_002_ChangeLanguage.html │ │ │ │ ├── Test_POR_07_003_CheckDisplayLanguageOfPortalInPublicMode.html │ │ │ │ ├── Test_POR_07_004_CheckDisplayLanguageOfPortalInPrivateModeWithDemoAccount.html │ │ │ │ ├── Test_POR_07_006_CheckDisplayLanguageOfPortalAfterChangeLanguageInOrganization.html │ │ │ │ ├── Test_POR_09_001_CheckAddNewPortalForm.html │ │ │ │ ├── Test_POR_09_002_CreateNewPortalWithValidValue.html │ │ │ │ ├── Test_POR_09_003_CreateNewPortalWithBlankName.html │ │ │ │ ├── Test_POR_09_004_CreateNewPortalWithNameStartNumber.html │ │ │ │ ├── Test_POR_09_005_CreateNewPortalWithNameStartsWithDash.html │ │ │ │ ├── Test_POR_09_006_CreateNewPortalWithPortalNameContainsAlpahUnderscoreDashIntheMiddle.html │ │ │ │ ├── Test_POR_09_007_CreateNewPortalWithSpecialCharsInName.html │ │ │ │ ├── Test_POR_09_008_CreateNewPortalWithNameIsTheSameWithExistingOne.html │ │ │ │ ├── Test_POR_09_009_CreateNewPortalSameAsExistingButDifferentByLowerAndUpperCase.html │ │ │ │ ├── Test_POR_09_010_CreateNewPortalWithNameLessThan3Chars.html │ │ │ │ ├── Test_POR_09_011_CreateNewPortalWithNameOver30Chars.html │ │ │ │ ├── Test_POR_09_012_CheckDisplayingLanguageAndSkinAfterCreatingNewPortal.html │ │ │ │ ├── Test_POR_09_013_CreateNewPortalWithoutAssigningAnyRight.html │ │ │ │ ├── Test_POR_09_014_CreateNewPortalWithoutAssigningEditRight.html │ │ │ │ ├── Test_POR_09_015_CreateNewPortalWithoutAssigningAccessRight.html │ │ │ │ ├── Test_POR_09_016_CreatePublicPortal.html │ │ │ │ ├── Test_POR_09_017_CreatPortal_WithLimitOfAccessUsers.html │ │ │ │ ├── Test_POR_09_022_CheckAddNewPortalWhenUserDoesNotHaveRigtToCreateNewPortal.html │ │ │ │ ├── Test_POR_09_023_CreateNewPortalNameStartWithDot.html │ │ │ │ ├── Test_PRL_03_02_003_AddNewGroupWhenNameStartWithNumber.html │ │ │ │ ├── Test_SNF_PRL_01_SignInSignOut.html │ │ │ │ ├── Test_SNF_PRL_03_ChangeDisplayLanguageInPublicMode.html │ │ │ │ ├── Test_SNF_PRL_04_RememberMyLogin.html │ │ │ │ ├── Test_SNF_PRL_05_RecoverUserNameOrPassword.html │ │ │ │ ├── Test_SNF_PRL_06_CreateNewAccount.html │ │ │ │ ├── Test_SNF_PRL_07_UsersManagement.html │ │ │ │ ├── Test_SNF_PRL_08_SearchUser.html │ │ │ │ ├── Test_SNF_PRL_09_GroupManagement.html │ │ │ │ ├── Test_SNF_PRL_10_AddUserIntoGroup.html │ │ │ │ ├── Test_SNF_PRL_11_MembershipManagement.html │ │ │ │ ├── Test_SNF_PRL_12_ImportApplication.html │ │ │ │ ├── Test_SNF_PRL_13_ShowOrHideImportApplicationIcon.html │ │ │ │ ├── Test_SNF_PRL_14_ManageCategory.html │ │ │ │ ├── Test_SNF_PRL_15_AddApplicationIntoCategory.html │ │ │ │ ├── Test_SNF_PRL_16_ViewPortlets.html │ │ │ │ ├── Test_SNF_PRL_17_ManageRemoteGadget.html │ │ │ │ ├── Test_SNF_PRL_18_ManageManualGadget.html │ │ │ │ ├── Test_SNF_PRL_19_LinkToGadget.html │ │ │ │ ├── Test_SNF_PRL_20_ExpandAllCollapseAll.html │ │ │ │ ├── Test_SNF_PRL_21_CreateNewPortal.html │ │ │ │ ├── Test_SNF_PRL_22_DeletePortal.html │ │ │ │ ├── Test_SNF_PRL_23_ChangeUsingPortal.html │ │ │ │ ├── Test_SNF_PRL_24_ChangeSiteConfigOFPortal.html │ │ │ │ ├── Test_SNF_PRL_25_ChangeContainerInPortal.html │ │ │ │ ├── Test_SNF_PRL_26_ChangeApplicationInPortal.html │ │ │ │ ├── Test_SNF_PRL_27_AddApplicationIntoContainerInLayoutOfPortal.html │ │ │ │ ├── Test_SNF_PRL_28_EditPortalConfig.html │ │ │ │ ├── Test_SNF_PRL_29_AddNewpageForPortal.html │ │ │ │ ├── Test_SNF_PRL_30_EditPageForPortal.html │ │ │ │ ├── Test_SNF_PRL_31_ManageNodePortal.html │ │ │ │ ├── Test_SNF_PRL_32_MoreActionOnNodeInEditNavigationOfPortal.html │ │ │ │ ├── Test_SNF_PRL_33_EditNodePageProperties.html │ │ │ │ ├── Test_SNF_PRL_34_ChangeContainerWhenEditPropertiesOfNodeInPortalNavigation.html │ │ │ │ ├── Test_SNF_PRL_35_ChangeApplicationWhenEditPropertiesOfNodeInPortalNavigation.html │ │ │ │ ├── Test_SNF_PRL_36_AddApplicationIntoContainerWhenEditPagePropertiesOfNode.html │ │ │ │ ├── Test_SNF_PRL_37_ManageNavigationOfGroup.html │ │ │ │ ├── Test_SNF_PRL_38_EditPropertiesForGroup.html │ │ │ │ ├── Test_SNF_PRL_39_AddNewpageForGroup.html │ │ │ │ ├── Test_SNF_PRL_40_EditPageForGroup.html │ │ │ │ ├── Test_SNF_PRL_41_ChangeSiteConfigWhenEditlayOutForGroupPage.html │ │ │ │ ├── Test_SNF_PRL_42_ChangeContainerWhenEditLayoutForGroupPage.html │ │ │ │ ├── Test_SNF_PRL_43_ChangeApplicationWhenEditLayoutForGroupPage.html │ │ │ │ ├── Test_SNF_PRL_44_AddApplicationIntoCategoryWhenEditLayoutForGroupPage.html │ │ │ │ ├── Test_SNF_PRL_45_ManageNodeGroup.html.html │ │ │ │ ├── Test_SNF_PRL_46_MoreActionOnNodeInEditNavigationOfGroup.html │ │ │ │ ├── Test_SNF_PRL_47_EditNodePagePropertiesForGroup.html │ │ │ │ ├── Test_SNF_PRL_48_ChangeContainerWhenEditPagePropertiesOfNode.html │ │ │ │ ├── Test_SNF_PRL_49_ChangeApplicationWhenEditPagePropertiesOfNode.html │ │ │ │ ├── Test_SNF_PRL_50_AddApplicationIntoContainerWhenEditPagePropertiesOfNode.html │ │ │ │ ├── Test_SNF_PRL_51_ManageGadget.html │ │ │ │ ├── Test_SNF_PRL_52_ManageTab.html │ │ │ │ ├── Test_SNF_PRL_53_DragAndDropGadget.html │ │ │ │ ├── Test_SNF_PRL_54_AddNewpageForUser.html │ │ │ │ ├── Test_SNF_PRL_55_EditPageForUser.html │ │ │ │ ├── Test_SNF_PRL_56_ChangeSiteConfigWhenEditLayoutForUserPage.html │ │ │ │ ├── Test_SNF_PRL_57_ChangeContainerWhenEditLayoutForUserPage.html │ │ │ │ ├── Test_SNF_PRL_58_ChangeApplicationWhenEditLayoutForUserPage.html │ │ │ │ ├── Test_SNF_PRL_59_AddApplicationIntoCateGoryWhenEditLayoutForUserPage.html │ │ │ │ ├── Test_SNF_PRL_60_ShowAndSearchPage.html │ │ │ │ ├── Test_SNF_PRL_61_ManagePageOfPortal.html │ │ │ │ ├── Test_SNF_PRL_62_ManagePageOfGroup.html │ │ │ │ ├── Test_SNF_PRL_63_ManagePageOfUser.html │ │ │ │ ├── Test_SNF_PRL_64_ChangeLanguageInPrivateMode.html │ │ │ │ ├── Test_SNF_PRL_65_ChangeSkin.html │ │ │ │ ├── Test_SNF_PRL_66_ChangeUserProfile.html │ │ │ │ ├── Test_SNF_PRL_67_ChangePassword.html │ │ │ │ ├── Test_Smoke_PRL_BasicFunctionOnGateIn.html │ │ │ │ ├── Test_UserExtensions.html │ │ │ │ ├── candidate │ │ │ │ ├── Test_POR_10_001_DeletePortalByIllegalUser.html │ │ │ │ ├── Test_POR_10_002_DeleteCurrentPortalByLegalUser.html │ │ │ │ ├── Test_POR_10_003_DeletePortalWhileItIsBeingUsed.html │ │ │ │ ├── Test_POR_10_004_DeletePortalWhileItIsBeingUsedWithoutConfirmation.html │ │ │ │ ├── Test_POR_11_002_CheckWhenChangeToPortalThatIsNotPublic.html │ │ │ │ ├── Test_POR_11_003_CheckWhenChangeToAPortalThatIsPublic.html │ │ │ │ ├── Test_POR_12_02_007_EditCurrentPortalWithNoOneForEditRight.html │ │ │ │ ├── Test_POR_12_02_017_CheckWhenDragDropPageBodyInEditCurrentPortal.html │ │ │ │ ├── Test_POR_12_02_019_CheckFinishFunctionAfterChangedContainerLayout.html.html │ │ │ │ ├── Test_POR_12_02_021_CheckEditingContainerWithNewValidTitleWhileEditCurrentPortal.html │ │ │ │ ├── Test_POR_12_02_026_CheckFinishFunctionAfterEditedContainer.html │ │ │ │ ├── Test_POR_12_02_032_CheckFinishFunctionAfterChangePortletLayout.html │ │ │ │ ├── Test_POR_12_02_035_CheckWhenChangeTitleOfPortletWithvalidValueWhileEditingPortal.html │ │ │ │ ├── Test_POR_12_02_036_CheckWhenChangeTitleOfPortletWithInvalidValueWhileEditingPortal.html │ │ │ │ ├── Test_POR_12_02_037_CheckWhenChangeWidthHeightOfPortletWithValidValueWhileEditingPortal.html │ │ │ │ ├── Test_POR_12_02_049_CheckFinishFunctionAfterEditedPortlet.html │ │ │ │ ├── Test_POR_14_01_006_CreateNewNodeInTheFirstLevel.html │ │ │ │ ├── Test_POR_14_01_007_CreateNewNodeInTheFirstLevelWhenDoRightClick.html │ │ │ │ ├── Test_POR_14_01_008_CreateNewNodeAsChildOfExistingNodeWhenDoRightClick.html │ │ │ │ ├── Test_POR_14_01_016_CreateNewNodeWithNameIsTheSameWithExistingOneInTheSameLevel.html │ │ │ │ ├── Test_POR_14_01_032_CreateNewNodeWithPageNameTheSameWithExisting.html │ │ │ │ ├── Test_POR_14_01_043_CheckShowSiteEditorMenu.html │ │ │ │ ├── Test_POR_14_03_001_CopyPasteNodeIntoTheSameNavigation.html │ │ │ │ ├── Test_POR_14_03_003_CopyPasteNodeIntoTheSamePlace.html │ │ │ │ ├── Test_POR_14_03_004_CopyPasteNodeIntoTheSameSource.html │ │ │ │ ├── Test_POR_14_04_001_CutPasteNodeToTheSamePlace.html │ │ │ │ ├── Test_POR_14_04_002_CutPasteNodeToTheSameNavigation.html │ │ │ │ ├── Test_POR_14_04_004_CutPasteNodeByAddPage.html │ │ │ │ ├── Test_POR_14_04_005_CutPasteNodeInToTheSameThisSource.html │ │ │ │ ├── Test_POR_14_04_006_CutPasteSystemNode.html │ │ │ │ ├── Test_POR_14_06_001_ChangeOrderOfNode.html │ │ │ │ ├── Test_POR_14_07_001_CheckCloneNodeDoesNotContainSubNode.html │ │ │ │ ├── Test_POR_14_07_002_CheckCloneNodeContainSubNode.html │ │ │ │ ├── Test_POR_14_07_003_CheckCloneNodeDoesNotLinkToAnyPage.html │ │ │ │ ├── Test_POR_18_009_CheckDisplayPageCreatedInPageManagement.html │ │ │ │ ├── Test_POR_19_012_CompleteStep1InCreatePageAtTheSameLevelWithSameNodeNameButDifferentByLowerUpperCase.html │ │ │ │ ├── Test_POR_19_013_CompleteStep1InCreatePageWithNodeNameContainsSpaceOrSpecialChars.html │ │ │ │ ├── Test_POR_19_014_CompleteStep1InCreatePageWithNodeNameLessThan3OrOver30Chars.html │ │ │ │ ├── Test_POR_19_046_CreatePagesAtTheSameLevelWithSameNodeName.html │ │ │ │ ├── Test_POR_19_047_CreateANewPageWithNodeNameIsTheSameWithExistingNodeNameAtTheSameLevel.html │ │ │ │ ├── Test_POR_19_073_CheckDisplayingOfPageWhenUserHasRightAccessOnPageAndContainerButHasNoRightAccessOnPortletOnPortlet.html │ │ │ │ ├── Test_POR_19_074_CheckDisplayingOfPageWhenUserHasRightAccessOnPageAndPorletButHasNoRightAccessOnContainerWhichContainsPortlet.html │ │ │ │ ├── Test_POR_20_013_CreateNewUserPageWithExistingPageNameForTheSameUser.html │ │ │ │ ├── Test_POR_20_014_CreateUserSameNameDifferentUser.html │ │ │ │ ├── Test_POR_20_015_CreateNewUsersPageWithExistingGroupsPage.html │ │ │ │ ├── Test_POR_20_016_CreateNewUsersPageWithExistingPortalsPage.html │ │ │ │ ├── Test_POR_20_017_CreateNewPageForUserWithValidValues.html │ │ │ │ ├── Test_POR_20_019_CreateSameNameGroupPagesInSameGroup.html │ │ │ │ ├── Test_POR_20_020_CreateSameNameGroupPagesInDifferentGroups.html │ │ │ │ ├── Test_POR_20_021_CreateGroupPageWithNameTheSameWithExistingUserPage.html │ │ │ │ ├── Test_POR_20_022_CreateGroupPageWithNameTheSameWithExistingPortalPage.html │ │ │ │ ├── Test_POR_20_023_CreateNewPageForGroupWithValidValues.html │ │ │ │ ├── Test_POR_20_024_CreateNewPageForPortalWithValidValues.html │ │ │ │ ├── Test_POR_20_025_CreateSameNamePortalPagesInTheSamePortal.html │ │ │ │ ├── Test_POR_20_026_CreateSameNamePortalPagesInDifferentPortals.html │ │ │ │ ├── Test_POR_20_027_CreateNewPortalPageWithNameIsTheSameWithExistingUserPage.html │ │ │ │ ├── Test_POR_20_028_CreateNewPortalPageWithNameIsTheSameWithExistingGroupPage.html │ │ │ │ ├── Test_POR_21_002_EditPageWhenUserHasRightToAccessButCanNotEditPage.html │ │ │ │ ├── Test_POR_22_019_ChangeEditRightOnPortalPageWhileEditingPortalPageProperties.html │ │ │ │ ├── Test_POR_22_022_CheckChangesAfterEditPagePropertiesWithFinish.html │ │ │ │ ├── Test_POR_23_002_DeletePageOfUserByCreatorWithDeletingConfirmation.html │ │ │ │ ├── Test_POR_24_01_002_CheckNavigationListByUserWhoDoesNotHaveRightToEditAnyGroupNavigation.html │ │ │ │ ├── Test_POR_24_03_001_EditPropertiesOfGroupNavigation.html │ │ │ │ ├── Test_POR_25_02_001_CreateNewNodeInTheFirstLevel.html │ │ │ │ ├── Test_POR_25_02_002_CreateNewNodeAsChildOfExistingNode.html │ │ │ │ ├── Test_POR_25_02_010_AddNewNodeWithNameIsTheSameWithExistingOneInTheSameLevelIn1Navigation.html │ │ │ │ ├── Test_POR_25_02_033_CheckDoNotShowGroupEditorMenu.html │ │ │ │ ├── Test_POR_25_04_001_CopyPasteNodeIntoTheSameNavigation.html │ │ │ │ ├── Test_POR_25_04_003_CopyPasteNodeToSamePlace.html │ │ │ │ ├── Test_POR_25_04_004_CopyPasteNodeIntoTheSameResource.html │ │ │ │ ├── Test_POR_25_05_001_CutPasteNodeToSamePlace.html │ │ │ │ ├── Test_POR_25_05_002_CutPasteNodeToSameNavigation.html │ │ │ │ ├── Test_POR_25_05_004_CutPasteNodeByAddPageWizard.html │ │ │ │ ├── Test_POR_25_05_005_CutPasteNodeInToTheSameThisSource.html │ │ │ │ ├── Test_POR_25_06_001_DeleteNodeWithDeletingConfirmation.html │ │ │ │ ├── Test_POR_25_06_003_DeleteNodeInCaseNodeContainsSubNode.html │ │ │ │ ├── Test_POR_25_07_001_ChangeOrderOfNode.html │ │ │ │ ├── Test_POR_26_02_023_CheckFinishFunctionOnEditingPageAfterEditedPagePortletLayout.html │ │ │ │ ├── Test_POR_26_03_004_CheckFinishFunctionAfterEditContainerOfNodePage.html │ │ │ │ ├── Test_POR_26_03_009_CheckFinishFunctionAfterChangeNodePageContainerLayout.html │ │ │ │ ├── Test_PRL_01_001_CreateNewAccountWithValidValues.html │ │ │ │ ├── Test_PRL_01_002_CreateNewAccoutWithUserNameStartWithNumber.html │ │ │ │ ├── Test_PRL_01_003_CreateNewAccountSameAsExistingButDifferentByLowerUpperCase.html │ │ │ │ ├── Test_PRL_01_004_CreateNewAccountWithBlankRequireFields.html │ │ │ │ ├── Test_PRL_01_005_CreateNewAccountWithUserNameIncludesSpecialCharacers.html │ │ │ │ ├── Test_PRL_01_006_CreateNewAccountWithUserNameContainsAlphaDigitUndersoceDotDashInTheMiddle.html │ │ │ │ ├── Test_PRL_01_007_CreateNewAccountWithUserNameStartsWithDigitUnderscoreDotDash.html │ │ │ │ ├── Test_PRL_01_008_CreateNewAccountWithUserNameTheSameWithExisting.html │ │ │ │ ├── Test_PRL_01_009_CreateNewAccountWithUserNameLessOverMinMaxLength.html │ │ │ │ ├── Test_PRL_01_010_CheckExistingUserNameFunctionWhenAddNewAccout.html │ │ │ │ ├── Test_PRL_01_011_CreateNewAccountWithPasswordandConfirmpasswordAreNotTheSame.html │ │ │ │ ├── Test_PRL_01_012_CreateNewAccountWhenCopyFromPasswordAndPasteToConfirmPassword.html │ │ │ │ ├── Test_PRL_01_013_CreateNewAccountWithPasswordAndConfirmPasswordLessThan6Characters.html │ │ │ │ ├── Test_PRL_01_014_CreateNewAccountWithPasswordAndConfirmPasswordOver30Characters.html │ │ │ │ ├── Test_PRL_01_015_CreateNewAccountWithFirstNameExisting.html │ │ │ │ ├── Test_PRL_01_016_CreateNewAccountWithLastNameExisting.html │ │ │ │ ├── Test_PRL_01_017_CreateNewAccountWhenFirstNameStartsWithNumber.html │ │ │ │ ├── Test_PRL_01_019_CreateNewAccoutFirstNameStartsWithUnderscoreDashDot.html │ │ │ │ ├── Test_PRL_01_020_CreateNewAccoutFirstNameStartsWithUnderscoreDashDot.html │ │ │ │ ├── Test_PRL_01_021_CreateNewAccountWithFirstLastNameIncludesSpecialCharacters.html │ │ │ │ ├── Test_PRL_01_022_CreateNewAccountWithFirstAndLastNameContaintsSpace.html │ │ │ │ ├── Test_PRL_01_023_CreateNewAccountWhenFirstAndLastNameLessThan1OrOver45Characters.html │ │ │ │ ├── Test_PRL_01_024_CreateNewAccoutWithInvalidEmail.html │ │ │ │ ├── Test_PRL_01_025_CheckResetFunctionWhileCreatingNewAccout.html │ │ │ │ ├── Test_PRL_01_026_CreateNewAccoutWhenSelectlanguageForUser.html │ │ │ │ ├── Test_PRL_02_01_002_CheckUpdatingUsersListAfterRegisterNewOne.html │ │ │ │ ├── Test_PRL_02_02_001_SearchWithOutAnySearchingKeyWord.html │ │ │ │ ├── Test_PRL_02_02_002_SearchWhenSearchingKeyWordDoesNotMatchExitingUsers.html │ │ │ │ ├── Test_PRL_02_02_003_SearchWithCompletedWordWhenSearchingKeywordsMatchesExistingUsers.html │ │ │ │ ├── Test_PRL_02_02_005_SearchUserAfterItWasAlreadyDeleted.html │ │ │ │ ├── Test_PRL_02_02_006_SearchWithInCompletedWordButHasStarCharsToFindTheRightLeft.html │ │ │ │ ├── Test_PRL_02_02_007_SearchWhenKeyWordIncludesSpecialCharacters.html │ │ │ │ ├── Test_PRL_02_03_002_EditFirstNameOfUserInCommunityManagement.html │ │ │ │ ├── Test_PRL_02_03_003_EditLastNameOfUserInCommunityManagement.html │ │ │ │ ├── Test_PRL_02_03_004_CheckEditEmailInCommunityManagement.html │ │ │ │ ├── Test_PRL_02_03_007_ChangeUserProfileInCommunityManagement.html │ │ │ │ ├── Test_PRL_02_03_008_AddNewGroupWIthNameLessThan3OrOver30chars.html │ │ │ │ ├── Test_PRL_02_03_009_RemoveUserRoleInUserAndGroupManagementWithConfirmation.html │ │ │ │ ├── Test_PRL_02_04_001_DeleteSpecificUserFromExistingUsersListInCommunityManagement.html │ │ │ │ ├── Test_PRL_02_04_003_DeleteSpecificUserFormSearchResultInCommunityManagement.html │ │ │ │ ├── Test_PRL_03_01_001_CheckShowingGroupManagementForm.html │ │ │ │ ├── Test_PRL_03_02_001_AddNewGroupInGroupManagement.html │ │ │ │ ├── Test_PRL_03_02_002_AddNewGroupWithBlankRequireFields.html │ │ │ │ ├── Test_PRL_03_02_005_AddNewGroupIsTheSameWithExistingButDifferentWithLowerAndUpperCase.html │ │ │ │ ├── Test_PRL_03_02_006_AddNewGroupWIthNameContainsSpace.html │ │ │ │ ├── Test_PRL_03_02_007_AddNewGroupWhenNameContainsSpecialChars.html │ │ │ │ ├── Test_PRL_03_02_009_AddNewGroupWithBlankLabel.html │ │ │ │ ├── Test_PRL_03_02_010_AddNewGroupWithLabelLessThan3OrOver30Chars.html │ │ │ │ ├── Test_PRL_03_02_011_AddNewGroupWithDescriptionOver255Chars.html │ │ │ │ ├── Test_PRL_03_02_012_AddNewGroupSameNameWithExisting.html │ │ │ │ ├── Test_PRL_03_02_013_AddNewGroupWhenGroupNameStartsWithDot.html │ │ │ │ ├── Test_PRL_03_03_001_EditGroupWithoutSelectingGroup.html │ │ │ │ ├── Test_PRL_03_03_002_CheckEditGroupForm.html │ │ │ │ ├── Test_PRL_03_03_003_EditGroupWithBlankLabel.html │ │ │ │ ├── Test_PRL_03_03_004_ChangeGoupWithLabelLessThan3OrOver30Chars.html │ │ │ │ ├── Test_PRL_03_03_005_EditGroupWithLabelContainsSpace.html │ │ │ │ ├── Test_PRL_03_03_006_EditDescriptionOfGroup.html │ │ │ │ ├── Test_PRL_03_03_007_EditDescriptionOfGroupWithOverMaxLength.html │ │ │ │ ├── Test_PRL_03_04_001_DeleteGroupWithDeletingConfirmation.html │ │ │ │ ├── Test_PRL_03_04_002_DeleteGroupWithoutConfirmation.html │ │ │ │ ├── Test_PRL_03_04_003_DeleteGroupWithoutSelectingGroup.html │ │ │ │ ├── Test_PRL_03_04_004_CheckExistingOfUserInDeletedGroup.html │ │ │ │ ├── Test_PRL_03_04_005_CheckExistingOfPagesInDeletedGroup.html │ │ │ │ ├── Test_PRL_03_07_005_CheckEditMembershipOfUserWhichRemvoedFromGroup.html │ │ │ │ ├── Test_PRL_04_01_001_CheckShowingExistingMembershipTypes.html │ │ │ │ ├── Test_PRL_04_02_001_AddNewBlankNameMembershipInMembershjpManagement.html │ │ │ │ ├── Test_PRL_04_02_002_AddNewMembersipWithSpecialCharsInNameByMembershipManagement.html │ │ │ │ ├── Test_PRL_04_02_003_AddNewMembershipWithNameLessThan3OrOver30Chars.html │ │ │ │ ├── Test_PRL_04_02_004_AddNewMembershipWithNameTheSameWithExisting.html │ │ │ │ ├── Test_PRL_04_02_006_CheckResetFuntionInAddNewMembershipForm.html │ │ │ │ ├── Test_PRL_04_04_001_DeleteMembershipWithConfirmation.html │ │ │ │ ├── Test_PRL_04_04_002_DeleteMembershipWithoutConfirmation.html │ │ │ │ ├── Test_PRL_04_04_005_CheckExistingOfUserInGroupAfterHisRoleInThatGroupWasDeleted.html │ │ │ │ ├── Test_PRL_04_04_006_CheckMembershipInformationOfuserAfterRoleOfHimInAGroupWasDeleted.html │ │ │ │ ├── Test_PRL_04_04_007_DeleteMembershipWhichIsMandatory.html │ │ │ │ ├── Test_PRL_05_01_001_AddNewCategoryWithValidValue.html │ │ │ │ ├── Test_PRL_05_01_002_AddNewBlankNameCategory.html │ │ │ │ ├── Test_PRL_05_01_003_AddNewCategoryWIthNameStartsWithNumber.html │ │ │ │ ├── Test_PRL_05_01_006_AddNewCategoryWithSpecialCharsInName.html │ │ │ │ ├── Test_PRL_05_01_007_AddSameNameCategories.html │ │ │ │ ├── Test_PRL_05_01_008_AddCategoryWithNameTheSameWithExistingButDifferentByUpperLowerCase.html │ │ │ │ ├── Test_PRL_05_01_009_AddNewcategoryWithNameLessThan3OrOver30Chars.html │ │ │ │ ├── Test_PRL_05_01_010_AddCategoryWithBlankDisplayName.html │ │ │ │ ├── Test_PRL_05_01_011_AddNewCategoryWithDisplayNameLessThan3OrOver30Chars.html │ │ │ │ ├── Test_PRL_05_01_012_AddNewCategoryWithBlankDescription.html │ │ │ │ ├── Test_PRL_05_01_013_AddNewCategoryWithDescriptionOverMaxLength.html │ │ │ │ ├── Test_PRL_05_01_014_AddPublicCategoryInApplicationRegistry.html │ │ │ │ ├── Test_PRL_05_01_015_AddPrivateCategoryInApplicationRegistry.html │ │ │ │ ├── Test_PRL_05_01_016_CheckSelectingGroupMembershipInCaseSelectMembershipBeforeSelectingAnyGroup.html │ │ │ │ ├── Test_PRL_05_01_017_AddNewCategoryWithoutChoosingAnyPermission.html │ │ │ │ ├── Test_PRL_05_01_018_AddNewCategoryWithoutConfirmation.html │ │ │ │ ├── Test_PRL_05_02_001_EditDisplayNameOfCategory.html │ │ │ │ ├── Test_PRL_05_02_002_EditDescriptionOfCategory.html │ │ │ │ ├── Test_PRL_05_02_004_ChangeAccessRightOnCategoryFromLimitedGroupToBePublic.html │ │ │ │ ├── Test_PRL_05_06_003_LimitAccessRightInNonPublicCategoryWhenUserCanAccessApplicationAndItsCategory.html │ │ │ │ ├── Test_PRL_05_06_004_LimitAccessRightInNonPublicCategoryGroupMembershipCategoryAreDifferent.html │ │ │ │ ├── Test_PRL_07_02_002_AddRemoteGadgetWithValidURL.html │ │ │ │ ├── Test_PRL_07_02_005_AddRemoteGadgetWithURLExisting.html │ │ │ │ ├── Test_PRL_07_04_003_CreateNewGadgetWithBlankSource.html │ │ │ │ ├── Test_PRL_08_001_CheckBreadCrumbsPortletWhenSelectAPage.html │ │ │ │ ├── Test_PRL_09_001_CheckSiteMapPortlet.html │ │ │ │ ├── Test_PRL_11_001_AddNewGadgetIntoDashboardWithValidValue.html │ │ │ │ ├── Test_PRL_16_001_ShowApplicationPortletWhenCheckOrUnCheckShowImport.html │ │ │ │ └── Test_PRL_26_001_CheckAndUnCheckUseCapcharInAccountRegister.html │ │ │ │ ├── design │ │ │ │ └── Test_userExtension.html │ │ │ │ ├── issues │ │ │ │ ├── Test_PRL_02_03_005_CheckEditingPassWordInCommunityManagement.html │ │ │ │ └── Test_PRL_03_05_012_AddSomeUsersIntoGroupInCaseAfterCommaHasSpace.html │ │ │ │ └── user-extensions.js.ori │ │ │ └── user-extensions.js │ └── tests ├── selenium-tests-other │ ├── Readme.txt │ ├── pom.xml │ └── src │ │ ├── suite │ │ └── user-extensions.js │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jboss │ │ │ └── gatein │ │ │ └── selenium │ │ │ ├── AbstractContextual.java │ │ │ ├── AbstractSingleTest.java │ │ │ ├── AbstractSingleTestWithAnt.java │ │ │ ├── AbstractTestCase.java │ │ │ ├── SeleniumContext.java │ │ │ ├── TestCaseFailListener.java │ │ │ ├── TestMethodSelector.java │ │ │ ├── build │ │ │ └── BuildHelper.java │ │ │ ├── common │ │ │ └── CommonHelper.java │ │ │ ├── jira │ │ │ └── Test_GTNPORTAL_1257_SeamSessionOutlivesTheGateInSession.java │ │ │ ├── messages.properties │ │ │ ├── navigation │ │ │ └── NavigationHelper.java │ │ │ └── page │ │ │ └── PageHelper.java │ │ └── resources │ │ ├── org │ │ └── jboss │ │ │ └── gatein │ │ │ └── selenium │ │ │ └── jira │ │ │ └── Test_GTNPORTAL_1257_SeamSessionOutlivesTheGateInSession-build.xml │ │ └── testng.xml ├── testdefinitions │ ├── GateIn_v3.2.x_BasicPortlets_TestDefinition.ods │ ├── GateIn_v3.2.x_MainFunctions_TestDefinition.ods │ ├── GateIn_v3.2.x_SmokeTests_TestDefinition.ods │ ├── GateIn_v3.2.x_TechTests_TestDefinition.ods │ ├── eXo_RegressTest_GateIn_3.2.x_TestDefinition.ods │ ├── eXo_SniffTest_GateIn_3.1.x_TestDefinition.ods │ └── eXo_SniffTest_GateIn_3.2.x_TestDefinition.ods └── webuibasedsamples │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── exoplatform │ │ └── sample │ │ └── webui │ │ └── component │ │ ├── UISampleContent.java │ │ ├── UISampleDownloadUpload.java │ │ ├── UISampleLazyTabPane.java │ │ ├── UISampleMultiValueInputSet.java │ │ ├── UISamplePopupMessage.java │ │ ├── UISamplePortlet.java │ │ ├── UISampleRepeater.java │ │ ├── UISampleRightClickPopupMenu.java │ │ ├── UISampleTOC.java │ │ ├── UISampleUIForm.java │ │ ├── UISampleVirtualList.java │ │ └── bean │ │ └── User.java │ ├── resources │ ├── locale │ │ └── portlet │ │ │ └── web │ │ │ ├── UISamplePortlet_en.properties │ │ │ └── UISamplePortlet_it.properties │ ├── suppressions.xml │ └── tomcat │ │ └── portlets.xml │ └── webapp │ ├── WEB-INF │ ├── conf │ │ └── sample │ │ │ └── webui │ │ │ └── configuration.xml │ ├── gatein-resources.xml │ ├── portlet.xml │ └── web.xml │ ├── groovy │ └── webui │ │ └── component │ │ ├── UISampleDownloadUpload.gtmpl │ │ ├── UISamplePopupMessage.gtmpl │ │ ├── UISamplePortlet.gtmpl │ │ ├── UISampleRightClickPopupMenu.gtmpl │ │ └── UISampleTOC.gtmpl │ ├── javascript │ └── eXo │ │ └── webui │ │ └── UISampleTOC.js │ └── skin │ └── webui │ └── component │ └── UISamplePortlet │ ├── DefaultSkin │ └── background │ │ ├── CollapseAllIcon.gif │ │ ├── CollapseIcon.gif │ │ ├── Dotted.gif │ │ ├── ExpandAllIcon.gif │ │ ├── ExpandIcon.gif │ │ ├── LastNode.gif │ │ ├── NullItem.gif │ │ ├── RootTree.gif │ │ ├── SitemapItemBoxTitle150x1.gif │ │ ├── bullet.gif │ │ ├── default_sitemap.gif │ │ ├── minus.gif │ │ └── plus.gif │ └── DefaultStylesheet.css ├── web ├── eXoResources │ ├── pom.xml │ └── src │ │ └── main │ │ ├── resources │ │ └── eXo │ │ │ ├── portal_de.properties │ │ │ ├── portal_en.properties │ │ │ ├── portal_fr.properties │ │ │ ├── portal_it.properties │ │ │ ├── portal_ru.properties │ │ │ └── portal_vi.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── gatein-resources.xml │ │ └── web.xml │ │ ├── javascript │ │ ├── eXo.js │ │ ├── eXo │ │ │ ├── core │ │ │ │ ├── Base.js │ │ │ │ ├── DragDrop.js │ │ │ │ ├── Skin.js │ │ │ │ ├── UIMaskLayer.js │ │ │ │ └── require.js │ │ │ ├── gadget │ │ │ │ └── UIGadget.js │ │ │ ├── i18n │ │ │ │ └── I18NMessage.js │ │ │ ├── portal │ │ │ │ ├── PortalComposer.js │ │ │ │ ├── PortalDragDrop.js │ │ │ │ ├── PortalHttpRequest.js │ │ │ │ ├── ToggleContainer.js │ │ │ │ ├── UIMaskWorkspace.js │ │ │ │ ├── UIPortal.js │ │ │ │ ├── UIPortalControl.js │ │ │ │ └── UIPortalNavigation.js │ │ │ └── webui │ │ │ │ ├── Selectors.js │ │ │ │ ├── UICalendar.js │ │ │ │ ├── UIDashboard.js │ │ │ │ ├── UIForm.js │ │ │ │ ├── UINotification.js │ │ │ │ ├── UIPopup.js │ │ │ │ ├── UIPopupSelectCategory.js │ │ │ │ ├── UIPopupWindow.js │ │ │ │ ├── UIRightClickPopupMenu.js │ │ │ │ ├── UISocialLoginButtons.js │ │ │ │ ├── UIVirtualList.js │ │ │ │ ├── Upload.js │ │ │ │ └── WebUIExt.js │ │ └── jquery-1.7.1.js │ │ └── skin │ │ ├── DefaultSkin │ │ ├── background │ │ │ ├── Blank.gif │ │ │ ├── Loading.gif │ │ │ ├── LoadingProgress.gif │ │ │ ├── LoadingProgressBar.gif │ │ │ ├── NavigationBG.gif │ │ │ ├── PortalBG2x2.gif │ │ │ ├── TitleBG1x20.gif │ │ │ ├── TitleBar1x20.gif │ │ │ ├── eXoBodyBG.jpg │ │ │ └── eXoDesktopBG.jpg │ │ ├── portal │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIPortalApplicationSkin.css │ │ │ │ ├── control │ │ │ │ ├── Stylesheet.css │ │ │ │ ├── UINotification │ │ │ │ │ └── Stylesheet.css │ │ │ │ └── UIWorkspace │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ ├── PreviewModeImage146x156.png │ │ │ │ │ ├── PreviewModeImageRTL146x156.png │ │ │ │ │ └── UserWorkspaceTitleBG1x23.gif │ │ │ │ ├── customization │ │ │ │ ├── Stylesheet.css │ │ │ │ ├── UIAccountSettingForm │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── HorizontalTabs.gif │ │ │ │ │ │ └── Social.gif │ │ │ │ ├── UIChangeLanguageForm │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ └── ItemListBg157x99.gif │ │ │ │ ├── UIChangeSkinForm │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── ChangeSkinForm.jpg │ │ │ │ │ │ ├── ChangeSkinResponsive.png │ │ │ │ │ │ └── ItemListBg167x127.gif │ │ │ │ ├── UIContainerList │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── OneRow2Column1RowContainerLayout.gif │ │ │ │ │ │ ├── OneRowContainerLayout.gif │ │ │ │ │ │ ├── OneRowTwoColumnContainerLayout.gif │ │ │ │ │ │ ├── ThreeColumnContainerLayout.gif │ │ │ │ │ │ ├── ThreeRowContainerLayout.gif │ │ │ │ │ │ ├── ThreeTabContainerLayout.gif │ │ │ │ │ │ ├── TwoColumnContainerLayout.gif │ │ │ │ │ │ ├── TwoColumnOneRowContainerLayout.gif │ │ │ │ │ │ ├── TwoRowContainerLayout.gif │ │ │ │ │ │ └── TwoTabContainerLayout.gif │ │ │ │ ├── UIDescription │ │ │ │ │ └── Stylesheet.css │ │ │ │ ├── UIPageBrowser │ │ │ │ │ └── Stylesheet.css │ │ │ │ ├── UIPageSelector │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── FormInfoBG360x1.gif │ │ │ │ │ │ └── FormInfoIcon80x80.gif │ │ │ │ └── UIPortalToolPanel │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ └── MenuBackground1x27.gif │ │ │ │ ├── view │ │ │ │ ├── Stylesheet.css │ │ │ │ ├── UIDashboard │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── AddDashboard.gif │ │ │ │ │ │ ├── AddGadget.gif │ │ │ │ │ │ ├── ArrowIcon.gif │ │ │ │ │ │ ├── BGItemsContainer.gif │ │ │ │ │ │ ├── BgBottom.gif │ │ │ │ │ │ ├── BgRepeat.gif │ │ │ │ │ │ ├── BgTitleGadget.gif │ │ │ │ │ │ ├── Catalogue.gif │ │ │ │ │ │ ├── CategoryTitleBar.gif │ │ │ │ │ │ ├── CenterMiddleWindow.gif │ │ │ │ │ │ ├── Dashboard.gif │ │ │ │ │ │ ├── GadgetControl.gif │ │ │ │ │ │ ├── IconClose.gif │ │ │ │ │ │ ├── MiddlePortalComposer.gif │ │ │ │ │ │ ├── NavUser.gif │ │ │ │ │ │ ├── PortalComposer.gif │ │ │ │ │ │ ├── TabDashboard.gif │ │ │ │ │ │ └── TopExitBtn.gif │ │ │ │ ├── UIGadget │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── Gadget.png │ │ │ │ │ │ ├── IconGadget.gif │ │ │ │ │ │ └── MiddleGadget.png │ │ │ │ ├── UIPage │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── BgPagebody.gif │ │ │ │ │ │ ├── BottomDecoratorHome.gif │ │ │ │ │ │ ├── ViewPage.gif │ │ │ │ │ │ └── ViewPageRepeat.gif │ │ │ │ ├── UIPortalComponent │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ ├── ArrowDown.gif │ │ │ │ │ │ ├── Close.gif │ │ │ │ │ │ ├── DefaultContainerIcon.gif │ │ │ │ │ │ ├── DragAndDropPreview4x4.gif │ │ │ │ │ │ ├── DragBg2x2.gif │ │ │ │ │ │ ├── Pen.gif │ │ │ │ │ │ └── PortletLayoutDecorator.gif │ │ │ │ ├── UITabContainer │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ │ └── AddTab.gif │ │ │ │ └── UIToolbarContainer │ │ │ │ │ ├── Stylesheet.css │ │ │ │ │ └── background │ │ │ │ │ ├── GateinLogo.gif │ │ │ │ │ ├── ToolbarContainer.gif │ │ │ │ │ └── UseIcon.png │ │ │ │ └── widget │ │ │ │ ├── Stylesheet.css │ │ │ │ ├── UILoginForm │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── CenterMiddleLogin.gif │ │ │ │ │ ├── ImageMiddle.gif │ │ │ │ │ ├── ImageMiddleOAuth.gif │ │ │ │ │ ├── Login.gif │ │ │ │ │ ├── MiddleLogin.gif │ │ │ │ │ ├── Repeat-yLogin.gif │ │ │ │ │ ├── facebook.png │ │ │ │ │ ├── general.png │ │ │ │ │ ├── google.png │ │ │ │ │ ├── linkedin.png │ │ │ │ │ └── twitter.png │ │ │ │ └── UIUserSpace │ │ │ │ └── Stylesheet.css │ │ ├── skinIcons │ │ │ ├── 16x16 │ │ │ │ ├── Stylesheet.css │ │ │ │ └── icons │ │ │ │ │ ├── AddNewCategory.gif │ │ │ │ │ ├── AddNewEventIcon.gif │ │ │ │ │ ├── AddNodeIcon.gif │ │ │ │ │ ├── AddPage.gif │ │ │ │ │ ├── AdminView.gif │ │ │ │ │ ├── ArrowLeft.gif │ │ │ │ │ ├── ArrowLeftPage.gif │ │ │ │ │ ├── ArrowRight.gif │ │ │ │ │ ├── ArrowShape.gif │ │ │ │ │ ├── ArrowShapeButton.gif │ │ │ │ │ ├── BackIcon.gif │ │ │ │ │ ├── BlackBackArrow.gif │ │ │ │ │ ├── BlackDownArrow.gif │ │ │ │ │ ├── BlackGridRightArrow.gif │ │ │ │ │ ├── BlackNextArrow.gif │ │ │ │ │ ├── BlackUpArrow.gif │ │ │ │ │ ├── BlueActionWheel.gif │ │ │ │ │ ├── BlueArrowBlackFloppy.gif │ │ │ │ │ ├── BlueBackArrow.gif │ │ │ │ │ ├── BlueCheckerIcon.gif │ │ │ │ │ ├── BlueCircleLeftArrow.gif │ │ │ │ │ ├── BlueCirclePlus.gif │ │ │ │ │ ├── BlueCircleRightArrow.gif │ │ │ │ │ ├── BlueCogWheel.gif │ │ │ │ │ ├── BlueDottedRightArrow.gif │ │ │ │ │ ├── BlueDownArrow.gif │ │ │ │ │ ├── BlueFlag.gif │ │ │ │ │ ├── BlueInfoBox.gif │ │ │ │ │ ├── BlueNextArrow.gif │ │ │ │ │ ├── BlueNote.gif │ │ │ │ │ ├── BluePBox.gif │ │ │ │ │ ├── BlueShapeLeftArrow.gif │ │ │ │ │ ├── BlueShapeRightArrow.gif │ │ │ │ │ ├── BlueSquare.gif │ │ │ │ │ ├── BlueUpArrow.gif │ │ │ │ │ ├── Box.gif │ │ │ │ │ ├── BreadcumbsArrowIcon.gif │ │ │ │ │ ├── Briefcase.gif │ │ │ │ │ ├── BrownBook.gif │ │ │ │ │ ├── BrowseContent.gif │ │ │ │ │ ├── Cancel.gif │ │ │ │ │ ├── CircleInfo.gif │ │ │ │ │ ├── ClearSearch.png │ │ │ │ │ ├── CloneIcon.gif │ │ │ │ │ ├── ColorPen.gif │ │ │ │ │ ├── Config.gif │ │ │ │ │ ├── CopyIcon.gif │ │ │ │ │ ├── Cut.gif │ │ │ │ │ ├── Decorator.gif │ │ │ │ │ ├── DefaultContainerIcon.gif │ │ │ │ │ ├── DefaultNodeIcon.gif │ │ │ │ │ ├── DefaultPageIcon.gif │ │ │ │ │ ├── DefaultPortletIcon.gif │ │ │ │ │ ├── DialogIcon.gif │ │ │ │ │ ├── DotArrowRight.gif │ │ │ │ │ ├── DoublePaper.gif │ │ │ │ │ ├── DropIcon16x16.gif │ │ │ │ │ ├── Duplicate.gif │ │ │ │ │ ├── DustBin.gif │ │ │ │ │ ├── DustBinClickButton.gif │ │ │ │ │ ├── ECMAdmin.gif │ │ │ │ │ ├── Earth.gif │ │ │ │ │ ├── EditIcon.gif │ │ │ │ │ ├── EditNavigation.gif │ │ │ │ │ ├── EditNode.gif │ │ │ │ │ ├── EditPageNode.gif │ │ │ │ │ ├── Entertainment.gif │ │ │ │ │ ├── Error.gif │ │ │ │ │ ├── Execute.gif │ │ │ │ │ ├── Feature.gif │ │ │ │ │ ├── FloppyDisk.gif │ │ │ │ │ ├── FootBall.gif │ │ │ │ │ ├── ForumIcon.gif │ │ │ │ │ ├── GrayBackArrow.gif │ │ │ │ │ ├── GrayDownArrow.gif │ │ │ │ │ ├── GrayNextArrow.gif │ │ │ │ │ ├── GrayShapeLeftArrow.gif │ │ │ │ │ ├── GrayShapeRightArrow.gif │ │ │ │ │ ├── GrayUpArrow.gif │ │ │ │ │ ├── GreenCheckerIcon.gif │ │ │ │ │ ├── GreenFlag.gif │ │ │ │ │ ├── GreenPlusDataBox.gif │ │ │ │ │ ├── GreenPlusPage.gif │ │ │ │ │ ├── GreenRightArrowPage.gif │ │ │ │ │ ├── GridRightArrow.gif │ │ │ │ │ ├── Hand.gif │ │ │ │ │ ├── HighlightEditButton.gif │ │ │ │ │ ├── Home.gif │ │ │ │ │ ├── HotNews.gif │ │ │ │ │ ├── IconSelector.gif │ │ │ │ │ ├── ImagesList.gif │ │ │ │ │ ├── Impersonation.gif │ │ │ │ │ ├── Info.gif │ │ │ │ │ ├── JCRExplorer.gif │ │ │ │ │ ├── Level.gif │ │ │ │ │ ├── LightBlueGlobal.gif │ │ │ │ │ ├── LightBulbOn.gif │ │ │ │ │ ├── LoadingInfo.gif │ │ │ │ │ ├── Lock.gif │ │ │ │ │ ├── Login.gif │ │ │ │ │ ├── MembershipSelector.gif │ │ │ │ │ ├── Message.gif │ │ │ │ │ ├── MiniOrangeBoxPage.gif │ │ │ │ │ ├── MiscIcons │ │ │ │ │ ├── AcrobatFile.gif │ │ │ │ │ ├── AdminView.gif │ │ │ │ │ ├── AllTags.gif │ │ │ │ │ ├── AmericanExpressCard.gif │ │ │ │ │ ├── ApplicationGallery.gif │ │ │ │ │ ├── ApplicationLink.gif │ │ │ │ │ ├── ApplicationList.gif │ │ │ │ │ ├── ApplicationSize.gif │ │ │ │ │ ├── ApplicationTerminal.gif │ │ │ │ │ ├── ApplicationWorldWide.png │ │ │ │ │ ├── BlueInfo.gif │ │ │ │ │ ├── Bomb.png │ │ │ │ │ ├── BookmarkPage.gif │ │ │ │ │ ├── BreakLink.gif │ │ │ │ │ ├── Brick.gif │ │ │ │ │ ├── CSS.gif │ │ │ │ │ ├── CategoryList.gif │ │ │ │ │ ├── CheckPage.gif │ │ │ │ │ ├── Checkout.gif │ │ │ │ │ ├── ComponentsList.gif │ │ │ │ │ ├── Config.gif │ │ │ │ │ ├── DiskDrive.gif │ │ │ │ │ ├── DownloadApplication.gif │ │ │ │ │ ├── DreamweaverApplication.gif │ │ │ │ │ ├── DynamicContentPage.gif │ │ │ │ │ ├── Extension.gif │ │ │ │ │ ├── Factory.gif │ │ │ │ │ ├── Feature.gif │ │ │ │ │ ├── Flash.gif │ │ │ │ │ ├── FlashFile.gif │ │ │ │ │ ├── FolderLock.gif │ │ │ │ │ ├── FontFile.gif │ │ │ │ │ ├── Glove.gif │ │ │ │ │ ├── HTML.gif │ │ │ │ │ ├── Home.gif │ │ │ │ │ ├── Humer.gif │ │ │ │ │ ├── IconsView.gif │ │ │ │ │ ├── ImageFrame.gif │ │ │ │ │ ├── ImageSize.gif │ │ │ │ │ ├── Images.gif │ │ │ │ │ ├── ImagesFolder.gif │ │ │ │ │ ├── ImagesList.gif │ │ │ │ │ ├── Info.png │ │ │ │ │ ├── InstallerProgress.gif │ │ │ │ │ ├── JavaPge.gif │ │ │ │ │ ├── Layout.gif │ │ │ │ │ ├── Link.gif │ │ │ │ │ ├── LockPage.gif │ │ │ │ │ ├── MasterCard.gif │ │ │ │ │ ├── Music.gif │ │ │ │ │ ├── MusicDownload.gif │ │ │ │ │ ├── New.gif │ │ │ │ │ ├── PackagesList.gif │ │ │ │ │ ├── PageCategory.gif │ │ │ │ │ ├── PhotoshopFile.gif │ │ │ │ │ ├── Printer.gif │ │ │ │ │ ├── Puzzle.gif │ │ │ │ │ ├── QuicktimeMovieFile.gif │ │ │ │ │ ├── RSS.gif │ │ │ │ │ ├── RSSFeed.gif │ │ │ │ │ ├── Rainbow.gif │ │ │ │ │ ├── RefeshPage.gif │ │ │ │ │ ├── SearchFolder.gif │ │ │ │ │ ├── Security.gif │ │ │ │ │ ├── Software.gif │ │ │ │ │ ├── Speaker.gif │ │ │ │ │ ├── Speaker2.gif │ │ │ │ │ ├── StarAward.gif │ │ │ │ │ ├── StarPage.gif │ │ │ │ │ ├── Stats.gif │ │ │ │ │ ├── TagPage.gif │ │ │ │ │ ├── TagSign.gif │ │ │ │ │ ├── Ticket.gif │ │ │ │ │ ├── TrueTypeFont.gif │ │ │ │ │ ├── Tux.gif │ │ │ │ │ ├── Vector.gif │ │ │ │ │ ├── Version.gif │ │ │ │ │ ├── VisaCard.gif │ │ │ │ │ ├── WeatherClouds.gif │ │ │ │ │ ├── WeatherCloudy.gif │ │ │ │ │ ├── WeatherLightning.gif │ │ │ │ │ ├── WeatherRain.gif │ │ │ │ │ ├── WeatherSnow.gif │ │ │ │ │ ├── WeatherSun.gif │ │ │ │ │ ├── World.gif │ │ │ │ │ ├── Write.gif │ │ │ │ │ ├── XHTML.gif │ │ │ │ │ └── YellowStar.png │ │ │ │ │ ├── Monitor.gif │ │ │ │ │ ├── MoveDown.gif │ │ │ │ │ ├── MoveUp.gif │ │ │ │ │ ├── NavigationIcon.gif │ │ │ │ │ ├── NavigationIcons │ │ │ │ │ ├── BlackDownSolidArrow.gif │ │ │ │ │ ├── BlackLeftSolidArrow.gif │ │ │ │ │ ├── BlackRightSolidArrow.gif │ │ │ │ │ ├── BlackUpSolidArrow.gif │ │ │ │ │ ├── BlueAquaBallBullet.gif │ │ │ │ │ ├── BlueArrowIn.gif │ │ │ │ │ ├── BlueArrowInOut.gif │ │ │ │ │ ├── BlueBallBullet.gif │ │ │ │ │ ├── BlueBranchArrow.gif │ │ │ │ │ ├── BlueDividedArrow.gif │ │ │ │ │ ├── BlueDownArrow.gif │ │ │ │ │ ├── BlueJoinArrow.gif │ │ │ │ │ ├── BlueRedoArrow.gif │ │ │ │ │ ├── BlueRotateRightArrow.gif │ │ │ │ │ ├── BlueSquareBullet.gif │ │ │ │ │ ├── BlueSwitchArrow.gif │ │ │ │ │ ├── BlueTriangleBullet.gif │ │ │ │ │ ├── BlueUndoArrow.gif │ │ │ │ │ ├── BlueUpArrow.gif │ │ │ │ │ ├── Check.png │ │ │ │ │ ├── Check2.gif │ │ │ │ │ ├── CheckDisable.png │ │ │ │ │ ├── Delete.gif │ │ │ │ │ ├── Forward.gif │ │ │ │ │ ├── GrassGreenBallBullet.gif │ │ │ │ │ ├── GreenBallBullet.gif │ │ │ │ │ ├── GreenSquareBullet.gif │ │ │ │ │ ├── GreenTriangleBullet.gif │ │ │ │ │ ├── GreyAquaBallBullet.gif │ │ │ │ │ ├── GreyBallBullet.gif │ │ │ │ │ ├── GreyLeftShapeArrow.gif │ │ │ │ │ ├── GreySquareBullet.gif │ │ │ │ │ ├── GreyTriangleBullet.gif │ │ │ │ │ ├── RedAquaBallBullet.gif │ │ │ │ │ ├── RedBallBullet.gif │ │ │ │ │ ├── RedSquareBullet.gif │ │ │ │ │ ├── RedTriangleBullet.gif │ │ │ │ │ ├── Reply.gif │ │ │ │ │ ├── RightShapeArrow.gif │ │ │ │ │ ├── SiteMap.gif │ │ │ │ │ ├── YellowAquaBallBullet.gif │ │ │ │ │ ├── YellowBallBullet.gif │ │ │ │ │ ├── YellowSquareBullet.gif │ │ │ │ │ └── YellowTriangleBullet.gif │ │ │ │ │ ├── NavyMBox.gif │ │ │ │ │ ├── NestedSquare.gif │ │ │ │ │ ├── NewsIcon.gif │ │ │ │ │ ├── Node.gif │ │ │ │ │ ├── NormalCloseTab.gif │ │ │ │ │ ├── NormalEditTab.gif │ │ │ │ │ ├── OfficeIcons │ │ │ │ │ ├── AddressBook.gif │ │ │ │ │ ├── ArticleDocument.gif │ │ │ │ │ ├── At.png │ │ │ │ │ ├── Attachment.gif │ │ │ │ │ ├── Book.gif │ │ │ │ │ ├── Chair.gif │ │ │ │ │ ├── ChartBar.gif │ │ │ │ │ ├── ChartLine.gif │ │ │ │ │ ├── CoffeeCup.gif │ │ │ │ │ ├── CoinsCurency.gif │ │ │ │ │ ├── Computer.gif │ │ │ │ │ ├── Conference.gif │ │ │ │ │ ├── Date.gif │ │ │ │ │ ├── DocumentBox.gif │ │ │ │ │ ├── Door.gif │ │ │ │ │ ├── DreamweaverFile.gif │ │ │ │ │ ├── Email.gif │ │ │ │ │ ├── Envelope.gif │ │ │ │ │ ├── ExeFile.gif │ │ │ │ │ ├── FloppyDisk.gif │ │ │ │ │ ├── Folder1.gif │ │ │ │ │ ├── Folder2.gif │ │ │ │ │ ├── Folder3.gif │ │ │ │ │ ├── Folder4.gif │ │ │ │ │ ├── Folder5.gif │ │ │ │ │ ├── HomePage.gif │ │ │ │ │ ├── HotNews.gif │ │ │ │ │ ├── IDCard.gif │ │ │ │ │ ├── IllustratorFile.gif │ │ │ │ │ ├── IndesignFile.gif │ │ │ │ │ ├── Index.gif │ │ │ │ │ ├── Keyboard.gif │ │ │ │ │ ├── Letter.gif │ │ │ │ │ ├── MacOSXFolder.gif │ │ │ │ │ ├── Mail.gif │ │ │ │ │ ├── Map.gif │ │ │ │ │ ├── Monitor.gif │ │ │ │ │ ├── Mouse.gif │ │ │ │ │ ├── Newspaper.gif │ │ │ │ │ ├── Newspaper2.gif │ │ │ │ │ ├── NotePage.gif │ │ │ │ │ ├── OpenBook.gif │ │ │ │ │ ├── OpenEmail.gif │ │ │ │ │ ├── OpenFolder.gif │ │ │ │ │ ├── Page.gif │ │ │ │ │ ├── PaperList.gif │ │ │ │ │ ├── PastePalate.gif │ │ │ │ │ ├── Picture.gif │ │ │ │ │ ├── Purchase.gif │ │ │ │ │ ├── Script.gif │ │ │ │ │ ├── SearchPage.gif │ │ │ │ │ ├── ShoppingBag.gif │ │ │ │ │ ├── Sitemap.gif │ │ │ │ │ ├── Stats2.gif │ │ │ │ │ ├── Tag.gif │ │ │ │ │ ├── Telephone.gif │ │ │ │ │ ├── TextFile.gif │ │ │ │ │ ├── YellowFolder.gif │ │ │ │ │ ├── YellowPen.gif │ │ │ │ │ └── ZipFile.gif │ │ │ │ │ ├── Operation.gif │ │ │ │ │ ├── OrangeLightPage.gif │ │ │ │ │ ├── OrangeNote.gif │ │ │ │ │ ├── OrangePencilSourceBox.gif │ │ │ │ │ ├── Organization.gif │ │ │ │ │ ├── PageTicker.gif │ │ │ │ │ ├── PasteIcon.gif │ │ │ │ │ ├── PastePalate.gif │ │ │ │ │ ├── Pencil.gif │ │ │ │ │ ├── PermissionSetting.gif │ │ │ │ │ ├── PortalAdmin.gif │ │ │ │ │ ├── PortalContainerIcon.gif │ │ │ │ │ ├── PortalNavigationIcon.gif │ │ │ │ │ ├── RSS.gif │ │ │ │ │ ├── RainyCloud.gif │ │ │ │ │ ├── RedCrossCircle.gif │ │ │ │ │ ├── RedFlag.gif │ │ │ │ │ ├── RedLogoutIcon.gif │ │ │ │ │ ├── RefreshIcon.gif │ │ │ │ │ ├── RegistryPortlet.gif │ │ │ │ │ ├── Save.gif │ │ │ │ │ ├── Scissors.gif │ │ │ │ │ ├── ScissorsEraser.gif │ │ │ │ │ ├── ScissorsEraserWarning.gif │ │ │ │ │ ├── SearchIcon.gif │ │ │ │ │ ├── SearchIcon.png │ │ │ │ │ ├── SelectIcon.gif │ │ │ │ │ ├── SelectPermission.gif │ │ │ │ │ ├── SelectedCloseTab.gif │ │ │ │ │ ├── SelectedEditTab.gif │ │ │ │ │ ├── ShieldGreenPlus.gif │ │ │ │ │ ├── SiteMap.gif │ │ │ │ │ ├── SmallArrowBox.gif │ │ │ │ │ ├── SmallGrayMinus.gif │ │ │ │ │ ├── SmallGrayPlus.gif │ │ │ │ │ ├── SmallGroup.gif │ │ │ │ │ ├── Software.gif │ │ │ │ │ ├── ToolIcons │ │ │ │ │ ├── Alarm.gif │ │ │ │ │ ├── Anchor.gif │ │ │ │ │ ├── Basketball.gif │ │ │ │ │ ├── Bell.gif │ │ │ │ │ ├── Billards.gif │ │ │ │ │ ├── BlueActionWheel.gif │ │ │ │ │ ├── BlueFlag.gif │ │ │ │ │ ├── Box.gif │ │ │ │ │ ├── BriefCase.gif │ │ │ │ │ ├── CD.gif │ │ │ │ │ ├── Calculator.gif │ │ │ │ │ ├── Calendar.gif │ │ │ │ │ ├── Cart.gif │ │ │ │ │ ├── Clock.gif │ │ │ │ │ ├── Component.gif │ │ │ │ │ ├── CropTool.gif │ │ │ │ │ ├── DeskPhone.gif │ │ │ │ │ ├── EmptyBox.gif │ │ │ │ │ ├── Entertainment.gif │ │ │ │ │ ├── FileBox.gif │ │ │ │ │ ├── FirefoxBrowser.gif │ │ │ │ │ ├── FolderExport.gif │ │ │ │ │ ├── FolderImport.gif │ │ │ │ │ ├── Football.gif │ │ │ │ │ ├── Gear.gif │ │ │ │ │ ├── Golf.gif │ │ │ │ │ ├── GrayWallet.gif │ │ │ │ │ ├── GreenFlag.gif │ │ │ │ │ ├── GreyFlag.gif │ │ │ │ │ ├── HardDisk.gif │ │ │ │ │ ├── HourGlass.gif │ │ │ │ │ ├── Key.gif │ │ │ │ │ ├── Light.gif │ │ │ │ │ ├── Lock.gif │ │ │ │ │ ├── MacApplicationTool.gif │ │ │ │ │ ├── MacMonitor.gif │ │ │ │ │ ├── Magnifier.gif │ │ │ │ │ ├── MoveTool.gif │ │ │ │ │ ├── Movie.gif │ │ │ │ │ ├── Network.gif │ │ │ │ │ ├── PCMonitor.gif │ │ │ │ │ ├── Paste.gif │ │ │ │ │ ├── Pencil.gif │ │ │ │ │ ├── Raquet.gif │ │ │ │ │ ├── RedFlag.gif │ │ │ │ │ ├── Ruler.gif │ │ │ │ │ ├── Search.png │ │ │ │ │ ├── Shield.png │ │ │ │ │ ├── Shuttlecock.gif │ │ │ │ │ ├── Soccer.gif │ │ │ │ │ ├── Sound.gif │ │ │ │ │ ├── Switcher.gif │ │ │ │ │ ├── Tennis.gif │ │ │ │ │ ├── ToolBoxOpen.gif │ │ │ │ │ ├── UnLock.gif │ │ │ │ │ ├── VolumeControl.gif │ │ │ │ │ ├── Wand.gif │ │ │ │ │ ├── Warning.gif │ │ │ │ │ ├── Webcam.gif │ │ │ │ │ ├── Wrench.gif │ │ │ │ │ ├── YellowBulb.gif │ │ │ │ │ └── YellowFlag.gif │ │ │ │ │ ├── TreeNodeIcon.gif │ │ │ │ │ ├── UserAccount.gif │ │ │ │ │ ├── UserIcons │ │ │ │ │ ├── Comment.gif │ │ │ │ │ ├── Contact.gif │ │ │ │ │ ├── Eye.gif │ │ │ │ │ ├── Finger.gif │ │ │ │ │ ├── FolderHolder.gif │ │ │ │ │ ├── Hand.gif │ │ │ │ │ ├── HandPoint.gif │ │ │ │ │ ├── Help.gif │ │ │ │ │ ├── Personal.png │ │ │ │ │ ├── Public.gif │ │ │ │ │ ├── User.gif │ │ │ │ │ ├── VIPCard.gif │ │ │ │ │ ├── Woman1.png │ │ │ │ │ ├── Woman2.png │ │ │ │ │ ├── Woman3.png │ │ │ │ │ ├── Woman4.png │ │ │ │ │ ├── Worker.png │ │ │ │ │ ├── Worker2.png │ │ │ │ │ └── YellowComment.gif │ │ │ │ │ ├── UserRegistration.gif │ │ │ │ │ ├── Warning.gif │ │ │ │ │ ├── WhiteArrowDown.gif │ │ │ │ │ ├── WhiteArrowUp.gif │ │ │ │ │ ├── WorkflowIcon.gif │ │ │ │ │ ├── YellowBulb.gif │ │ │ │ │ ├── YellowFlag.gif │ │ │ │ │ └── YellowSquare.gif │ │ │ ├── 24x24 │ │ │ │ ├── Stylesheet.css │ │ │ │ └── icons │ │ │ │ │ ├── AbortIcon.gif │ │ │ │ │ ├── AccessPermission.gif │ │ │ │ │ ├── AddCategory.gif │ │ │ │ │ ├── AddDecorator.gif │ │ │ │ │ ├── AdvancedSearch.gif │ │ │ │ │ ├── BackIcon.gif │ │ │ │ │ ├── BlackFloppyDisk.gif │ │ │ │ │ ├── BlackFloppyDiskPage.gif │ │ │ │ │ ├── BlackMagnifier.gif │ │ │ │ │ ├── BlueArrowBox.gif │ │ │ │ │ ├── BlueBackArrow.gif │ │ │ │ │ ├── BlueBallMultiplePage.gif │ │ │ │ │ ├── BlueCircleArrow.gif │ │ │ │ │ ├── BlueCircleBackArrow.gif │ │ │ │ │ ├── BlueCirclePlus.gif │ │ │ │ │ ├── BlueCircleRoundedArrows.gif │ │ │ │ │ ├── BlueFloppyDisk.gif │ │ │ │ │ ├── BlueGlobalOrangeGear.gif │ │ │ │ │ ├── BlueIconNavigation.gif │ │ │ │ │ ├── BlueInfoBox.gif │ │ │ │ │ ├── BlueLoginIcon.gif │ │ │ │ │ ├── BlueMagnifier.gif │ │ │ │ │ ├── BlueMagnifierOrangeArrow.gif │ │ │ │ │ ├── BlueMagnifierOver.gif │ │ │ │ │ ├── BlueSmallBoxPencilPage.gif │ │ │ │ │ ├── BlueSync.gif │ │ │ │ │ ├── BlueUpLevelArrow.gif │ │ │ │ │ ├── BoxBlueArrowDown.gif │ │ │ │ │ ├── BoxGreenPlus.gif │ │ │ │ │ ├── BoxPencil.gif │ │ │ │ │ ├── BrowsePortal.gif │ │ │ │ │ ├── Catergory.gif │ │ │ │ │ ├── ClearSearch.png │ │ │ │ │ ├── CogWheelBrownBox.gif │ │ │ │ │ ├── ColorGridSquare.gif │ │ │ │ │ ├── ControlPanel.gif │ │ │ │ │ ├── CopyPagesSmallBox.gif │ │ │ │ │ ├── DataBoxDusBin.gif │ │ │ │ │ ├── Delete.gif │ │ │ │ │ ├── DeleteAll.gif │ │ │ │ │ ├── DeleteCategory.gif │ │ │ │ │ ├── DiamondCircleRoundedArrows.gif │ │ │ │ │ ├── DiskArrow.gif │ │ │ │ │ ├── DoubleWindowsUpArrow.gif │ │ │ │ │ ├── DustBinFull.gif │ │ │ │ │ ├── EditCategory.gif │ │ │ │ │ ├── EditCatergory.gif │ │ │ │ │ ├── EditNavigation.gif │ │ │ │ │ ├── EditNavigationIcon.gif │ │ │ │ │ ├── FinishIcon.gif │ │ │ │ │ ├── FloppyDisk.gif │ │ │ │ │ ├── ForumIcon.gif │ │ │ │ │ ├── GrayGlasses.gif │ │ │ │ │ ├── GraySwitcher.gif │ │ │ │ │ ├── GreenPlusBluePage.gif │ │ │ │ │ ├── GreenPlusBlueTicket.gif │ │ │ │ │ ├── GreenPlusBrownBox.gif │ │ │ │ │ ├── GreenPlusDataBox.gif │ │ │ │ │ ├── GreenPlusFolder.gif │ │ │ │ │ ├── GreenPlusWizardPage.gif │ │ │ │ │ ├── GreenResizeCollum.gif │ │ │ │ │ ├── GreenRightArrowDoubleScreen.gif │ │ │ │ │ ├── GreenUpArrowDisk.gif │ │ │ │ │ ├── HammerDataBox.gif │ │ │ │ │ ├── IceBlueInfoQueryBox.gif │ │ │ │ │ ├── IconAccessPermission.gif │ │ │ │ │ ├── IconEditPermission.gif │ │ │ │ │ ├── ImportCategory.gif │ │ │ │ │ ├── LightBlueFolder.gif │ │ │ │ │ ├── LightBlueFolderHome.gif │ │ │ │ │ ├── LightBlueOpenFolder.gif │ │ │ │ │ ├── MetalCircleSync.gif │ │ │ │ │ ├── MetalSync.gif │ │ │ │ │ ├── MiscColorBevelRetangles.gif │ │ │ │ │ ├── MiscColorRegtangleRing.gif │ │ │ │ │ ├── NavigationCircle.gif │ │ │ │ │ ├── NavigationManagement.gif │ │ │ │ │ ├── NavyBlueBullet.gif │ │ │ │ │ ├── NavyBlueDocument.gif │ │ │ │ │ ├── NavyBlueGear.gif │ │ │ │ │ ├── NavyBlueRecycleBin.gif │ │ │ │ │ ├── NavyBlueTrashBin.gif │ │ │ │ │ ├── NormalGroup.gif │ │ │ │ │ ├── OnmouseOverBlock.gif │ │ │ │ │ ├── OverBlueUpLevelArrow.gif │ │ │ │ │ ├── PageGreenArrowDown.gif │ │ │ │ │ ├── PageGreenArrowUp.gif │ │ │ │ │ ├── PageManagement.gif │ │ │ │ │ ├── Paste.gif │ │ │ │ │ ├── PermissionIcon.gif │ │ │ │ │ ├── PointedHandBrownBox.gif │ │ │ │ │ ├── PortalManagement.gif │ │ │ │ │ ├── QuickSearch.gif │ │ │ │ │ ├── RedDustBin.gif │ │ │ │ │ ├── RedLogoutIcon.gif │ │ │ │ │ ├── RollBackIcon.gif │ │ │ │ │ ├── SaveIcon.gif │ │ │ │ │ ├── SelectPage.gif │ │ │ │ │ ├── SelectedBlock.gif │ │ │ │ │ ├── SelectedGroup.gif │ │ │ │ │ ├── SiteMap.gif │ │ │ │ │ ├── SmallBallColorPlate.gif │ │ │ │ │ ├── SmallBallFlyingPages.gif │ │ │ │ │ ├── SmallBallRedShield.gif │ │ │ │ │ ├── SmallBoxBrownPaste.gif │ │ │ │ │ ├── TriSmallBoxPencil.gif │ │ │ │ │ ├── UpFolder.gif │ │ │ │ │ ├── ViewPermission.gif │ │ │ │ │ ├── VioletFolder.gif │ │ │ │ │ ├── Wizard.gif │ │ │ │ │ ├── YellowArrowGreenGlobal.gif │ │ │ │ │ ├── YellowHammer.gif │ │ │ │ │ └── YellowPenBrownBox.gif │ │ │ ├── 32x32 │ │ │ │ ├── Stylesheet.css │ │ │ │ └── icons │ │ │ │ │ ├── BoxMagnifier.gif │ │ │ │ │ ├── BusinessInfo.gif │ │ │ │ │ ├── CircleInfo.gif │ │ │ │ │ ├── ClearSearch.png │ │ │ │ │ ├── Debug.gif │ │ │ │ │ ├── HomeInfo.gif │ │ │ │ │ ├── ImageCenterLayout.gif │ │ │ │ │ ├── ImageDoubleColLayout.gif │ │ │ │ │ ├── ImageDoubleLayout.gif │ │ │ │ │ ├── ImageLeftLayout.gif │ │ │ │ │ ├── ImagePlainLayout.gif │ │ │ │ │ ├── ImageRightLayout.gif │ │ │ │ │ ├── Navigation.gif │ │ │ │ │ ├── PageMagnifier.gif │ │ │ │ │ ├── PersonalInfo.gif │ │ │ │ │ ├── ViewStandardIcon.gif │ │ │ │ │ └── WarningSign.gif │ │ │ ├── 48x48 │ │ │ │ └── icons │ │ │ │ │ ├── BlueGreenConnectMonitor.gif │ │ │ │ │ ├── ClearSearch.png │ │ │ │ │ └── PurpleConnectMonitor.gif │ │ │ └── Stylesheet.css │ │ └── webui │ │ │ └── component │ │ │ ├── Stylesheet.css │ │ │ ├── UIBarDecorator │ │ │ ├── Stylesheet.css │ │ │ ├── UIAction │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── DarkGrayButton.gif │ │ │ │ │ ├── LightBlueStyle.gif │ │ │ │ │ ├── PageProfileIcon.gif │ │ │ │ │ ├── SimpleStyle.gif │ │ │ │ │ ├── SimpleStyle1.gif │ │ │ │ │ └── ViewAsBlockIcon.gif │ │ │ ├── UIBarStyle │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── BarStyle2.gif │ │ │ │ │ ├── NormalBarStyle.gif │ │ │ │ │ ├── SmoothNavy40Style.gif │ │ │ │ │ └── TitleBar.gif │ │ │ ├── UIBoxDecorator │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── BarDecorator.gif │ │ │ │ │ ├── GrayRounded.gif │ │ │ │ │ ├── MiddleGrayRounded.gif │ │ │ │ │ ├── MiddleViewBoxStyle.gif │ │ │ │ │ ├── TitleBar.gif │ │ │ │ │ └── ViewBoxStyle.gif │ │ │ └── UIInfoBar │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ ├── BlueRoundedStyle.png │ │ │ │ ├── PolygonNavyBlueStyle.gif │ │ │ │ └── SmoothStyle26.gif │ │ │ ├── UIBreadcumbs │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── BreadcumbBG.gif │ │ │ │ ├── Breadcumbs.gif │ │ │ │ └── HomeIcon.gif │ │ │ ├── UICalendar │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ └── CalendarDecorator.gif │ │ │ ├── UIColorPicker │ │ │ └── Stylesheet.css │ │ │ ├── UIDescription │ │ │ └── Stylesheet.css │ │ │ ├── UIDropDownControl │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── DownNaviArrow.gif │ │ │ │ ├── DropDownControl.gif │ │ │ │ ├── DropDownItemSelectorBG1x2.gif │ │ │ │ └── UpNaviArrow.gif │ │ │ ├── UIForms │ │ │ ├── Stylesheet.css │ │ │ ├── UIForm │ │ │ │ └── Stylesheet.css │ │ │ ├── UIFormTabPane │ │ │ │ └── Stylesheet.css │ │ │ └── UIFormWithTitle │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ └── TitleBG1x20.gif │ │ │ ├── UIGrid │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ └── ThGridRepeatBg1x19.jpg │ │ │ ├── UIGroupInfoContainer │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ └── TitleBG1x20.gif │ │ │ ├── UIMaskWorkspace │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── MaskWorkspace.png │ │ │ │ ├── MiddleMaskWorkspace.png │ │ │ │ └── ThGridRepeatBg1x19.jpg │ │ │ ├── UIMouseActionBackground │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ └── MouseAction.gif │ │ │ ├── UINotification │ │ │ ├── Stylesheet.css │ │ │ └── images │ │ │ │ ├── Popup.gif │ │ │ │ ├── PopupML.gif │ │ │ │ ├── PopupMR.gif │ │ │ │ └── PopupTR.png │ │ │ ├── UIPageIterator │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ └── ArrowPageIterator.gif │ │ │ ├── UIPageSearch │ │ │ └── Stylesheet.css │ │ │ ├── UIPopup │ │ │ ├── Stylesheet.css │ │ │ ├── UIPopupCategory │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ └── PopupCategory.gif │ │ │ ├── UIPopupMenu │ │ │ │ └── Stylesheet.css │ │ │ ├── UIPopupMessage │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── ExoMessageDecorator.png │ │ │ │ │ ├── MessageTabBar.gif │ │ │ │ │ └── MiddleExoMessage.png │ │ │ ├── UIPopupWindow │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── BackIcon.gif │ │ │ │ │ ├── BottomPopup.png │ │ │ │ │ ├── CenterHorizontalTabs.gif │ │ │ │ │ ├── CenterMiddleWindow.gif │ │ │ │ │ ├── CloseIcon.gif │ │ │ │ │ ├── EdittedSaveIcon.gif │ │ │ │ │ ├── ExpandIcon.gif │ │ │ │ │ ├── GrayDownIcon.gif │ │ │ │ │ ├── MainBg.gif │ │ │ │ │ ├── MiddlePopup.png │ │ │ │ │ ├── MiddlePopupWindow.gif │ │ │ │ │ ├── MiddlePortalComposer.gif │ │ │ │ │ ├── PopupWindow.gif │ │ │ │ │ ├── PortalComposer.gif │ │ │ │ │ ├── ResizeBtn.gif │ │ │ │ │ ├── ResizeBtn.png │ │ │ │ │ ├── SaveIcon.gif │ │ │ │ │ ├── TopBg.gif │ │ │ │ │ ├── TopLeftBg.gif │ │ │ │ │ ├── TopPopup.png │ │ │ │ │ └── TopRightBg.gif │ │ │ ├── UIRightClickPopupMenu │ │ │ │ └── Stylesheet.css │ │ │ └── UIWindow │ │ │ │ └── Stylesheet.css │ │ │ ├── UIQuickHelp │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── BlueSquareBg.gif │ │ │ │ └── QuickHelp.gif │ │ │ ├── UISearch │ │ │ └── Stylesheet.css │ │ │ ├── UISelector │ │ │ ├── Stylesheet.css │ │ │ ├── UIFormInputThemeSelector │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ └── MiddleTonicBlue1x88.gif │ │ │ ├── UIGroupMembershipSelector │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ └── TitleBG1x20.gif │ │ │ ├── UIItemSelector │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── DashboardLayout.jpg │ │ │ │ │ ├── ItemList.jpg │ │ │ │ │ ├── ItemSelector.gif │ │ │ │ │ ├── ResponsiveTemplate.png │ │ │ │ │ ├── SelectedItem.gif │ │ │ │ │ ├── Social-rt.gif │ │ │ │ │ ├── Social.gif │ │ │ │ │ ├── SocialSelected-rt.gif │ │ │ │ │ ├── SocialSelected.gif │ │ │ │ │ └── TemplateContainer.jpg │ │ │ ├── UINodeIconSelector │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ └── IconsBoxBg100x65.gif │ │ │ ├── UIPermissionSelector │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── GrayLine2x2.gif │ │ │ │ │ └── TypeBarBG1x22.gif │ │ │ └── UIUserSelector │ │ │ │ └── Stylesheet.css │ │ │ ├── UITabSystem │ │ │ ├── Stylesheet.css │ │ │ ├── UITabPane │ │ │ │ └── Stylesheet.css │ │ │ ├── UITabSelector │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ └── TabSelector.gif │ │ │ ├── UITabs │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ │ ├── GrayTabStyle.gif │ │ │ │ │ ├── MessageTabDialog.gif │ │ │ │ │ ├── NormalTabStyle.gif │ │ │ │ │ ├── SelectTab.gif │ │ │ │ │ └── TabEditInline.gif │ │ │ └── UIVerticalSlideTabs │ │ │ │ ├── Stylesheet.css │ │ │ │ └── background │ │ │ │ ├── AplicationIcon.gif │ │ │ │ ├── BlueDownArrow.gif │ │ │ │ ├── BlueNextArrow.gif │ │ │ │ ├── BottomVTabSimpleStyle224x1.gif │ │ │ │ ├── H1.gif │ │ │ │ ├── PopupWindow.gif │ │ │ │ ├── VTabContentBG.gif │ │ │ │ ├── VTabStyle3.gif │ │ │ │ └── VTabStyle4.gif │ │ │ ├── UIToolbar │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── BlueLargeToolbar.gif │ │ │ │ ├── GrayLine2x2.gif │ │ │ │ ├── HeaderToolbar.gif │ │ │ │ ├── LargeToolbar.gif │ │ │ │ ├── LightToolbar.gif │ │ │ │ └── SeparateLine2x1.gif │ │ │ ├── UITree │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── Dotted.gif │ │ │ │ ├── NullItemIcon.gif │ │ │ │ ├── SmallGrayMinus.gif │ │ │ │ └── SmallGrayPlus.gif │ │ │ ├── UIUpload │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ │ ├── BlueBg1x14.gif │ │ │ │ ├── Delete18x18.gif │ │ │ │ ├── Round18x18.gif │ │ │ │ └── UpArrow16x16.gif │ │ │ └── UIWizard │ │ │ ├── Stylesheet.css │ │ │ └── background │ │ │ ├── WizardIcon.gif │ │ │ └── WizardStepBar.gif │ │ ├── Portlet │ │ └── Stylesheet.css │ │ ├── PortletThemes │ │ ├── Stylesheet.css │ │ ├── background │ │ │ ├── BGDecoratorCenter1x18.gif │ │ │ ├── DefaultTheme.png │ │ │ ├── MDefaultTheme.png │ │ │ ├── MMacBlack.png │ │ │ ├── MMacGray.png │ │ │ ├── MMacGreen.png │ │ │ ├── MMacTheme.png │ │ │ ├── MRoundConerBlue.png │ │ │ ├── MRoundConerGreen.png │ │ │ ├── MRoundConerOrange.png │ │ │ ├── MRoundConerPink.png │ │ │ ├── MRoundConerViolet.png │ │ │ ├── MShadowBlue.png │ │ │ ├── MShadowGreen.png │ │ │ ├── MShadowOrange.png │ │ │ ├── MShadowPink.png │ │ │ ├── MShadowViolet.png │ │ │ ├── MVistaBlue.png │ │ │ ├── MVistaTheme.png │ │ │ ├── MacBlack.png │ │ │ ├── MacGray.png │ │ │ ├── MacGreen.png │ │ │ ├── MacTheme.png │ │ │ ├── Resize17x19.png │ │ │ ├── ResizeArea17x15.png │ │ │ ├── ResizeArea18x18.gif │ │ │ ├── ResizeArea18x18.png │ │ │ ├── RoundConerGreen.png │ │ │ ├── RoundConerOrange.png │ │ │ ├── RoundConerPink.png │ │ │ ├── RoundConerViolet.png │ │ │ ├── RoundCornerBlue.png │ │ │ ├── ShadowBlue.png │ │ │ ├── ShadowGreen.png │ │ │ ├── ShadowOrange.png │ │ │ ├── ShadowPink.png │ │ │ ├── ShadowViolet.png │ │ │ ├── SimpleStyle.gif │ │ │ ├── VistaBlue.png │ │ │ └── VistaTheme.png │ │ └── icons │ │ │ └── SimpleIcons.gif │ │ ├── Stylesheet.css │ │ └── sharedImages │ │ ├── Blank.gif │ │ ├── BlueNextArrow.gif │ │ ├── CenterBottomWarning1x7.gif │ │ ├── CenterTopWarning1x58.gif │ │ ├── DashboardIcon.png │ │ ├── Debug1x32.gif │ │ ├── GroupIcon.png │ │ ├── Icon80x80 │ │ ├── AddPortlet.png │ │ ├── Calculator.png │ │ ├── ChangeLanguage.png │ │ ├── DateTime.png │ │ ├── DefaultPortlet.png │ │ ├── HidePortletsViewer.png │ │ ├── HideWidgetsViewer.png │ │ ├── NavigationIcon.png │ │ ├── ShowPortletsViewer.png │ │ ├── ShowWidgetsViewer.png │ │ ├── Signin.png │ │ └── Signout.png │ │ ├── LeftBottomWarning7x7.gif │ │ ├── LeftMiddleWarning7x1.gif │ │ ├── LeftTopWarning7x58.gif │ │ ├── RightBottomWarning7x7.gif │ │ ├── RightMiddleWarning7x1.gif │ │ ├── RightTopWarning7x58.gif │ │ └── WarningIcon.gif ├── pom.xml ├── portal │ ├── pom.xml │ └── src │ │ └── main │ │ ├── resources │ │ └── locale │ │ │ ├── navigation │ │ │ ├── group │ │ │ │ ├── organization │ │ │ │ │ └── management │ │ │ │ │ │ ├── executive-board_ar.xml │ │ │ │ │ │ ├── executive-board_cs.properties │ │ │ │ │ │ ├── executive-board_de.properties │ │ │ │ │ │ ├── executive-board_en.properties │ │ │ │ │ │ ├── executive-board_es.properties │ │ │ │ │ │ ├── executive-board_fr.properties │ │ │ │ │ │ ├── executive-board_it.properties │ │ │ │ │ │ ├── executive-board_ja.properties │ │ │ │ │ │ ├── executive-board_ko.xml │ │ │ │ │ │ ├── executive-board_ne.properties │ │ │ │ │ │ ├── executive-board_nl.properties │ │ │ │ │ │ ├── executive-board_pt_BR.properties │ │ │ │ │ │ ├── executive-board_ru.properties │ │ │ │ │ │ ├── executive-board_uk.properties │ │ │ │ │ │ ├── executive-board_vi.xml │ │ │ │ │ │ ├── executive-board_zh.xml │ │ │ │ │ │ └── executive-board_zh_TW.xml │ │ │ │ └── platform │ │ │ │ │ ├── administrators_ar.xml │ │ │ │ │ ├── administrators_cs.properties │ │ │ │ │ ├── administrators_de.properties │ │ │ │ │ ├── administrators_en.properties │ │ │ │ │ ├── administrators_es.properties │ │ │ │ │ ├── administrators_fr.properties │ │ │ │ │ ├── administrators_it.properties │ │ │ │ │ ├── administrators_ja.properties │ │ │ │ │ ├── administrators_ko.xml │ │ │ │ │ ├── administrators_ne.properties │ │ │ │ │ ├── administrators_nl.properties │ │ │ │ │ ├── administrators_pt_BR.properties │ │ │ │ │ ├── administrators_ru.properties │ │ │ │ │ ├── administrators_uk.properties │ │ │ │ │ ├── administrators_vi.xml │ │ │ │ │ ├── administrators_zh.xml │ │ │ │ │ ├── administrators_zh_TW.xml │ │ │ │ │ ├── guests_ar.xml │ │ │ │ │ ├── guests_cs.properties │ │ │ │ │ ├── guests_de.properties │ │ │ │ │ ├── guests_en.properties │ │ │ │ │ ├── guests_es.properties │ │ │ │ │ ├── guests_fr.properties │ │ │ │ │ ├── guests_it.properties │ │ │ │ │ ├── guests_ja.properties │ │ │ │ │ ├── guests_ko.xml │ │ │ │ │ ├── guests_ne.properties │ │ │ │ │ ├── guests_nl.properties │ │ │ │ │ ├── guests_pt_BR.properties │ │ │ │ │ ├── guests_ru.properties │ │ │ │ │ ├── guests_uk.properties │ │ │ │ │ ├── guests_vi.xml │ │ │ │ │ ├── guests_zh.xml │ │ │ │ │ ├── guests_zh_TW.xml │ │ │ │ │ ├── users_ar.xml │ │ │ │ │ ├── users_cs.properties │ │ │ │ │ ├── users_de.properties │ │ │ │ │ ├── users_en.properties │ │ │ │ │ ├── users_es.properties │ │ │ │ │ ├── users_fr.properties │ │ │ │ │ ├── users_it.properties │ │ │ │ │ ├── users_ja.properties │ │ │ │ │ ├── users_ko.xml │ │ │ │ │ ├── users_ne.properties │ │ │ │ │ ├── users_nl.properties │ │ │ │ │ ├── users_pt_BR.properties │ │ │ │ │ ├── users_ru.properties │ │ │ │ │ ├── users_uk.properties │ │ │ │ │ ├── users_vi.xml │ │ │ │ │ ├── users_zh.xml │ │ │ │ │ └── users_zh_TW.xml │ │ │ └── portal │ │ │ │ ├── classic_ar.xml │ │ │ │ ├── classic_cs.properties │ │ │ │ ├── classic_de.properties │ │ │ │ ├── classic_en.properties │ │ │ │ ├── classic_es.properties │ │ │ │ ├── classic_fr.properties │ │ │ │ ├── classic_it.properties │ │ │ │ ├── classic_ja.properties │ │ │ │ ├── classic_ko.xml │ │ │ │ ├── classic_ne.properties │ │ │ │ ├── classic_nl.properties │ │ │ │ ├── classic_pt_BR.properties │ │ │ │ ├── classic_ru.properties │ │ │ │ ├── classic_uk.properties │ │ │ │ ├── classic_vi.xml │ │ │ │ ├── classic_zh.xml │ │ │ │ └── classic_zh_TW.xml │ │ │ └── portal │ │ │ ├── custom_cs.properties │ │ │ ├── custom_en.properties │ │ │ ├── custom_it.properties │ │ │ ├── custom_ja.properties │ │ │ ├── custom_ko.xml │ │ │ ├── custom_ne.properties │ │ │ ├── custom_nl.properties │ │ │ ├── custom_pt_BR.properties │ │ │ ├── custom_zh.xml │ │ │ ├── custom_zh_TW.xml │ │ │ ├── expression_ar.xml │ │ │ ├── expression_cs.properties │ │ │ ├── expression_de.properties │ │ │ ├── expression_en.properties │ │ │ ├── expression_es.properties │ │ │ ├── expression_fr.properties │ │ │ ├── expression_it.properties │ │ │ ├── expression_it.xml │ │ │ ├── expression_ja.properties │ │ │ ├── expression_ko.xml │ │ │ ├── expression_ne.properties │ │ │ ├── expression_nl.properties │ │ │ ├── expression_pt_BR.properties │ │ │ ├── expression_ru.properties │ │ │ ├── expression_uk.properties │ │ │ ├── expression_vi.xml │ │ │ ├── expression_zh.xml │ │ │ ├── expression_zh_TW.xml │ │ │ ├── services_ar.xml │ │ │ ├── services_cs.properties │ │ │ ├── services_de.properties │ │ │ ├── services_en.xml │ │ │ ├── services_es.properties │ │ │ ├── services_fr.properties │ │ │ ├── services_it.properties │ │ │ ├── services_it.xml │ │ │ ├── services_ja.properties │ │ │ ├── services_ko.xml │ │ │ ├── services_ne.properties │ │ │ ├── services_nl.properties │ │ │ ├── services_pt_BR.properties │ │ │ ├── services_ru.properties │ │ │ ├── services_uk.properties │ │ │ ├── services_vi.xml │ │ │ ├── services_zh.xml │ │ │ ├── services_zh_TW.xml │ │ │ ├── webui_ar.xml │ │ │ ├── webui_cs.properties │ │ │ ├── webui_de.properties │ │ │ ├── webui_en.properties │ │ │ ├── webui_es.properties │ │ │ ├── webui_fr.properties │ │ │ ├── webui_it.properties │ │ │ ├── webui_ja.properties │ │ │ ├── webui_ko.xml │ │ │ ├── webui_ne.properties │ │ │ ├── webui_nl.properties │ │ │ ├── webui_pt_BR.properties │ │ │ ├── webui_ru.properties │ │ │ ├── webui_uk.properties │ │ │ ├── webui_vi.properties │ │ │ ├── webui_zh.xml │ │ │ └── webui_zh_TW.xml │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── classes │ │ │ ├── jgroups │ │ │ │ ├── gatein-tcp.xml │ │ │ │ └── gatein-udp.xml │ │ │ ├── picketlink-idm │ │ │ │ ├── mappings │ │ │ │ │ ├── HibernateIdentityObject.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectAttribute.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectAttributeBinaryValue.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredential.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredentialBinaryValue.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredentialType.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationship.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationshipName.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationshipType.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectType.hbm.xml │ │ │ │ │ └── HibernateRealm.hbm.xml │ │ │ │ ├── mssql-mappings │ │ │ │ │ ├── HibernateIdentityObject.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectAttribute.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectAttributeBinaryValue.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredential.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredentialBinaryValue.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredentialType.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationship.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationshipName.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationshipType.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectType.hbm.xml │ │ │ │ │ └── HibernateRealm.hbm.xml │ │ │ │ └── sybase-mappings │ │ │ │ │ ├── HibernateIdentityObject.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectAttribute.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectAttributeBinaryValue.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredential.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredentialBinaryValue.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectCredentialType.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationship.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationshipName.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectRelationshipType.hbm.xml │ │ │ │ │ ├── HibernateIdentityObjectType.hbm.xml │ │ │ │ │ └── HibernateRealm.hbm.xml │ │ │ └── sso │ │ │ │ ├── josso │ │ │ │ ├── 1.8 │ │ │ │ │ └── josso-agent-config.xml │ │ │ │ └── 2.2 │ │ │ │ │ └── josso-agent-config.xml │ │ │ │ └── saml │ │ │ │ ├── jbid_test_keystore.jks │ │ │ │ ├── picketlink-idp.xml │ │ │ │ └── picketlink-sp.xml │ │ ├── conf │ │ │ ├── admin │ │ │ │ └── admin-configuration.xml │ │ │ ├── api │ │ │ │ └── api-configuration.xml │ │ │ ├── common │ │ │ │ ├── autologin-configuration.xml │ │ │ │ ├── common-configuration.xml │ │ │ │ ├── encoder-configuration.xml │ │ │ │ ├── locales-config.xml │ │ │ │ ├── portlet-container-configuration.xml │ │ │ │ ├── remindpwd-configuration.xml │ │ │ │ ├── resource-compressor-configuration.xml │ │ │ │ └── security-configuration.xml │ │ │ ├── configuration.xml │ │ │ ├── infinispan │ │ │ │ ├── cluster │ │ │ │ │ └── config.xml │ │ │ │ └── local │ │ │ │ │ └── config.xml │ │ │ ├── jcr │ │ │ │ ├── infinispan │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── config_portal-system.xml │ │ │ │ │ │ ├── indexer-config.xml │ │ │ │ │ │ └── lock-config.xml │ │ │ │ │ └── local │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── config_portal-system.xml │ │ │ │ │ │ ├── indexer-config.xml │ │ │ │ │ │ └── lock-config.xml │ │ │ │ ├── jcr-configuration.xml │ │ │ │ ├── jcr-datasource-configuration.xml │ │ │ │ └── repository-configuration.xml │ │ │ ├── mail │ │ │ │ └── portal-mail-configuration.xml │ │ │ ├── organization │ │ │ │ ├── exo │ │ │ │ │ ├── activedirectory-configuration.xml │ │ │ │ │ ├── hibernate-configuration.xml │ │ │ │ │ ├── installCS-ActiveDirectory.txt │ │ │ │ │ ├── jdbc-configuration.xml │ │ │ │ │ └── ldap-configuration.xml │ │ │ │ ├── idm-configuration.xml │ │ │ │ ├── organization-configuration.xml │ │ │ │ └── picketlink-idm │ │ │ │ │ ├── examples │ │ │ │ │ ├── acme-openldap.ldif │ │ │ │ │ ├── acme.ldif │ │ │ │ │ ├── initial-openldap.ldif │ │ │ │ │ ├── picketlink-idm-ldap-acme-config.xml │ │ │ │ │ ├── picketlink-idm-ldap-config.xml │ │ │ │ │ ├── picketlink-idm-msad-config.xml │ │ │ │ │ ├── picketlink-idm-msad-readonly-config.xml │ │ │ │ │ ├── picketlink-idm-openldap-acme-config.xml │ │ │ │ │ └── picketlink-idm-openldap-config.xml │ │ │ │ │ ├── infinispan-cluster.xml │ │ │ │ │ ├── infinispan.xml │ │ │ │ │ └── picketlink-idm-config.xml │ │ │ ├── portal │ │ │ │ ├── application-registry-configuration.xml │ │ │ │ ├── controller-configuration.xml │ │ │ │ ├── gadget-configuration.xml │ │ │ │ ├── group │ │ │ │ │ ├── organization │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── executive-board │ │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ │ └── pages.xml │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── administrators │ │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ │ └── pages.xml │ │ │ │ │ │ ├── guests │ │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ │ └── pages.xml │ │ │ │ │ │ └── users │ │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ │ └── pages.xml │ │ │ │ │ └── template │ │ │ │ │ │ └── group │ │ │ │ │ │ └── group.xml │ │ │ │ ├── portal-configuration.xml │ │ │ │ ├── portal │ │ │ │ │ ├── classic │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ └── portal.xml │ │ │ │ │ ├── sharedlayout.xml │ │ │ │ │ └── template │ │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ └── portal.xml │ │ │ │ │ │ └── classic │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ └── portal.xml │ │ │ │ ├── redirect-configuration.xml │ │ │ │ ├── template │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── four-columns │ │ │ │ │ │ │ └── container.xml │ │ │ │ │ │ ├── one-column │ │ │ │ │ │ │ └── container.xml │ │ │ │ │ │ ├── three-columns │ │ │ │ │ │ │ └── container.xml │ │ │ │ │ │ └── two-columns │ │ │ │ │ │ │ └── container.xml │ │ │ │ │ └── pages │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── empty │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── one-row-two-columns │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── three-columns │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── three-rows-two-columns │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── three-rows │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── three-tabs │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── two-columns-one-row │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── two-columns │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ ├── two-rows │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ └── two-tabs │ │ │ │ │ │ └── page.xml │ │ │ │ ├── user │ │ │ │ │ ├── root │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ └── pages.xml │ │ │ │ │ └── template │ │ │ │ │ │ └── user │ │ │ │ │ │ ├── navigation.xml │ │ │ │ │ │ ├── pages.xml │ │ │ │ │ │ └── user.xml │ │ │ │ └── web-configuration.xml │ │ │ ├── sso │ │ │ │ ├── oauth-configuration.xml │ │ │ │ └── security-sso-configuration.xml │ │ │ └── uiconf │ │ │ │ ├── portal │ │ │ │ └── webui │ │ │ │ │ ├── container │ │ │ │ │ ├── ContainerConfigOption.groovy │ │ │ │ │ └── ContainerTemplateOption.groovy │ │ │ │ │ └── page │ │ │ │ │ ├── PageConfigOptions.groovy │ │ │ │ │ └── PageTemplate.groovy │ │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── IconSet16x16.groovy │ │ │ │ ├── IconSet16x16.xml │ │ │ │ ├── IconSet24x24.groovy │ │ │ │ ├── IconSet24x24.xml │ │ │ │ ├── IconSet32x32.groovy │ │ │ │ └── IconSet32x32.xml │ │ ├── context.xml │ │ ├── gatein-resources.xml │ │ ├── jboss-web.xml │ │ ├── jetty-web.xml │ │ ├── standalone-webui-configuration.xml │ │ ├── web.xml │ │ └── webui-configuration.xml │ │ ├── device │ │ ├── detection.jsp │ │ └── loading.gif │ │ ├── error │ │ ├── jsp │ │ │ └── login-error.jsp │ │ └── skin │ │ │ └── Stylesheet.css │ │ ├── favicon.ico │ │ ├── groovy │ │ ├── organization │ │ │ └── webui │ │ │ │ └── component │ │ │ │ ├── UIGroupMembershipSelector.gtmpl │ │ │ │ ├── UIGroupSelector.gtmpl │ │ │ │ ├── UIListPermissionSelector.gtmpl │ │ │ │ ├── UIPermissionSelector.gtmpl │ │ │ │ └── UIUserMembershipSelector.gtmpl │ │ ├── portal │ │ │ └── webui │ │ │ │ ├── UIForgetPasswordWizard.gtmpl │ │ │ │ ├── UILoginForm.gtmpl │ │ │ │ ├── UISocialLoginButtons.gtmpl │ │ │ │ ├── application │ │ │ │ ├── UIApplicationContainer.gtmpl │ │ │ │ ├── UIApplicationList.gtmpl │ │ │ │ ├── UIGadget.gtmpl │ │ │ │ ├── UIGroovyPortlet.gtmpl │ │ │ │ ├── UIPortlet.gtmpl │ │ │ │ ├── UIStandaloneAppContainer.gtmpl │ │ │ │ └── UIStandaloneGadget.gtmpl │ │ │ │ ├── container │ │ │ │ ├── UIColumnContainer.gtmpl │ │ │ │ ├── UIContainer.gtmpl │ │ │ │ ├── UIContainerList.gtmpl │ │ │ │ ├── UISwitchingContainer.gtmpl │ │ │ │ ├── UITabContainer.gtmpl │ │ │ │ ├── UITableAutofitColumnContainer.gtmpl │ │ │ │ ├── UITableColumnContainer.gtmpl │ │ │ │ └── UIToolbarContainer.gtmpl │ │ │ │ ├── navigation │ │ │ │ ├── UIAddGroupNavigation.gtmpl │ │ │ │ ├── UIGroupGrid.gtmpl │ │ │ │ ├── UINavigationNodeSelector.gtmpl │ │ │ │ └── UIPageNodeSelector.gtmpl │ │ │ │ ├── page │ │ │ │ ├── UIPage.gtmpl │ │ │ │ ├── UIPageBody.gtmpl │ │ │ │ ├── UIPageBrowser.gtmpl │ │ │ │ ├── UIPagePreview.gtmpl │ │ │ │ ├── UIPageSearchForm.gtmpl │ │ │ │ ├── UIPageSelector.gtmpl │ │ │ │ ├── UIPageTemplateOptions.gtmpl │ │ │ │ ├── UISiteBody.gtmpl │ │ │ │ ├── UIWizardPageSelectLayoutForm.gtmpl │ │ │ │ └── UIWizardPageSetInfo.gtmpl │ │ │ │ ├── portal │ │ │ │ ├── UIAccountSettingForm.gtmpl │ │ │ │ ├── UIAccountSocial.gtmpl │ │ │ │ ├── UILanguageSelector.gtmpl │ │ │ │ ├── UIPortal.gtmpl │ │ │ │ ├── UIPortalComposer.gtmpl │ │ │ │ ├── UIPortalComposerContent.gtmpl │ │ │ │ ├── UIPortletForm.gtmpl │ │ │ │ ├── UIRegisterOAuthForm.gtmpl │ │ │ │ └── UISkinSelector.gtmpl │ │ │ │ └── workspace │ │ │ │ ├── UIMaskWorkspace.gtmpl │ │ │ │ ├── UIPortalApplication.gtmpl │ │ │ │ ├── UIPortalApplicationChildren.gtmpl │ │ │ │ ├── UIPortalToolPanel.gtmpl │ │ │ │ ├── UIStandaloneApplication.gtmpl │ │ │ │ ├── UIStandaloneApplicationChildren.gtmpl │ │ │ │ └── UIWorkingWorkspace.gtmpl │ │ └── webui │ │ │ ├── core │ │ │ ├── UIBreadcumbs.gtmpl │ │ │ ├── UIConfirmation.gtmpl │ │ │ ├── UIDropDownControl.gtmpl │ │ │ ├── UIGrid.gtmpl │ │ │ ├── UIItemSelector.gtmpl │ │ │ ├── UILazyTabPane.gtmpl │ │ │ ├── UIPageIterator.gtmpl │ │ │ ├── UIPopupMessages.gtmpl │ │ │ ├── UIPopupWindow.gtmpl │ │ │ ├── UIRepeater.gtmpl │ │ │ ├── UIRightClickPopupMenu.gtmpl │ │ │ ├── UISitemap.gtmpl │ │ │ ├── UISitemapTree.gtmpl │ │ │ ├── UITabPane.gtmpl │ │ │ ├── UITabPaneWithHelp.gtmpl │ │ │ ├── UITabPane_New.gtmpl │ │ │ ├── UITabSelector.gtmpl │ │ │ ├── UIToolbar.gtmpl │ │ │ ├── UITree.gtmpl │ │ │ ├── UIVirtualList.gtmpl │ │ │ └── UIWizard.gtmpl │ │ │ ├── form │ │ │ ├── UIForm.gtmpl │ │ │ ├── UIFormInputIconSelector.gtmpl │ │ │ ├── UIFormInputItemSelector.gtmpl │ │ │ ├── UIFormInputThemeSelector.gtmpl │ │ │ ├── UIFormTabPane.gtmpl │ │ │ ├── UIFormTableInputSet.gtmpl │ │ │ ├── UIFormUploadInput.gtmpl │ │ │ ├── UIFormWithTitle.gtmpl │ │ │ ├── UIItemThemeSelector.gtmpl │ │ │ ├── UISearchForm.gtmpl │ │ │ ├── UIUploadInput.gtmpl │ │ │ ├── UIVTabInputSet.gtmpl │ │ │ └── ext │ │ │ │ └── UIFormInputSetWithAction.gtmpl │ │ │ └── organization │ │ │ ├── account │ │ │ ├── UIGroupSelector.gtmpl │ │ │ └── UIUserSelector.gtmpl │ │ │ └── i18n │ │ │ └── UII18N.gtmpl │ │ ├── login │ │ ├── jsp │ │ │ ├── disabled.jsp │ │ │ ├── keepalive.jsp │ │ │ └── login.jsp │ │ └── skin │ │ │ └── Stylesheet.css │ │ ├── setup │ │ ├── css │ │ │ ├── default.css │ │ │ ├── enchanced.css │ │ │ └── ie8.css │ │ ├── images │ │ │ ├── icon-close.png │ │ │ └── uiportal-background.jpg │ │ └── jsp │ │ │ └── setup.jsp │ │ ├── templates │ │ ├── groovy │ │ │ └── webui │ │ │ │ └── component │ │ │ │ └── UIHomePagePortlet.gtmpl │ │ └── skin │ │ │ └── webui │ │ │ └── component │ │ │ └── UIHomePagePortlet │ │ │ ├── DefaultSkin │ │ │ └── background │ │ │ │ ├── BgRepeat.gif │ │ │ │ ├── BgRightColumn.gif │ │ │ │ ├── HomePagePortlet.gif │ │ │ │ ├── Line.gif │ │ │ │ ├── background-ltr.jpg │ │ │ │ └── background-rtl.jpg │ │ │ └── DefaultStylesheet.css │ │ └── welcome.jsp ├── redirect │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── gatein │ │ │ └── web │ │ │ └── redirect │ │ │ ├── Mapper.java │ │ │ ├── RedirectCookieService.java │ │ │ ├── RedirectRequestHandler.java │ │ │ ├── Redirector.java │ │ │ ├── api │ │ │ ├── RedirectHandler.java │ │ │ ├── RedirectKey.java │ │ │ ├── RedirectType.java │ │ │ └── SiteRedirectService.java │ │ │ └── implementation │ │ │ ├── RedirectHandlerImpl.java │ │ │ └── SiteRedirectServiceImpl.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── gatein │ │ │ └── web │ │ │ └── redirect │ │ │ ├── PortalRedirectsFactory.java │ │ │ ├── TestConfig.java │ │ │ ├── TestMapper.java │ │ │ ├── TestRedirect.java │ │ │ └── TestRedirector.java │ │ └── resources │ │ ├── conf │ │ ├── exo.portal.component.portal-configuration.xml │ │ └── test-mop-nodetypes.xml │ │ └── org │ │ └── exoplatform │ │ └── portal │ │ └── config │ │ ├── TestMappings-configuration.xml │ │ ├── TestRedirects-configuration.xml │ │ ├── testMappings-conf │ │ └── portal │ │ │ ├── emptyredirects │ │ │ └── portal.xml │ │ │ ├── noredirects │ │ │ └── portal.xml │ │ │ ├── origin │ │ │ ├── navigation.xml │ │ │ ├── pages.xml │ │ │ └── portal.xml │ │ │ ├── redirectA │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectB │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectC │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectD │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectE │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectF │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectG │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectH │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ ├── redirectI │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ │ └── redirectJ │ │ │ ├── navigation.xml │ │ │ └── portal.xml │ │ └── testRedirects-conf │ │ └── portal │ │ ├── devicePropertyRedirect │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── emptyConditions │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── noRedirects │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── origin │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── simpleDevicePropertyRedirect │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── simpleUserAgentRedirect │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── simpleUserAgentRedirectDisabled │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── userAgentRedirect │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ ├── userAgentRedirectAll │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml │ │ └── userAgentRedirectAllDisabled │ │ ├── navigation.xml │ │ ├── pages.xml │ │ └── portal.xml └── rest │ ├── pom.xml │ └── src │ └── main │ └── webapp │ ├── META-INF │ └── context.xml │ └── WEB-INF │ ├── jboss-web.xml │ └── web.xml ├── webui ├── core │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── webui │ │ │ │ ├── application │ │ │ │ └── MonitorApplicationLifecycle.java │ │ │ │ ├── bean │ │ │ │ ├── BeanDataMapping.java │ │ │ │ └── ReflectionDataMapping.java │ │ │ │ ├── core │ │ │ │ ├── UIBreadcumbs.java │ │ │ │ ├── UIConfirmation.java │ │ │ │ ├── UIDropDownControl.java │ │ │ │ ├── UIGrid.java │ │ │ │ ├── UIItemSelector.java │ │ │ │ ├── UILazyTabPane.java │ │ │ │ ├── UIPageIterator.java │ │ │ │ ├── UIPopupComponent.java │ │ │ │ ├── UIPopupContainer.java │ │ │ │ ├── UIRepeater.java │ │ │ │ ├── UIRightClickPopupMenu.java │ │ │ │ ├── UISearch.java │ │ │ │ ├── UITabPane.java │ │ │ │ ├── UIToolbar.java │ │ │ │ ├── UITree.java │ │ │ │ ├── UIVirtualList.java │ │ │ │ ├── UIWizard.java │ │ │ │ ├── lifecycle │ │ │ │ │ └── UIFormLifecycle.java │ │ │ │ └── model │ │ │ │ │ ├── SelectItem.java │ │ │ │ │ ├── SelectItemCategory.java │ │ │ │ │ ├── SelectItemOption.java │ │ │ │ │ ├── SelectOption.java │ │ │ │ │ └── SelectOptionGroup.java │ │ │ │ ├── event │ │ │ │ └── ConsoleEventMonitorListener.java │ │ │ │ └── form │ │ │ │ ├── UIForm.java │ │ │ │ ├── UIFormCheckBoxInput.java │ │ │ │ ├── UIFormDateTimeInput.java │ │ │ │ ├── UIFormGrid.java │ │ │ │ ├── UIFormHiddenInput.java │ │ │ │ ├── UIFormInput.java │ │ │ │ ├── UIFormInputBase.java │ │ │ │ ├── UIFormInputContainer.java │ │ │ │ ├── UIFormInputIconSelector.java │ │ │ │ ├── UIFormInputInfo.java │ │ │ │ ├── UIFormInputItemSelector.java │ │ │ │ ├── UIFormInputSet.java │ │ │ │ ├── UIFormInputWithActions.java │ │ │ │ ├── UIFormMultiValueInputSet.java │ │ │ │ ├── UIFormPageIterator.java │ │ │ │ ├── UIFormPopupWindow.java │ │ │ │ ├── UIFormRadioBoxInput.java │ │ │ │ ├── UIFormSelectBox.java │ │ │ │ ├── UIFormSelectBoxWithGroups.java │ │ │ │ ├── UIFormStringInput.java │ │ │ │ ├── UIFormTabPane.java │ │ │ │ ├── UIFormTableInputSet.java │ │ │ │ ├── UIFormTextAreaInput.java │ │ │ │ ├── UIFormUploadInput.java │ │ │ │ ├── UISearchForm.java │ │ │ │ ├── ext │ │ │ │ ├── UIFormColorPicker.java │ │ │ │ ├── UIFormComboBox.java │ │ │ │ └── UIFormInputSetWithAction.java │ │ │ │ ├── input │ │ │ │ ├── UICheckBoxInput.java │ │ │ │ └── UIUploadInput.java │ │ │ │ ├── validator │ │ │ │ ├── AbstractValidator.java │ │ │ │ ├── ConfigurableIdentifierValidator.java │ │ │ │ ├── DateTimeValidator.java │ │ │ │ ├── EmailAddressValidator.java │ │ │ │ ├── ExpressionValidator.java │ │ │ │ ├── IdentifierValidator.java │ │ │ │ ├── MandatoryValidator.java │ │ │ │ ├── MultipleConditionsValidator.java │ │ │ │ ├── NameValidator.java │ │ │ │ ├── NaturalLanguageValidator.java │ │ │ │ ├── NotHTMLTagValidator.java │ │ │ │ ├── NullFieldValidator.java │ │ │ │ ├── NumberFormatValidator.java │ │ │ │ ├── NumberRangeValidator.java │ │ │ │ ├── PasswordPolicyValidator.java │ │ │ │ ├── PasswordStringLengthValidator.java │ │ │ │ ├── PermissionValidaror.java │ │ │ │ ├── PersonalNameValidator.java │ │ │ │ ├── PositiveNumberFormatValidator.java │ │ │ │ ├── ResourceValidator.java │ │ │ │ ├── SpecialCharacterValidator.java │ │ │ │ ├── StringLengthValidator.java │ │ │ │ ├── URLValidator.java │ │ │ │ ├── UserConfigurableValidator.java │ │ │ │ ├── UsernameValidator.java │ │ │ │ └── Validator.java │ │ │ │ └── wysiwyg │ │ │ │ ├── FCKEditor.java │ │ │ │ ├── FCKEditorConfig.java │ │ │ │ ├── UIFormWYSIWYGInput.java │ │ │ │ └── XHtmlTagTool.java │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── webui │ │ │ │ ├── binding │ │ │ │ ├── TestBindingInputSet.java │ │ │ │ └── UIMockInputSet.java │ │ │ │ └── test │ │ │ │ ├── MockApplication.java │ │ │ │ ├── MockStateManager.java │ │ │ │ ├── TestApplication.java │ │ │ │ ├── UIComponentAnnotation.java │ │ │ │ ├── UILifecycle.java │ │ │ │ └── validator │ │ │ │ ├── MockRequestContext.java │ │ │ │ └── TestWebuiValidator.java │ │ │ └── resources │ │ │ ├── conf │ │ │ ├── configuration.properties │ │ │ └── portal │ │ │ │ └── test-configuration.xml │ │ │ └── webui-configuration.xml │ └── transaction.log ├── dashboard │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── dashboard │ │ │ └── webui │ │ │ └── component │ │ │ ├── DashboardParent.java │ │ │ ├── UIAddGadgetForm.java │ │ │ ├── UIDashboard.java │ │ │ ├── UIDashboardContainer.java │ │ │ ├── UIDashboardEditForm.java │ │ │ └── UIDashboardSelectContainer.java │ │ └── resources │ │ ├── conf │ │ └── uiconf │ │ │ └── dashboard │ │ │ └── webui │ │ │ └── container │ │ │ └── ContainerConfig.groovy │ │ └── groovy │ │ └── dashboard │ │ └── webui │ │ └── component │ │ ├── UIAddGadgetForm.gtmpl │ │ ├── UIColumnContainer.gtmpl │ │ ├── UIContainer.gtmpl │ │ ├── UIDashboard.gtmpl │ │ ├── UIDashboardContainer.gtmpl │ │ └── UIDashboardSelectContainer.gtmpl ├── eXo │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── exoplatform │ │ └── webui │ │ └── organization │ │ ├── AccessGroupListAccess.java │ │ ├── MembershipListAccess.java │ │ ├── OrganizationUtils.java │ │ ├── UIAccountForm.java │ │ ├── UIAccountInputSet.java │ │ ├── UIGroup.java │ │ ├── UIGroupMembershipSelector.java │ │ ├── UIGroupSelector.java │ │ ├── UIListPermissionSelector.java │ │ ├── UIPermissionSelector.java │ │ ├── UISelector.java │ │ ├── UIUserMembershipSelector.java │ │ ├── UIUserProfileInputSet.java │ │ └── account │ │ ├── UIAccountTemplateConfigOption.java │ │ ├── UIGroupSelector.java │ │ └── UIUserSelector.java ├── framework │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── webui │ │ │ │ ├── CSRFTokenUtil.java │ │ │ │ ├── Util.java │ │ │ │ ├── application │ │ │ │ ├── ConfigurationManager.java │ │ │ │ ├── StateManager.java │ │ │ │ ├── WebuiApplication.java │ │ │ │ └── WebuiRequestContext.java │ │ │ │ ├── config │ │ │ │ ├── Application.java │ │ │ │ ├── Component.java │ │ │ │ ├── ComponentConfigConverter.java │ │ │ │ ├── ComponentHandle.java │ │ │ │ ├── Event.java │ │ │ │ ├── EventInterceptor.java │ │ │ │ ├── InitParams.java │ │ │ │ ├── Param.java │ │ │ │ ├── Validator.java │ │ │ │ ├── WebuiConfiguration.java │ │ │ │ ├── annotation │ │ │ │ │ ├── ComponentConfig.java │ │ │ │ │ ├── ComponentConfigs.java │ │ │ │ │ ├── EventConfig.java │ │ │ │ │ ├── EventInterceptorConfig.java │ │ │ │ │ ├── ParamConfig.java │ │ │ │ │ └── ValidatorConfig.java │ │ │ │ └── metadata │ │ │ │ │ └── ComponentMetaData.java │ │ │ │ ├── core │ │ │ │ ├── UIApplication.java │ │ │ │ ├── UIComponent.java │ │ │ │ ├── UIComponentDecorator.java │ │ │ │ ├── UIContainer.java │ │ │ │ ├── UIPopupMessages.java │ │ │ │ ├── UIPopupWindow.java │ │ │ │ └── lifecycle │ │ │ │ │ ├── Lifecycle.java │ │ │ │ │ ├── UIContainerLifecycle.java │ │ │ │ │ └── WebuiBindingContext.java │ │ │ │ ├── event │ │ │ │ ├── Event.java │ │ │ │ ├── EventListener.java │ │ │ │ └── MonitorEvent.java │ │ │ │ ├── exception │ │ │ │ └── MessageException.java │ │ │ │ └── url │ │ │ │ └── ComponentURL.java │ │ └── resources │ │ │ └── binding.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── exoplatform │ │ └── webui │ │ └── core │ │ ├── MockUIComponent.java │ │ └── TestUIContainer.java ├── pom.xml ├── portal │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── exoplatform │ │ │ │ └── portal │ │ │ │ ├── account │ │ │ │ ├── UIAccountChangePass.java │ │ │ │ ├── UIAccountProfiles.java │ │ │ │ ├── UIAccountSetting.java │ │ │ │ └── UIAccountSocial.java │ │ │ │ ├── application │ │ │ │ ├── ApplicationMonitoringFilter.java │ │ │ │ ├── ApplicationStatistic.java │ │ │ │ ├── ApplicationStatisticService.java │ │ │ │ ├── DefaultRequestHandler.java │ │ │ │ ├── LegacyRequestHandler.java │ │ │ │ ├── PortalApplication.java │ │ │ │ ├── PortalApplicationFactory.java │ │ │ │ ├── PortalController.java │ │ │ │ ├── PortalLogoutLifecycle.java │ │ │ │ ├── PortalRequestContext.java │ │ │ │ ├── PortalRequestHandler.java │ │ │ │ ├── PortalRequestImpl.java │ │ │ │ ├── PortalSessionListener.java │ │ │ │ ├── PortalStateManager.java │ │ │ │ ├── PortalStatistic.java │ │ │ │ ├── PortalStatisticLifecycle.java │ │ │ │ ├── PortalStatisticService.java │ │ │ │ ├── PortalURLBuilder.java │ │ │ │ ├── RequestNavigationData.java │ │ │ │ ├── StandaloneAppRequestContext.java │ │ │ │ ├── StandaloneAppRequestHandler.java │ │ │ │ ├── StandaloneAppStateManager.java │ │ │ │ ├── StandaloneApplication.java │ │ │ │ ├── StandaloneApplicationFactory.java │ │ │ │ ├── StaticResourceRequestHandler.java │ │ │ │ ├── UserProfileLifecycle.java │ │ │ │ ├── UserSiteLifeCycle.java │ │ │ │ ├── localization │ │ │ │ │ ├── DefaultLocalePolicyService.java │ │ │ │ │ ├── HttpRequestWrapper.java │ │ │ │ │ ├── LocalizationFilter.java │ │ │ │ │ ├── LocalizationLifecycle.java │ │ │ │ │ └── NoBrowserLocalePolicyService.java │ │ │ │ ├── oauth │ │ │ │ │ ├── OAuthLifecycle.java │ │ │ │ │ ├── OAuthProviderAccessorImpl.java │ │ │ │ │ └── OAuthProviderImpl.java │ │ │ │ ├── replication │ │ │ │ │ ├── ApplicationState.java │ │ │ │ │ ├── SerializationContextSingleton.java │ │ │ │ │ └── UIComponentFactory.java │ │ │ │ └── state │ │ │ │ │ ├── AbstractContextualPropertyProviderPlugin.java │ │ │ │ │ ├── ContextualPropertyManager.java │ │ │ │ │ ├── ContextualPropertyManagerImpl.java │ │ │ │ │ ├── InternalPropertiesPlugin.java │ │ │ │ │ └── PublicPropertiesPlugin.java │ │ │ │ ├── url │ │ │ │ ├── PortalURLContext.java │ │ │ │ ├── StandaloneAppURLContext.java │ │ │ │ └── component │ │ │ │ │ └── ComponentURLFactoryPlugin.java │ │ │ │ └── webui │ │ │ │ ├── CaptchaValidator.java │ │ │ │ ├── UIManagement.java │ │ │ │ ├── application │ │ │ │ ├── EventsWrapper.java │ │ │ │ ├── ExoPortletInstanceContext.java │ │ │ │ ├── ExoPortletInvocationContext.java │ │ │ │ ├── ExoServerContext.java │ │ │ │ ├── ExoUserContext.java │ │ │ │ ├── ExoWindowContext.java │ │ │ │ ├── GadgetUtil.java │ │ │ │ ├── ModelAdapter.java │ │ │ │ ├── PortletState.java │ │ │ │ ├── UIApplication.java │ │ │ │ ├── UIFormInputThemeSelector.java │ │ │ │ ├── UIGadget.java │ │ │ │ ├── UIGroovyPortlet.java │ │ │ │ ├── UIItemThemeSelector.java │ │ │ │ ├── UIPortlet.java │ │ │ │ ├── UIPortletActionListener.java │ │ │ │ ├── UIPortletForm.java │ │ │ │ ├── UIPortletLifecycle.java │ │ │ │ ├── UIStandaloneAppContainer.java │ │ │ │ └── UIStandaloneGadget.java │ │ │ │ ├── container │ │ │ │ ├── DefaultUIContainerFactory.java │ │ │ │ ├── UIColumnContainer.java │ │ │ │ ├── UIComponentFactory.java │ │ │ │ ├── UIContainer.java │ │ │ │ ├── UIContainerActionListener.java │ │ │ │ ├── UIContainerForm.java │ │ │ │ └── UITabContainer.java │ │ │ │ ├── javascript │ │ │ │ └── JavascriptServlet.java │ │ │ │ ├── login │ │ │ │ ├── UIChangePassword.java │ │ │ │ ├── UIForgetPassword.java │ │ │ │ ├── UIForgetPasswordWizard.java │ │ │ │ ├── UILogin.java │ │ │ │ ├── UILoginForm.java │ │ │ │ ├── UIResetPassword.java │ │ │ │ └── UISocialLoginButtons.java │ │ │ │ ├── navigation │ │ │ │ ├── TreeNode.java │ │ │ │ ├── UIAddGroupNavigation.java │ │ │ │ ├── UIPageNavigationForm.java │ │ │ │ ├── UIPageNodeSelector.java │ │ │ │ └── UIPortalNavigation.java │ │ │ │ ├── page │ │ │ │ ├── BaseUIPageFactory.java │ │ │ │ ├── PageIterator.java │ │ │ │ ├── PageModel.java │ │ │ │ ├── UIPage.java │ │ │ │ ├── UIPageActionListener.java │ │ │ │ ├── UIPageBody.java │ │ │ │ ├── UIPageBrowser.java │ │ │ │ ├── UIPageCreationWizard.java │ │ │ │ ├── UIPageFactory.java │ │ │ │ ├── UIPageForm.java │ │ │ │ ├── UIPageLifecycle.java │ │ │ │ ├── UIPagePreview.java │ │ │ │ ├── UIPageSearchForm.java │ │ │ │ ├── UIPageSelector.java │ │ │ │ ├── UIPageTemplateOptions.java │ │ │ │ ├── UIPageWizard.java │ │ │ │ ├── UISiteBody.java │ │ │ │ ├── UIWizardPageSelectLayoutForm.java │ │ │ │ └── UIWizardPageSetInfo.java │ │ │ │ ├── portal │ │ │ │ ├── PageNodeEvent.java │ │ │ │ ├── UIApplicationList.java │ │ │ │ ├── UIContainerList.java │ │ │ │ ├── UILanguageSelector.java │ │ │ │ ├── UIPortal.java │ │ │ │ ├── UIPortalActionListener.java │ │ │ │ ├── UIPortalComponent.java │ │ │ │ ├── UIPortalComponentActionListener.java │ │ │ │ ├── UIPortalComposer.java │ │ │ │ ├── UIPortalForm.java │ │ │ │ ├── UIPortalLifecycle.java │ │ │ │ ├── UISharedLayout.java │ │ │ │ └── UISkinSelector.java │ │ │ │ ├── register │ │ │ │ ├── UICaptcha.java │ │ │ │ ├── UIRegisterEditMode.java │ │ │ │ ├── UIRegisterForm.java │ │ │ │ ├── UIRegisterInputSet.java │ │ │ │ ├── UIRegisterOAuth.java │ │ │ │ └── UISocialRegisterButtons.java │ │ │ │ ├── util │ │ │ │ ├── PortalDataMapper.java │ │ │ │ ├── ToolbarUtils.java │ │ │ │ └── Util.java │ │ │ │ └── workspace │ │ │ │ ├── UIEditInlineWorkspace.java │ │ │ │ ├── UIMainActionListener.java │ │ │ │ ├── UIMaskWorkspace.java │ │ │ │ ├── UIPortalApplication.java │ │ │ │ ├── UIPortalApplicationLifecycle.java │ │ │ │ ├── UIPortalToolPanel.java │ │ │ │ ├── UIStandaloneApplication.java │ │ │ │ ├── UIStandaloneApplicationLifecycle.java │ │ │ │ └── UIWorkingWorkspace.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── org.exoplatform.portal.webui.container.UIComponentFactory │ │ │ └── org.exoplatform.portal.webui.page.UIPageFactory │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── exoplatform │ │ │ └── portal │ │ │ ├── application │ │ │ └── PortalRequestHandlerTest.java │ │ │ └── webui │ │ │ ├── page │ │ │ └── UIPageActionListenerTest.java │ │ │ └── test │ │ │ ├── ComponentConfigConcurrentTest.java │ │ │ ├── MockApplication.java │ │ │ └── MockStateManager.java │ │ └── resources │ │ ├── conf │ │ └── portal │ │ │ └── test-configuration.xml │ │ └── webui-configuration.xml └── portlet │ ├── pom.xml │ └── src │ └── main │ └── java │ └── org │ └── exoplatform │ └── webui │ ├── application │ └── portlet │ │ ├── ParentAppStateManager.java │ │ ├── PortletApplication.java │ │ ├── PortletApplicationController.java │ │ ├── PortletApplicationFactory.java │ │ ├── PortletApplicationLifecycle.java │ │ ├── PortletRequestContext.java │ │ └── PortletURLBuilder.java │ └── core │ ├── UIPortletApplication.java │ └── lifecycle │ └── UIApplicationLifecycle.java └── wsrp-integration ├── extension-component ├── pkg-jbossas7 ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── gatein │ │ │ └── integration │ │ │ └── wsrp │ │ │ ├── SessionEventListenerAndBroadcaster.java │ │ │ ├── WSRPContainerLifecyclePlugin.java │ │ │ ├── WSRPServiceIntegration.java │ │ │ ├── jcr │ │ │ └── JCRPersister.java │ │ │ ├── plugins │ │ │ └── AS7Plugins.java │ │ │ ├── structure │ │ │ ├── MOPConsumerStructureProvider.java │ │ │ ├── MOPPortalStructureAccess.java │ │ │ └── PortalStructureAccess.java │ │ │ └── wss │ │ │ ├── CXFWSServiceIntegration.java │ │ │ └── ConversationStateCredentialsAccessor.java │ └── resources │ │ └── conf │ │ ├── wsrp-consumers-config.xml │ │ └── wsrp-producer-config.xml │ └── test │ └── java │ └── org │ └── gatein │ └── integration │ └── wsrp │ └── structure │ └── MOPConsumerStructureProviderTestCase.java ├── extension-config ├── pom.xml └── src │ └── main │ └── resources │ └── conf │ └── configuration.xml ├── extension-ear ├── pom.xml └── src │ └── main │ └── application │ └── META-INF │ ├── gatein-wsse-consumer.xml │ └── jboss-scanning.xml ├── extension-war ├── pom.xml └── src │ └── main │ └── webapp │ └── WEB-INF │ ├── conf │ ├── configuration.xml │ └── wsrp │ │ ├── jcr-configuration.xml │ │ ├── portal │ │ └── group │ │ │ └── platform │ │ │ └── administrators │ │ │ ├── navigation.xml │ │ │ └── pages.xml │ │ ├── repository-configuration.xml │ │ └── wsrp-configuration.xml │ └── web.xml └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/.gitignore -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/README.txt -------------------------------------------------------------------------------- /Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/Release_Notes.html -------------------------------------------------------------------------------- /cdi/contexts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/cdi/contexts/pom.xml -------------------------------------------------------------------------------- /cdi/contexts/src/main/resources/META-INF/services/javax.enterprise.inject.spi.Extension: -------------------------------------------------------------------------------- 1 | org.gatein.cdi.CDIPortletContextExtension 2 | -------------------------------------------------------------------------------- /cdi/injection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/cdi/injection/pom.xml -------------------------------------------------------------------------------- /cdi/injection/src/main/java/org/gatein/cdi/CDIInjectionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/cdi/injection/src/main/java/org/gatein/cdi/CDIInjectionListener.java -------------------------------------------------------------------------------- /cdi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/cdi/pom.xml -------------------------------------------------------------------------------- /component/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/pom.xml -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/BasicPortalRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/BasicPortalRequest.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/Comparators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/Comparators.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/PortalImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/PortalImpl.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/Util.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/management/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/management/Utils.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/navigation/ApiNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/navigation/ApiNode.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/navigation/ApiNodeModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/navigation/ApiNodeModel.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/oauth/AccessTokenImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/oauth/AccessTokenImpl.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/page/PageImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/page/PageImpl.java -------------------------------------------------------------------------------- /component/api/src/main/java/org/gatein/api/site/SiteImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/java/org/gatein/api/site/SiteImpl.java -------------------------------------------------------------------------------- /component/api/src/main/resources/conf/portal/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/main/resources/conf/portal/configuration.xml -------------------------------------------------------------------------------- /component/api/src/test/java/org/gatein/api/AbstractApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/test/java/org/gatein/api/AbstractApiTest.java -------------------------------------------------------------------------------- /component/api/src/test/java/org/gatein/api/Assert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/test/java/org/gatein/api/Assert.java -------------------------------------------------------------------------------- /component/api/src/test/java/org/gatein/api/OAuthProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/test/java/org/gatein/api/OAuthProviderTest.java -------------------------------------------------------------------------------- /component/api/src/test/java/org/gatein/api/PortalImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/test/java/org/gatein/api/PortalImplTest.java -------------------------------------------------------------------------------- /component/api/src/test/java/org/gatein/api/SerializationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/test/java/org/gatein/api/SerializationUtils.java -------------------------------------------------------------------------------- /component/api/src/test/java/org/gatein/api/navigation/ApiNodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/test/java/org/gatein/api/navigation/ApiNodeTest.java -------------------------------------------------------------------------------- /component/api/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/api/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /component/application-registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/application-registry/pom.xml -------------------------------------------------------------------------------- /component/application-registry/src/main/java/gadgets_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/application-registry/src/main/java/gadgets_1_0.xsd -------------------------------------------------------------------------------- /component/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/pom.xml -------------------------------------------------------------------------------- /component/common/src/main/java/conf/configuration-jboss.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/conf/configuration-jboss.properties -------------------------------------------------------------------------------- /component/common/src/main/java/conf/configuration-jetty.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/conf/configuration-jetty.properties -------------------------------------------------------------------------------- /component/common/src/main/java/conf/configuration-tomcat.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/conf/configuration-tomcat.properties -------------------------------------------------------------------------------- /component/common/src/main/java/conf/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/conf/configuration.xml -------------------------------------------------------------------------------- /component/common/src/main/java/org/exoplatform/commons/utils/I18N.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/org/exoplatform/commons/utils/I18N.java -------------------------------------------------------------------------------- /component/common/src/main/java/org/exoplatform/commons/utils/Safe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/org/exoplatform/commons/utils/Safe.java -------------------------------------------------------------------------------- /component/common/src/main/java/org/exoplatform/commons/utils/Text.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/org/exoplatform/commons/utils/Text.java -------------------------------------------------------------------------------- /component/common/src/main/java/org/exoplatform/util/ReflectionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/org/exoplatform/util/ReflectionUtil.java -------------------------------------------------------------------------------- /component/common/src/main/java/org/gatein/version/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/common/src/main/java/org/gatein/version/Version.java -------------------------------------------------------------------------------- /component/common/src/test/resources/org/exoplatform/resolver/foo.gtmpl: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /component/common/src/test/resources/org/gatein/common/classloader/one/sub/test.properties: -------------------------------------------------------------------------------- 1 | key=sub one -------------------------------------------------------------------------------- /component/common/src/test/resources/org/gatein/common/classloader/one/test.properties: -------------------------------------------------------------------------------- 1 | key=one -------------------------------------------------------------------------------- /component/common/src/test/resources/org/gatein/common/classloader/three/test.conf: -------------------------------------------------------------------------------- 1 | key=test.conf -------------------------------------------------------------------------------- /component/common/src/test/resources/org/gatein/common/classloader/three/test.properties: -------------------------------------------------------------------------------- 1 | key=three -------------------------------------------------------------------------------- /component/common/src/test/resources/org/gatein/common/classloader/two/test.properties: -------------------------------------------------------------------------------- 1 | key=two -------------------------------------------------------------------------------- /component/identity/DisableUserMigration_Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/DisableUserMigration_Manual.md -------------------------------------------------------------------------------- /component/identity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/pom.xml -------------------------------------------------------------------------------- /component/identity/src/main/java/conf/portal/idm-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/src/main/java/conf/portal/idm-config.xml -------------------------------------------------------------------------------- /component/identity/src/main/resources/configuration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/src/main/resources/configuration.properties -------------------------------------------------------------------------------- /component/identity/src/main/resources/hibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/src/main/resources/hibernate.cfg.xml -------------------------------------------------------------------------------- /component/identity/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /component/identity/src/main/resources/picketlink-idm-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/src/main/resources/picketlink-idm-config.xml -------------------------------------------------------------------------------- /component/identity/src/test/resources/conf/cache/infinispan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/identity/src/test/resources/conf/cache/infinispan.xml -------------------------------------------------------------------------------- /component/identity/src/test/resources/conf/standalone/configuration.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /component/management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/management/pom.xml -------------------------------------------------------------------------------- /component/management/src/main/resources/conf/portal/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/management/src/main/resources/conf/portal/configuration.xml -------------------------------------------------------------------------------- /component/pc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/pc/pom.xml -------------------------------------------------------------------------------- /component/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/pom.xml -------------------------------------------------------------------------------- /component/portal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/pom.xml -------------------------------------------------------------------------------- /component/portal/src/main/java/conf/content-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/conf/content-nodetypes.xml -------------------------------------------------------------------------------- /component/portal/src/main/java/conf/gatein-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/conf/gatein-nodetypes.xml -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_0.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_1.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_1_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_1_1.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_2.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_3.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_4.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_5.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_6.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/gatein_objects_1_7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/gatein_objects_1_7.xsd -------------------------------------------------------------------------------- /component/portal/src/main/java/org/exoplatform/portal/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/org/exoplatform/portal/Constants.java -------------------------------------------------------------------------------- /component/portal/src/main/java/org/exoplatform/portal/config/Query.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/org/exoplatform/portal/config/Query.java -------------------------------------------------------------------------------- /component/portal/src/main/java/org/exoplatform/portal/mop/SiteKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/org/exoplatform/portal/mop/SiteKey.java -------------------------------------------------------------------------------- /component/portal/src/main/java/org/exoplatform/portal/mop/SiteType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/org/exoplatform/portal/mop/SiteType.java -------------------------------------------------------------------------------- /component/portal/src/main/java/org/exoplatform/portal/mop/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/org/exoplatform/portal/mop/Utils.java -------------------------------------------------------------------------------- /component/portal/src/main/java/org/exoplatform/portal/mop/Visible.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/java/org/exoplatform/portal/mop/Visible.java -------------------------------------------------------------------------------- /component/portal/src/main/resources/META-INF/services/org.gatein.mop.spi.AdapterLifeCycle: -------------------------------------------------------------------------------- 1 | org.exoplatform.portal.mop.i18n.I18NAdapter$LifeCycle 2 | -------------------------------------------------------------------------------- /component/portal/src/main/resources/binding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/main/resources/binding.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/conf/test-mop-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/conf/test-mop-nodetypes.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/jibx/extended-navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/jibx/extended-navigation.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/jibx/fragment-navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/jibx/fragment-navigation.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/jibx/gadget-application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/jibx/gadget-application.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/jibx/navigation-with-properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/jibx/navigation-with-properties.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/jibx/portlet-application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/jibx/portlet-application.xml -------------------------------------------------------------------------------- /component/portal/src/test/resources/jibx/simple-navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/portal/src/test/resources/jibx/simple-navigation.xml -------------------------------------------------------------------------------- /component/resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/pom.xml -------------------------------------------------------------------------------- /component/resources/src/test/resources/bundles/locales-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/bundles/locales-config.xml -------------------------------------------------------------------------------- /component/resources/src/test/resources/bundles/portal/base.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/bundles/portal/base.properties -------------------------------------------------------------------------------- /component/resources/src/test/resources/bundles/portal/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/bundles/portal/test.properties -------------------------------------------------------------------------------- /component/resources/src/test/resources/bundles/portal/test_vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/bundles/portal/test_vi.xml -------------------------------------------------------------------------------- /component/resources/src/test/resources/bundles/portlet/base.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/bundles/portlet/base.properties -------------------------------------------------------------------------------- /component/resources/src/test/resources/bundles/portlet/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/bundles/portlet/test.properties -------------------------------------------------------------------------------- /component/resources/src/test/resources/bundles/portlet/test_vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/bundles/portlet/test_vi.xml -------------------------------------------------------------------------------- /component/resources/src/test/resources/conf/locales-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/conf/locales-config.xml -------------------------------------------------------------------------------- /component/resources/src/test/resources/locale/navigation/portal/classic_ar.properties: -------------------------------------------------------------------------------- 1 | my.test.key=My Arabic value -------------------------------------------------------------------------------- /component/resources/src/test/resources/locale/navigation/portal/classic_en.properties: -------------------------------------------------------------------------------- 1 | my.test.key=My English value -------------------------------------------------------------------------------- /component/resources/src/test/resources/locale/navigation/portal/classic_fr.properties: -------------------------------------------------------------------------------- 1 | my.test.key=My French value -------------------------------------------------------------------------------- /component/resources/src/test/resources/locale/navigation/portal/classic_vi.properties: -------------------------------------------------------------------------------- 1 | my.test.key=My Vietnamese value -------------------------------------------------------------------------------- /component/resources/src/test/resources/resources/locales-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/resources/src/test/resources/resources/locales-config.xml -------------------------------------------------------------------------------- /component/scripting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/scripting/pom.xml -------------------------------------------------------------------------------- /component/scripting/src/test/resources/UIPortalApplication.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/scripting/src/test/resources/UIPortalApplication.gtmpl -------------------------------------------------------------------------------- /component/test/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/core/pom.xml -------------------------------------------------------------------------------- /component/test/core/src/main/resources/conf/portal-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/core/src/main/resources/conf/portal-configuration.xml -------------------------------------------------------------------------------- /component/test/core/src/main/resources/conf/root-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/core/src/main/resources/conf/root-configuration.xml -------------------------------------------------------------------------------- /component/test/core/src/main/resources/gatein-log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/core/src/main/resources/gatein-log4j.properties -------------------------------------------------------------------------------- /component/test/core/src/test/resources/conf/test-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/core/src/test/resources/conf/test-configuration.xml -------------------------------------------------------------------------------- /component/test/jcr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/jcr/pom.xml -------------------------------------------------------------------------------- /component/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/pom.xml -------------------------------------------------------------------------------- /component/test/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/test/web/pom.xml -------------------------------------------------------------------------------- /component/test/web/src/test/resources/org/exoplatform/component/test/web/folder/bar.txt: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /component/test/web/src/test/resources/org/exoplatform/component/test/web/foo.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /component/web/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/api/pom.xml -------------------------------------------------------------------------------- /component/web/api/src/main/java/org/exoplatform/web/filter/Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/api/src/main/java/org/exoplatform/web/filter/Filter.java -------------------------------------------------------------------------------- /component/web/api/src/test/resources/TestJSonFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/api/src/test/resources/TestJSonFormat.html -------------------------------------------------------------------------------- /component/web/controller/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/controller/pom.xml -------------------------------------------------------------------------------- /component/web/controller/src/main/java/gatein_controller_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/controller/src/main/java/gatein_controller_1_0.xsd -------------------------------------------------------------------------------- /component/web/controller/src/main/java/gatein_controller_1_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/controller/src/main/java/gatein_controller_1_1.xsd -------------------------------------------------------------------------------- /component/web/oauth-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/oauth-common/pom.xml -------------------------------------------------------------------------------- /component/web/oauth-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/oauth-web/pom.xml -------------------------------------------------------------------------------- /component/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/pom.xml -------------------------------------------------------------------------------- /component/web/resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/pom.xml -------------------------------------------------------------------------------- /component/web/resources/src/main/java/gatein_resources_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/main/java/gatein_resources_1_0.xsd -------------------------------------------------------------------------------- /component/web/resources/src/main/java/gatein_resources_1_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/main/java/gatein_resources_1_1.xsd -------------------------------------------------------------------------------- /component/web/resources/src/main/java/gatein_resources_1_2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/main/java/gatein_resources_1_2.xsd -------------------------------------------------------------------------------- /component/web/resources/src/main/java/gatein_resources_1_3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/main/java/gatein_resources_1_3.xsd -------------------------------------------------------------------------------- /component/web/resources/src/main/java/gatein_resources_1_4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/main/java/gatein_resources_1_4.xsd -------------------------------------------------------------------------------- /component/web/resources/src/main/java/gatein_resources_1_5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/main/java/gatein_resources_1_5.xsd -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/Stylesheet.css -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/conf/test-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/conf/test-configuration.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/javascript.js -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/mockwebapp/skin/FirstPortlet.css: -------------------------------------------------------------------------------- 1 | .FirstPortlet {foo1 : bar1} -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/mockwebapp/skin/SecondPortlet.css: -------------------------------------------------------------------------------- 1 | .SecondPortlet {foo2 : bar2} -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/bundle_en.properties: -------------------------------------------------------------------------------- 1 | foo = foo_en -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/bundle_fr.properties: -------------------------------------------------------------------------------- 1 | foo = foo_fr -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/bundle_fr_FR.properties: -------------------------------------------------------------------------------- 1 | foo = foo_fr_FR -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/bundle_it.properties: -------------------------------------------------------------------------------- 1 | foo = foo_it 2 | -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/double_quote_bundle_en.properties: -------------------------------------------------------------------------------- 1 | foo = " -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/double_quote_bundle_it.properties: -------------------------------------------------------------------------------- 1 | foo = " -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/simple_quote_bundle_en.properties: -------------------------------------------------------------------------------- 1 | foo = ' -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/WEB-INF/classes/simple_quote_bundle_it.properties: -------------------------------------------------------------------------------- 1 | foo = ' -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/localized.js: -------------------------------------------------------------------------------- 1 | test = "${foo}"; -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/missing.js: -------------------------------------------------------------------------------- 1 | test = "${bar}"; -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/org/gatein/portal/controller/resource/script/simple.js: -------------------------------------------------------------------------------- 1 | test = "pass"; -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/resources-deployment-service/skin/FirstPortlet.css: -------------------------------------------------------------------------------- 1 | .FirstPortlet {foo1 : bar1} -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/skin/test_1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/skin/test_1.css -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/amd-cdn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/amd-cdn.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/differScopes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/differScopes.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f0.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f1.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f2.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f3.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f4.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f5.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f6.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f7.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f8.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/f9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/f9.xml -------------------------------------------------------------------------------- /component/web/resources/src/test/resources/validator/invalid-1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/resources/src/test/resources/validator/invalid-1_3.xml -------------------------------------------------------------------------------- /component/web/security-jboss/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security-jboss/pom.xml -------------------------------------------------------------------------------- /component/web/security/.gitignore: -------------------------------------------------------------------------------- 1 | transaction.log 2 | -------------------------------------------------------------------------------- /component/web/security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security/pom.xml -------------------------------------------------------------------------------- /component/web/security/src/main/java/conf/autologin-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security/src/main/java/conf/autologin-nodetypes.xml -------------------------------------------------------------------------------- /component/web/security/src/main/java/conf/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security/src/main/java/conf/configuration.xml -------------------------------------------------------------------------------- /component/web/security/src/test/resources/conf/jcr-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security/src/test/resources/conf/jcr-configuration.xml -------------------------------------------------------------------------------- /component/web/security/src/test/resources/conf/key-ibmjvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security/src/test/resources/conf/key-ibmjvm.txt -------------------------------------------------------------------------------- /component/web/security/src/test/resources/conf/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security/src/test/resources/conf/key.txt -------------------------------------------------------------------------------- /component/web/security/src/test/resources/conf/token-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/security/src/test/resources/conf/token-nodetypes.xml -------------------------------------------------------------------------------- /component/web/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/component/web/server/pom.xml -------------------------------------------------------------------------------- /examples/extension/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/README.txt -------------------------------------------------------------------------------- /examples/extension/config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/config/pom.xml -------------------------------------------------------------------------------- /examples/extension/config/src/main/java/conf/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/config/src/main/java/conf/configuration.xml -------------------------------------------------------------------------------- /examples/extension/ear/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/ear/pom.xml -------------------------------------------------------------------------------- /examples/extension/jar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/jar/pom.xml -------------------------------------------------------------------------------- /examples/extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/pom.xml -------------------------------------------------------------------------------- /examples/extension/war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/war/pom.xml -------------------------------------------------------------------------------- /examples/extension/war/src/main/webapp/WEB-INF/conf/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/war/src/main/webapp/WEB-INF/conf/configuration.xml -------------------------------------------------------------------------------- /examples/extension/war/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/war/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /examples/extension/war/src/main/webapp/WEB-INF/jboss-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/war/src/main/webapp/WEB-INF/jboss-web.xml -------------------------------------------------------------------------------- /examples/extension/war/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/war/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/extension/war/src/main/webapp/login/jsp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/extension/war/src/main/webapp/login/jsp/login.jsp -------------------------------------------------------------------------------- /examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/pom.xml -------------------------------------------------------------------------------- /examples/portal/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/README.txt -------------------------------------------------------------------------------- /examples/portal/config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/config/pom.xml -------------------------------------------------------------------------------- /examples/portal/config/src/main/java/conf/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/config/src/main/java/conf/configuration.xml -------------------------------------------------------------------------------- /examples/portal/ear/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/ear/pom.xml -------------------------------------------------------------------------------- /examples/portal/jar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/jar/pom.xml -------------------------------------------------------------------------------- /examples/portal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/pom.xml -------------------------------------------------------------------------------- /examples/portal/rest-war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/rest-war/pom.xml -------------------------------------------------------------------------------- /examples/portal/rest-war/src/main/webapp/WEB-INF/jboss-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/rest-war/src/main/webapp/WEB-INF/jboss-web.xml -------------------------------------------------------------------------------- /examples/portal/rest-war/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/rest-war/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portal/war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/pom.xml -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/WEB-INF/conf/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/WEB-INF/conf/configuration.xml -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/WEB-INF/jboss-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/WEB-INF/jboss-web.xml -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/login/jsp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/login/jsp/login.jsp -------------------------------------------------------------------------------- /examples/portal/war/src/main/webapp/login/skin/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portal/war/src/main/webapp/login/skin/Stylesheet.css -------------------------------------------------------------------------------- /examples/portlets/amd-js/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/pom.xml -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/commonjs/commonjs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/commonjs/commonjs.jsp -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/commonjs/increment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/commonjs/increment.js -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/commonjs/math.js: -------------------------------------------------------------------------------- 1 | exports.add = function (a, b) 2 | { 3 | return a + b; 4 | }; -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/commonjs/starter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/commonjs/starter.js -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/highlight/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/highlight/highlight.css -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/highlight/highlight.js -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/jqueryPlugin/jquery-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/jqueryPlugin/jquery-plugin.js -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/jqueryPlugin/view.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/jqueryPlugin/view.jsp -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/requirejs/js/plugins/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/requirejs/js/plugins/text.js -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/requirejs/jsp/hello.mustache: -------------------------------------------------------------------------------- 1 | Hello {{name}}! -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/sample1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/sample1/script.js -------------------------------------------------------------------------------- /examples/portlets/amd-js/src/main/webapp/sample1/view.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/amd-js/src/main/webapp/sample1/view.jsp -------------------------------------------------------------------------------- /examples/portlets/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/api/pom.xml -------------------------------------------------------------------------------- /examples/portlets/api/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/api/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/api/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/api/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/ipc/consumer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/ipc/consumer/pom.xml -------------------------------------------------------------------------------- /examples/portlets/ipc/consumer/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/ipc/consumer/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/ipc/consumer/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/ipc/consumer/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/ipc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/ipc/pom.xml -------------------------------------------------------------------------------- /examples/portlets/ipc/producer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/ipc/producer/pom.xml -------------------------------------------------------------------------------- /examples/portlets/ipc/producer/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/ipc/producer/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/ipc/producer/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/ipc/producer/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/jquery/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jquery/pom.xml -------------------------------------------------------------------------------- /examples/portlets/jquery/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jquery/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /examples/portlets/jquery/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jquery/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/jquery/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jquery/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/jquery/src/main/webapp/javascript/jquery-1.6.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jquery/src/main/webapp/javascript/jquery-1.6.4.js -------------------------------------------------------------------------------- /examples/portlets/jquery/src/main/webapp/javascript/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jquery/src/main/webapp/javascript/version.js -------------------------------------------------------------------------------- /examples/portlets/jquery/src/main/webapp/jsp/views/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jquery/src/main/webapp/jsp/views/index.jsp -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jsphellouser/pom.xml -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jsphellouser/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jsphellouser/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/src/main/webapp/jsp/edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jsphellouser/src/main/webapp/jsp/edit.jsp -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/src/main/webapp/jsp/hello.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jsphellouser/src/main/webapp/jsp/hello.jsp -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/src/main/webapp/jsp/help.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jsphellouser/src/main/webapp/jsp/help.jsp -------------------------------------------------------------------------------- /examples/portlets/jsphellouser/src/main/webapp/jsp/welcome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/jsphellouser/src/main/webapp/jsp/welcome.jsp -------------------------------------------------------------------------------- /examples/portlets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/pom.xml -------------------------------------------------------------------------------- /examples/portlets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/readme.txt -------------------------------------------------------------------------------- /examples/portlets/resourceserving/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/resourceserving/pom.xml -------------------------------------------------------------------------------- /examples/portlets/resourceserving/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/resourceserving/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/resourceserving/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/resourceserving/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/simplesthelloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/simplesthelloworld/pom.xml -------------------------------------------------------------------------------- /examples/portlets/simplesthelloworld/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /examples/portlets/simplesthelloworld/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/simplesthelloworld/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/pom.xml -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/cart/Cart.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/cart/Cart.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/cart/Checkout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/cart/Checkout.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/catalog/Category.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/catalog/Category.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/catalog/Item.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/catalog/Item.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/catalog/Main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/catalog/Main.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/catalog/Product.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/catalog/Product.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/common/Error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/common/Error.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/css/jpetstore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/css/jpetstore.css -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/help.html -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/help.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/help.jsp -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/bird1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/bird1.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/bird2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/bird2.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/cart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/cart.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/cat1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/cat1.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/cat2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/cat2.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/cats_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/cats_icon.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dog1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dog1.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dog2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dog2.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dog3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dog3.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dog4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dog4.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dog5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dog5.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dog6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dog6.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dogs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dogs.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/dogs_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/dogs_icon.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/fish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/fish.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/fish1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/fish1.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/fish2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/fish2.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/fish3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/fish3.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/fish4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/fish4.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/fish_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/fish_icon.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/lizard1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/lizard1.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/poweredby.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/poweredby.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/separator.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/sm_birds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/sm_birds.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/sm_cats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/sm_cats.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/snake1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/snake1.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/images/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/images/splash.gif -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/index.html -------------------------------------------------------------------------------- /examples/portlets/struts-jpetstore/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/struts-jpetstore/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /examples/portlets/todomvc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/pom.xml -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/todos/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/todos/model.js -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/todos/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/todos/todo.html -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/todos/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/todos/todo.js -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/todos/vendor/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/todos/vendor/backbone.js -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/todos/vendor/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/todos/vendor/json2.js -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/todos/vendor/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/todos/vendor/underscore.js -------------------------------------------------------------------------------- /examples/portlets/todomvc/src/main/webapp/todos/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/todomvc/src/main/webapp/todos/view.js -------------------------------------------------------------------------------- /examples/portlets/useridentity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/useridentity/pom.xml -------------------------------------------------------------------------------- /examples/portlets/useridentity/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/useridentity/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /examples/portlets/useridentity/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/useridentity/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/portlets/useridentity/src/main/webapp/jsp/hello.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/useridentity/src/main/webapp/jsp/hello.jsp -------------------------------------------------------------------------------- /examples/portlets/useridentity/src/main/webapp/jsp/help.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/portlets/useridentity/src/main/webapp/jsp/help.jsp -------------------------------------------------------------------------------- /examples/skins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/skins/pom.xml -------------------------------------------------------------------------------- /examples/skins/simpleskin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/skins/simpleskin/pom.xml -------------------------------------------------------------------------------- /examples/skins/simpleskin/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/skins/simpleskin/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /examples/skins/simpleskin/src/main/webapp/skin/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/examples/skins/simpleskin/src/main/webapp/skin/Stylesheet.css -------------------------------------------------------------------------------- /gadgets/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/core/pom.xml -------------------------------------------------------------------------------- /gadgets/core/src/main/java/conf/gadgettoken-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/core/src/main/java/conf/gadgettoken-nodetypes.xml -------------------------------------------------------------------------------- /gadgets/core/src/main/javascript/features/default-features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/core/src/main/javascript/features/default-features.txt -------------------------------------------------------------------------------- /gadgets/core/src/main/javascript/features/online-features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/core/src/main/javascript/features/online-features.txt -------------------------------------------------------------------------------- /gadgets/core/src/main/javascript/gatein-features/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/core/src/main/javascript/gatein-features/features.txt -------------------------------------------------------------------------------- /gadgets/core/src/test/resources/conf/gadget-jcr-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/core/src/test/resources/conf/gadget-jcr-configuration.xml -------------------------------------------------------------------------------- /gadgets/core/src/test/resources/conf/gadgettoken-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/core/src/test/resources/conf/gadgettoken-nodetypes.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/pom.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/WEB-INF/gadget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/WEB-INF/gadget.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Calculator/Calculator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Calculator/Calculator.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Calendar/Calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Calendar/Calendar.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/Todo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/Todo.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/images/Todo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/images/Todo.gif -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/ALL_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/ALL_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/ar_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/ar_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/de_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/de_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/es_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/es_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/fr_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/fr_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/ja_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/ja_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/kr_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/kr_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/vi_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/vi_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/zh_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/zh_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/zh_TW_ALL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/Todo/locale/zh_TW_ALL.xml -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/script.js -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/gadgets/rssAggregator/style.css -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/Button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/Button.gif -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/ButtonCalendarleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/ButtonCalendarleft.gif -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/Calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/Calculator.png -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/Display.png -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/Noteleft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/Noteleft.jpg -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/Noteright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/Noteright.jpg -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/calender.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/calender.gif -------------------------------------------------------------------------------- /gadgets/eXoGadgets/src/main/webapp/skin/image/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/eXoGadgets/src/main/webapp/skin/image/line.gif -------------------------------------------------------------------------------- /gadgets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/pom.xml -------------------------------------------------------------------------------- /gadgets/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/pom.xml -------------------------------------------------------------------------------- /gadgets/server/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /gadgets/server/src/main/webapp/config/oauth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/main/webapp/config/oauth.json -------------------------------------------------------------------------------- /gadgets/server/src/main/webapp/containers/default/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/main/webapp/containers/default/container.js -------------------------------------------------------------------------------- /gadgets/server/src/main/webapp/oauth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/main/webapp/oauth.xml -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/conf/gadgets/key.txt: -------------------------------------------------------------------------------- 1 | XeQtHqy4StAWBXggc4pQx/5fxBsDYUUNhk8U08lgCoA= 2 | -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/containers/default/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/test/resources/containers/default/container.js -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/endtoend/coreFeatures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/test/resources/endtoend/coreFeatures.xml -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/endtoend/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/test/resources/endtoend/hello.xml -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/endtoend/messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/test/resources/endtoend/messages.xml -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/endtoend/messages_ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/test/resources/endtoend/messages_ar.xml -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/endtoend/test.json: -------------------------------------------------------------------------------- 1 | {"key": "value"} -------------------------------------------------------------------------------- /gadgets/server/src/test/resources/endtoend/testframework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/gadgets/server/src/test/resources/endtoend/testframework.js -------------------------------------------------------------------------------- /ide-configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/README.md -------------------------------------------------------------------------------- /ide-configs/eclipse/gtn-cleanup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/eclipse/gtn-cleanup.xml -------------------------------------------------------------------------------- /ide-configs/eclipse/gtn-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/eclipse/gtn-formatter.xml -------------------------------------------------------------------------------- /ide-configs/eclipse/gtn-templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/eclipse/gtn-templates.xml -------------------------------------------------------------------------------- /ide-configs/idea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/idea/README.md -------------------------------------------------------------------------------- /ide-configs/idea/idea-gtn-codestyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/idea/idea-gtn-codestyle.xml -------------------------------------------------------------------------------- /ide-configs/netbeans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/netbeans/README.md -------------------------------------------------------------------------------- /ide-configs/netbeans/netbeans-jboss-community-formatter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/ide-configs/netbeans/netbeans-jboss-community-formatter.zip -------------------------------------------------------------------------------- /mobile-integration/extension-configuration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/extension-configuration/pom.xml -------------------------------------------------------------------------------- /mobile-integration/extension-ear/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/extension-ear/pom.xml -------------------------------------------------------------------------------- /mobile-integration/extension-login-war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/extension-login-war/pom.xml -------------------------------------------------------------------------------- /mobile-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/pom.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/banner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/banner/pom.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/banner/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/banner/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/banner/src/main/webapp/jsp/banner.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/banner/src/main/webapp/jsp/banner.jsp -------------------------------------------------------------------------------- /mobile-integration/portlets/community/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/community/pom.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/community/src/main/webapp/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/community/src/main/webapp/images/rss.png -------------------------------------------------------------------------------- /mobile-integration/portlets/features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/features/pom.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/features/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/features/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/features/src/main/webapp/js/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/features/src/main/webapp/js/features.js -------------------------------------------------------------------------------- /mobile-integration/portlets/features/src/main/webapp/js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/features/src/main/webapp/js/modernizr.js -------------------------------------------------------------------------------- /mobile-integration/portlets/footer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/footer/pom.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/footer/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/footer/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/footer/src/main/webapp/jsp/footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/footer/src/main/webapp/jsp/footer.jsp -------------------------------------------------------------------------------- /mobile-integration/portlets/header/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/header/pom.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/header/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/header/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/header/src/main/webapp/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/header/src/main/webapp/images/logo.png -------------------------------------------------------------------------------- /mobile-integration/portlets/header/src/main/webapp/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/header/src/main/webapp/images/logo.svg -------------------------------------------------------------------------------- /mobile-integration/portlets/header/src/main/webapp/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/header/src/main/webapp/js/menu.js -------------------------------------------------------------------------------- /mobile-integration/portlets/header/src/main/webapp/jsp/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/header/src/main/webapp/jsp/header.jsp -------------------------------------------------------------------------------- /mobile-integration/portlets/header/src/main/webapp/jsp/node.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/header/src/main/webapp/jsp/node.jsp -------------------------------------------------------------------------------- /mobile-integration/portlets/navigation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/navigation/pom.xml -------------------------------------------------------------------------------- /mobile-integration/portlets/navigation/src/main/webapp/jsp/node.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/navigation/src/main/webapp/jsp/node.jsp -------------------------------------------------------------------------------- /mobile-integration/portlets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/portlets/pom.xml -------------------------------------------------------------------------------- /mobile-integration/skin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/pom.xml -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/resources/tomcat/responsiveSkin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/src/main/resources/tomcat/responsiveSkin.xml -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/fonts/Ubuntu/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/src/main/webapp/fonts/Ubuntu/copyright.txt -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/fonts/Ubuntu/ubuntu.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/src/main/webapp/fonts/Ubuntu/ubuntu.woff -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/skin/Portlet/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/src/main/webapp/skin/Portlet/Stylesheet.css -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/skin/ResponsiveSkin/custom/Stylesheet.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/skin/ResponsiveSkin/portlet/redirect-admin/RedirectAdmin.css: -------------------------------------------------------------------------------- 1 | .pbr-body { 2 | min-width: 61em; 3 | } 4 | -------------------------------------------------------------------------------- /mobile-integration/skin/src/main/webapp/skin/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/mobile-integration/skin/src/main/webapp/skin/Stylesheet.css -------------------------------------------------------------------------------- /packaging/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/common/pom.xml -------------------------------------------------------------------------------- /packaging/common/src/main/resources/controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/common/src/main/resources/controller.xml -------------------------------------------------------------------------------- /packaging/common/src/main/resources/gadgets/oauthcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/common/src/main/resources/gadgets/oauthcert.pem -------------------------------------------------------------------------------- /packaging/common/src/main/resources/gadgets/oauthkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/common/src/main/resources/gadgets/oauthkey.pem -------------------------------------------------------------------------------- /packaging/common/src/main/resources/gadgets/oauthkey_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/common/src/main/resources/gadgets/oauthkey_pub.pem -------------------------------------------------------------------------------- /packaging/common/src/main/resources/gadgets/shindig.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/common/src/main/resources/gadgets/shindig.properties -------------------------------------------------------------------------------- /packaging/common/src/main/resources/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/common/src/main/resources/portlet.xml -------------------------------------------------------------------------------- /packaging/jboss/.gitignore: -------------------------------------------------------------------------------- 1 | transaction.log 2 | -------------------------------------------------------------------------------- /packaging/jboss/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/README.txt -------------------------------------------------------------------------------- /packaging/jboss/extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/extension/pom.xml -------------------------------------------------------------------------------- /packaging/jboss/modules/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/modules/build.xml -------------------------------------------------------------------------------- /packaging/jboss/modules/lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/modules/lib.xml -------------------------------------------------------------------------------- /packaging/jboss/modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/modules/pom.xml -------------------------------------------------------------------------------- /packaging/jboss/pkg/download-jboss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/pkg/download-jboss.xml -------------------------------------------------------------------------------- /packaging/jboss/pkg/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/pkg/package.xml -------------------------------------------------------------------------------- /packaging/jboss/pkg/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/pkg/pom.xml -------------------------------------------------------------------------------- /packaging/jboss/pkg/src/main/resources/jboss/main/modules/layers.conf: -------------------------------------------------------------------------------- 1 | layers=gatein -------------------------------------------------------------------------------- /packaging/jboss/pkg/src/main/resources/jboss/main/standalone/configuration/gatein/wsrp/cxf/producer.features: -------------------------------------------------------------------------------- 1 | org.gatein.wsrp.wss.cxf.producer.WSRPWSSecurityFeature 2 | -------------------------------------------------------------------------------- /packaging/jboss/pkg/src/main/resources/jboss/main/standalone/configuration/gatein/wsrp/cxf/ws-security/producer/GTNSubjectCreatingInterceptor.properties: -------------------------------------------------------------------------------- 1 | action=gtn.UsernameToken.ifAvailable 2 | -------------------------------------------------------------------------------- /packaging/jboss/pkg/src/main/resources/jboss/samples/gatein/extensions/gatein-sample-extension.ear/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Dependencies: org.gatein.common 3 | -------------------------------------------------------------------------------- /packaging/jboss/pkg/src/main/xslt/standalone.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/pkg/src/main/xslt/standalone.xsl -------------------------------------------------------------------------------- /packaging/jboss/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jboss/pom.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/download-jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/download-jetty.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/package.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/pom.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/bin/gatein-dev.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/bin/gatein-dev.bat -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/bin/gatein-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/bin/gatein-dev.sh -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/bin/gatein.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/bin/gatein.bat -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/bin/gatein.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/bin/gatein.sh -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/contexts/portal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/contexts/portal.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/contexts/rest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/contexts/rest.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/etc/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/etc/jetty.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/etc/login.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/etc/login.conf -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/etc/webdefault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/etc/webdefault.xml -------------------------------------------------------------------------------- /packaging/jetty/pkg/src/main/resources/jetty/webapps/ROOT/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/src/main/resources/jetty/webapps/ROOT/index.jsp -------------------------------------------------------------------------------- /packaging/jetty/pkg/transform.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pkg/transform.xsl -------------------------------------------------------------------------------- /packaging/jetty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/jetty/pom.xml -------------------------------------------------------------------------------- /packaging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/pom.xml -------------------------------------------------------------------------------- /packaging/release/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/release/prepare.sh -------------------------------------------------------------------------------- /packaging/release/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/release/upload.sh -------------------------------------------------------------------------------- /packaging/tomcat/pkg/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/pom.xml -------------------------------------------------------------------------------- /packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein-dev.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein-dev.bat -------------------------------------------------------------------------------- /packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein-dev.sh -------------------------------------------------------------------------------- /packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein.bat -------------------------------------------------------------------------------- /packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/src/main/resources/tomcat/bin/gatein.sh -------------------------------------------------------------------------------- /packaging/tomcat/pkg/src/main/resources/tomcat/bin/portal-setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/src/main/resources/tomcat/bin/portal-setup.bat -------------------------------------------------------------------------------- /packaging/tomcat/pkg/src/main/resources/tomcat/bin/portal-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/src/main/resources/tomcat/bin/portal-setup.sh -------------------------------------------------------------------------------- /packaging/tomcat/pkg/src/main/resources/tomcat/conf/jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/src/main/resources/tomcat/conf/jaas.conf -------------------------------------------------------------------------------- /packaging/tomcat/pkg/transform.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pkg/transform.xsl -------------------------------------------------------------------------------- /packaging/tomcat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/pom.xml -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/download-tomcat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/download-tomcat.xml -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/extract-download-urls.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/extract-download-urls.xsl -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/package.xml -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/pom.xml -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/src/main/resources/tomcat/conf/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/src/main/resources/tomcat/conf/context.xml -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/src/main/resources/tomcat/conf/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/src/main/resources/tomcat/conf/server.xml -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /packaging/tomcat/tomcat7/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/packaging/tomcat/tomcat7/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/pom.xml -------------------------------------------------------------------------------- /portlet/admin/redirect/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/pom.xml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/assembly/jsf-bundled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/assembly/jsf-bundled.xml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/resources/locale/admin_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/resources/locale/admin_en.properties -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/WEB-INF/faces-config.xml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/admin/redirects/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/admin/redirects/index.xhtml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/admin/redirects/menu.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/admin/redirects/menu.xhtml -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/css/admin.css -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/css/bootstrap.css -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/css/empty.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/css/main.css -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/css/ubuntu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/css/ubuntu.css -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/img/body-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/img/body-bg.jpg -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/img/favicon.ico -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/img/icon-close.png -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/img/icon-grippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/img/icon-grippy.png -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/img/icon-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/img/icon-ok.png -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/img/logo.png -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/img/rcue-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/img/rcue-icons.png -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/js/admin.js -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/resources/js/bootstrap.js -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/resources/js/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /portlet/admin/redirect/src/main/webapp/template.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/admin/redirect/src/main/webapp/template.xhtml -------------------------------------------------------------------------------- /portlet/dashboard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/dashboard/pom.xml -------------------------------------------------------------------------------- /portlet/dashboard/src/main/resources/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/dashboard/src/main/resources/suppressions.xml -------------------------------------------------------------------------------- /portlet/dashboard/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/dashboard/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /portlet/dashboard/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/dashboard/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /portlet/dashboard/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/dashboard/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /portlet/exoadmin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/exoadmin/pom.xml -------------------------------------------------------------------------------- /portlet/exoadmin/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/exoadmin/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /portlet/exoadmin/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/exoadmin/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /portlet/exoadmin/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/exoadmin/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /portlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/pom.xml -------------------------------------------------------------------------------- /portlet/redirect/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/redirect/pom.xml -------------------------------------------------------------------------------- /portlet/redirect/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/redirect/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /portlet/redirect/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/redirect/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /portlet/redirect/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/redirect/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /portlet/redirect/src/main/webapp/css/DefaultStylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/redirect/src/main/webapp/css/DefaultStylesheet.css -------------------------------------------------------------------------------- /portlet/redirect/src/main/webapp/css/SimpleSkinStylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/redirect/src/main/webapp/css/SimpleSkinStylesheet.css -------------------------------------------------------------------------------- /portlet/redirect/src/main/webapp/jsp/redirect.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/redirect/src/main/webapp/jsp/redirect.jsp -------------------------------------------------------------------------------- /portlet/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/pom.xml -------------------------------------------------------------------------------- /portlet/web/src/main/resources/locale/portlet/web/LogoPortlet_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/src/main/resources/locale/portlet/web/LogoPortlet_ko.xml -------------------------------------------------------------------------------- /portlet/web/src/main/resources/locale/portlet/web/LogoPortlet_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/src/main/resources/locale/portlet/web/LogoPortlet_zh.xml -------------------------------------------------------------------------------- /portlet/web/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /portlet/web/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /portlet/web/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /portlet/web/src/main/webapp/javascript/eXo/webui/UIIFramePortlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/src/main/webapp/javascript/eXo/webui/UIIFramePortlet.js -------------------------------------------------------------------------------- /portlet/web/src/main/webapp/javascript/eXo/webui/UISiteMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/portlet/web/src/main/webapp/javascript/eXo/webui/UISiteMap.js -------------------------------------------------------------------------------- /starter/ear/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/starter/ear/pom.xml -------------------------------------------------------------------------------- /starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/starter/pom.xml -------------------------------------------------------------------------------- /starter/war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/starter/war/pom.xml -------------------------------------------------------------------------------- /starter/war/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/starter/war/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /testsuite/htmlunit-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/htmlunit-tests/pom.xml -------------------------------------------------------------------------------- /testsuite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/pom.xml -------------------------------------------------------------------------------- /testsuite/selenium-snifftests/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/selenium-snifftests/Readme.txt -------------------------------------------------------------------------------- /testsuite/selenium-snifftests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/selenium-snifftests/pom.xml -------------------------------------------------------------------------------- /testsuite/selenium-snifftests/src/suite/user-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/selenium-snifftests/src/suite/user-extensions.js -------------------------------------------------------------------------------- /testsuite/selenium-snifftests/tests: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/selenium-tests-other/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/selenium-tests-other/Readme.txt -------------------------------------------------------------------------------- /testsuite/selenium-tests-other/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/selenium-tests-other/pom.xml -------------------------------------------------------------------------------- /testsuite/selenium-tests-other/src/suite/user-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/selenium-tests-other/src/suite/user-extensions.js -------------------------------------------------------------------------------- /testsuite/selenium-tests-other/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/selenium-tests-other/src/test/resources/testng.xml -------------------------------------------------------------------------------- /testsuite/testdefinitions/GateIn_v3.2.x_TechTests_TestDefinition.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/testdefinitions/GateIn_v3.2.x_TechTests_TestDefinition.ods -------------------------------------------------------------------------------- /testsuite/webuibasedsamples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/webuibasedsamples/pom.xml -------------------------------------------------------------------------------- /testsuite/webuibasedsamples/src/main/resources/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/webuibasedsamples/src/main/resources/suppressions.xml -------------------------------------------------------------------------------- /testsuite/webuibasedsamples/src/main/resources/tomcat/portlets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/webuibasedsamples/src/main/resources/tomcat/portlets.xml -------------------------------------------------------------------------------- /testsuite/webuibasedsamples/src/main/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/webuibasedsamples/src/main/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /testsuite/webuibasedsamples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/testsuite/webuibasedsamples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /web/eXoResources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/pom.xml -------------------------------------------------------------------------------- /web/eXoResources/src/main/resources/eXo/portal_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/resources/eXo/portal_de.properties -------------------------------------------------------------------------------- /web/eXoResources/src/main/resources/eXo/portal_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/resources/eXo/portal_en.properties -------------------------------------------------------------------------------- /web/eXoResources/src/main/resources/eXo/portal_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/resources/eXo/portal_fr.properties -------------------------------------------------------------------------------- /web/eXoResources/src/main/resources/eXo/portal_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/resources/eXo/portal_it.properties -------------------------------------------------------------------------------- /web/eXoResources/src/main/resources/eXo/portal_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/resources/eXo/portal_ru.properties -------------------------------------------------------------------------------- /web/eXoResources/src/main/resources/eXo/portal_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/resources/eXo/portal_vi.properties -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/core/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/core/Base.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/core/DragDrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/core/DragDrop.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/core/Skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/core/Skin.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/core/UIMaskLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/core/UIMaskLayer.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/core/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/core/require.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/gadget/UIGadget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/gadget/UIGadget.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/i18n/I18NMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/i18n/I18NMessage.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/portal/UIPortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/portal/UIPortal.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/webui/Selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/webui/Selectors.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/webui/UICalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/webui/UICalendar.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/webui/UIDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/webui/UIDashboard.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/webui/UIForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/webui/UIForm.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/webui/UIPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/webui/UIPopup.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/webui/Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/webui/Upload.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/eXo/webui/WebUIExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/eXo/webui/WebUIExt.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/javascript/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/javascript/jquery-1.7.1.js -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/Portlet/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/Portlet/Stylesheet.css -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/PortletThemes/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/PortletThemes/Stylesheet.css -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/Stylesheet.css -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/sharedImages/Blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/sharedImages/Blank.gif -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/sharedImages/BlueNextArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/sharedImages/BlueNextArrow.gif -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/sharedImages/DashboardIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/sharedImages/DashboardIcon.png -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/sharedImages/Debug1x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/sharedImages/Debug1x32.gif -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/sharedImages/GroupIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/sharedImages/GroupIcon.png -------------------------------------------------------------------------------- /web/eXoResources/src/main/webapp/skin/sharedImages/WarningIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/eXoResources/src/main/webapp/skin/sharedImages/WarningIcon.gif -------------------------------------------------------------------------------- /web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/pom.xml -------------------------------------------------------------------------------- /web/portal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/pom.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_cs.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_en.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_it.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_ja.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_ko.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_ne.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_ne.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_nl.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_pt_BR.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_zh.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/custom_zh_TW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/custom_zh_TW.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_ar.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_cs.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_de.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_en.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_es.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_fr.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_it.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_it.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_ja.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_ko.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_ne.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_ne.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_nl.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_ru.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_uk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_uk.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_vi.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_zh.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/expression_zh_TW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/expression_zh_TW.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_ar.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_cs.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_de.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_en.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_es.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_fr.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_it.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_it.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_ja.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_ko.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_ne.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_ne.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_nl.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_ru.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_uk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_uk.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_vi.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_zh.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/services_zh_TW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/services_zh_TW.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_ar.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_cs.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_de.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_en.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_es.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_fr.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_it.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_ja.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_ko.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_ne.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_ne.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_nl.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_pt_BR.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_ru.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_uk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_uk.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_vi.properties -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_zh.xml -------------------------------------------------------------------------------- /web/portal/src/main/resources/locale/portal/webui_zh_TW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/resources/locale/portal/webui_zh_TW.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/classes/jgroups/gatein-tcp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/classes/jgroups/gatein-tcp.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/classes/jgroups/gatein-udp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/classes/jgroups/gatein-udp.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/api/api-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/api/api-configuration.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/common/locales-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/common/locales-config.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/configuration.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/infinispan/local/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/infinispan/local/config.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/jcr/jcr-configuration.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/portal/user/root/pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/portal/user/root/pages.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/portal/web-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/portal/web-configuration.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/conf/sso/oauth-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/conf/sso/oauth-configuration.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/context.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/gatein-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/gatein-resources.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/jboss-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/jboss-web.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/jetty-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/jetty-web.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/WEB-INF/webui-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/WEB-INF/webui-configuration.xml -------------------------------------------------------------------------------- /web/portal/src/main/webapp/device/detection.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/device/detection.jsp -------------------------------------------------------------------------------- /web/portal/src/main/webapp/device/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/device/loading.gif -------------------------------------------------------------------------------- /web/portal/src/main/webapp/error/jsp/login-error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/error/jsp/login-error.jsp -------------------------------------------------------------------------------- /web/portal/src/main/webapp/error/skin/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/error/skin/Stylesheet.css -------------------------------------------------------------------------------- /web/portal/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/portal/webui/UILoginForm.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/portal/webui/UILoginForm.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/portal/webui/page/UIPage.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/portal/webui/page/UIPage.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/portal/webui/page/UIPageBody.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/portal/webui/page/UIPageBody.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/portal/webui/page/UISiteBody.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/portal/webui/page/UISiteBody.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/portal/webui/portal/UIPortal.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/portal/webui/portal/UIPortal.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIBreadcumbs.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIBreadcumbs.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIConfirmation.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIConfirmation.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIDropDownControl.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIDropDownControl.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIGrid.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIGrid.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIItemSelector.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIItemSelector.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UILazyTabPane.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UILazyTabPane.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIPageIterator.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIPageIterator.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIPopupMessages.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIPopupMessages.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIPopupWindow.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIPopupWindow.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIRepeater.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIRepeater.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UISitemap.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UISitemap.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UISitemapTree.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UISitemapTree.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UITabPane.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UITabPane.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UITabPaneWithHelp.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UITabPaneWithHelp.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UITabPane_New.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UITabPane_New.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UITabSelector.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UITabSelector.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIToolbar.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIToolbar.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UITree.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UITree.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIVirtualList.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIVirtualList.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/core/UIWizard.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/core/UIWizard.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/form/UIForm.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/form/UIForm.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/form/UIFormTabPane.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/form/UIFormTabPane.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/form/UIFormUploadInput.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/form/UIFormUploadInput.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/form/UIFormWithTitle.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/form/UIFormWithTitle.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/form/UISearchForm.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/form/UISearchForm.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/form/UIUploadInput.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/form/UIUploadInput.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/groovy/webui/form/UIVTabInputSet.gtmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/groovy/webui/form/UIVTabInputSet.gtmpl -------------------------------------------------------------------------------- /web/portal/src/main/webapp/login/jsp/disabled.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/login/jsp/disabled.jsp -------------------------------------------------------------------------------- /web/portal/src/main/webapp/login/jsp/keepalive.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/login/jsp/keepalive.jsp -------------------------------------------------------------------------------- /web/portal/src/main/webapp/login/jsp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/login/jsp/login.jsp -------------------------------------------------------------------------------- /web/portal/src/main/webapp/login/skin/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/login/skin/Stylesheet.css -------------------------------------------------------------------------------- /web/portal/src/main/webapp/setup/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/setup/css/default.css -------------------------------------------------------------------------------- /web/portal/src/main/webapp/setup/css/enchanced.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/setup/css/enchanced.css -------------------------------------------------------------------------------- /web/portal/src/main/webapp/setup/css/ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/setup/css/ie8.css -------------------------------------------------------------------------------- /web/portal/src/main/webapp/setup/images/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/setup/images/icon-close.png -------------------------------------------------------------------------------- /web/portal/src/main/webapp/setup/images/uiportal-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/setup/images/uiportal-background.jpg -------------------------------------------------------------------------------- /web/portal/src/main/webapp/setup/jsp/setup.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/setup/jsp/setup.jsp -------------------------------------------------------------------------------- /web/portal/src/main/webapp/welcome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/portal/src/main/webapp/welcome.jsp -------------------------------------------------------------------------------- /web/redirect/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/redirect/pom.xml -------------------------------------------------------------------------------- /web/redirect/src/main/java/org/gatein/web/redirect/Mapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/redirect/src/main/java/org/gatein/web/redirect/Mapper.java -------------------------------------------------------------------------------- /web/redirect/src/main/java/org/gatein/web/redirect/Redirector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/redirect/src/main/java/org/gatein/web/redirect/Redirector.java -------------------------------------------------------------------------------- /web/redirect/src/test/java/org/gatein/web/redirect/TestConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/redirect/src/test/java/org/gatein/web/redirect/TestConfig.java -------------------------------------------------------------------------------- /web/redirect/src/test/java/org/gatein/web/redirect/TestMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/redirect/src/test/java/org/gatein/web/redirect/TestMapper.java -------------------------------------------------------------------------------- /web/redirect/src/test/java/org/gatein/web/redirect/TestRedirect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/redirect/src/test/java/org/gatein/web/redirect/TestRedirect.java -------------------------------------------------------------------------------- /web/redirect/src/test/resources/conf/test-mop-nodetypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/redirect/src/test/resources/conf/test-mop-nodetypes.xml -------------------------------------------------------------------------------- /web/rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/rest/pom.xml -------------------------------------------------------------------------------- /web/rest/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/rest/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /web/rest/src/main/webapp/WEB-INF/jboss-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/rest/src/main/webapp/WEB-INF/jboss-web.xml -------------------------------------------------------------------------------- /web/rest/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/web/rest/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /webui/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/pom.xml -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/core/UIGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/core/UIGrid.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/core/UIRepeater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/core/UIRepeater.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/core/UISearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/core/UISearch.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/core/UITabPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/core/UITabPane.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/core/UIToolbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/core/UIToolbar.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/core/UITree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/core/UITree.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/core/UIWizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/core/UIWizard.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/form/UIForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/form/UIForm.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/form/UIFormGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/form/UIFormGrid.java -------------------------------------------------------------------------------- /webui/core/src/main/java/org/exoplatform/webui/form/UIFormInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/main/java/org/exoplatform/webui/form/UIFormInput.java -------------------------------------------------------------------------------- /webui/core/src/test/java/org/exoplatform/webui/test/UILifecycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/test/java/org/exoplatform/webui/test/UILifecycle.java -------------------------------------------------------------------------------- /webui/core/src/test/resources/conf/configuration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/test/resources/conf/configuration.properties -------------------------------------------------------------------------------- /webui/core/src/test/resources/conf/portal/test-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/test/resources/conf/portal/test-configuration.xml -------------------------------------------------------------------------------- /webui/core/src/test/resources/webui-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/core/src/test/resources/webui-configuration.xml -------------------------------------------------------------------------------- /webui/core/transaction.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/dashboard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/dashboard/pom.xml -------------------------------------------------------------------------------- /webui/dashboard/src/main/resources/groovy/dashboard/webui/component/UIContainer.gtmpl: -------------------------------------------------------------------------------- 1 | <% uicomponent.renderChildren(); %> -------------------------------------------------------------------------------- /webui/eXo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/eXo/pom.xml -------------------------------------------------------------------------------- /webui/framework/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/framework/pom.xml -------------------------------------------------------------------------------- /webui/framework/src/main/java/org/exoplatform/webui/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/framework/src/main/java/org/exoplatform/webui/Util.java -------------------------------------------------------------------------------- /webui/framework/src/main/java/org/exoplatform/webui/event/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/framework/src/main/java/org/exoplatform/webui/event/Event.java -------------------------------------------------------------------------------- /webui/framework/src/main/resources/binding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/framework/src/main/resources/binding.xml -------------------------------------------------------------------------------- /webui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/pom.xml -------------------------------------------------------------------------------- /webui/portal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/portal/pom.xml -------------------------------------------------------------------------------- /webui/portal/src/main/resources/META-INF/services/org.exoplatform.portal.webui.page.UIPageFactory: -------------------------------------------------------------------------------- 1 | org.exoplatform.portal.webui.page.BaseUIPageFactory -------------------------------------------------------------------------------- /webui/portal/src/test/resources/conf/portal/test-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/portal/src/test/resources/conf/portal/test-configuration.xml -------------------------------------------------------------------------------- /webui/portal/src/test/resources/webui-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/portal/src/test/resources/webui-configuration.xml -------------------------------------------------------------------------------- /webui/portlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/webui/portlet/pom.xml -------------------------------------------------------------------------------- /wsrp-integration/extension-component/pkg-jbossas7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsrp-integration/extension-component/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/wsrp-integration/extension-component/pom.xml -------------------------------------------------------------------------------- /wsrp-integration/extension-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/wsrp-integration/extension-config/pom.xml -------------------------------------------------------------------------------- /wsrp-integration/extension-ear/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/wsrp-integration/extension-ear/pom.xml -------------------------------------------------------------------------------- /wsrp-integration/extension-war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/wsrp-integration/extension-war/pom.xml -------------------------------------------------------------------------------- /wsrp-integration/extension-war/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/wsrp-integration/extension-war/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /wsrp-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatein/gatein-portal/HEAD/wsrp-integration/pom.xml --------------------------------------------------------------------------------