├── .gitattributes ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.m2e.core.prefs ├── .travis.yml ├── assembly ├── .project ├── assembly.xml ├── cdnjs │ ├── readme.txt │ ├── sbt-core-dojo-amd.js │ ├── sbt-core-dojo-amd.js.uncompressed.js │ ├── sbt-extra-controls-dojo-amd.js │ └── sbt-extra-controls-dojo-amd.js.uncompressed.js ├── deploy-cdnjs.xml ├── platform │ └── tomcat │ │ ├── context.xml │ │ ├── keystore │ │ ├── secured │ │ └── server.xml │ │ ├── server.xml │ │ └── tomcat-users.xml ├── pom.xml └── src │ └── main │ └── resources │ └── version.txt ├── com.ibm.sbt.p2 └── .project ├── commons ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── com.ibm.commons.runtime │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.ltk.core.refactoring.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ibm │ │ └── commons │ │ └── runtime │ │ ├── Application.java │ │ ├── ApplicationListener.java │ │ ├── Context.java │ │ ├── ContextListener.java │ │ ├── NoAccessSignal.java │ │ ├── RedirectSignal.java │ │ ├── RuntimeConstants.java │ │ ├── RuntimeFactory.java │ │ ├── beans │ │ ├── AbstractBeanFactory.java │ │ ├── AbstractXmlConfigBeanFactory.java │ │ ├── ClasspathResourceBeanFactory.java │ │ ├── ContextResourceBeanFactory.java │ │ ├── EnvironmentConfig.java │ │ ├── FileResourceBeanFactory.java │ │ ├── MetaResourceBeanFactory.java │ │ └── WebResourceBeanFactory.java │ │ ├── impl │ │ ├── AbstractApplication.java │ │ ├── AbstractContext.java │ │ ├── AbstractRuntimeFactory.java │ │ ├── ManagedBeanFactory.java │ │ ├── PropertiesFactory.java │ │ ├── app │ │ │ ├── ApplicationStandalone.java │ │ │ ├── ContextStandalone.java │ │ │ └── RuntimeFactoryStandalone.java │ │ └── servlet │ │ │ ├── ApplicationServlet.java │ │ │ ├── ContextServlet.java │ │ │ └── RuntimeFactoryServlet.java │ │ ├── mime │ │ ├── MIME.java │ │ └── mimeextensions.cnf │ │ ├── naming │ │ └── UrlFactory.java │ │ ├── package.html │ │ ├── properties │ │ ├── AbstractPropertiesFactory.java │ │ ├── ClasspathResourcePropertiesFactory.java │ │ ├── ContextPropertiesFactory.java │ │ ├── EnvironmentConfig.java │ │ ├── FileResourcePropertiesFactory.java │ │ ├── MetaResourcePropertiesFactory.java │ │ ├── WebContextPropertiesFactory.java │ │ └── WebResourcePropertiesFactory.java │ │ ├── servlet │ │ ├── BaseHttpServlet.java │ │ ├── BaseToolkitServlet.java │ │ ├── ServletDispatcher.java │ │ ├── ServletFactory.java │ │ └── ServletMatcher.java │ │ └── util │ │ ├── ParameterProcessor.java │ │ ├── URLEncoding.java │ │ └── UrlUtil.java ├── com.ibm.commons.xml │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .localization │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── localCustomBuildCallbacks.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ ├── ibm │ │ └── commons │ │ │ └── xml │ │ │ ├── DOMAccessor.java │ │ │ ├── DOMUtil.java │ │ │ ├── Dump.java │ │ │ ├── Format.java │ │ │ ├── NamespaceContext.java │ │ │ ├── NamespaceContextImpl.java │ │ │ ├── NodeListIterator.java │ │ │ ├── RangeIterator.java │ │ │ ├── ResourceHandler.java │ │ │ ├── XMLChar.java │ │ │ ├── XMLException.java │ │ │ ├── XPathContext.java │ │ │ ├── XResult.java │ │ │ ├── XResultUtils.java │ │ │ ├── drivers │ │ │ ├── AbstractDriver.java │ │ │ ├── AbstractJAXPDriver.java │ │ │ ├── AbstractXercesDriver.java │ │ │ ├── JAXPDriverSun.java │ │ │ ├── JAXPDriverXerces.java │ │ │ ├── XMLParserDriver.java │ │ │ ├── XercesDriver.java │ │ │ ├── XercesDriverL3.java │ │ │ └── XercesSunDriver.java │ │ │ ├── io │ │ │ └── XmlSerializer.java │ │ │ ├── messages.properties │ │ │ ├── messages_en.properties │ │ │ ├── util │ │ │ ├── DateStringParser.java │ │ │ └── XMIConverter.java │ │ │ └── xpath │ │ │ ├── AbstractExpression.java │ │ │ ├── AbstractExpressionFactory.java │ │ │ ├── AbstractSimpleExpression.java │ │ │ ├── NodeListImpl.java │ │ │ ├── XPathException.java │ │ │ ├── XPathExpression.java │ │ │ ├── XPathExpressionFactory.java │ │ │ ├── part │ │ │ ├── AttributePart.java │ │ │ ├── ElementPart.java │ │ │ ├── IndexedElementPart.java │ │ │ └── Part.java │ │ │ └── xml │ │ │ ├── Utils.java │ │ │ ├── XmlComplexExpression.java │ │ │ ├── XmlSimpleExpression.java │ │ │ └── XmlXPathExpressionFactory.java │ │ └── sun │ │ ├── TheseAreDummyClasses.txt │ │ └── org │ │ └── apache │ │ ├── xerces │ │ └── internal │ │ │ ├── dom │ │ │ ├── DOMImplementationImpl.java │ │ │ └── NodeImpl.java │ │ │ └── jaxp │ │ │ └── DocumentBuilderFactoryImpl.java │ │ ├── xml │ │ └── internal │ │ │ ├── serialize │ │ │ ├── OutputFormat.java │ │ │ └── XMLSerializer.java │ │ │ └── utils │ │ │ └── PrefixResolver.java │ │ └── xpath │ │ └── internal │ │ ├── XPathAPI.java │ │ └── objects │ │ └── XObject.java ├── com.ibm.commons │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .localization │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── export-jar.jardesc │ ├── localCustomBuildCallbacks.xml │ ├── plugin.xml │ ├── pom.xml │ ├── schema │ │ ├── Extension.exsd │ │ ├── ExtensionBundle.exsd │ │ ├── GlobalResource.exsd │ │ ├── Platform.exsd │ │ └── Service.exsd │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ibm │ │ └── commons │ │ ├── IPlatformService.java │ │ ├── Platform.java │ │ ├── PlatformClassLoader.java │ │ ├── ResourceHandler.java │ │ ├── extension │ │ ├── ExtensionManager.java │ │ ├── OSGiExtensionService.java │ │ └── package.html │ │ ├── log │ │ ├── AbstractLogMgr.java │ │ ├── AbstractLogMgrFactory.java │ │ ├── BasicConsoleHandler.java │ │ ├── BasicFormatter.java │ │ ├── CommonsLogger.java │ │ ├── DevLog.java │ │ ├── EmptyLogMgr.java │ │ ├── Log.java │ │ ├── LogException.java │ │ ├── LogMgr.java │ │ ├── LogMgrFactory.java │ │ ├── eclipse │ │ │ ├── EclipseLogMgr.java │ │ │ └── EclipseLogMgrFactory.java │ │ ├── jdk │ │ │ ├── JdkLogMgr.java │ │ │ └── JdkLogMgrFactory.java │ │ └── package.html │ │ ├── logging_en.properties │ │ ├── messages.properties │ │ ├── messages_en.properties │ │ ├── package.html │ │ ├── platform │ │ ├── EclipsePlatformFactory.java │ │ ├── GenericEclipsePlatform.java │ │ ├── GenericPlatform.java │ │ ├── GenericWebAppServerPlatform.java │ │ ├── IGlobalResourceProvider.java │ │ ├── IPlatformFactory.java │ │ ├── IServiceFactory.java │ │ └── WebAppServerPlatform.java │ │ ├── preferences │ │ ├── Preferences.java │ │ ├── PreferencesService.java │ │ └── eclipse │ │ │ └── EclipsePreferencesService.java │ │ └── util │ │ ├── AbstractException.java │ │ ├── AbstractIOException.java │ │ ├── AbstractRuntimeException.java │ │ ├── AggregatedIterator.java │ │ ├── ArrayIterator.java │ │ ├── BaseThreadMonitor.java │ │ ├── BooleanAttribute.java │ │ ├── Converter.java │ │ ├── DateTime.java │ │ ├── DichotomySearch.java │ │ ├── DoubleMap.java │ │ ├── EmptyIterator.java │ │ ├── EncryptionUtil.java │ │ ├── EnumerationIterator.java │ │ ├── FastStringBuffer.java │ │ ├── FilteredIterator.java │ │ ├── FormatUtil.java │ │ ├── HtmlCommonsUtil.java │ │ ├── HtmlTextUtil.java │ │ ├── IExceptionEx.java │ │ ├── IteratorEnumeration.java │ │ ├── IteratorWrapper.java │ │ ├── JarPackager.java │ │ ├── NotImplementedException.java │ │ ├── ObjectArrayIterator.java │ │ ├── ObjectMap.java │ │ ├── ObjectPool.java │ │ ├── PathUtil.java │ │ ├── QuickSort.java │ │ ├── ResourceBundleHelper.java │ │ ├── Semaphore.java │ │ ├── SingleValueIterator.java │ │ ├── StringUtil.java │ │ ├── SystemCache.java │ │ ├── TDiag.java │ │ ├── TStringArrayMatching.java │ │ ├── TStringVector.java │ │ ├── TSystem.java │ │ ├── TextUtil.java │ │ ├── ThreadLock.java │ │ ├── ThreadLockManager.java │ │ ├── ThreadMap.java │ │ ├── UrlUtil.java │ │ ├── io │ │ ├── ByteStreamCache.java │ │ ├── CharacterStreamCache.java │ │ ├── CountOutputStream.java │ │ ├── CountWriter.java │ │ ├── FastBufferedInputStream.java │ │ ├── FastBufferedOutputStream.java │ │ ├── FastStringReader.java │ │ ├── FileUtil.java │ │ ├── LookAheadInputStream.java │ │ ├── LookAheadReader.java │ │ ├── NullInputStream.java │ │ ├── NullOutputStream.java │ │ ├── NullReader.java │ │ ├── NullWriter.java │ │ ├── ReaderInputStream.java │ │ ├── SharedByteArrayOutputStream.java │ │ ├── StreamUtil.java │ │ ├── TextOutputStream.java │ │ ├── TraceFile.java │ │ ├── TraceInputStream.java │ │ ├── TraceOutputStream.java │ │ ├── TraceReader.java │ │ ├── TraceWriter.java │ │ ├── WriterOutputStream.java │ │ ├── base64 │ │ │ ├── Ascii.java │ │ │ ├── Base64.java │ │ │ ├── Base64InputStream.java │ │ │ ├── Base64OutputStream.java │ │ │ ├── IoConstants.java │ │ │ └── package.html │ │ ├── json │ │ │ ├── JsonArray.java │ │ │ ├── JsonEmptyFactory.java │ │ │ ├── JsonException.java │ │ │ ├── JsonFactory.java │ │ │ ├── JsonFactoryDelegator.java │ │ │ ├── JsonGenerator.java │ │ │ ├── JsonJavaArray.java │ │ │ ├── JsonJavaFactory.java │ │ │ ├── JsonJavaObject.java │ │ │ ├── JsonObject.java │ │ │ ├── JsonParser.java │ │ │ ├── JsonReference.java │ │ │ ├── package.html │ │ │ ├── parser │ │ │ │ ├── Json.java │ │ │ │ ├── Json.jj │ │ │ │ ├── JsonConstants.java │ │ │ │ ├── JsonTokenManager.java │ │ │ │ ├── ParseException.java │ │ │ │ ├── SimpleCharStream.java │ │ │ │ ├── Token.java │ │ │ │ └── TokenMgrError.java │ │ │ └── util │ │ │ │ ├── JsonBuilder.java │ │ │ │ ├── JsonDump.java │ │ │ │ └── JsonWriter.java │ │ └── package.html │ │ ├── package.html │ │ ├── print │ │ ├── DataPrinter.java │ │ ├── DumpObject.java │ │ ├── ResultSetPrinter.java │ │ └── TablePrinter.java │ │ └── profiler │ │ ├── HighResolutionTimer.java │ │ ├── HighResolutionTimerEmulation.java │ │ ├── JVMPIInterface.java │ │ ├── MemoryInspector.java │ │ ├── Profiler.java │ │ ├── ProfilerAggregator.java │ │ ├── ProfilerType.java │ │ └── package.html └── pom.xml ├── deps ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── com.ibm.sbt.bootstrap211 │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── ibm-web-bnd.xml │ │ ├── ibm-web-ext.xml │ │ └── web.xml │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-sbt.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── index.html │ │ └── version.txt ├── com.ibm.sbt.ckeditor422 │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── ibm-web-bnd.xml │ │ ├── ibm-web-ext.xml │ │ └── web.xml │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── index.html │ │ └── readme.txt ├── com.ibm.sbt.dojo180 │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ ├── WebContent │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── WEB-INF │ │ │ └── web.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── ibm-web-bnd.xml │ │ ├── ibm-web-ext.xml │ │ ├── lib │ │ │ └── readme.txt │ │ └── web.xml │ │ ├── dijit │ │ ├── BackgroundIframe.js │ │ ├── Calendar.js │ │ ├── CalendarLite.js │ │ ├── CheckedMenuItem.js │ │ ├── ColorPalette.js │ │ ├── Declaration.js │ │ ├── Destroyable.js │ │ ├── Dialog.js │ │ ├── DialogUnderlay.js │ │ ├── DropDownMenu.js │ │ ├── Editor.js │ │ ├── InlineEditBox.js │ │ ├── LICENSE │ │ ├── Menu.js │ │ ├── MenuBar.js │ │ ├── MenuBarItem.js │ │ ├── MenuItem.js │ │ ├── MenuSeparator.js │ │ ├── PopupMenuBarItem.js │ │ ├── PopupMenuItem.js │ │ ├── ProgressBar.js │ │ ├── TitlePane.js │ │ ├── Toolbar.js │ │ ├── ToolbarSeparator.js │ │ ├── Tooltip.js │ │ ├── TooltipDialog.js │ │ ├── Tree.js │ │ ├── Viewport.js │ │ ├── WidgetSet.js │ │ ├── _BidiSupport.js │ │ ├── _Calendar.js │ │ ├── _Contained.js │ │ ├── _Container.js │ │ ├── _CssStateMixin.js │ │ ├── _DialogMixin.js │ │ ├── _FocusMixin.js │ │ ├── _HasDropDown.js │ │ ├── _KeyNavContainer.js │ │ ├── _MenuBase.js │ │ ├── _OnDijitClickMixin.js │ │ ├── _PaletteMixin.js │ │ ├── _Templated.js │ │ ├── _TemplatedMixin.js │ │ ├── _TimePicker.js │ │ ├── _Widget.js │ │ ├── _WidgetBase.js │ │ ├── _WidgetsInTemplateMixin.js │ │ ├── _base.js │ │ ├── _base │ │ │ ├── focus.js │ │ │ ├── manager.js │ │ │ ├── place.js │ │ │ ├── popup.js │ │ │ ├── scroll.js │ │ │ ├── sniff.js │ │ │ ├── typematic.js │ │ │ ├── wai.js │ │ │ └── window.js │ │ ├── _editor │ │ │ ├── RichText.js │ │ │ ├── _Plugin.js │ │ │ ├── html.js │ │ │ ├── nls │ │ │ │ ├── FontChoice.js │ │ │ │ ├── LinkDialog.js │ │ │ │ ├── ar │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── az │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── bg │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── ca │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── commands.js │ │ │ │ ├── cs │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── da │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── de │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── el │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── es │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── fi │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── fr │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── he │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── hr │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── hu │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── it │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── ja │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── kk │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── ko │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── nb │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── nl │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── pl │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── pt │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── ro │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── ru │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── sk │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── sl │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── sv │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── th │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── tr │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── uk │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ ├── zh-tw │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ │ └── zh │ │ │ │ │ ├── FontChoice.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ └── commands.js │ │ │ ├── plugins │ │ │ │ ├── AlwaysShowToolbar.js │ │ │ │ ├── EnterKeyHandling.js │ │ │ │ ├── FontChoice.js │ │ │ │ ├── FullScreen.js │ │ │ │ ├── LinkDialog.js │ │ │ │ ├── NewPage.js │ │ │ │ ├── Print.js │ │ │ │ ├── TabIndent.js │ │ │ │ ├── TextColor.js │ │ │ │ ├── ToggleDir.js │ │ │ │ └── ViewSource.js │ │ │ ├── range.js │ │ │ └── selection.js │ │ ├── _tree │ │ │ └── dndSource.js │ │ ├── a11y.js │ │ ├── a11yclick.js │ │ ├── bench │ │ │ ├── benchReceive.php │ │ │ ├── benchTool.html │ │ │ ├── button.html │ │ │ ├── create_widgets.html │ │ │ ├── test_button-results.html │ │ │ └── widget_construction_test.php │ │ ├── dijit-all.js │ │ ├── dijit-all.js.uncompressed.js │ │ ├── dijit.js │ │ ├── dijit.js.uncompressed.js │ │ ├── dijit.profile.js │ │ ├── focus.js │ │ ├── form │ │ │ ├── Button.js │ │ │ ├── CheckBox.js │ │ │ ├── ComboBox.js │ │ │ ├── ComboBoxMixin.js │ │ │ ├── ComboButton.js │ │ │ ├── CurrencyTextBox.js │ │ │ ├── DataList.js │ │ │ ├── DateTextBox.js │ │ │ ├── DropDownButton.js │ │ │ ├── FilteringSelect.js │ │ │ ├── Form.js │ │ │ ├── HorizontalRule.js │ │ │ ├── HorizontalRuleLabels.js │ │ │ ├── HorizontalSlider.js │ │ │ ├── MappedTextBox.js │ │ │ ├── MultiSelect.js │ │ │ ├── NumberSpinner.js │ │ │ ├── NumberTextBox.js │ │ │ ├── RadioButton.js │ │ │ ├── RangeBoundTextBox.js │ │ │ ├── Select.js │ │ │ ├── SimpleTextarea.js │ │ │ ├── Slider.js │ │ │ ├── TextBox.js │ │ │ ├── Textarea.js │ │ │ ├── TimeTextBox.js │ │ │ ├── ToggleButton.js │ │ │ ├── ValidationTextBox.js │ │ │ ├── VerticalRule.js │ │ │ ├── VerticalRuleLabels.js │ │ │ ├── VerticalSlider.js │ │ │ ├── _AutoCompleterMixin.js │ │ │ ├── _ButtonMixin.js │ │ │ ├── _CheckBoxMixin.js │ │ │ ├── _ComboBoxMenu.js │ │ │ ├── _ComboBoxMenuMixin.js │ │ │ ├── _DateTimeTextBox.js │ │ │ ├── _ExpandingTextAreaMixin.js │ │ │ ├── _FormMixin.js │ │ │ ├── _FormSelectWidget.js │ │ │ ├── _FormValueMixin.js │ │ │ ├── _FormValueWidget.js │ │ │ ├── _FormWidget.js │ │ │ ├── _FormWidgetMixin.js │ │ │ ├── _ListBase.js │ │ │ ├── _ListMouseMixin.js │ │ │ ├── _RadioButtonMixin.js │ │ │ ├── _SearchMixin.js │ │ │ ├── _Spinner.js │ │ │ ├── _TextBoxMixin.js │ │ │ ├── _ToggleButtonMixin.js │ │ │ ├── nls │ │ │ │ ├── ComboBox.js │ │ │ │ ├── Textarea.js │ │ │ │ ├── ar │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── az │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── bg │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── ca │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── cs │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── da │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── de │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── el │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── es │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── fi │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── fr │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── he │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── hr │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── hu │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── it │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── ja │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── kk │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── ko │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── nb │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── nl │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── pl │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── pt │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── ro │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── ru │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── sk │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── sl │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── sv │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── th │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── tr │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── uk │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ ├── validate.js │ │ │ │ ├── zh-tw │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ │ └── zh │ │ │ │ │ ├── ComboBox.js │ │ │ │ │ ├── Textarea.js │ │ │ │ │ └── validate.js │ │ │ └── templates │ │ │ │ ├── Button.html │ │ │ │ ├── CheckBox.html │ │ │ │ ├── ComboButton.html │ │ │ │ ├── DropDownBox.html │ │ │ │ ├── DropDownButton.html │ │ │ │ ├── HorizontalSlider.html │ │ │ │ ├── Select.html │ │ │ │ ├── Spinner.html │ │ │ │ ├── TextBox.html │ │ │ │ ├── ValidationTextBox.html │ │ │ │ └── VerticalSlider.html │ │ ├── hccss.js │ │ ├── icons │ │ │ ├── commonIcons.css │ │ │ ├── commonIcons_rtl.css │ │ │ ├── editorIcons.css │ │ │ ├── editorIcons_rtl.css │ │ │ └── images │ │ │ │ ├── commonIconsObjActDisabled.png │ │ │ │ ├── commonIconsObjActDisabled_rtl.png │ │ │ │ ├── commonIconsObjActEnabled.png │ │ │ │ ├── commonIconsObjActEnabled8bit.png │ │ │ │ ├── commonIconsObjActEnabled8bit_rtl.png │ │ │ │ ├── commonIconsObjActEnabled_rtl.png │ │ │ │ ├── editorIconsDisabled.png │ │ │ │ ├── editorIconsDisabled_rtl.png │ │ │ │ ├── editorIconsEnabled.png │ │ │ │ ├── editorIconsEnabled_rtl.png │ │ │ │ └── loadingAnimation_rtl.gif │ │ ├── layout │ │ │ ├── AccordionContainer.js │ │ │ ├── AccordionPane.js │ │ │ ├── BorderContainer.js │ │ │ ├── ContentPane.js │ │ │ ├── LayoutContainer.js │ │ │ ├── LinkPane.js │ │ │ ├── ScrollingTabController.js │ │ │ ├── SplitContainer.js │ │ │ ├── StackContainer.js │ │ │ ├── StackController.js │ │ │ ├── TabContainer.js │ │ │ ├── TabController.js │ │ │ ├── _ContentPaneResizeMixin.js │ │ │ ├── _LayoutWidget.js │ │ │ ├── _TabContainerBase.js │ │ │ ├── templates │ │ │ │ ├── AccordionButton.html │ │ │ │ ├── ScrollingTabController.html │ │ │ │ ├── TabContainer.html │ │ │ │ ├── _ScrollingTabControllerButton.html │ │ │ │ └── _TabButton.html │ │ │ └── utils.js │ │ ├── main.js │ │ ├── nls │ │ │ ├── ar │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── az │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── bg │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ca │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── common.js │ │ │ ├── cs │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── da │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── de │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── dijit-all_ROOT.js │ │ │ ├── dijit-all_ar.js │ │ │ ├── dijit-all_ca.js │ │ │ ├── dijit-all_cs.js │ │ │ ├── dijit-all_da.js │ │ │ ├── dijit-all_de.js │ │ │ ├── dijit-all_el.js │ │ │ ├── dijit-all_en-gb.js │ │ │ ├── dijit-all_en-us.js │ │ │ ├── dijit-all_es-es.js │ │ │ ├── dijit-all_fi-fi.js │ │ │ ├── dijit-all_fr-fr.js │ │ │ ├── dijit-all_he-il.js │ │ │ ├── dijit-all_hu.js │ │ │ ├── dijit-all_it-it.js │ │ │ ├── dijit-all_ja-jp.js │ │ │ ├── dijit-all_ko-kr.js │ │ │ ├── dijit-all_nb.js │ │ │ ├── dijit-all_nl-nl.js │ │ │ ├── dijit-all_pl.js │ │ │ ├── dijit-all_pt-br.js │ │ │ ├── dijit-all_pt-pt.js │ │ │ ├── dijit-all_ru.js │ │ │ ├── dijit-all_sk.js │ │ │ ├── dijit-all_sl.js │ │ │ ├── dijit-all_sv.js │ │ │ ├── dijit-all_th.js │ │ │ ├── dijit-all_tr.js │ │ │ ├── dijit-all_zh-cn.js │ │ │ ├── dijit-all_zh-tw.js │ │ │ ├── el │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── es │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── fi │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── fr │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── he │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── hr │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── hu │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── it │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ja │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── kk │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ko │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── loading.js │ │ │ ├── nb │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── nl │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── pl │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── pt-pt │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── pt │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ro │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ru │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── sk │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── sl │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── sv │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── th │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── tr │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── uk │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── zh-tw │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ └── zh │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ ├── package.json │ │ ├── place.js │ │ ├── popup.js │ │ ├── registry.js │ │ ├── templates │ │ │ ├── Calendar.html │ │ │ ├── CheckedMenuItem.html │ │ │ ├── ColorPalette.html │ │ │ ├── Dialog.html │ │ │ ├── InlineEditBox.html │ │ │ ├── Menu.html │ │ │ ├── MenuBar.html │ │ │ ├── MenuBarItem.html │ │ │ ├── MenuItem.html │ │ │ ├── MenuSeparator.html │ │ │ ├── ProgressBar.html │ │ │ ├── TimePicker.html │ │ │ ├── TitlePane.html │ │ │ ├── Tooltip.html │ │ │ ├── TooltipDialog.html │ │ │ ├── Tree.html │ │ │ └── TreeNode.html │ │ ├── themes │ │ │ ├── a11y │ │ │ │ ├── README.txt │ │ │ │ ├── colors3x4.png │ │ │ │ ├── colors7x10.png │ │ │ │ └── indeterminate_progress.gif │ │ │ ├── claro │ │ │ │ ├── Calendar.css │ │ │ │ ├── Calendar.less │ │ │ │ ├── Calendar_rtl.css │ │ │ │ ├── Calendar_rtl.less │ │ │ │ ├── ColorPalette.css │ │ │ │ ├── ColorPalette.less │ │ │ │ ├── Common.css │ │ │ │ ├── Common.less │ │ │ │ ├── Dialog.css │ │ │ │ ├── Dialog.less │ │ │ │ ├── Dialog_rtl.css │ │ │ │ ├── Dialog_rtl.less │ │ │ │ ├── Editor.css │ │ │ │ ├── Editor.less │ │ │ │ ├── Editor_rtl.css │ │ │ │ ├── Editor_rtl.less │ │ │ │ ├── InlineEditBox.css │ │ │ │ ├── InlineEditBox.less │ │ │ │ ├── Menu.css │ │ │ │ ├── Menu.less │ │ │ │ ├── Menu_rtl.css │ │ │ │ ├── Menu_rtl.less │ │ │ │ ├── ProgressBar.css │ │ │ │ ├── ProgressBar.less │ │ │ │ ├── README │ │ │ │ ├── TimePicker.css │ │ │ │ ├── TimePicker.less │ │ │ │ ├── TimePicker_rtl.css │ │ │ │ ├── TimePicker_rtl.less │ │ │ │ ├── TitlePane.css │ │ │ │ ├── TitlePane.less │ │ │ │ ├── TitlePane_rtl.css │ │ │ │ ├── TitlePane_rtl.less │ │ │ │ ├── Toolbar.css │ │ │ │ ├── Toolbar.less │ │ │ │ ├── Toolbar_rtl.css │ │ │ │ ├── Toolbar_rtl.less │ │ │ │ ├── Tree.css │ │ │ │ ├── Tree.less │ │ │ │ ├── claro.css │ │ │ │ ├── claro_rtl.css │ │ │ │ ├── compile.js │ │ │ │ ├── document.css │ │ │ │ ├── document.less │ │ │ │ ├── form │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.less │ │ │ │ │ ├── Button_rtl.css │ │ │ │ │ ├── Button_rtl.less │ │ │ │ │ ├── Checkbox.css │ │ │ │ │ ├── Checkbox.less │ │ │ │ │ ├── Common.css │ │ │ │ │ ├── Common.less │ │ │ │ │ ├── Common_rtl.css │ │ │ │ │ ├── Common_rtl.less │ │ │ │ │ ├── NumberSpinner.css │ │ │ │ │ ├── NumberSpinner.less │ │ │ │ │ ├── RadioButton.css │ │ │ │ │ ├── RadioButton.less │ │ │ │ │ ├── Select.css │ │ │ │ │ ├── Select.less │ │ │ │ │ ├── Slider.css │ │ │ │ │ ├── Slider.less │ │ │ │ │ ├── Slider_rtl.css │ │ │ │ │ ├── Slider_rtl.less │ │ │ │ │ └── images │ │ │ │ │ │ ├── buttonArrows.png │ │ │ │ │ │ ├── buttonDisabled.png │ │ │ │ │ │ ├── buttonDisabled.svg │ │ │ │ │ │ ├── buttonEnabled.png │ │ │ │ │ │ ├── buttonEnabled.svg │ │ │ │ │ │ ├── checkboxAndRadioButtons_IE6.png │ │ │ │ │ │ ├── checkboxRadioButtonStates.png │ │ │ │ │ │ ├── commonFormArrows.png │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ └── sliderThumbs.png │ │ │ │ ├── images │ │ │ │ │ ├── activeGradient.png │ │ │ │ │ ├── activeGradient.svg │ │ │ │ │ ├── calendar.png │ │ │ │ │ ├── calendarArrows.png │ │ │ │ │ ├── calendarArrows8bit.png │ │ │ │ │ ├── checkmarkNoBorder.gif │ │ │ │ │ ├── checkmarkNoBorder.png │ │ │ │ │ ├── dialogCloseIcon.png │ │ │ │ │ ├── dialogCloseIcon8bit.png │ │ │ │ │ ├── dnd.png │ │ │ │ │ ├── loadingAnimation.gif │ │ │ │ │ ├── progressBarAnim.gif │ │ │ │ │ ├── progressBarFull.png │ │ │ │ │ ├── spriteArrows.png │ │ │ │ │ ├── standardGradient.png │ │ │ │ │ ├── standardGradient.svg │ │ │ │ │ ├── tooltip.png │ │ │ │ │ ├── tooltip8bit.png │ │ │ │ │ ├── treeExpandImages.png │ │ │ │ │ └── treeExpandImages8bit.png │ │ │ │ ├── layout │ │ │ │ │ ├── AccordionContainer.css │ │ │ │ │ ├── AccordionContainer.less │ │ │ │ │ ├── BorderContainer.css │ │ │ │ │ ├── BorderContainer.less │ │ │ │ │ ├── ContentPane.css │ │ │ │ │ ├── ContentPane.less │ │ │ │ │ ├── TabContainer.css │ │ │ │ │ ├── TabContainer.less │ │ │ │ │ ├── TabContainer_rtl.css │ │ │ │ │ ├── TabContainer_rtl.less │ │ │ │ │ └── images │ │ │ │ │ │ ├── tabBottomSelected.png │ │ │ │ │ │ ├── tabBottomSelected.svg │ │ │ │ │ │ ├── tabBottomUnselected.png │ │ │ │ │ │ ├── tabBottomUnselected.svg │ │ │ │ │ │ ├── tabClose.png │ │ │ │ │ │ ├── tabLeftSelected.png │ │ │ │ │ │ ├── tabLeftSelected.svg │ │ │ │ │ │ ├── tabLeftUnselected.png │ │ │ │ │ │ ├── tabLeftUnselected.svg │ │ │ │ │ │ ├── tabNested.png │ │ │ │ │ │ ├── tabRightSelected.png │ │ │ │ │ │ ├── tabRightSelected.svg │ │ │ │ │ │ ├── tabRightUnselected.png │ │ │ │ │ │ ├── tabRightUnselected.svg │ │ │ │ │ │ ├── tabTopSelected.png │ │ │ │ │ │ ├── tabTopSelected.svg │ │ │ │ │ │ ├── tabTopUnselected.png │ │ │ │ │ │ └── tabTopUnselected.svg │ │ │ │ └── variables.less │ │ │ ├── dijit.css │ │ │ ├── dijit_rtl.css │ │ │ └── soria │ │ │ │ └── images │ │ │ │ └── spriteRoundedIconsSmall.png │ │ ├── tree │ │ │ ├── ForestStoreModel.js │ │ │ ├── ObjectStoreModel.js │ │ │ ├── TreeStoreModel.js │ │ │ ├── _dndContainer.js │ │ │ ├── _dndSelector.js │ │ │ ├── dndSource.js │ │ │ └── model.js │ │ └── typematic.js │ │ ├── dojo │ │ ├── AdapterRegistry.js │ │ ├── Deferred.js │ │ ├── DeferredList.js │ │ ├── Evented.js │ │ ├── LICENSE │ │ ├── NodeList-data.js │ │ ├── NodeList-dom.js │ │ ├── NodeList-fx.js │ │ ├── NodeList-html.js │ │ ├── NodeList-manipulate.js │ │ ├── NodeList-traverse.js │ │ ├── NodeList.js │ │ ├── OpenAjax.js │ │ ├── Stateful.js │ │ ├── _base │ │ │ ├── Color.js │ │ │ ├── Deferred.js │ │ │ ├── NodeList.js │ │ │ ├── array.js │ │ │ ├── browser.js │ │ │ ├── config.js │ │ │ ├── configFirefoxExtension.js │ │ │ ├── configNode.js │ │ │ ├── configRhino.js │ │ │ ├── configSpidermonkey.js │ │ │ ├── connect.js │ │ │ ├── declare.js │ │ │ ├── event.js │ │ │ ├── fx.js │ │ │ ├── html.js │ │ │ ├── json.js │ │ │ ├── kernel.js │ │ │ ├── lang.js │ │ │ ├── loader.js │ │ │ ├── query.js │ │ │ ├── sniff.js │ │ │ ├── unload.js │ │ │ ├── url.js │ │ │ ├── window.js │ │ │ └── xhr.js │ │ ├── _firebug │ │ │ ├── LICENSE │ │ │ ├── errorIcon.png │ │ │ ├── firebug.css │ │ │ ├── firebug.js │ │ │ ├── infoIcon.png │ │ │ ├── tab_lft_norm.png │ │ │ ├── tab_lft_over.png │ │ │ ├── tab_rgt_norm.png │ │ │ ├── tab_rgt_over.png │ │ │ └── warningIcon.png │ │ ├── aspect.js │ │ ├── back.js │ │ ├── behavior.js │ │ ├── cache.js │ │ ├── cldr │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── monetary.js │ │ │ ├── nls │ │ │ │ ├── aa-dj │ │ │ │ │ └── currency.js │ │ │ │ ├── aa-er │ │ │ │ │ └── currency.js │ │ │ │ ├── aa │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── af-na │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── af │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── agq │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ak │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── am │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ar-dz │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ar-iq │ │ │ │ │ └── gregorian.js │ │ │ │ ├── ar-jo │ │ │ │ │ └── gregorian.js │ │ │ │ ├── ar-lb │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ar-ly │ │ │ │ │ └── number.js │ │ │ │ ├── ar-ma │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ar-mr │ │ │ │ │ └── number.js │ │ │ │ ├── ar-ps │ │ │ │ │ └── number.js │ │ │ │ ├── ar-qa │ │ │ │ │ └── number.js │ │ │ │ ├── ar-sa │ │ │ │ │ └── number.js │ │ │ │ ├── ar-sy │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ar-tn │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ar-ye │ │ │ │ │ └── number.js │ │ │ │ ├── ar │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── as │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── asa │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ast │ │ │ │ │ └── gregorian.js │ │ │ │ ├── az-cyrl │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── az │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── bas │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── be │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── bem │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── bez │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── bg │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ └── number.js │ │ │ │ ├── bm │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── bn-in │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── bn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ └── number.js │ │ │ │ ├── bo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── br │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── brx │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── indian.js │ │ │ │ │ └── number.js │ │ │ │ ├── bs-cyrl │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── bs │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ └── number.js │ │ │ │ ├── buddhist.js │ │ │ │ ├── byn │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── ca │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── cgg │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── chinese.js │ │ │ │ ├── chr │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── coptic.js │ │ │ │ ├── cs │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── currency.js │ │ │ │ ├── cy │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── da │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── dav │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── de-at │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── de-ch │ │ │ │ │ └── number.js │ │ │ │ ├── de-li │ │ │ │ │ └── number.js │ │ │ │ ├── de-lu │ │ │ │ │ └── currency.js │ │ │ │ ├── de │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── dje │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── dua │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── dyo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── dz │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ebu │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ee │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── el-cy │ │ │ │ │ └── number.js │ │ │ │ ├── el │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── en-150 │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-au │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── en-bb │ │ │ │ │ └── currency.js │ │ │ │ ├── en-be │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-bm │ │ │ │ │ └── currency.js │ │ │ │ ├── en-bw │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-bz │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-ca │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── en-dsrt │ │ │ │ │ └── gregorian.js │ │ │ │ ├── en-gb │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── en-hk │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── en-ie │ │ │ │ │ └── gregorian.js │ │ │ │ ├── en-in │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-jm │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-mt │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── en-na │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-nz │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── en-ph │ │ │ │ │ └── currency.js │ │ │ │ ├── en-pk │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── en-sg │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── en-tt │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-us-posix │ │ │ │ │ └── number.js │ │ │ │ ├── en-za │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── en-zw │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── en │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── eo │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-419 │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-ar │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-bo │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-cl │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-co │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-cr │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-do │ │ │ │ │ └── currency.js │ │ │ │ ├── es-ec │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-gq │ │ │ │ │ └── number.js │ │ │ │ ├── es-gt │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── es-hn │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── es-mx │ │ │ │ │ └── currency.js │ │ │ │ ├── es-ni │ │ │ │ │ └── currency.js │ │ │ │ ├── es-pa │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── es-pe │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── es-pr │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── es-py │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-us │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── es-uy │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── es-ve │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── es │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── et │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ethiopic-amete-alem.js │ │ │ │ ├── ethiopic.js │ │ │ │ ├── eu │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── ewo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── fa-af │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── persian.js │ │ │ │ ├── fa │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── persian.js │ │ │ │ ├── ff │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── fi │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── fil │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── fo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── fr-be │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── fr-bi │ │ │ │ │ └── currency.js │ │ │ │ ├── fr-ca │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── fr-ch │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── fr-dj │ │ │ │ │ └── currency.js │ │ │ │ ├── fr-gn │ │ │ │ │ └── currency.js │ │ │ │ ├── fr-km │ │ │ │ │ └── currency.js │ │ │ │ ├── fr-lu │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── fr │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── fur │ │ │ │ │ └── gregorian.js │ │ │ │ ├── ga │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── gd │ │ │ │ │ └── gregorian.js │ │ │ │ ├── gl │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── gregorian.js │ │ │ │ ├── gsw │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── gu │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── guz │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── gv │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ha │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── haw │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── he │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ └── number.js │ │ │ │ ├── hebrew.js │ │ │ │ ├── hi │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── persian.js │ │ │ │ ├── hr │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── hu │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── hy │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── id │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── ig │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ii │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── indian.js │ │ │ │ ├── is │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── islamic-civil.js │ │ │ │ ├── islamic.js │ │ │ │ ├── it-ch │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── it │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── ja │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── japanese.js │ │ │ │ ├── jgo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── jmc │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ka │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kab │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kam │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kde │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kea │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── khq │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ki │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kk │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kkj │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kl │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kln │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── km │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── kn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ko │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── kok │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ks │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── indian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ksb │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ksf │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ksh │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── kw │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ky │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── lag │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── lg │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ln │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── lo │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── lt │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── lu │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── luo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── luy │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── lv │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ └── number.js │ │ │ │ ├── mas-tz │ │ │ │ │ └── currency.js │ │ │ │ ├── mas │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mer │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mfe │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mg │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mgh │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mgo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mk │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ml │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ └── number.js │ │ │ │ ├── mo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mr │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ms-bn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ms │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── mt │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── mua │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── my │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── naq │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── nb │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── nd │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ne-in │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── indian.js │ │ │ │ ├── ne │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── nl-aw │ │ │ │ │ └── currency.js │ │ │ │ ├── nl-be │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── nl-cw │ │ │ │ │ └── currency.js │ │ │ │ ├── nl-sx │ │ │ │ │ └── currency.js │ │ │ │ ├── nl │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── nmg │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── nn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── nnh │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── nr │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── nso │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── number.js │ │ │ │ ├── nus │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── nyn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── om-ke │ │ │ │ │ └── currency.js │ │ │ │ ├── om │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── or │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── os │ │ │ │ │ └── gregorian.js │ │ │ │ ├── pa-arab │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── pa-pk │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── pa │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── persian.js │ │ │ │ ├── pl │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── ps │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── persian.js │ │ │ │ ├── pt-ao │ │ │ │ │ └── currency.js │ │ │ │ ├── pt-mz │ │ │ │ │ └── currency.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── pt-st │ │ │ │ │ └── currency.js │ │ │ │ ├── pt │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── rm │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── rn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ro │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ └── number.js │ │ │ │ ├── roc.js │ │ │ │ ├── rof │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ru-ua │ │ │ │ │ └── gregorian.js │ │ │ │ ├── ru │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── rw │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── rwk │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sah │ │ │ │ │ └── gregorian.js │ │ │ │ ├── saq │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sbp │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── se │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── seh │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ses │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sg │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sh │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── shi-latn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── shi │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── si │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sk │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sl │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── so-dj │ │ │ │ │ └── currency.js │ │ │ │ ├── so-et │ │ │ │ │ └── currency.js │ │ │ │ ├── so-ke │ │ │ │ │ └── currency.js │ │ │ │ ├── so │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sq │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── sr-cyrl-ba │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── sr-latn-me │ │ │ │ │ └── gregorian.js │ │ │ │ ├── sr-latn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── sr │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── ss │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── ssy │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── st-ls │ │ │ │ │ └── currency.js │ │ │ │ ├── st │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── sv-fi │ │ │ │ │ └── gregorian.js │ │ │ │ ├── sv │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── sw-ke │ │ │ │ │ └── number.js │ │ │ │ ├── sw │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── swc │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ta-lk │ │ │ │ │ └── currency.js │ │ │ │ ├── ta-my │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── ta-sg │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── ta │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── te │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── teo-ke │ │ │ │ │ └── currency.js │ │ │ │ ├── teo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── th │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── ti-er │ │ │ │ │ ├── currency.js │ │ │ │ │ └── gregorian.js │ │ │ │ ├── ti │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── tig │ │ │ │ │ └── currency.js │ │ │ │ ├── tn │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── to │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── tr │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── ts │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── twq │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── tzm │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── uk │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── persian.js │ │ │ │ ├── ur-in │ │ │ │ │ └── number.js │ │ │ │ ├── ur │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ └── number.js │ │ │ │ ├── uz-af │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── uz-arab │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── uz-latn │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── islamic.js │ │ │ │ ├── uz │ │ │ │ │ └── gregorian.js │ │ │ │ ├── vai-latn │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── vai │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── ve │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── vi │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── vo │ │ │ │ │ └── gregorian.js │ │ │ │ ├── vun │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── wae │ │ │ │ │ └── gregorian.js │ │ │ │ ├── wal │ │ │ │ │ └── currency.js │ │ │ │ ├── xh │ │ │ │ │ ├── currency.js │ │ │ │ │ └── number.js │ │ │ │ ├── xog │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── yav │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── yo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── zh-hans-hk │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── zh-hans-mo │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── zh-hans-sg │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── zh-hant-hk │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── number.js │ │ │ │ │ └── roc.js │ │ │ │ ├── zh-hant-mo │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── zh-hant │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ ├── zh-hk │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── zh-mo │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── zh-tw │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ │ ├── zh │ │ │ │ │ ├── buddhist.js │ │ │ │ │ ├── chinese.js │ │ │ │ │ ├── coptic.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── ethiopic.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ ├── hebrew.js │ │ │ │ │ ├── indian.js │ │ │ │ │ ├── islamic.js │ │ │ │ │ ├── japanese.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── persian.js │ │ │ │ │ └── roc.js │ │ │ │ └── zu │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── gregorian.js │ │ │ │ │ └── number.js │ │ │ └── supplemental.js │ │ ├── colors.js │ │ ├── cookie.js │ │ ├── currency.js │ │ ├── data │ │ │ ├── ItemFileReadStore.js │ │ │ ├── ItemFileWriteStore.js │ │ │ ├── ObjectStore.js │ │ │ ├── api │ │ │ │ ├── Identity.js │ │ │ │ ├── Item.js │ │ │ │ ├── Notification.js │ │ │ │ ├── Read.js │ │ │ │ ├── Request.js │ │ │ │ └── Write.js │ │ │ └── util │ │ │ │ ├── filter.js │ │ │ │ ├── simpleFetch.js │ │ │ │ └── sorter.js │ │ ├── date.js │ │ ├── date │ │ │ ├── locale.js │ │ │ └── stamp.js │ │ ├── dnd │ │ │ ├── AutoSource.js │ │ │ ├── Avatar.js │ │ │ ├── Container.js │ │ │ ├── Manager.js │ │ │ ├── Moveable.js │ │ │ ├── Mover.js │ │ │ ├── Selector.js │ │ │ ├── Source.js │ │ │ ├── Target.js │ │ │ ├── TimedMoveable.js │ │ │ ├── autoscroll.js │ │ │ ├── common.js │ │ │ └── move.js │ │ ├── dojo.js │ │ ├── dojo.js.uncompressed.js │ │ ├── dojo.profile.js │ │ ├── dom-attr.js │ │ ├── dom-class.js │ │ ├── dom-construct.js │ │ ├── dom-form.js │ │ ├── dom-geometry.js │ │ ├── dom-prop.js │ │ ├── dom-style.js │ │ ├── dom.js │ │ ├── domReady.js │ │ ├── errors │ │ │ ├── CancelError.js │ │ │ ├── RequestError.js │ │ │ ├── RequestTimeoutError.js │ │ │ └── create.js │ │ ├── fx.js │ │ ├── fx │ │ │ ├── Toggler.js │ │ │ └── easing.js │ │ ├── gears.js │ │ ├── has.js │ │ ├── hash.js │ │ ├── hccss.js │ │ ├── html.js │ │ ├── i18n.js │ │ ├── io-query.js │ │ ├── io │ │ │ ├── iframe.js │ │ │ └── script.js │ │ ├── jaxer.js │ │ ├── json.js │ │ ├── keys.js │ │ ├── loadInit.js │ │ ├── main.js │ │ ├── mouse.js │ │ ├── nls │ │ │ ├── ar │ │ │ │ └── colors.js │ │ │ ├── az │ │ │ │ └── colors.js │ │ │ ├── bg │ │ │ │ └── colors.js │ │ │ ├── ca │ │ │ │ └── colors.js │ │ │ ├── colors.js │ │ │ ├── cs │ │ │ │ └── colors.js │ │ │ ├── da │ │ │ │ └── colors.js │ │ │ ├── de │ │ │ │ └── colors.js │ │ │ ├── el │ │ │ │ └── colors.js │ │ │ ├── es │ │ │ │ └── colors.js │ │ │ ├── fi │ │ │ │ └── colors.js │ │ │ ├── fr │ │ │ │ └── colors.js │ │ │ ├── he │ │ │ │ └── colors.js │ │ │ ├── hr │ │ │ │ └── colors.js │ │ │ ├── hu │ │ │ │ └── colors.js │ │ │ ├── it │ │ │ │ └── colors.js │ │ │ ├── ja │ │ │ │ └── colors.js │ │ │ ├── kk │ │ │ │ └── colors.js │ │ │ ├── ko │ │ │ │ └── colors.js │ │ │ ├── nb │ │ │ │ └── colors.js │ │ │ ├── nl │ │ │ │ └── colors.js │ │ │ ├── pl │ │ │ │ └── colors.js │ │ │ ├── pt-pt │ │ │ │ └── colors.js │ │ │ ├── pt │ │ │ │ └── colors.js │ │ │ ├── ro │ │ │ │ └── colors.js │ │ │ ├── ru │ │ │ │ └── colors.js │ │ │ ├── sk │ │ │ │ └── colors.js │ │ │ ├── sl │ │ │ │ └── colors.js │ │ │ ├── sv │ │ │ │ └── colors.js │ │ │ ├── th │ │ │ │ └── colors.js │ │ │ ├── tr │ │ │ │ └── colors.js │ │ │ ├── zh-tw │ │ │ │ └── colors.js │ │ │ └── zh │ │ │ │ └── colors.js │ │ ├── node.js │ │ ├── number.js │ │ ├── on.js │ │ ├── package.json │ │ ├── parser.js │ │ ├── promise │ │ │ ├── Promise.js │ │ │ ├── all.js │ │ │ ├── first.js │ │ │ ├── instrumentation.js │ │ │ └── tracer.js │ │ ├── query.js │ │ ├── ready.js │ │ ├── regexp.js │ │ ├── request.js │ │ ├── request │ │ │ ├── default.js │ │ │ ├── handlers.js │ │ │ ├── iframe.js │ │ │ ├── node.js │ │ │ ├── notify.js │ │ │ ├── registry.js │ │ │ ├── script.js │ │ │ ├── util.js │ │ │ ├── watch.js │ │ │ └── xhr.js │ │ ├── require.js │ │ ├── resources │ │ │ ├── LICENSE │ │ │ ├── blank.gif │ │ │ ├── blank.html │ │ │ ├── dnd.css │ │ │ ├── dojo.css │ │ │ ├── iframe_history.html │ │ │ └── images │ │ │ │ ├── dndCopy.png │ │ │ │ ├── dndMove.png │ │ │ │ ├── dndNoCopy.png │ │ │ │ └── dndNoMove.png │ │ ├── router.js │ │ ├── router │ │ │ └── RouterBase.js │ │ ├── rpc │ │ │ ├── JsonService.js │ │ │ ├── JsonpService.js │ │ │ └── RpcService.js │ │ ├── selector │ │ │ ├── _loader.js │ │ │ ├── acme.js │ │ │ └── lite.js │ │ ├── sniff.js │ │ ├── store │ │ │ ├── Cache.js │ │ │ ├── DataStore.js │ │ │ ├── JsonRest.js │ │ │ ├── Memory.js │ │ │ ├── Observable.js │ │ │ ├── README │ │ │ ├── api │ │ │ │ └── Store.js │ │ │ └── util │ │ │ │ ├── QueryResults.js │ │ │ │ └── SimpleQueryEngine.js │ │ ├── string.js │ │ ├── tests.js │ │ ├── text.js │ │ ├── topic.js │ │ ├── touch.js │ │ ├── uacss.js │ │ ├── when.js │ │ └── window.js │ │ ├── dojox │ │ ├── LICENSE │ │ ├── NodeList │ │ │ ├── README │ │ │ └── delegate.js │ │ ├── analytics.js │ │ ├── analytics │ │ │ ├── README │ │ │ ├── Urchin.js │ │ │ ├── _base.js │ │ │ ├── logger │ │ │ │ ├── JSON.php │ │ │ │ └── dojoxAnalytics.php │ │ │ ├── plugins │ │ │ │ ├── consoleMessages.js │ │ │ │ ├── dojo.js │ │ │ │ ├── gestureEvents.js │ │ │ │ ├── idle.js │ │ │ │ ├── mouseClick.js │ │ │ │ ├── mouseOver.js │ │ │ │ ├── touchMove.js │ │ │ │ ├── touchPress.js │ │ │ │ └── window.js │ │ │ └── profiles │ │ │ │ ├── analytics.profile.js │ │ │ │ └── analyticsInBase.profile.js │ │ ├── app │ │ │ ├── Controller.js │ │ │ ├── LICENSE │ │ │ ├── README.txt │ │ │ ├── View.js │ │ │ ├── controllers │ │ │ │ ├── History.js │ │ │ │ ├── HistoryHash.js │ │ │ │ ├── Layout.js │ │ │ │ ├── Load.js │ │ │ │ └── Transition.js │ │ │ ├── layout │ │ │ │ └── utils.js │ │ │ ├── main.js │ │ │ ├── model.js │ │ │ ├── module │ │ │ │ ├── env.js │ │ │ │ └── lifecycle.js │ │ │ ├── schema │ │ │ │ ├── README │ │ │ │ ├── application.json │ │ │ │ ├── model.json │ │ │ │ ├── scene.json │ │ │ │ ├── store.json │ │ │ │ └── view.json │ │ │ ├── utils │ │ │ │ ├── mvcModel.js │ │ │ │ └── simpleModel.js │ │ │ └── widgets │ │ │ │ ├── Container.js │ │ │ │ └── _ScrollableMixin.js │ │ ├── atom │ │ │ ├── README │ │ │ ├── io │ │ │ │ ├── Connection.js │ │ │ │ └── model.js │ │ │ └── widget │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ ├── FeedViewer.js │ │ │ │ ├── nls │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ ├── PeopleEditor.js │ │ │ │ ├── ar │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── az │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── bg │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── ca │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── cs │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── da │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── de │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── el │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── es │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── fi │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── fr │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── he │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── hr │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── hu │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── it │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── ja │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── kk │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── ko │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── nb │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── nl │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── pl │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── pt │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── ro │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── ru │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── sk │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── sl │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── sv │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── th │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── tr │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ ├── zh-tw │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ └── zh │ │ │ │ │ ├── FeedEntryEditor.js │ │ │ │ │ ├── FeedEntryViewer.js │ │ │ │ │ ├── FeedViewerEntry.js │ │ │ │ │ └── PeopleEditor.js │ │ │ │ └── templates │ │ │ │ ├── EntryHeader.html │ │ │ │ ├── FeedEntryEditor.html │ │ │ │ ├── FeedEntryViewer.html │ │ │ │ ├── FeedViewer.html │ │ │ │ ├── FeedViewerEntry.html │ │ │ │ ├── FeedViewerGrouping.html │ │ │ │ ├── PeopleEditor.html │ │ │ │ └── css │ │ │ │ ├── EntryHeader.css │ │ │ │ ├── HtmlFeedEntryEditor.css │ │ │ │ ├── HtmlFeedEntryViewer.css │ │ │ │ ├── HtmlFeedViewer.css │ │ │ │ ├── HtmlFeedViewerEntry.css │ │ │ │ └── HtmlFeedViewerGrouping.css │ │ ├── av │ │ │ ├── FLAudio.js │ │ │ ├── FLVideo.js │ │ │ ├── README │ │ │ ├── _Media.js │ │ │ ├── resources │ │ │ │ ├── audio.swf │ │ │ │ ├── version.mov │ │ │ │ └── video.swf │ │ │ └── widget │ │ │ │ ├── PlayButton.js │ │ │ │ ├── Player.js │ │ │ │ ├── ProgressSlider.js │ │ │ │ ├── Status.js │ │ │ │ ├── VolumeButton.js │ │ │ │ └── resources │ │ │ │ ├── PlayButton.html │ │ │ │ ├── Player.css │ │ │ │ ├── Player.html │ │ │ │ ├── ProgressSlider.html │ │ │ │ ├── Status.html │ │ │ │ ├── VolumeButton.html │ │ │ │ └── images │ │ │ │ ├── dojoPlayerIcons.png │ │ │ │ ├── playerIcons │ │ │ │ ├── player_sprite.png │ │ │ │ ├── progressLoadedBk.png │ │ │ │ ├── progressPositionBk.png │ │ │ │ ├── sliderHandleNorm.png │ │ │ │ ├── sliderHandleOver.png │ │ │ │ └── sliderHandleSprite.png │ │ ├── calc │ │ │ ├── FuncGen.js │ │ │ ├── GraphPro.js │ │ │ ├── Grapher.js │ │ │ ├── Readme.txt │ │ │ ├── Standard.js │ │ │ ├── _Executor.js │ │ │ ├── _ExecutorIframe.html │ │ │ ├── resources │ │ │ │ ├── Common.css │ │ │ │ ├── GraphPro.css │ │ │ │ └── Standard.css │ │ │ ├── templates │ │ │ │ ├── FuncGen.html │ │ │ │ ├── GraphPro.html │ │ │ │ ├── Grapher.html │ │ │ │ └── Standard.html │ │ │ └── toFrac.js │ │ ├── calendar │ │ │ ├── Calendar.js │ │ │ ├── CalendarBase.js │ │ │ ├── ColumnView.js │ │ │ ├── ColumnViewSecondarySheet.js │ │ │ ├── ExpandRenderer.js │ │ │ ├── HorizontalRenderer.js │ │ │ ├── Keyboard.js │ │ │ ├── LICENSE │ │ │ ├── LabelRenderer.js │ │ │ ├── MatrixView.js │ │ │ ├── MobileCalendar.js │ │ │ ├── MobileHorizontalRenderer.js │ │ │ ├── MobileVerticalRenderer.js │ │ │ ├── MonthColumnView.js │ │ │ ├── Mouse.js │ │ │ ├── README │ │ │ ├── SimpleColumnView.js │ │ │ ├── StoreMixin.js │ │ │ ├── Touch.js │ │ │ ├── VerticalRenderer.js │ │ │ ├── ViewBase.js │ │ │ ├── _RendererMixin.js │ │ │ ├── _VerticalScrollBarBase.js │ │ │ ├── nls │ │ │ │ ├── ar │ │ │ │ │ └── buttons.js │ │ │ │ ├── bg │ │ │ │ │ └── buttons.js │ │ │ │ ├── buttons.js │ │ │ │ ├── ca │ │ │ │ │ └── buttons.js │ │ │ │ ├── cs │ │ │ │ │ └── buttons.js │ │ │ │ ├── da │ │ │ │ │ └── buttons.js │ │ │ │ ├── de │ │ │ │ │ └── buttons.js │ │ │ │ ├── el │ │ │ │ │ └── buttons.js │ │ │ │ ├── es │ │ │ │ │ └── buttons.js │ │ │ │ ├── fi │ │ │ │ │ └── buttons.js │ │ │ │ ├── fr │ │ │ │ │ └── buttons.js │ │ │ │ ├── he │ │ │ │ │ └── buttons.js │ │ │ │ ├── hr │ │ │ │ │ └── buttons.js │ │ │ │ ├── hu │ │ │ │ │ └── buttons.js │ │ │ │ ├── it │ │ │ │ │ └── buttons.js │ │ │ │ ├── ja │ │ │ │ │ └── buttons.js │ │ │ │ ├── kk │ │ │ │ │ └── buttons.js │ │ │ │ ├── ko │ │ │ │ │ └── buttons.js │ │ │ │ ├── nb │ │ │ │ │ └── buttons.js │ │ │ │ ├── nl │ │ │ │ │ └── buttons.js │ │ │ │ ├── pl │ │ │ │ │ └── buttons.js │ │ │ │ ├── pt-pt │ │ │ │ │ └── buttons.js │ │ │ │ ├── pt │ │ │ │ │ └── buttons.js │ │ │ │ ├── ro │ │ │ │ │ └── buttons.js │ │ │ │ ├── ru │ │ │ │ │ └── buttons.js │ │ │ │ ├── sk │ │ │ │ │ └── buttons.js │ │ │ │ ├── sl │ │ │ │ │ └── buttons.js │ │ │ │ ├── sv │ │ │ │ │ └── buttons.js │ │ │ │ ├── th │ │ │ │ │ └── buttons.js │ │ │ │ ├── tr │ │ │ │ │ └── buttons.js │ │ │ │ ├── zh-tw │ │ │ │ │ └── buttons.js │ │ │ │ └── zh │ │ │ │ │ └── buttons.js │ │ │ ├── templates │ │ │ │ ├── Calendar.html │ │ │ │ ├── ColumnView.html │ │ │ │ ├── ColumnViewSecondarySheet.html │ │ │ │ ├── ExpandRenderer.html │ │ │ │ ├── HorizontalRenderer.html │ │ │ │ ├── LabelRenderer.html │ │ │ │ ├── MatrixView.html │ │ │ │ ├── MobileCalendar.html │ │ │ │ ├── MobileHorizontalRenderer.html │ │ │ │ ├── MobileVerticalRenderer.html │ │ │ │ ├── MonthColumnView.html │ │ │ │ ├── SimpleColumnView.html │ │ │ │ └── VerticalRenderer.html │ │ │ ├── themes │ │ │ │ ├── claro │ │ │ │ │ ├── Calendar.css │ │ │ │ │ ├── Calendar.less │ │ │ │ │ ├── Calendar_rtl.css │ │ │ │ │ ├── Calendar_rtl.less │ │ │ │ │ ├── ColumnView.css │ │ │ │ │ ├── ColumnView.less │ │ │ │ │ ├── ColumnViewCommon.less │ │ │ │ │ ├── ColumnView_rtl.css │ │ │ │ │ ├── ColumnView_rtl.less │ │ │ │ │ ├── Common.less │ │ │ │ │ ├── MatrixView.css │ │ │ │ │ ├── MatrixView.less │ │ │ │ │ ├── MatrixViewCommon.less │ │ │ │ │ ├── MatrixView_rtl.css │ │ │ │ │ ├── MatrixView_rtl.less │ │ │ │ │ ├── MonthColumnView.css │ │ │ │ │ ├── MonthColumnView.less │ │ │ │ │ ├── MonthColumnViewCommon.less │ │ │ │ │ ├── MonthColumnView_rtl.css │ │ │ │ │ ├── MonthColumnView_rtl.less │ │ │ │ │ ├── SimpleColumnView.css │ │ │ │ │ ├── SimpleColumnView.less │ │ │ │ │ └── images │ │ │ │ │ │ └── titlebar.png │ │ │ │ └── iphone │ │ │ │ │ ├── Calendar.css │ │ │ │ │ ├── Calendar.less │ │ │ │ │ ├── Calendar_rtl.css │ │ │ │ │ ├── Calendar_rtl.less │ │ │ │ │ ├── ColumnView.css │ │ │ │ │ ├── ColumnView.less │ │ │ │ │ ├── ColumnViewCommon.less │ │ │ │ │ ├── ColumnView_rtl.css │ │ │ │ │ ├── ColumnView_rtl.less │ │ │ │ │ ├── Common.css │ │ │ │ │ ├── Common.less │ │ │ │ │ ├── MatrixView.css │ │ │ │ │ ├── MatrixView.less │ │ │ │ │ ├── MatrixViewCommon.less │ │ │ │ │ ├── MatrixView_rtl.css │ │ │ │ │ ├── MatrixView_rtl.less │ │ │ │ │ ├── MonthColumnView.css │ │ │ │ │ ├── MonthColumnView.less │ │ │ │ │ ├── MonthColumnViewCommon.less │ │ │ │ │ ├── MonthColumnView_rtl.css │ │ │ │ │ └── MonthColumnView_rtl.less │ │ │ └── time.js │ │ ├── charting │ │ │ ├── BidiSupport.js │ │ │ ├── Chart.js │ │ │ ├── Chart2D.js │ │ │ ├── Chart3D.js │ │ │ ├── DataChart.js │ │ │ ├── DataSeries.js │ │ │ ├── Element.js │ │ │ ├── README │ │ │ ├── Series.js │ │ │ ├── SimpleTheme.js │ │ │ ├── StoreSeries.js │ │ │ ├── Theme.js │ │ │ ├── action2d │ │ │ │ ├── Base.js │ │ │ │ ├── ChartAction.js │ │ │ │ ├── Highlight.js │ │ │ │ ├── Magnify.js │ │ │ │ ├── MouseIndicator.js │ │ │ │ ├── MouseZoomAndPan.js │ │ │ │ ├── MoveSlice.js │ │ │ │ ├── PlotAction.js │ │ │ │ ├── Shake.js │ │ │ │ ├── Tooltip.js │ │ │ │ ├── TouchIndicator.js │ │ │ │ ├── TouchZoomAndPan.js │ │ │ │ └── _IndicatorElement.js │ │ │ ├── axis2d │ │ │ │ ├── Base.js │ │ │ │ ├── Default.js │ │ │ │ ├── Invisible.js │ │ │ │ └── common.js │ │ │ ├── plot2d │ │ │ │ ├── Areas.js │ │ │ │ ├── Bars.js │ │ │ │ ├── Base.js │ │ │ │ ├── Bubble.js │ │ │ │ ├── Candlesticks.js │ │ │ │ ├── CartesianBase.js │ │ │ │ ├── ClusteredBars.js │ │ │ │ ├── ClusteredColumns.js │ │ │ │ ├── Columns.js │ │ │ │ ├── Default.js │ │ │ │ ├── Grid.js │ │ │ │ ├── Lines.js │ │ │ │ ├── Markers.js │ │ │ │ ├── MarkersOnly.js │ │ │ │ ├── OHLC.js │ │ │ │ ├── Pie.js │ │ │ │ ├── Scatter.js │ │ │ │ ├── Spider.js │ │ │ │ ├── Stacked.js │ │ │ │ ├── StackedAreas.js │ │ │ │ ├── StackedBars.js │ │ │ │ ├── StackedColumns.js │ │ │ │ ├── StackedLines.js │ │ │ │ ├── _PlotEvents.js │ │ │ │ ├── common.js │ │ │ │ └── commonStacked.js │ │ │ ├── plot3d │ │ │ │ ├── Bars.js │ │ │ │ ├── Base.js │ │ │ │ └── Cylinders.js │ │ │ ├── resources │ │ │ │ └── Legend.css │ │ │ ├── scaler │ │ │ │ ├── common.js │ │ │ │ ├── linear.js │ │ │ │ └── primitive.js │ │ │ ├── themes │ │ │ │ ├── Adobebricks.js │ │ │ │ ├── Algae.js │ │ │ │ ├── Bahamation.js │ │ │ │ ├── BlueDusk.js │ │ │ │ ├── Charged.js │ │ │ │ ├── Chris.js │ │ │ │ ├── Claro.js │ │ │ │ ├── CubanShirts.js │ │ │ │ ├── Desert.js │ │ │ │ ├── Distinctive.js │ │ │ │ ├── Dollar.js │ │ │ │ ├── Electric.js │ │ │ │ ├── Grasshopper.js │ │ │ │ ├── Grasslands.js │ │ │ │ ├── GreySkies.js │ │ │ │ ├── Harmony.js │ │ │ │ ├── IndigoNation.js │ │ │ │ ├── Ireland.js │ │ │ │ ├── Julie.js │ │ │ │ ├── MiamiNice.js │ │ │ │ ├── Midwest.js │ │ │ │ ├── Minty.js │ │ │ │ ├── PlotKit │ │ │ │ │ ├── README │ │ │ │ │ ├── base.js │ │ │ │ │ ├── blue.js │ │ │ │ │ ├── cyan.js │ │ │ │ │ ├── green.js │ │ │ │ │ ├── orange.js │ │ │ │ │ ├── purple.js │ │ │ │ │ └── red.js │ │ │ │ ├── PrimaryColors.js │ │ │ │ ├── PurpleRain.js │ │ │ │ ├── README │ │ │ │ ├── Renkoo.js │ │ │ │ ├── RoyalPurples.js │ │ │ │ ├── SageToLime.js │ │ │ │ ├── Shrooms.js │ │ │ │ ├── ThreeD.js │ │ │ │ ├── Tom.js │ │ │ │ ├── Tufte.js │ │ │ │ ├── WatersEdge.js │ │ │ │ ├── Wetland.js │ │ │ │ ├── common.js │ │ │ │ └── gradientGenerator.js │ │ │ └── widget │ │ │ │ ├── BidiSupport.js │ │ │ │ ├── Chart.js │ │ │ │ ├── Chart2D.js │ │ │ │ ├── Chart2D.js.uncompressed.js │ │ │ │ ├── Legend.js │ │ │ │ ├── SelectableLegend.js │ │ │ │ └── Sparkline.js │ │ ├── collections.js │ │ ├── collections │ │ │ ├── ArrayList.js │ │ │ ├── BinaryTree.js │ │ │ ├── Dictionary.js │ │ │ ├── Queue.js │ │ │ ├── README │ │ │ ├── Set.js │ │ │ ├── SortedList.js │ │ │ ├── Stack.js │ │ │ └── _base.js │ │ ├── color.js │ │ ├── color │ │ │ ├── Colorspace.js │ │ │ ├── MeanColorModel.js │ │ │ ├── NeutralColorModel.js │ │ │ ├── Palette.js │ │ │ ├── README │ │ │ ├── SimpleColorModel.js │ │ │ ├── _base.js │ │ │ └── api │ │ │ │ └── ColorModel.js │ │ ├── cometd.js │ │ ├── cometd │ │ │ └── README │ │ ├── css3 │ │ │ ├── README │ │ │ ├── fx.js │ │ │ ├── transit.js │ │ │ └── transition.js │ │ ├── data │ │ │ ├── AndOrReadStore.js │ │ │ ├── AndOrWriteStore.js │ │ │ ├── AppStore.js │ │ │ ├── AtomReadStore.js │ │ │ ├── CdfStore.js │ │ │ ├── ClientFilter.js │ │ │ ├── CouchDBRestStore.js │ │ │ ├── CssClassStore.js │ │ │ ├── CssRuleStore.js │ │ │ ├── CsvStore.js │ │ │ ├── FileStore.js │ │ │ ├── FlickrRestStore.js │ │ │ ├── FlickrStore.js │ │ │ ├── GoogleFeedStore.js │ │ │ ├── GoogleSearchStore.js │ │ │ ├── HtmlStore.js │ │ │ ├── HtmlTableStore.js │ │ │ ├── ItemExplorer.js │ │ │ ├── JsonQueryRestStore.js │ │ │ ├── JsonRestStore.js │ │ │ ├── KeyValueStore.js │ │ │ ├── OpenSearchStore.js │ │ │ ├── OpmlStore.js │ │ │ ├── PersevereStore.js │ │ │ ├── PicasaStore.js │ │ │ ├── QueryReadStore.js │ │ │ ├── README │ │ │ ├── RailsStore.js │ │ │ ├── S3Store.js │ │ │ ├── ServiceStore.js │ │ │ ├── SnapLogicStore.js │ │ │ ├── StoreExplorer.js │ │ │ ├── WikipediaStore.js │ │ │ ├── XmlItem.js │ │ │ ├── XmlStore.js │ │ │ ├── css.js │ │ │ ├── dom.js │ │ │ ├── restListener.js │ │ │ ├── s3 │ │ │ │ ├── README │ │ │ │ └── proxy.example-php │ │ │ └── util │ │ │ │ └── JsonQuery.js │ │ ├── date │ │ │ ├── README │ │ │ ├── buddhist.js │ │ │ ├── buddhist │ │ │ │ ├── Date.js │ │ │ │ └── locale.js │ │ │ ├── hebrew.js │ │ │ ├── hebrew │ │ │ │ ├── Date.js │ │ │ │ ├── locale.js │ │ │ │ └── numerals.js │ │ │ ├── islamic.js │ │ │ ├── islamic │ │ │ │ ├── Date.js │ │ │ │ └── locale.js │ │ │ ├── php.js │ │ │ ├── posix.js │ │ │ ├── relative.js │ │ │ ├── timezone.js │ │ │ └── zoneinfo │ │ │ │ ├── LICENSE │ │ │ │ ├── africa │ │ │ │ ├── antarctica │ │ │ │ ├── asia │ │ │ │ ├── australasia │ │ │ │ ├── backward │ │ │ │ ├── etcetera │ │ │ │ ├── europe │ │ │ │ ├── northamerica │ │ │ │ ├── pacificnew │ │ │ │ └── southamerica │ │ ├── dgauges │ │ │ ├── CircularGauge.js │ │ │ ├── CircularRangeIndicator.js │ │ │ ├── CircularScale.js │ │ │ ├── CircularValueIndicator.js │ │ │ ├── GaugeBase.js │ │ │ ├── IndicatorBase.js │ │ │ ├── LICENSE │ │ │ ├── LinearScaler.js │ │ │ ├── LogScaler.js │ │ │ ├── MultiLinearScaler.js │ │ │ ├── README │ │ │ ├── RectangularGauge.js │ │ │ ├── RectangularRangeIndicator.js │ │ │ ├── RectangularScale.js │ │ │ ├── RectangularSegmentedRangeIndicator.js │ │ │ ├── RectangularValueIndicator.js │ │ │ ├── ScaleBase.js │ │ │ ├── ScaleIndicatorBase.js │ │ │ ├── TextIndicator.js │ │ │ ├── _circularUtils.js │ │ │ └── components │ │ │ │ ├── DefaultPropertiesMixin.js │ │ │ │ ├── black │ │ │ │ ├── CircularLinearGauge.js │ │ │ │ ├── HorizontalLinearGauge.js │ │ │ │ ├── SemiCircularLinearGauge.js │ │ │ │ └── VerticalLinearGauge.js │ │ │ │ ├── classic │ │ │ │ ├── CircularLinearGauge.js │ │ │ │ ├── HorizontalLinearGauge.js │ │ │ │ ├── SemiCircularLinearGauge.js │ │ │ │ └── VerticalLinearGauge.js │ │ │ │ ├── default │ │ │ │ ├── CircularLinearGauge.js │ │ │ │ ├── HorizontalLinearGauge.js │ │ │ │ ├── SemiCircularLinearGauge.js │ │ │ │ └── VerticalLinearGauge.js │ │ │ │ ├── green │ │ │ │ ├── CircularLinearGauge.js │ │ │ │ ├── HorizontalLinearGauge.js │ │ │ │ ├── SemiCircularLinearGauge.js │ │ │ │ └── VerticalLinearGauge.js │ │ │ │ ├── grey │ │ │ │ ├── CircularLinearGauge.js │ │ │ │ ├── HorizontalLinearGauge.js │ │ │ │ ├── SemiCircularLinearGauge.js │ │ │ │ └── VerticalLinearGauge.js │ │ │ │ └── utils.js │ │ ├── dnd │ │ │ ├── BoundingBoxController.js │ │ │ ├── README │ │ │ └── Selector.js │ │ ├── dojox.profile.js │ │ ├── drawing.js │ │ ├── drawing │ │ │ ├── Drawing.js │ │ │ ├── README │ │ │ ├── _base.js │ │ │ ├── annotations │ │ │ │ ├── Angle.js │ │ │ │ ├── Arrow.js │ │ │ │ ├── BoxShadow.js │ │ │ │ └── Label.js │ │ │ ├── defaults.js │ │ │ ├── library │ │ │ │ ├── greek.js │ │ │ │ └── icons.js │ │ │ ├── manager │ │ │ │ ├── Anchors.js │ │ │ │ ├── Canvas.js │ │ │ │ ├── Mouse.js │ │ │ │ ├── Stencil.js │ │ │ │ ├── StencilUI.js │ │ │ │ ├── Undo.js │ │ │ │ ├── _registry.js │ │ │ │ └── keys.js │ │ │ ├── plugins │ │ │ │ ├── _Plugin.js │ │ │ │ ├── drawing │ │ │ │ │ ├── GreekPalette.js │ │ │ │ │ ├── Grid.js │ │ │ │ │ └── Silverlight.js │ │ │ │ └── tools │ │ │ │ │ ├── Iconize.js │ │ │ │ │ ├── Pan.js │ │ │ │ │ └── Zoom.js │ │ │ ├── resources │ │ │ │ ├── CrazyTruck.jpg │ │ │ │ ├── GreekPalette.css │ │ │ │ ├── drawing.css │ │ │ │ ├── images │ │ │ │ │ ├── tool_icons.png │ │ │ │ │ └── tool_sprites.png │ │ │ │ └── toolbar.css │ │ │ ├── stencil │ │ │ │ ├── Ellipse.js │ │ │ │ ├── Image.js │ │ │ │ ├── Line.js │ │ │ │ ├── Path.js │ │ │ │ ├── Rect.js │ │ │ │ ├── Text.js │ │ │ │ └── _Base.js │ │ │ ├── tools │ │ │ │ ├── Arrow.js │ │ │ │ ├── Ellipse.js │ │ │ │ ├── Line.js │ │ │ │ ├── Path.js │ │ │ │ ├── Pencil.js │ │ │ │ ├── Rect.js │ │ │ │ ├── TextBlock.js │ │ │ │ └── custom │ │ │ │ │ ├── Axes.js │ │ │ │ │ ├── Equation.js │ │ │ │ │ └── Vector.js │ │ │ ├── ui │ │ │ │ ├── Button.js │ │ │ │ ├── Toolbar.js │ │ │ │ ├── Tooltip.js │ │ │ │ └── dom │ │ │ │ │ ├── Pan.js │ │ │ │ │ ├── Toolbar.js │ │ │ │ │ └── Zoom.js │ │ │ └── util │ │ │ │ ├── common.js │ │ │ │ ├── oo.js │ │ │ │ ├── positioning.js │ │ │ │ └── typeset.js │ │ ├── dtl.js │ │ ├── dtl.js.uncompressed.js │ │ ├── dtl │ │ │ ├── Context.js │ │ │ ├── DomInline.js │ │ │ ├── Inline.js │ │ │ ├── README │ │ │ ├── _DomTemplated.js │ │ │ ├── _Templated.js │ │ │ ├── _base.js │ │ │ ├── contrib │ │ │ │ ├── data.js │ │ │ │ ├── dijit.js │ │ │ │ ├── dom.js │ │ │ │ └── objects.js │ │ │ ├── dom.js │ │ │ ├── ext-dojo │ │ │ │ └── NodeList.js │ │ │ ├── filter │ │ │ │ ├── dates.js │ │ │ │ ├── htmlstrings.js │ │ │ │ ├── integers.js │ │ │ │ ├── lists.js │ │ │ │ ├── logic.js │ │ │ │ ├── misc.js │ │ │ │ └── strings.js │ │ │ ├── render │ │ │ │ ├── dom.js │ │ │ │ └── html.js │ │ │ ├── tag │ │ │ │ ├── date.js │ │ │ │ ├── loader.js │ │ │ │ ├── logic.js │ │ │ │ ├── loop.js │ │ │ │ └── misc.js │ │ │ └── utils │ │ │ │ └── date.js │ │ ├── editor │ │ │ ├── README │ │ │ └── plugins │ │ │ │ ├── AutoSave.js │ │ │ │ ├── AutoUrlLink.js │ │ │ │ ├── Blockquote.js │ │ │ │ ├── Breadcrumb.js │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ ├── EntityPalette.js │ │ │ │ ├── FindReplace.js │ │ │ │ ├── InsertAnchor.js │ │ │ │ ├── InsertEntity.js │ │ │ │ ├── LocalImage.js │ │ │ │ ├── NormalizeIndentOutdent.js │ │ │ │ ├── NormalizeStyle.js │ │ │ │ ├── PageBreak.js │ │ │ │ ├── PasteFromWord.js │ │ │ │ ├── PrettyPrint.js │ │ │ │ ├── Preview.js │ │ │ │ ├── ResizeTableColumn.js │ │ │ │ ├── SafePaste.js │ │ │ │ ├── Save.js │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ ├── Smiley.js │ │ │ │ ├── SpellCheck.js │ │ │ │ ├── StatusBar.js │ │ │ │ ├── TablePlugins.js │ │ │ │ ├── TextColor.js │ │ │ │ ├── ToolbarLineBreak.js │ │ │ │ ├── UploadImage.js │ │ │ │ ├── _SmileyPalette.js │ │ │ │ ├── _SpellCheckParser.js │ │ │ │ ├── nls │ │ │ │ ├── AutoSave.js │ │ │ │ ├── Blockquote.js │ │ │ │ ├── Breadcrumb.js │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ ├── FindReplace.js │ │ │ │ ├── InsertAnchor.js │ │ │ │ ├── InsertEntity.js │ │ │ │ ├── LocalImage.js │ │ │ │ ├── PageBreak.js │ │ │ │ ├── PasteFromWord.js │ │ │ │ ├── Preview.js │ │ │ │ ├── SafePaste.js │ │ │ │ ├── Save.js │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ ├── Smiley.js │ │ │ │ ├── SpellCheck.js │ │ │ │ ├── TableDialog.js │ │ │ │ ├── TextColor.js │ │ │ │ ├── ar │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── az │ │ │ │ │ └── TableDialog.js │ │ │ │ ├── bg │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── ca │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── cs │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── da │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── de │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── el │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── es │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── fi │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── fr │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── he │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── hr │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── hu │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── it │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── ja │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── kk │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── ko │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── latinEntities.js │ │ │ │ ├── nb │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── nl │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── pl │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── pt │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── ro │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── ru │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── sk │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── sl │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── sv │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── th │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── tr │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ ├── zh-tw │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ └── zh │ │ │ │ │ ├── AutoSave.js │ │ │ │ │ ├── Blockquote.js │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── CollapsibleToolbar.js │ │ │ │ │ ├── FindReplace.js │ │ │ │ │ ├── InsertAnchor.js │ │ │ │ │ ├── InsertEntity.js │ │ │ │ │ ├── LocalImage.js │ │ │ │ │ ├── PageBreak.js │ │ │ │ │ ├── PasteFromWord.js │ │ │ │ │ ├── Preview.js │ │ │ │ │ ├── SafePaste.js │ │ │ │ │ ├── Save.js │ │ │ │ │ ├── ShowBlockNodes.js │ │ │ │ │ ├── Smiley.js │ │ │ │ │ ├── SpellCheck.js │ │ │ │ │ ├── TableDialog.js │ │ │ │ │ ├── TextColor.js │ │ │ │ │ └── latinEntities.js │ │ │ │ └── resources │ │ │ │ ├── css │ │ │ │ ├── AutoSave.css │ │ │ │ ├── Blockquote.css │ │ │ │ ├── Breadcrumb.css │ │ │ │ ├── CollapsibleToolbar.css │ │ │ │ ├── FindReplace.css │ │ │ │ ├── InsertAnchor.css │ │ │ │ ├── InsertEntity.css │ │ │ │ ├── LocalImage.css │ │ │ │ ├── PageBreak.css │ │ │ │ ├── PasteFromWord.css │ │ │ │ ├── Preview.css │ │ │ │ ├── SafePaste.css │ │ │ │ ├── Save.css │ │ │ │ ├── ShowBlockNodes.css │ │ │ │ ├── Smiley.css │ │ │ │ ├── SpellCheck.css │ │ │ │ ├── StatusBar.css │ │ │ │ └── TextColor.css │ │ │ │ ├── editorPlugins.css │ │ │ │ ├── emoticons │ │ │ │ ├── emoticonAngel.gif │ │ │ │ ├── emoticonAngry.gif │ │ │ │ ├── emoticonCool.gif │ │ │ │ ├── emoticonCrying.gif │ │ │ │ ├── emoticonEyebrow.gif │ │ │ │ ├── emoticonFrown.gif │ │ │ │ ├── emoticonGoofy.gif │ │ │ │ ├── emoticonGrin.gif │ │ │ │ ├── emoticonHalf.gif │ │ │ │ ├── emoticonHappy.gif │ │ │ │ ├── emoticonIdea.gif │ │ │ │ ├── emoticonLaughing.gif │ │ │ │ ├── emoticonNo.gif │ │ │ │ ├── emoticonOops.gif │ │ │ │ ├── emoticonShy.gif │ │ │ │ ├── emoticonSmile.gif │ │ │ │ ├── emoticonTongue.gif │ │ │ │ ├── emoticonWink.gif │ │ │ │ └── emoticonYes.gif │ │ │ │ ├── icons │ │ │ │ ├── anchor.gif │ │ │ │ ├── anchorDisabled.gif │ │ │ │ ├── autoSave.png │ │ │ │ ├── blockquote.gif │ │ │ │ ├── blockquoteDisabled.gif │ │ │ │ ├── breadcrumbDown.gif │ │ │ │ ├── claro │ │ │ │ │ └── close.gif │ │ │ │ ├── editorIconsFindReplaceDisabled.png │ │ │ │ ├── editorIconsFindReplaceEnabled.png │ │ │ │ ├── insertEntity.gif │ │ │ │ ├── insertEntityDisabled.gif │ │ │ │ ├── nihilo │ │ │ │ │ └── close.gif │ │ │ │ ├── pageBreak.gif │ │ │ │ ├── pageBreakDisabled.gif │ │ │ │ ├── pasteFromWord.gif │ │ │ │ ├── pasteFromWordDisabled.gif │ │ │ │ ├── preview.gif │ │ │ │ ├── previewDisabled.gif │ │ │ │ ├── save.gif │ │ │ │ ├── saveDisabled.gif │ │ │ │ ├── showBlockNodes.gif │ │ │ │ ├── showBlockNodesDisabled.gif │ │ │ │ ├── smiley.gif │ │ │ │ ├── smileyDisabled.gif │ │ │ │ ├── soria │ │ │ │ │ └── close.gif │ │ │ │ ├── spellcheck.gif │ │ │ │ └── tundra │ │ │ │ │ └── close.gif │ │ │ │ ├── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── blockelems │ │ │ │ │ ├── address.gif │ │ │ │ │ ├── blockquote.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── center.gif │ │ │ │ │ ├── dd.gif │ │ │ │ │ ├── del.gif │ │ │ │ │ ├── div.gif │ │ │ │ │ ├── dt.gif │ │ │ │ │ ├── fieldset.gif │ │ │ │ │ ├── form.gif │ │ │ │ │ ├── h1.gif │ │ │ │ │ ├── h2.gif │ │ │ │ │ ├── h3.gif │ │ │ │ │ ├── h4.gif │ │ │ │ │ ├── h5.gif │ │ │ │ │ ├── h6.gif │ │ │ │ │ ├── hr.gif │ │ │ │ │ ├── iframe.gif │ │ │ │ │ ├── ins.gif │ │ │ │ │ ├── li.gif │ │ │ │ │ ├── map.gif │ │ │ │ │ ├── noscript.gif │ │ │ │ │ ├── object.gif │ │ │ │ │ ├── ol.gif │ │ │ │ │ ├── p.gif │ │ │ │ │ ├── pre.gif │ │ │ │ │ ├── script.gif │ │ │ │ │ ├── table.gif │ │ │ │ │ └── ul.gif │ │ │ │ ├── busy.gif │ │ │ │ ├── cellpad.png │ │ │ │ ├── cellspace.png │ │ │ │ ├── checking.gif │ │ │ │ ├── claro │ │ │ │ │ ├── collapse.gif │ │ │ │ │ └── expand.gif │ │ │ │ ├── nihilo │ │ │ │ │ ├── collapse.gif │ │ │ │ │ ├── expand.gif │ │ │ │ │ └── sidebar.gif │ │ │ │ ├── soria │ │ │ │ │ ├── collapse.gif │ │ │ │ │ ├── expand.gif │ │ │ │ │ └── sidebar.gif │ │ │ │ ├── tableIcons.png │ │ │ │ ├── tableIcons_rtl.png │ │ │ │ ├── tundra │ │ │ │ │ ├── collapse.gif │ │ │ │ │ ├── expand.gif │ │ │ │ │ └── sidebar.gif │ │ │ │ └── uploadImageIcon.gif │ │ │ │ ├── insertTable.html │ │ │ │ └── modifyTable.html │ │ ├── embed │ │ │ ├── Flash.js │ │ │ ├── Object.js │ │ │ ├── Quicktime.js │ │ │ ├── README │ │ │ ├── flashVars.js │ │ │ └── resources │ │ │ │ └── version.mov │ │ ├── encoding │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── _base.js │ │ │ ├── ascii85.js │ │ │ ├── base64.js │ │ │ ├── bits.js │ │ │ ├── compression │ │ │ │ ├── lzw.js │ │ │ │ └── splay.js │ │ │ ├── digests │ │ │ │ ├── MD5.js │ │ │ │ ├── SHA1.js │ │ │ │ └── _base.js │ │ │ └── easy64.js │ │ ├── flash.js │ │ ├── flash │ │ │ ├── DojoExternalInterface.as │ │ │ ├── ExpressInstall.as │ │ │ ├── README │ │ │ └── _base.js │ │ ├── form │ │ │ ├── BusyButton.js │ │ │ ├── CheckedMultiSelect.js │ │ │ ├── DateTextBox.js │ │ │ ├── DayTextBox.js │ │ │ ├── DropDownSelect.js │ │ │ ├── DropDownStack.js │ │ │ ├── FileInput.js │ │ │ ├── FileInputAuto.js │ │ │ ├── FileInputBlind.js │ │ │ ├── FilePickerTextBox.js │ │ │ ├── FileUploader.js │ │ │ ├── ListInput.js │ │ │ ├── Manager.js │ │ │ ├── MonthTextBox.js │ │ │ ├── MultiComboBox.js │ │ │ ├── PasswordValidator.js │ │ │ ├── README │ │ │ ├── RadioStack.js │ │ │ ├── RangeSlider.js │ │ │ ├── Rating.js │ │ │ ├── TimeSpinner.js │ │ │ ├── TriStateCheckBox.js │ │ │ ├── Uploader.js │ │ │ ├── YearTextBox.js │ │ │ ├── _FormSelectWidget.js │ │ │ ├── _HasDropDown.js │ │ │ ├── _SelectStackMixin.js │ │ │ ├── manager │ │ │ │ ├── _ClassMixin.js │ │ │ │ ├── _DisplayMixin.js │ │ │ │ ├── _EnableMixin.js │ │ │ │ ├── _FormMixin.js │ │ │ │ ├── _Mixin.js │ │ │ │ ├── _NodeMixin.js │ │ │ │ └── _ValueMixin.js │ │ │ ├── nls │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ ├── PasswordValidator.js │ │ │ │ ├── Uploader.js │ │ │ │ ├── ar │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── az │ │ │ │ │ └── PasswordValidator.js │ │ │ │ ├── bg │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── ca │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── cs │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── da │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── de │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── el │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── es │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── fi │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── fr │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── he │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── hr │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── hu │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── it │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── ja │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── kk │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── ko │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── nb │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── nl │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── pl │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── pt │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── ro │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── ru │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── sk │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── sl │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── sv │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── th │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── tr │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ ├── zh-tw │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ │ └── zh │ │ │ │ │ ├── CheckedMultiSelect.js │ │ │ │ │ ├── PasswordValidator.js │ │ │ │ │ └── Uploader.js │ │ │ ├── resources │ │ │ │ ├── BusyButton.css │ │ │ │ ├── CheckedMultiSelect.css │ │ │ │ ├── CheckedMultiSelect.html │ │ │ │ ├── FileInput.css │ │ │ │ ├── FileInput.html │ │ │ │ ├── FileInputAuto.html │ │ │ │ ├── FilePickerTextBox.css │ │ │ │ ├── FilePickerTextBox.html │ │ │ │ ├── FileUploader.css │ │ │ │ ├── HorizontalRangeSlider.html │ │ │ │ ├── ListInput.css │ │ │ │ ├── PasswordValidator.html │ │ │ │ ├── RangeSlider.css │ │ │ │ ├── Rating.css │ │ │ │ ├── RecieveFile.php │ │ │ │ ├── TriStateCheckBox.css │ │ │ │ ├── TriStateCheckBox.html │ │ │ │ ├── Uploader.html │ │ │ │ ├── UploaderFileList.css │ │ │ │ ├── VerticalRangeSlider.html │ │ │ │ ├── _CheckedMultiSelectItem.html │ │ │ │ ├── _CheckedMultiSelectMenuItem.html │ │ │ │ ├── fileuploader.swf │ │ │ │ ├── images │ │ │ │ │ ├── loading_wheel.gif │ │ │ │ │ ├── nihiloFolderSprite.gif │ │ │ │ │ ├── rating_empty.gif │ │ │ │ │ ├── rating_full.gif │ │ │ │ │ ├── soriaFolderSprite.gif │ │ │ │ │ ├── tristatecheckboxStates.png │ │ │ │ │ └── tundraFolderSprite.gif │ │ │ │ └── uploader.swf │ │ │ └── uploader │ │ │ │ ├── Base.js │ │ │ │ ├── FileList.js │ │ │ │ └── plugins │ │ │ │ ├── Flash.js │ │ │ │ ├── HTML5.js │ │ │ │ └── IFrame.js │ │ ├── fx.js │ │ ├── fx │ │ │ ├── README │ │ │ ├── Shadow.js │ │ │ ├── Timeline.js │ │ │ ├── _arg.js │ │ │ ├── _base.js │ │ │ ├── _core.js │ │ │ ├── easing.js │ │ │ ├── ext-dojo │ │ │ │ ├── NodeList-style.js │ │ │ │ ├── NodeList.js │ │ │ │ ├── complex.js │ │ │ │ └── reverse.js │ │ │ ├── flip.js │ │ │ ├── resources │ │ │ │ ├── shadowB.png │ │ │ │ ├── shadowBL.png │ │ │ │ ├── shadowBR.png │ │ │ │ ├── shadowL.png │ │ │ │ ├── shadowR.png │ │ │ │ ├── shadowT.png │ │ │ │ ├── shadowTL.png │ │ │ │ └── shadowTR.png │ │ │ ├── scroll.js │ │ │ ├── split.js │ │ │ ├── style.js │ │ │ └── text.js │ │ ├── gantt │ │ │ ├── GanttChart.js │ │ │ ├── GanttProjectControl.js │ │ │ ├── GanttProjectItem.js │ │ │ ├── GanttResourceItem.js │ │ │ ├── GanttTaskControl.js │ │ │ ├── GanttTaskItem.js │ │ │ ├── TabMenu.js │ │ │ ├── contextMenuTab.js │ │ │ └── resources │ │ │ │ ├── gantt.css │ │ │ │ └── images │ │ │ │ ├── am.png │ │ │ │ ├── arrow.gif │ │ │ │ ├── bg.png │ │ │ │ ├── collapse.png │ │ │ │ ├── expand.png │ │ │ │ ├── load.png │ │ │ │ ├── menuHighlight.png │ │ │ │ ├── minus.gif │ │ │ │ ├── ownerBar.png │ │ │ │ ├── parentnode_bg.png │ │ │ │ ├── parentnode_filled.png │ │ │ │ ├── plus.gif │ │ │ │ ├── pm.png │ │ │ │ ├── progress_bg.png │ │ │ │ ├── progress_filled.png │ │ │ │ ├── projProgressBg.png │ │ │ │ ├── projProgressFilled.png │ │ │ │ ├── rbg.png │ │ │ │ ├── resourceBg.png │ │ │ │ ├── resourceHeader.png │ │ │ │ ├── rheader.png │ │ │ │ ├── rowHighlight.png │ │ │ │ ├── save.png │ │ │ │ ├── taskArrow.gif │ │ │ │ ├── taskBar.png │ │ │ │ ├── taskProgressBg.png │ │ │ │ ├── taskProgressFilled.png │ │ │ │ ├── zoomin.png │ │ │ │ ├── zoomintime.png │ │ │ │ ├── zoomout.png │ │ │ │ └── zoomouttime.png │ │ ├── gauges │ │ │ ├── AnalogArcIndicator.js │ │ │ ├── AnalogArrowIndicator.js │ │ │ ├── AnalogCircleIndicator.js │ │ │ ├── AnalogGauge.js │ │ │ ├── AnalogIndicatorBase.js │ │ │ ├── AnalogLineIndicator.js │ │ │ ├── AnalogNeedleIndicator.js │ │ │ ├── BarCircleIndicator.js │ │ │ ├── BarGauge.js │ │ │ ├── BarIndicator.js │ │ │ ├── BarLineIndicator.js │ │ │ ├── GlossyCircularGauge.js │ │ │ ├── GlossyCircularGaugeBase.js │ │ │ ├── GlossyCircularGaugeNeedle.js │ │ │ ├── GlossyHorizontalGauge.js │ │ │ ├── GlossyHorizontalGaugeMarker.js │ │ │ ├── GlossySemiCircularGauge.js │ │ │ ├── Range.js │ │ │ ├── TextIndicator.js │ │ │ ├── _Gauge.css │ │ │ ├── _Gauge.js │ │ │ └── _Indicator.js │ │ ├── geo │ │ │ ├── README │ │ │ ├── charting │ │ │ │ ├── Feature.js │ │ │ │ ├── KeyboardInteractionSupport.js │ │ │ │ ├── Map.js │ │ │ │ ├── MouseInteractionSupport.js │ │ │ │ ├── TouchInteractionSupport.js │ │ │ │ ├── _Marker.js │ │ │ │ ├── _base.js │ │ │ │ ├── resources │ │ │ │ │ ├── Map.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── Americas.json │ │ │ │ │ │ ├── AsiaPacific.json │ │ │ │ │ │ ├── ContinentalEurope.json │ │ │ │ │ │ ├── EuropeMiddleEastAfrica.json │ │ │ │ │ │ ├── NOTICES │ │ │ │ │ │ ├── USStates.json │ │ │ │ │ │ ├── WorldCountries.json │ │ │ │ │ │ └── WorldCountriesMercator.json │ │ │ │ │ ├── img │ │ │ │ │ │ ├── zoomin.gif │ │ │ │ │ │ ├── zoomin.png │ │ │ │ │ │ ├── zoomout.gif │ │ │ │ │ │ └── zoomout.png │ │ │ │ │ └── markers │ │ │ │ │ │ └── USStates.json │ │ │ │ └── widget │ │ │ │ │ ├── Legend.js │ │ │ │ │ └── Map.js │ │ │ └── openlayers │ │ │ │ ├── Collection.js │ │ │ │ ├── Feature.js │ │ │ │ ├── Geometry.js │ │ │ │ ├── GeometryFeature.js │ │ │ │ ├── GfxLayer.js │ │ │ │ ├── GreatCircle.js │ │ │ │ ├── JsonImport.js │ │ │ │ ├── Layer.js │ │ │ │ ├── LineString.js │ │ │ │ ├── Map.js │ │ │ │ ├── Patch.js │ │ │ │ ├── Point.js │ │ │ │ ├── TouchInteractionSupport.js │ │ │ │ ├── WidgetFeature.js │ │ │ │ ├── _base.js │ │ │ │ └── widget │ │ │ │ └── Map.js │ │ ├── gesture │ │ │ ├── Base.js │ │ │ ├── README │ │ │ ├── swipe.js │ │ │ └── tap.js │ │ ├── gfx.js │ │ ├── gfx.js.uncompressed.js │ │ ├── gfx │ │ │ ├── Moveable.js │ │ │ ├── Mover.js │ │ │ ├── README │ │ │ ├── VectorText.js │ │ │ ├── _base.js │ │ │ ├── _gfxBidiSupport.js │ │ │ ├── arc.js │ │ │ ├── attach.js │ │ │ ├── canvas.js │ │ │ ├── canvasWithEvents.js │ │ │ ├── canvas_attach.js │ │ │ ├── canvasext.js │ │ │ ├── decompose.js │ │ │ ├── fx.js │ │ │ ├── gradient.js │ │ │ ├── gradutils.js │ │ │ ├── matrix.js │ │ │ ├── move.js │ │ │ ├── path.js │ │ │ ├── renderer.js │ │ │ ├── resources │ │ │ │ ├── Gillius.svg │ │ │ │ ├── README │ │ │ │ ├── gfxSvgProxyFrame.html │ │ │ │ ├── svg2gfx-simple.xsl │ │ │ │ └── svg2gfx.xsl │ │ │ ├── shape.js │ │ │ ├── silverlight.js │ │ │ ├── silverlight_attach.js │ │ │ ├── svg.js │ │ │ ├── svg_attach.js │ │ │ ├── svgext.js │ │ │ ├── utils.js │ │ │ ├── vml.js │ │ │ └── vml_attach.js │ │ ├── gfx3d.js │ │ ├── gfx3d │ │ │ ├── README │ │ │ ├── _base.js │ │ │ ├── gradient.js │ │ │ ├── lighting.js │ │ │ ├── matrix.js │ │ │ ├── object.js │ │ │ ├── scheduler.js │ │ │ └── vector.js │ │ ├── grid │ │ │ ├── DataGrid.js │ │ │ ├── DataGrid.js.uncompressed.js │ │ │ ├── DataSelection.js │ │ │ ├── EnhancedGrid.js │ │ │ ├── LazyTreeGrid.js │ │ │ ├── LazyTreeGridStoreModel.js │ │ │ ├── README │ │ │ ├── Selection.js │ │ │ ├── TreeGrid.js │ │ │ ├── TreeSelection.js │ │ │ ├── _Builder.js │ │ │ ├── _CheckBoxSelector.js │ │ │ ├── _EditManager.js │ │ │ ├── _Events.js │ │ │ ├── _FocusManager.js │ │ │ ├── _Grid.js │ │ │ ├── _Layout.js │ │ │ ├── _RadioSelector.js │ │ │ ├── _RowManager.js │ │ │ ├── _RowSelector.js │ │ │ ├── _Scroller.js │ │ │ ├── _SelectionPreserver.js │ │ │ ├── _Selector.js │ │ │ ├── _TreeView.js │ │ │ ├── _View.js │ │ │ ├── _ViewManager.js │ │ │ ├── cells.js │ │ │ ├── cells │ │ │ │ ├── _base.js │ │ │ │ ├── dijit.js │ │ │ │ └── tree.js │ │ │ ├── compatGrid.tar.gz │ │ │ ├── enhanced │ │ │ │ ├── _Events.js │ │ │ │ ├── _FocusManager.js │ │ │ │ ├── _Plugin.js │ │ │ │ ├── _PluginManager.js │ │ │ │ ├── nls │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ ├── Pagination.js │ │ │ │ │ ├── ar │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── da │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── de │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── el │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── es │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── fi │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── he │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── hr │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── hu │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── it │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── kk │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── nb │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── nl │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── pl │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── pt-pt │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── ro │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── sk │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── sl │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── sv │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── th │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── tr │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ ├── zh-tw │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ │ └── zh │ │ │ │ │ │ ├── EnhancedGrid.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ └── Pagination.js │ │ │ │ ├── plugins │ │ │ │ │ ├── AutoScroll.js │ │ │ │ │ ├── CellMerge.js │ │ │ │ │ ├── Cookie.js │ │ │ │ │ ├── Dialog.js │ │ │ │ │ ├── DnD.js │ │ │ │ │ ├── Exporter.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ ├── GridSource.js │ │ │ │ │ ├── IndirectSelection.js │ │ │ │ │ ├── Menu.js │ │ │ │ │ ├── NestedSorting.js │ │ │ │ │ ├── Pagination.js │ │ │ │ │ ├── Printer.js │ │ │ │ │ ├── Rearrange.js │ │ │ │ │ ├── Search.js │ │ │ │ │ ├── Selector.js │ │ │ │ │ ├── _RowMapLayer.js │ │ │ │ │ ├── _SelectionPreserver.js │ │ │ │ │ ├── _StoreLayer.js │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── CSVWriter.js │ │ │ │ │ │ ├── TableWriter.js │ │ │ │ │ │ └── _ExportWriter.js │ │ │ │ │ └── filter │ │ │ │ │ │ ├── ClearFilterConfirm.js │ │ │ │ │ │ ├── FilterBar.js │ │ │ │ │ │ ├── FilterBuilder.js │ │ │ │ │ │ ├── FilterDefDialog.js │ │ │ │ │ │ ├── FilterLayer.js │ │ │ │ │ │ ├── FilterStatusTip.js │ │ │ │ │ │ ├── _ConditionExpr.js │ │ │ │ │ │ ├── _DataExprs.js │ │ │ │ │ │ └── _FilterExpr.js │ │ │ │ ├── resources │ │ │ │ │ ├── Common.css │ │ │ │ │ ├── Common_rtl.css │ │ │ │ │ ├── DnD.css │ │ │ │ │ ├── DnD_rtl.css │ │ │ │ │ ├── EnhancedGrid.css │ │ │ │ │ ├── EnhancedGrid_rtl.css │ │ │ │ │ ├── Filter.css │ │ │ │ │ ├── Filter_rtl.css │ │ │ │ │ ├── Pagination.css │ │ │ │ │ ├── Pagination_rtl.css │ │ │ │ │ ├── Sorter.css │ │ │ │ │ ├── Sorter_rtl.css │ │ │ │ │ ├── claro │ │ │ │ │ │ ├── Common.css │ │ │ │ │ │ ├── EnhancedGrid.css │ │ │ │ │ │ └── Filter.css │ │ │ │ │ ├── claroEnhancedGrid.css │ │ │ │ │ └── images │ │ │ │ │ │ └── sprite_icons.png │ │ │ │ └── templates │ │ │ │ │ ├── ClearFilterConfirmPane.html │ │ │ │ │ ├── CriteriaBox.html │ │ │ │ │ ├── FilterBar.html │ │ │ │ │ ├── FilterBoolValueBox.html │ │ │ │ │ ├── FilterDefPane.html │ │ │ │ │ ├── FilterStatusPane.html │ │ │ │ │ └── Pagination.html │ │ │ ├── nls │ │ │ │ ├── DataGrid_ROOT.js │ │ │ │ ├── DataGrid_ar.js │ │ │ │ ├── DataGrid_ca.js │ │ │ │ ├── DataGrid_cs.js │ │ │ │ ├── DataGrid_da.js │ │ │ │ ├── DataGrid_de.js │ │ │ │ ├── DataGrid_el.js │ │ │ │ ├── DataGrid_en-gb.js │ │ │ │ ├── DataGrid_en-us.js │ │ │ │ ├── DataGrid_es-es.js │ │ │ │ ├── DataGrid_fi-fi.js │ │ │ │ ├── DataGrid_fr-fr.js │ │ │ │ ├── DataGrid_he-il.js │ │ │ │ ├── DataGrid_hu.js │ │ │ │ ├── DataGrid_it-it.js │ │ │ │ ├── DataGrid_ja-jp.js │ │ │ │ ├── DataGrid_ko-kr.js │ │ │ │ ├── DataGrid_nb.js │ │ │ │ ├── DataGrid_nl-nl.js │ │ │ │ ├── DataGrid_pl.js │ │ │ │ ├── DataGrid_pt-br.js │ │ │ │ ├── DataGrid_pt-pt.js │ │ │ │ ├── DataGrid_ru.js │ │ │ │ ├── DataGrid_sk.js │ │ │ │ ├── DataGrid_sl.js │ │ │ │ ├── DataGrid_sv.js │ │ │ │ ├── DataGrid_th.js │ │ │ │ ├── DataGrid_tr.js │ │ │ │ ├── DataGrid_zh-cn.js │ │ │ │ └── DataGrid_zh-tw.js │ │ │ ├── resources │ │ │ │ ├── Expando.html │ │ │ │ ├── Grid.css │ │ │ │ ├── Grid_rtl.css │ │ │ │ ├── View.html │ │ │ │ ├── _Grid.html │ │ │ │ ├── claroGrid.css │ │ │ │ └── images │ │ │ │ │ ├── grid_dx_gradient.gif │ │ │ │ │ ├── grid_sort_down.gif │ │ │ │ │ ├── grid_sort_up.gif │ │ │ │ │ ├── header.png │ │ │ │ │ ├── header_shadow.png │ │ │ │ │ ├── row_back.png │ │ │ │ │ ├── tabEnabled_rotated.png │ │ │ │ │ ├── tabHover_rotated.png │ │ │ │ │ └── td_button_down.png │ │ │ └── util.js │ │ ├── help │ │ │ ├── README │ │ │ ├── _base.js │ │ │ └── console.js │ │ ├── highlight.js │ │ ├── highlight │ │ │ ├── README │ │ │ ├── _base.js │ │ │ ├── languages │ │ │ │ ├── _all.js │ │ │ │ ├── _dynamic.js │ │ │ │ ├── _static.js │ │ │ │ ├── _www.js │ │ │ │ ├── cpp.js │ │ │ │ ├── css.js │ │ │ │ ├── delphi.js │ │ │ │ ├── django.js │ │ │ │ ├── groovy.js │ │ │ │ ├── html.js │ │ │ │ ├── java.js │ │ │ │ ├── javascript.js │ │ │ │ ├── pygments │ │ │ │ │ ├── _html.js │ │ │ │ │ ├── _www.js │ │ │ │ │ ├── css.js │ │ │ │ │ ├── html.js │ │ │ │ │ ├── javascript.js │ │ │ │ │ └── xml.js │ │ │ │ ├── python.js │ │ │ │ ├── sql.js │ │ │ │ ├── xml.js │ │ │ │ └── xquery.js │ │ │ ├── resources │ │ │ │ ├── highlight.css │ │ │ │ └── pygments │ │ │ │ │ ├── autumn.css │ │ │ │ │ ├── borland.css │ │ │ │ │ ├── colorful.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── emacs.css │ │ │ │ │ ├── friendly.css │ │ │ │ │ ├── fruity.css │ │ │ │ │ ├── manni.css │ │ │ │ │ ├── murphy.css │ │ │ │ │ ├── native.css │ │ │ │ │ ├── pastie.css │ │ │ │ │ ├── perldoc.css │ │ │ │ │ └── trac.css │ │ │ └── widget │ │ │ │ └── Code.js │ │ ├── html.js │ │ ├── html │ │ │ ├── README │ │ │ ├── _base.js │ │ │ ├── ellipsis.js │ │ │ ├── entities.js │ │ │ ├── ext-dojo │ │ │ │ └── style.js │ │ │ ├── format.js │ │ │ ├── metrics.js │ │ │ ├── resources │ │ │ │ └── ellipsis.css │ │ │ └── styles.js │ │ ├── image.js │ │ ├── image │ │ │ ├── Badge.js │ │ │ ├── FlickrBadge.js │ │ │ ├── Gallery.js │ │ │ ├── Lightbox.js │ │ │ ├── LightboxNano.js │ │ │ ├── Magnifier.js │ │ │ ├── MagnifierLite.js │ │ │ ├── README │ │ │ ├── SlideShow.js │ │ │ ├── ThumbnailPicker.js │ │ │ ├── _base.js │ │ │ └── resources │ │ │ │ ├── Badge.css │ │ │ │ ├── Gallery.css │ │ │ │ ├── Gallery.html │ │ │ │ ├── Lightbox.css │ │ │ │ ├── Lightbox.html │ │ │ │ ├── Magnifier.css │ │ │ │ ├── SlideShow.css │ │ │ │ ├── SlideShow.html │ │ │ │ ├── ThumbnailPicker.css │ │ │ │ ├── ThumbnailPicker.html │ │ │ │ ├── image.css │ │ │ │ └── images │ │ │ │ ├── buttons.gif │ │ │ │ ├── buttons.png │ │ │ │ ├── close.gif │ │ │ │ ├── close.png │ │ │ │ ├── close_dark.png │ │ │ │ ├── left.gif │ │ │ │ ├── left.png │ │ │ │ ├── loading.gif │ │ │ │ ├── right.gif │ │ │ │ ├── right.png │ │ │ │ └── warning.png │ │ ├── io │ │ │ ├── OAuth.js │ │ │ ├── README │ │ │ ├── httpParse.js │ │ │ ├── proxy │ │ │ │ ├── README │ │ │ │ ├── xip.js │ │ │ │ ├── xip_client.html │ │ │ │ └── xip_server.html │ │ │ ├── scriptFrame.js │ │ │ ├── windowName.js │ │ │ ├── xhrMultiPart.js │ │ │ ├── xhrPlugins.js │ │ │ ├── xhrScriptPlugin.js │ │ │ └── xhrWindowNamePlugin.js │ │ ├── jq.js │ │ ├── jq │ │ │ └── README │ │ ├── json │ │ │ ├── README │ │ │ ├── query.js │ │ │ ├── ref.js │ │ │ └── schema.js │ │ ├── jsonPath.js │ │ ├── jsonPath │ │ │ ├── README │ │ │ └── query.js │ │ ├── lang │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── aspect.js │ │ │ ├── aspect │ │ │ │ ├── cflow.js │ │ │ │ ├── counter.js │ │ │ │ ├── memoizer.js │ │ │ │ ├── memoizerGuard.js │ │ │ │ ├── profiler.js │ │ │ │ ├── timer.js │ │ │ │ └── tracer.js │ │ │ ├── async.js │ │ │ ├── async │ │ │ │ ├── event.js │ │ │ │ ├── timeout.js │ │ │ │ └── topic.js │ │ │ ├── docs.js │ │ │ ├── functional.js │ │ │ ├── functional │ │ │ │ ├── array.js │ │ │ │ ├── binrec.js │ │ │ │ ├── curry.js │ │ │ │ ├── fold.js │ │ │ │ ├── lambda.js │ │ │ │ ├── linrec.js │ │ │ │ ├── listcomp.js │ │ │ │ ├── multirec.js │ │ │ │ ├── numrec.js │ │ │ │ ├── object.js │ │ │ │ ├── reversed.js │ │ │ │ ├── scan.js │ │ │ │ ├── sequence.js │ │ │ │ ├── tailrec.js │ │ │ │ ├── util.js │ │ │ │ └── zip.js │ │ │ ├── observable.js │ │ │ ├── oo │ │ │ │ ├── Decorator.js │ │ │ │ ├── Filter.js │ │ │ │ ├── aop.js │ │ │ │ ├── general.js │ │ │ │ ├── mixin.js │ │ │ │ └── rearrange.js │ │ │ ├── typed.js │ │ │ └── utils.js │ │ ├── layout │ │ │ ├── BorderContainer.js │ │ │ ├── ContentPane.js │ │ │ ├── Dock.js │ │ │ ├── DragPane.js │ │ │ ├── ExpandoPane.js │ │ │ ├── FloatingPane.js │ │ │ ├── GridContainer.js │ │ │ ├── GridContainerLite.js │ │ │ ├── README │ │ │ ├── RadioGroup.js │ │ │ ├── ResizeHandle.js │ │ │ ├── RotatorContainer.js │ │ │ ├── ScrollPane.js │ │ │ ├── TableContainer.js │ │ │ ├── ToggleSplitter.js │ │ │ ├── dnd │ │ │ │ ├── Avatar.js │ │ │ │ └── PlottedDnd.js │ │ │ ├── ext-dijit │ │ │ │ └── layout │ │ │ │ │ └── StackContainer-touch.js │ │ │ └── resources │ │ │ │ ├── DndGridContainer.css │ │ │ │ ├── ExpandoPane.css │ │ │ │ ├── ExpandoPane.html │ │ │ │ ├── FloatingPane.css │ │ │ │ ├── FloatingPane.html │ │ │ │ ├── GridContainer.css │ │ │ │ ├── GridContainer.html │ │ │ │ ├── RadioGroup.css │ │ │ │ ├── ResizeHandle.css │ │ │ │ ├── RotatorContainer.css │ │ │ │ ├── ScrollPane.css │ │ │ │ ├── ScrollPane.html │ │ │ │ ├── ToggleSplitter.css │ │ │ │ └── icons │ │ │ │ ├── gridcontainer_grip.gif │ │ │ │ ├── grip_bg.gif │ │ │ │ ├── pixel.gif │ │ │ │ ├── resize.png │ │ │ │ ├── resizeRtl.png │ │ │ │ ├── rotator.png │ │ │ │ ├── splitterToggleH.png │ │ │ │ └── splitterToggleV.png │ │ ├── main.js │ │ ├── math.js │ │ ├── math │ │ │ ├── BigInteger-ext.js │ │ │ ├── BigInteger.js │ │ │ ├── README │ │ │ ├── _base.js │ │ │ ├── curves.js │ │ │ ├── matrix.js │ │ │ ├── random │ │ │ │ ├── Secure.js │ │ │ │ ├── Simple.js │ │ │ │ └── prng4.js │ │ │ ├── round.js │ │ │ └── stats.js │ │ ├── mdnd │ │ │ ├── AreaManager.js │ │ │ ├── AutoScroll.js │ │ │ ├── DropIndicator.js │ │ │ ├── LazyManager.js │ │ │ ├── Moveable.js │ │ │ ├── PureSource.js │ │ │ ├── README │ │ │ ├── adapter │ │ │ │ ├── DndFromDojo.js │ │ │ │ └── DndToDojo.js │ │ │ ├── dropMode │ │ │ │ ├── DefaultDropMode.js │ │ │ │ ├── OverDropMode.js │ │ │ │ └── VerticalDropMode.js │ │ │ └── resources │ │ │ │ └── dnd.css │ │ ├── mobile.js │ │ ├── mobile.js.uncompressed.js │ │ ├── mobile │ │ │ ├── Accordion.js │ │ │ ├── Audio.js │ │ │ ├── Badge.js │ │ │ ├── Button.js │ │ │ ├── Carousel.js │ │ │ ├── CarouselItem.js │ │ │ ├── CheckBox.js │ │ │ ├── ComboBox.js │ │ │ ├── Container.js │ │ │ ├── ContentPane.js │ │ │ ├── DataCarousel.js │ │ │ ├── DatePicker.js │ │ │ ├── EdgeToEdgeCategory.js │ │ │ ├── EdgeToEdgeDataList.js │ │ │ ├── EdgeToEdgeList.js │ │ │ ├── EdgeToEdgeStoreList.js │ │ │ ├── ExpandingTextArea.js │ │ │ ├── FixedSplitter.js │ │ │ ├── FixedSplitterPane.js │ │ │ ├── GridLayout.js │ │ │ ├── Heading.js │ │ │ ├── Icon.js │ │ │ ├── IconContainer.js │ │ │ ├── IconItem.js │ │ │ ├── IconMenu.js │ │ │ ├── IconMenuItem.js │ │ │ ├── ListItem.js │ │ │ ├── Opener.js │ │ │ ├── Overlay.js │ │ │ ├── PageIndicator.js │ │ │ ├── Pane.js │ │ │ ├── ProgressBar.js │ │ │ ├── ProgressIndicator.js │ │ │ ├── README │ │ │ ├── RadioButton.js │ │ │ ├── Rating.js │ │ │ ├── RoundRect.js │ │ │ ├── RoundRectCategory.js │ │ │ ├── RoundRectDataList.js │ │ │ ├── RoundRectList.js │ │ │ ├── RoundRectStoreList.js │ │ │ ├── ScreenSizeAware.js │ │ │ ├── ScrollablePane.js │ │ │ ├── ScrollableView.js │ │ │ ├── SearchBox.js │ │ │ ├── SimpleDialog.js │ │ │ ├── Slider.js │ │ │ ├── SpinWheel.js │ │ │ ├── SpinWheelDatePicker.js │ │ │ ├── SpinWheelSlot.js │ │ │ ├── SpinWheelTimePicker.js │ │ │ ├── StoreCarousel.js │ │ │ ├── SwapView.js │ │ │ ├── Switch.js │ │ │ ├── TabBar.js │ │ │ ├── TabBarButton.js │ │ │ ├── TextArea.js │ │ │ ├── TextBox.js │ │ │ ├── TimePicker.js │ │ │ ├── ToggleButton.js │ │ │ ├── ToolBarButton.js │ │ │ ├── Tooltip.js │ │ │ ├── TransitionEvent.js │ │ │ ├── TreeView.js │ │ │ ├── ValuePicker.js │ │ │ ├── ValuePickerDatePicker.js │ │ │ ├── ValuePickerSlot.js │ │ │ ├── ValuePickerTimePicker.js │ │ │ ├── Video.js │ │ │ ├── View.js │ │ │ ├── ViewController.js │ │ │ ├── _ComboBoxMenu.js │ │ │ ├── _ContentPaneMixin.js │ │ │ ├── _DataListMixin.js │ │ │ ├── _DataMixin.js │ │ │ ├── _DatePickerMixin.js │ │ │ ├── _EditableIconMixin.js │ │ │ ├── _EditableListMixin.js │ │ │ ├── _ExecScriptMixin.js │ │ │ ├── _IconItemPane.js │ │ │ ├── _ItemBase.js │ │ │ ├── _ListTouchMixin.js │ │ │ ├── _PickerBase.js │ │ │ ├── _PickerChooser.js │ │ │ ├── _ScrollableMixin.js │ │ │ ├── _StoreListMixin.js │ │ │ ├── _StoreMixin.js │ │ │ ├── _TimePickerMixin.js │ │ │ ├── _base.js │ │ │ ├── _compat.js │ │ │ ├── app.js │ │ │ ├── app.js.uncompressed.js │ │ │ ├── app │ │ │ │ ├── AlertDialog.js │ │ │ │ ├── ImageThumbView.js │ │ │ │ ├── ImageView.js │ │ │ │ ├── List.js │ │ │ │ ├── ListSelector.js │ │ │ │ ├── SceneAssistant.js │ │ │ │ ├── SceneController.js │ │ │ │ ├── StageController.js │ │ │ │ ├── TextBox.js │ │ │ │ ├── _FormWidget.js │ │ │ │ ├── _Widget.js │ │ │ │ ├── _base.js │ │ │ │ ├── _event.js │ │ │ │ ├── compat.js │ │ │ │ └── compat.js.uncompressed.js │ │ │ ├── bookmarkable.js │ │ │ ├── build │ │ │ │ ├── build.bat │ │ │ │ └── build.sh │ │ │ ├── common.js │ │ │ ├── compat.js │ │ │ ├── compat.js.uncompressed.js │ │ │ ├── deviceTheme.js │ │ │ ├── dh │ │ │ │ ├── ContentTypeMap.js │ │ │ │ ├── DataHandler.js │ │ │ │ ├── HtmlContentHandler.js │ │ │ │ ├── HtmlScriptContentHandler.js │ │ │ │ ├── JsonContentHandler.js │ │ │ │ ├── PatternFileTypeMap.js │ │ │ │ ├── StringDataSource.js │ │ │ │ ├── SuffixFileTypeMap.js │ │ │ │ └── UrlDataSource.js │ │ │ ├── i18n.js │ │ │ ├── iconUtils.js │ │ │ ├── lazyLoadUtils.js │ │ │ ├── migrationAssist.js │ │ │ ├── mobile-all.js │ │ │ ├── pageTurningUtils.js │ │ │ ├── parser.js │ │ │ ├── scrollable.js │ │ │ ├── sniff.js │ │ │ ├── themes │ │ │ │ ├── android │ │ │ │ │ ├── Accordion-compat.css │ │ │ │ │ ├── Accordion-compat.less │ │ │ │ │ ├── Accordion.css │ │ │ │ │ ├── Accordion.less │ │ │ │ │ ├── Button-compat.css │ │ │ │ │ ├── Button-compat.less │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.less │ │ │ │ │ ├── Carousel.css │ │ │ │ │ ├── Carousel.less │ │ │ │ │ ├── CheckBox-compat.css │ │ │ │ │ ├── CheckBox-compat.less │ │ │ │ │ ├── CheckBox.css │ │ │ │ │ ├── CheckBox.less │ │ │ │ │ ├── ComboBox-compat.css │ │ │ │ │ ├── ComboBox-compat.less │ │ │ │ │ ├── ComboBox.css │ │ │ │ │ ├── ComboBox.less │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ ├── EdgeToEdgeCategory.css │ │ │ │ │ ├── EdgeToEdgeCategory.less │ │ │ │ │ ├── EdgeToEdgeList.css │ │ │ │ │ ├── EdgeToEdgeList.less │ │ │ │ │ ├── FixedSplitter.css │ │ │ │ │ ├── FixedSplitter.less │ │ │ │ │ ├── GridLayout.css │ │ │ │ │ ├── GridLayout.less │ │ │ │ │ ├── Heading-compat.css │ │ │ │ │ ├── Heading-compat.less │ │ │ │ │ ├── Heading.css │ │ │ │ │ ├── Heading.less │ │ │ │ │ ├── IconContainer-compat.css │ │ │ │ │ ├── IconContainer-compat.less │ │ │ │ │ ├── IconContainer.css │ │ │ │ │ ├── IconContainer.less │ │ │ │ │ ├── IconMenu-compat.css │ │ │ │ │ ├── IconMenu-compat.less │ │ │ │ │ ├── IconMenu.css │ │ │ │ │ ├── IconMenu.less │ │ │ │ │ ├── ListItem-compat.css │ │ │ │ │ ├── ListItem-compat.less │ │ │ │ │ ├── ListItem.css │ │ │ │ │ ├── ListItem.less │ │ │ │ │ ├── Opener-compat.css │ │ │ │ │ ├── Opener.css │ │ │ │ │ ├── Overlay-compat.css │ │ │ │ │ ├── Overlay-compat.less │ │ │ │ │ ├── Overlay.css │ │ │ │ │ ├── Overlay.less │ │ │ │ │ ├── PageIndicator-compat.css │ │ │ │ │ ├── PageIndicator.css │ │ │ │ │ ├── PageIndicator.less │ │ │ │ │ ├── ProgressBar-compat.css │ │ │ │ │ ├── ProgressBar-compat.less │ │ │ │ │ ├── ProgressBar.css │ │ │ │ │ ├── ProgressBar.less │ │ │ │ │ ├── ProgressIndicator-compat.css │ │ │ │ │ ├── ProgressIndicator-compat.less │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ ├── ProgressIndicator.less │ │ │ │ │ ├── RadioButton-compat.css │ │ │ │ │ ├── RadioButton-compat.less │ │ │ │ │ ├── RadioButton.css │ │ │ │ │ ├── RadioButton.less │ │ │ │ │ ├── RoundRect-compat.css │ │ │ │ │ ├── RoundRect-compat.less │ │ │ │ │ ├── RoundRect.css │ │ │ │ │ ├── RoundRect.less │ │ │ │ │ ├── RoundRectCategory.css │ │ │ │ │ ├── RoundRectCategory.less │ │ │ │ │ ├── RoundRectList-compat.css │ │ │ │ │ ├── RoundRectList-compat.less │ │ │ │ │ ├── RoundRectList.css │ │ │ │ │ ├── RoundRectList.less │ │ │ │ │ ├── ScrollablePane.css │ │ │ │ │ ├── ScrollablePane.less │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ ├── SearchBox.less │ │ │ │ │ ├── SimpleDialog-compat.css │ │ │ │ │ ├── SimpleDialog-compat.less │ │ │ │ │ ├── SimpleDialog.css │ │ │ │ │ ├── SimpleDialog.less │ │ │ │ │ ├── Slider-compat.css │ │ │ │ │ ├── Slider-compat.less │ │ │ │ │ ├── Slider.css │ │ │ │ │ ├── Slider.less │ │ │ │ │ ├── SpinWheel-compat.css │ │ │ │ │ ├── SpinWheel-compat.less │ │ │ │ │ ├── SpinWheel.css │ │ │ │ │ ├── SpinWheel.less │ │ │ │ │ ├── Switch-compat.css │ │ │ │ │ ├── Switch-compat.less │ │ │ │ │ ├── Switch.css │ │ │ │ │ ├── Switch.less │ │ │ │ │ ├── TabBar-compat.css │ │ │ │ │ ├── TabBar-compat.less │ │ │ │ │ ├── TabBar.css │ │ │ │ │ ├── TabBar.less │ │ │ │ │ ├── TextArea-compat.css │ │ │ │ │ ├── TextArea-compat.less │ │ │ │ │ ├── TextArea.css │ │ │ │ │ ├── TextArea.less │ │ │ │ │ ├── TextBox-compat.css │ │ │ │ │ ├── TextBox-compat.less │ │ │ │ │ ├── TextBox.css │ │ │ │ │ ├── TextBox.less │ │ │ │ │ ├── TimePicker.css │ │ │ │ │ ├── ToggleButton-compat.css │ │ │ │ │ ├── ToggleButton-compat.less │ │ │ │ │ ├── ToggleButton.css │ │ │ │ │ ├── ToggleButton.less │ │ │ │ │ ├── ToolBarButton-compat.css │ │ │ │ │ ├── ToolBarButton-compat.less │ │ │ │ │ ├── ToolBarButton.css │ │ │ │ │ ├── ToolBarButton.less │ │ │ │ │ ├── Tooltip-compat.css │ │ │ │ │ ├── Tooltip-compat.less │ │ │ │ │ ├── Tooltip.css │ │ │ │ │ ├── Tooltip.less │ │ │ │ │ ├── ValuePicker-compat.css │ │ │ │ │ ├── ValuePicker-compat.less │ │ │ │ │ ├── ValuePicker.css │ │ │ │ │ ├── ValuePicker.less │ │ │ │ │ ├── View.css │ │ │ │ │ ├── View.less │ │ │ │ │ ├── android-app-compat.css │ │ │ │ │ ├── android-app.css │ │ │ │ │ ├── android-compat.css │ │ │ │ │ ├── android.css │ │ │ │ │ ├── base-compat.css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── common-compat.css │ │ │ │ │ ├── common-compat.less │ │ │ │ │ ├── common.css │ │ │ │ │ ├── common.less │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── arrow-button-bg-sel.png │ │ │ │ │ │ ├── arrow-button-bg.png │ │ │ │ │ │ ├── arrow-button-head-sel.png │ │ │ │ │ │ ├── arrow-button-head.png │ │ │ │ │ │ ├── arrow-button-right-head-sel.png │ │ │ │ │ │ ├── arrow-button-right-head.png │ │ │ │ │ │ ├── blue-button-bg.png │ │ │ │ │ │ ├── blue-button-sel-bg.png │ │ │ │ │ │ ├── button-arrow-head-bg.gif │ │ │ │ │ │ ├── button-bg.png │ │ │ │ │ │ ├── button-chk-bg.png │ │ │ │ │ │ ├── button-sel-bg.png │ │ │ │ │ │ ├── button-unsel-bg.png │ │ │ │ │ │ ├── gray-arrow.png │ │ │ │ │ │ ├── heading-bg.png │ │ │ │ │ │ ├── icon-content-heading-bg.png │ │ │ │ │ │ ├── red-button-bg.png │ │ │ │ │ │ ├── red-button-sel-bg.png │ │ │ │ │ │ ├── slider-h-bar-bg.png │ │ │ │ │ │ ├── slider-h-bg.png │ │ │ │ │ │ ├── slider-handle-bg.png │ │ │ │ │ │ ├── switch-arc1-k.gif │ │ │ │ │ │ ├── switch-arc1-l.gif │ │ │ │ │ │ ├── switch-arc1-r.gif │ │ │ │ │ │ ├── switch-arc2-k.gif │ │ │ │ │ │ ├── switch-arc2-l.gif │ │ │ │ │ │ ├── switch-arc2-r.gif │ │ │ │ │ │ ├── switch-round1-k.gif │ │ │ │ │ │ ├── switch-round1-l.gif │ │ │ │ │ │ ├── switch-round1-r.gif │ │ │ │ │ │ ├── switch-round2-k.gif │ │ │ │ │ │ ├── switch-round2-l.gif │ │ │ │ │ │ ├── switch-round2-r.gif │ │ │ │ │ │ ├── switch-square-k.gif │ │ │ │ │ │ ├── switch-square-l.gif │ │ │ │ │ │ ├── switch-square-r.gif │ │ │ │ │ │ ├── tab-button-bg.png │ │ │ │ │ │ ├── tab-orange-button-bg.png │ │ │ │ │ │ ├── tab-seg-button-bg.png │ │ │ │ │ │ ├── tab-seg-sel-button-bg.png │ │ │ │ │ │ ├── tab-sel-button-bg.png │ │ │ │ │ │ ├── tab-slim-bar-bg.png │ │ │ │ │ │ ├── tab-tall-bar-bg.png │ │ │ │ │ │ ├── togglebutton-chk-bg.png │ │ │ │ │ │ ├── togglebutton-chk-mark-bg.png │ │ │ │ │ │ └── valuepicker-button-bg.png │ │ │ │ │ ├── dijit │ │ │ │ │ │ ├── Calendar-compat.css │ │ │ │ │ │ ├── Calendar-compat.less │ │ │ │ │ │ ├── Calendar.css │ │ │ │ │ │ ├── Calendar.less │ │ │ │ │ │ └── compat │ │ │ │ │ │ │ ├── calendar-datelabel-act-bg.png │ │ │ │ │ │ │ ├── calendar-datelabel-sel-bg.png │ │ │ │ │ │ │ ├── calendar-month-bg.png │ │ │ │ │ │ │ └── calendar-year-bg.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── thumb-overlay-large.png │ │ │ │ │ │ ├── thumb-overlay-small.png │ │ │ │ │ │ └── thumb-overlay.png │ │ │ │ │ └── variables.less │ │ │ │ ├── blackberry │ │ │ │ │ ├── Accordion-compat.css │ │ │ │ │ ├── Accordion-compat.less │ │ │ │ │ ├── Accordion.css │ │ │ │ │ ├── Accordion.less │ │ │ │ │ ├── Button-compat.css │ │ │ │ │ ├── Button-compat.less │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.less │ │ │ │ │ ├── Carousel.css │ │ │ │ │ ├── Carousel.less │ │ │ │ │ ├── CheckBox-compat.css │ │ │ │ │ ├── CheckBox-compat.less │ │ │ │ │ ├── CheckBox.css │ │ │ │ │ ├── CheckBox.less │ │ │ │ │ ├── ComboBox-compat.css │ │ │ │ │ ├── ComboBox-compat.less │ │ │ │ │ ├── ComboBox.css │ │ │ │ │ ├── ComboBox.less │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ ├── EdgeToEdgeCategory.css │ │ │ │ │ ├── EdgeToEdgeCategory.less │ │ │ │ │ ├── EdgeToEdgeList.css │ │ │ │ │ ├── EdgeToEdgeList.less │ │ │ │ │ ├── FixedSplitter.css │ │ │ │ │ ├── FixedSplitter.less │ │ │ │ │ ├── GridLayout.css │ │ │ │ │ ├── GridLayout.less │ │ │ │ │ ├── Heading-compat.css │ │ │ │ │ ├── Heading-compat.less │ │ │ │ │ ├── Heading.css │ │ │ │ │ ├── Heading.less │ │ │ │ │ ├── IconContainer-compat.css │ │ │ │ │ ├── IconContainer-compat.less │ │ │ │ │ ├── IconContainer.css │ │ │ │ │ ├── IconContainer.less │ │ │ │ │ ├── IconMenu-compat.css │ │ │ │ │ ├── IconMenu-compat.less │ │ │ │ │ ├── IconMenu.css │ │ │ │ │ ├── IconMenu.less │ │ │ │ │ ├── ListItem-compat.css │ │ │ │ │ ├── ListItem-compat.less │ │ │ │ │ ├── ListItem.css │ │ │ │ │ ├── ListItem.less │ │ │ │ │ ├── Opener-compat.css │ │ │ │ │ ├── Opener.css │ │ │ │ │ ├── Overlay-compat.css │ │ │ │ │ ├── Overlay-compat.less │ │ │ │ │ ├── Overlay.css │ │ │ │ │ ├── Overlay.less │ │ │ │ │ ├── PageIndicator-compat.css │ │ │ │ │ ├── PageIndicator.css │ │ │ │ │ ├── PageIndicator.less │ │ │ │ │ ├── ProgressBar-compat.css │ │ │ │ │ ├── ProgressBar-compat.less │ │ │ │ │ ├── ProgressBar.css │ │ │ │ │ ├── ProgressBar.less │ │ │ │ │ ├── ProgressIndicator-compat.css │ │ │ │ │ ├── ProgressIndicator-compat.less │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ ├── ProgressIndicator.less │ │ │ │ │ ├── RadioButton-compat.css │ │ │ │ │ ├── RadioButton-compat.less │ │ │ │ │ ├── RadioButton.css │ │ │ │ │ ├── RadioButton.less │ │ │ │ │ ├── RoundRect-compat.css │ │ │ │ │ ├── RoundRect-compat.less │ │ │ │ │ ├── RoundRect.css │ │ │ │ │ ├── RoundRect.less │ │ │ │ │ ├── RoundRectCategory-compat.css │ │ │ │ │ ├── RoundRectCategory.css │ │ │ │ │ ├── RoundRectCategory.less │ │ │ │ │ ├── RoundRectList-compat.css │ │ │ │ │ ├── RoundRectList-compat.less │ │ │ │ │ ├── RoundRectList.css │ │ │ │ │ ├── RoundRectList.less │ │ │ │ │ ├── ScrollablePane.css │ │ │ │ │ ├── ScrollablePane.less │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ ├── SearchBox.less │ │ │ │ │ ├── SimpleDialog-compat.css │ │ │ │ │ ├── SimpleDialog-compat.less │ │ │ │ │ ├── SimpleDialog.css │ │ │ │ │ ├── SimpleDialog.less │ │ │ │ │ ├── Slider-compat.css │ │ │ │ │ ├── Slider-compat.less │ │ │ │ │ ├── Slider.css │ │ │ │ │ ├── Slider.less │ │ │ │ │ ├── SpinWheel-compat.css │ │ │ │ │ ├── SpinWheel-compat.less │ │ │ │ │ ├── SpinWheel.css │ │ │ │ │ ├── SpinWheel.less │ │ │ │ │ ├── Switch-compat.css │ │ │ │ │ ├── Switch-compat.less │ │ │ │ │ ├── Switch.css │ │ │ │ │ ├── Switch.less │ │ │ │ │ ├── TabBar-compat.css │ │ │ │ │ ├── TabBar-compat.less │ │ │ │ │ ├── TabBar.css │ │ │ │ │ ├── TabBar.less │ │ │ │ │ ├── TextArea-compat.css │ │ │ │ │ ├── TextArea-compat.less │ │ │ │ │ ├── TextArea.css │ │ │ │ │ ├── TextArea.less │ │ │ │ │ ├── TextBox-compat.css │ │ │ │ │ ├── TextBox-compat.less │ │ │ │ │ ├── TextBox.css │ │ │ │ │ ├── TextBox.less │ │ │ │ │ ├── TimePicker.css │ │ │ │ │ ├── ToggleButton-compat.css │ │ │ │ │ ├── ToggleButton-compat.less │ │ │ │ │ ├── ToggleButton.css │ │ │ │ │ ├── ToggleButton.less │ │ │ │ │ ├── ToolBarButton-compat.css │ │ │ │ │ ├── ToolBarButton-compat.less │ │ │ │ │ ├── ToolBarButton.css │ │ │ │ │ ├── ToolBarButton.less │ │ │ │ │ ├── Tooltip-compat.css │ │ │ │ │ ├── Tooltip-compat.less │ │ │ │ │ ├── Tooltip.css │ │ │ │ │ ├── Tooltip.less │ │ │ │ │ ├── ValuePicker-compat.css │ │ │ │ │ ├── ValuePicker-compat.less │ │ │ │ │ ├── ValuePicker.css │ │ │ │ │ ├── ValuePicker.less │ │ │ │ │ ├── View.css │ │ │ │ │ ├── View.less │ │ │ │ │ ├── base-compat.css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── blackberry-compat.css │ │ │ │ │ ├── blackberry.css │ │ │ │ │ ├── common-compat.css │ │ │ │ │ ├── common-compat.less │ │ │ │ │ ├── common.css │ │ │ │ │ ├── common.less │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── arrow-button-bg-sel.png │ │ │ │ │ │ ├── arrow-button-bg.png │ │ │ │ │ │ ├── arrow-button-head-sel.png │ │ │ │ │ │ ├── arrow-button-head.gif │ │ │ │ │ │ ├── arrow-button-head.png │ │ │ │ │ │ ├── arrow-button-right-head-sel.png │ │ │ │ │ │ ├── arrow-button-right-head.png │ │ │ │ │ │ ├── blue-button-bg.png │ │ │ │ │ │ ├── blue-button-sel-bg.png │ │ │ │ │ │ ├── button-arrow-head-bg.gif │ │ │ │ │ │ ├── button-bg.png │ │ │ │ │ │ ├── button-chk-bg.png │ │ │ │ │ │ ├── button-sel-bg.png │ │ │ │ │ │ ├── button-unsel-bg.png │ │ │ │ │ │ ├── gray-arrow.png │ │ │ │ │ │ ├── heading-bg.png │ │ │ │ │ │ ├── icon-content-heading-bg.png │ │ │ │ │ │ ├── red-button-bg.png │ │ │ │ │ │ ├── red-button-sel-bg.png │ │ │ │ │ │ ├── slider-h-bar-bg.png │ │ │ │ │ │ ├── slider-h-bg.png │ │ │ │ │ │ ├── slider-handle-bg.png │ │ │ │ │ │ ├── switch-arc1-k.gif │ │ │ │ │ │ ├── switch-arc1-l.gif │ │ │ │ │ │ ├── switch-arc1-r.gif │ │ │ │ │ │ ├── switch-arc2-k.gif │ │ │ │ │ │ ├── switch-arc2-l.gif │ │ │ │ │ │ ├── switch-arc2-r.gif │ │ │ │ │ │ ├── switch-round1-k.gif │ │ │ │ │ │ ├── switch-round1-l.gif │ │ │ │ │ │ ├── switch-round1-r.gif │ │ │ │ │ │ ├── switch-round2-k.gif │ │ │ │ │ │ ├── switch-round2-l.gif │ │ │ │ │ │ ├── switch-round2-r.gif │ │ │ │ │ │ ├── switch-square-k.gif │ │ │ │ │ │ ├── switch-square-l.gif │ │ │ │ │ │ ├── switch-square-r.gif │ │ │ │ │ │ ├── tab-button-bg.png │ │ │ │ │ │ ├── tab-orange-button-bg.png │ │ │ │ │ │ ├── tab-seg-button-bg.png │ │ │ │ │ │ ├── tab-seg-sel-button-bg.png │ │ │ │ │ │ ├── tab-sel-button-bg.png │ │ │ │ │ │ ├── tab-slim-bar-bg.png │ │ │ │ │ │ ├── tab-tall-bar-bg.png │ │ │ │ │ │ ├── togglebutton-chk-mark-bg.png │ │ │ │ │ │ └── valuepicker-button-bg.png │ │ │ │ │ ├── dijit │ │ │ │ │ │ ├── Calendar-compat.css │ │ │ │ │ │ ├── Calendar-compat.less │ │ │ │ │ │ ├── Calendar.css │ │ │ │ │ │ ├── Calendar.less │ │ │ │ │ │ └── compat │ │ │ │ │ │ │ ├── calendar-datelabel-sel-bg.png │ │ │ │ │ │ │ ├── calendar-month-bg.png │ │ │ │ │ │ │ └── calendar-year-bg.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── thumb-overlay-large.png │ │ │ │ │ │ ├── thumb-overlay-small.png │ │ │ │ │ │ └── thumb-overlay.png │ │ │ │ │ └── variables.less │ │ │ │ ├── common │ │ │ │ │ ├── Accordion-compat.less │ │ │ │ │ ├── Accordion.less │ │ │ │ │ ├── Button-compat.less │ │ │ │ │ ├── Button.less │ │ │ │ │ ├── Carousel.less │ │ │ │ │ ├── CheckBox-compat.less │ │ │ │ │ ├── CheckBox.less │ │ │ │ │ ├── ComboBox-compat.less │ │ │ │ │ ├── ComboBox.less │ │ │ │ │ ├── EdgeToEdgeCategory.less │ │ │ │ │ ├── EdgeToEdgeList.less │ │ │ │ │ ├── FixedSplitter.less │ │ │ │ │ ├── GridLayout.less │ │ │ │ │ ├── Heading-compat.less │ │ │ │ │ ├── Heading.less │ │ │ │ │ ├── IconContainer-compat.less │ │ │ │ │ ├── IconContainer.less │ │ │ │ │ ├── IconContainer_keyframes.css │ │ │ │ │ ├── IconMenu-compat.less │ │ │ │ │ ├── IconMenu.less │ │ │ │ │ ├── ListItem-compat.less │ │ │ │ │ ├── ListItem.less │ │ │ │ │ ├── Overlay-compat.less │ │ │ │ │ ├── Overlay.less │ │ │ │ │ ├── PageIndicator.less │ │ │ │ │ ├── PageTurning.css │ │ │ │ │ ├── ProgressBar-compat.less │ │ │ │ │ ├── ProgressBar.less │ │ │ │ │ ├── ProgressIndicator-compat.less │ │ │ │ │ ├── ProgressIndicator.less │ │ │ │ │ ├── RadioButton-compat.less │ │ │ │ │ ├── RadioButton.less │ │ │ │ │ ├── RoundRect-compat.less │ │ │ │ │ ├── RoundRect.less │ │ │ │ │ ├── RoundRectCategory.less │ │ │ │ │ ├── RoundRectList-compat.less │ │ │ │ │ ├── RoundRectList.less │ │ │ │ │ ├── ScrollablePane.less │ │ │ │ │ ├── SearchBox.less │ │ │ │ │ ├── SimpleDialog-compat.less │ │ │ │ │ ├── SimpleDialog.less │ │ │ │ │ ├── Slider-compat.less │ │ │ │ │ ├── Slider.less │ │ │ │ │ ├── SpinWheel-compat.less │ │ │ │ │ ├── SpinWheel.less │ │ │ │ │ ├── Switch-compat.less │ │ │ │ │ ├── Switch.less │ │ │ │ │ ├── TabBar-compat.less │ │ │ │ │ ├── TabBar.less │ │ │ │ │ ├── TextArea-compat.less │ │ │ │ │ ├── TextArea.less │ │ │ │ │ ├── TextBox-compat.less │ │ │ │ │ ├── TextBox.less │ │ │ │ │ ├── ToggleButton-compat.less │ │ │ │ │ ├── ToggleButton.less │ │ │ │ │ ├── ToolBarButton-compat.less │ │ │ │ │ ├── ToolBarButton.less │ │ │ │ │ ├── Tooltip-compat.less │ │ │ │ │ ├── Tooltip.less │ │ │ │ │ ├── ValuePicker-compat.less │ │ │ │ │ ├── ValuePicker.less │ │ │ │ │ ├── View.less │ │ │ │ │ ├── common-compat.less │ │ │ │ │ ├── common.less │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── spinwheel-bar.png │ │ │ │ │ │ └── spinwheel-bg.png │ │ │ │ │ ├── compile.js │ │ │ │ │ ├── dijit │ │ │ │ │ │ ├── Calendar-compat.less │ │ │ │ │ │ ├── Calendar.less │ │ │ │ │ │ ├── ColorPalette.css │ │ │ │ │ │ ├── ColorPicker.css │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ └── dijit.css │ │ │ │ │ ├── domButtons-compat.css │ │ │ │ │ ├── domButtons.css │ │ │ │ │ ├── domButtons │ │ │ │ │ │ ├── DomButtonBlackCircleCross-compat.css │ │ │ │ │ │ ├── DomButtonBlackCircleCross.css │ │ │ │ │ │ ├── DomButtonBlackDownArrow16-compat.css │ │ │ │ │ │ ├── DomButtonBlackDownArrow16.css │ │ │ │ │ │ ├── DomButtonBlackLeftArrow16-compat.css │ │ │ │ │ │ ├── DomButtonBlackLeftArrow16.css │ │ │ │ │ │ ├── DomButtonBlackRightArrow16-compat.css │ │ │ │ │ │ ├── DomButtonBlackRightArrow16.css │ │ │ │ │ │ ├── DomButtonBlackUpArrow16-compat.css │ │ │ │ │ │ ├── DomButtonBlackUpArrow16.css │ │ │ │ │ │ ├── DomButtonBlueBadge-compat.css │ │ │ │ │ │ ├── DomButtonBlueBadge.css │ │ │ │ │ │ ├── DomButtonBlueBall-compat.css │ │ │ │ │ │ ├── DomButtonBlueBall.css │ │ │ │ │ │ ├── DomButtonBlueCircleArrow-compat.css │ │ │ │ │ │ ├── DomButtonBlueCircleArrow.css │ │ │ │ │ │ ├── DomButtonBlueCircleMinus-compat.css │ │ │ │ │ │ ├── DomButtonBlueCircleMinus.css │ │ │ │ │ │ ├── DomButtonBlueCirclePlus-compat.css │ │ │ │ │ │ ├── DomButtonBlueCirclePlus.css │ │ │ │ │ │ ├── DomButtonCheckboxOff-compat.css │ │ │ │ │ │ ├── DomButtonCheckboxOff.css │ │ │ │ │ │ ├── DomButtonCheckboxOn-compat.css │ │ │ │ │ │ ├── DomButtonCheckboxOn.css │ │ │ │ │ │ ├── DomButtonColorButtons-compat.css │ │ │ │ │ │ ├── DomButtonColorButtons.css │ │ │ │ │ │ ├── DomButtonDarkBlueCheck-compat.css │ │ │ │ │ │ ├── DomButtonDarkBlueCheck.css │ │ │ │ │ │ ├── DomButtonGrayArrow-compat.css │ │ │ │ │ │ ├── DomButtonGrayArrow.css │ │ │ │ │ │ ├── DomButtonGrayCross-compat.css │ │ │ │ │ │ ├── DomButtonGrayCross.css │ │ │ │ │ │ ├── DomButtonGrayKnob-compat.css │ │ │ │ │ │ ├── DomButtonGrayKnob.css │ │ │ │ │ │ ├── DomButtonGrayMinus-compat.css │ │ │ │ │ │ ├── DomButtonGrayMinus.css │ │ │ │ │ │ ├── DomButtonGrayPlus-compat.css │ │ │ │ │ │ ├── DomButtonGrayPlus.css │ │ │ │ │ │ ├── DomButtonGrayRoundRect-compat.css │ │ │ │ │ │ ├── DomButtonGrayRoundRect.css │ │ │ │ │ │ ├── DomButtonGrayStar-compat.css │ │ │ │ │ │ ├── DomButtonGrayStar.css │ │ │ │ │ │ ├── DomButtonGreenBadge-compat.css │ │ │ │ │ │ ├── DomButtonGreenBadge.css │ │ │ │ │ │ ├── DomButtonGreenBall-compat.css │ │ │ │ │ │ ├── DomButtonGreenBall.css │ │ │ │ │ │ ├── DomButtonGreenCircleArrow-compat.css │ │ │ │ │ │ ├── DomButtonGreenCircleArrow.css │ │ │ │ │ │ ├── DomButtonGreenCircleMinus-compat.css │ │ │ │ │ │ ├── DomButtonGreenCircleMinus.css │ │ │ │ │ │ ├── DomButtonGreenCirclePlus-compat.css │ │ │ │ │ │ ├── DomButtonGreenCirclePlus.css │ │ │ │ │ │ ├── DomButtonOrangeBall-compat.css │ │ │ │ │ │ ├── DomButtonOrangeBall.css │ │ │ │ │ │ ├── DomButtonRedBadge-compat.css │ │ │ │ │ │ ├── DomButtonRedBadge.css │ │ │ │ │ │ ├── DomButtonRedBall-compat.css │ │ │ │ │ │ ├── DomButtonRedBall.css │ │ │ │ │ │ ├── DomButtonRedCircleArrow-compat.css │ │ │ │ │ │ ├── DomButtonRedCircleArrow.css │ │ │ │ │ │ ├── DomButtonRedCircleMinus-compat.css │ │ │ │ │ │ ├── DomButtonRedCircleMinus.css │ │ │ │ │ │ ├── DomButtonRedCirclePlus-compat.css │ │ │ │ │ │ ├── DomButtonRedCirclePlus.css │ │ │ │ │ │ ├── DomButtonRedCross-compat.css │ │ │ │ │ │ ├── DomButtonRedCross.css │ │ │ │ │ │ ├── DomButtonSilverCircleDownArrow-compat.css │ │ │ │ │ │ ├── DomButtonSilverCircleDownArrow.css │ │ │ │ │ │ ├── DomButtonSilverCircleGrayButton-compat.css │ │ │ │ │ │ ├── DomButtonSilverCircleGrayButton.css │ │ │ │ │ │ ├── DomButtonSilverCircleGreenButton-compat.css │ │ │ │ │ │ ├── DomButtonSilverCircleGreenButton.css │ │ │ │ │ │ ├── DomButtonSilverCircleGreenPlus-compat.css │ │ │ │ │ │ ├── DomButtonSilverCircleGreenPlus.css │ │ │ │ │ │ ├── DomButtonSilverCircleOrangeButton-compat.css │ │ │ │ │ │ ├── DomButtonSilverCircleOrangeButton.css │ │ │ │ │ │ ├── DomButtonSilverCircleRedCross-compat.css │ │ │ │ │ │ ├── DomButtonSilverCircleRedCross.css │ │ │ │ │ │ ├── DomButtonTransparent19.css │ │ │ │ │ │ ├── DomButtonTransparent29.css │ │ │ │ │ │ ├── DomButtonTransparent30.css │ │ │ │ │ │ ├── DomButtonWhiteArrow-compat.css │ │ │ │ │ │ ├── DomButtonWhiteArrow.css │ │ │ │ │ │ ├── DomButtonWhiteCheck-compat.css │ │ │ │ │ │ ├── DomButtonWhiteCheck.css │ │ │ │ │ │ ├── DomButtonWhiteCross-compat.css │ │ │ │ │ │ ├── DomButtonWhiteCross.css │ │ │ │ │ │ ├── DomButtonWhiteDownArrow-compat.css │ │ │ │ │ │ ├── DomButtonWhiteDownArrow.css │ │ │ │ │ │ ├── DomButtonWhiteDownArrow16-compat.css │ │ │ │ │ │ ├── DomButtonWhiteDownArrow16.css │ │ │ │ │ │ ├── DomButtonWhiteLeftArrow16-compat.css │ │ │ │ │ │ ├── DomButtonWhiteLeftArrow16.css │ │ │ │ │ │ ├── DomButtonWhiteMinus-compat.css │ │ │ │ │ │ ├── DomButtonWhiteMinus.css │ │ │ │ │ │ ├── DomButtonWhitePlus-compat.css │ │ │ │ │ │ ├── DomButtonWhitePlus.css │ │ │ │ │ │ ├── DomButtonWhiteRightArrow16-compat.css │ │ │ │ │ │ ├── DomButtonWhiteRightArrow16.css │ │ │ │ │ │ ├── DomButtonWhiteSearch-compat.css │ │ │ │ │ │ ├── DomButtonWhiteSearch.css │ │ │ │ │ │ ├── DomButtonWhiteUpArrow-compat.css │ │ │ │ │ │ ├── DomButtonWhiteUpArrow.css │ │ │ │ │ │ ├── DomButtonWhiteUpArrow16-compat.css │ │ │ │ │ │ ├── DomButtonWhiteUpArrow16.css │ │ │ │ │ │ ├── DomButtonYellowStar-compat.css │ │ │ │ │ │ ├── DomButtonYellowStar.css │ │ │ │ │ │ └── compat │ │ │ │ │ │ │ ├── mblDomButtonArrow.png │ │ │ │ │ │ │ ├── mblDomButtonBlackCircleCross.png │ │ │ │ │ │ │ ├── mblDomButtonBlackDownArrow16.png │ │ │ │ │ │ │ ├── mblDomButtonBlackLeftArrow16.png │ │ │ │ │ │ │ ├── mblDomButtonBlackRightArrow16.png │ │ │ │ │ │ │ ├── mblDomButtonBlackUpArrow16.png │ │ │ │ │ │ │ ├── mblDomButtonBlueBall.png │ │ │ │ │ │ │ ├── mblDomButtonBlueCircleArrow.png │ │ │ │ │ │ │ ├── mblDomButtonBlueCircleMinus.png │ │ │ │ │ │ │ ├── mblDomButtonBlueCirclePlus.png │ │ │ │ │ │ │ ├── mblDomButtonBlueMinus.png │ │ │ │ │ │ │ ├── mblDomButtonBluePlus.png │ │ │ │ │ │ │ ├── mblDomButtonCheck.png │ │ │ │ │ │ │ ├── mblDomButtonCheckboxOff.png │ │ │ │ │ │ │ ├── mblDomButtonCheckboxOn.png │ │ │ │ │ │ │ ├── mblDomButtonDarkBlueCheck.png │ │ │ │ │ │ │ ├── mblDomButtonDarkBlueMinus.png │ │ │ │ │ │ │ ├── mblDomButtonDarkBluePlus.png │ │ │ │ │ │ │ ├── mblDomButtonGrayArrow.png │ │ │ │ │ │ │ ├── mblDomButtonGrayCross.png │ │ │ │ │ │ │ ├── mblDomButtonGrayKnob.png │ │ │ │ │ │ │ ├── mblDomButtonGrayMinus.png │ │ │ │ │ │ │ ├── mblDomButtonGrayPlus.png │ │ │ │ │ │ │ ├── mblDomButtonGrayStar.png │ │ │ │ │ │ │ ├── mblDomButtonGreenBall.png │ │ │ │ │ │ │ ├── mblDomButtonGreenCircleArrow.png │ │ │ │ │ │ │ ├── mblDomButtonGreenCircleMinus.png │ │ │ │ │ │ │ ├── mblDomButtonGreenCirclePlus.png │ │ │ │ │ │ │ ├── mblDomButtonOrangeBall.png │ │ │ │ │ │ │ ├── mblDomButtonRedBall.png │ │ │ │ │ │ │ ├── mblDomButtonRedCircleArrow.png │ │ │ │ │ │ │ ├── mblDomButtonRedCircleMinus.png │ │ │ │ │ │ │ ├── mblDomButtonRedCirclePlus.png │ │ │ │ │ │ │ ├── mblDomButtonRedCross.png │ │ │ │ │ │ │ ├── mblDomButtonRedMinus.png │ │ │ │ │ │ │ ├── mblDomButtonRedPlus.png │ │ │ │ │ │ │ ├── mblDomButtonSilverCircleDownArrow.png │ │ │ │ │ │ │ ├── mblDomButtonSilverCircleGrayButton.png │ │ │ │ │ │ │ ├── mblDomButtonSilverCircleGreenButton.png │ │ │ │ │ │ │ ├── mblDomButtonSilverCircleGreenPlus.png │ │ │ │ │ │ │ ├── mblDomButtonSilverCircleOrangeButton.png │ │ │ │ │ │ │ ├── mblDomButtonSilverCircleRedCross.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteArrow.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteCheck.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteCross.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteDownArrow.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteDownArrow16.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteLeftArrow16.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteMinus.png │ │ │ │ │ │ │ ├── mblDomButtonWhitePlus.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteRightArrow16.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteSearch.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteUpArrow.png │ │ │ │ │ │ │ ├── mblDomButtonWhiteUpArrow16.png │ │ │ │ │ │ │ └── mblDomButtonYellowStar.png │ │ │ │ │ ├── transitions.css │ │ │ │ │ └── transitions │ │ │ │ │ │ ├── cover.css │ │ │ │ │ │ ├── coverv.css │ │ │ │ │ │ ├── cube.css │ │ │ │ │ │ ├── dissolve.css │ │ │ │ │ │ ├── fade.css │ │ │ │ │ │ ├── flip.css │ │ │ │ │ │ ├── reveal.css │ │ │ │ │ │ ├── revealv.css │ │ │ │ │ │ ├── scaleIn.css │ │ │ │ │ │ ├── scaleOut.css │ │ │ │ │ │ ├── slide.css │ │ │ │ │ │ ├── slidev.css │ │ │ │ │ │ ├── swap.css │ │ │ │ │ │ ├── swirl.css │ │ │ │ │ │ ├── zoomIn.css │ │ │ │ │ │ └── zoomOut.css │ │ │ │ ├── custom │ │ │ │ │ ├── Accordion-compat.css │ │ │ │ │ ├── Accordion-compat.less │ │ │ │ │ ├── Accordion.css │ │ │ │ │ ├── Accordion.less │ │ │ │ │ ├── Button-compat.css │ │ │ │ │ ├── Button-compat.less │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.less │ │ │ │ │ ├── Carousel.css │ │ │ │ │ ├── Carousel.less │ │ │ │ │ ├── CheckBox-compat.css │ │ │ │ │ ├── CheckBox-compat.less │ │ │ │ │ ├── CheckBox.css │ │ │ │ │ ├── CheckBox.less │ │ │ │ │ ├── ComboBox-compat.css │ │ │ │ │ ├── ComboBox-compat.less │ │ │ │ │ ├── ComboBox.css │ │ │ │ │ ├── ComboBox.less │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ ├── EdgeToEdgeCategory.css │ │ │ │ │ ├── EdgeToEdgeCategory.less │ │ │ │ │ ├── EdgeToEdgeList.css │ │ │ │ │ ├── EdgeToEdgeList.less │ │ │ │ │ ├── FixedSplitter.css │ │ │ │ │ ├── FixedSplitter.less │ │ │ │ │ ├── GridLayout.css │ │ │ │ │ ├── GridLayout.less │ │ │ │ │ ├── Heading-compat.css │ │ │ │ │ ├── Heading-compat.less │ │ │ │ │ ├── Heading.css │ │ │ │ │ ├── Heading.less │ │ │ │ │ ├── IconContainer-compat.css │ │ │ │ │ ├── IconContainer-compat.less │ │ │ │ │ ├── IconContainer.css │ │ │ │ │ ├── IconContainer.less │ │ │ │ │ ├── IconMenu-compat.css │ │ │ │ │ ├── IconMenu-compat.less │ │ │ │ │ ├── IconMenu.css │ │ │ │ │ ├── IconMenu.less │ │ │ │ │ ├── ListItem-compat.css │ │ │ │ │ ├── ListItem-compat.less │ │ │ │ │ ├── ListItem.css │ │ │ │ │ ├── ListItem.less │ │ │ │ │ ├── Opener-compat.css │ │ │ │ │ ├── Opener.css │ │ │ │ │ ├── Overlay-compat.css │ │ │ │ │ ├── Overlay-compat.less │ │ │ │ │ ├── Overlay.css │ │ │ │ │ ├── Overlay.less │ │ │ │ │ ├── PageIndicator-compat.css │ │ │ │ │ ├── PageIndicator.css │ │ │ │ │ ├── PageIndicator.less │ │ │ │ │ ├── ProgressBar-compat.css │ │ │ │ │ ├── ProgressBar-compat.less │ │ │ │ │ ├── ProgressBar.css │ │ │ │ │ ├── ProgressBar.less │ │ │ │ │ ├── ProgressIndicator-compat.css │ │ │ │ │ ├── ProgressIndicator-compat.less │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ ├── ProgressIndicator.less │ │ │ │ │ ├── RadioButton-compat.css │ │ │ │ │ ├── RadioButton-compat.less │ │ │ │ │ ├── RadioButton.css │ │ │ │ │ ├── RadioButton.less │ │ │ │ │ ├── RoundRect-compat.css │ │ │ │ │ ├── RoundRect-compat.less │ │ │ │ │ ├── RoundRect.css │ │ │ │ │ ├── RoundRect.less │ │ │ │ │ ├── RoundRectCategory.css │ │ │ │ │ ├── RoundRectCategory.less │ │ │ │ │ ├── RoundRectList-compat.css │ │ │ │ │ ├── RoundRectList-compat.less │ │ │ │ │ ├── RoundRectList.css │ │ │ │ │ ├── RoundRectList.less │ │ │ │ │ ├── ScrollablePane.css │ │ │ │ │ ├── ScrollablePane.less │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ ├── SearchBox.less │ │ │ │ │ ├── SimpleDialog-compat.css │ │ │ │ │ ├── SimpleDialog-compat.less │ │ │ │ │ ├── SimpleDialog.css │ │ │ │ │ ├── SimpleDialog.less │ │ │ │ │ ├── Slider-compat.css │ │ │ │ │ ├── Slider-compat.less │ │ │ │ │ ├── Slider.css │ │ │ │ │ ├── Slider.less │ │ │ │ │ ├── SpinWheel-compat.css │ │ │ │ │ ├── SpinWheel-compat.less │ │ │ │ │ ├── SpinWheel.css │ │ │ │ │ ├── SpinWheel.less │ │ │ │ │ ├── Switch-compat.css │ │ │ │ │ ├── Switch-compat.less │ │ │ │ │ ├── Switch.css │ │ │ │ │ ├── Switch.less │ │ │ │ │ ├── TabBar-compat.css │ │ │ │ │ ├── TabBar-compat.less │ │ │ │ │ ├── TabBar.css │ │ │ │ │ ├── TabBar.less │ │ │ │ │ ├── TextArea-compat.css │ │ │ │ │ ├── TextArea-compat.less │ │ │ │ │ ├── TextArea.css │ │ │ │ │ ├── TextArea.less │ │ │ │ │ ├── TextBox-compat.css │ │ │ │ │ ├── TextBox-compat.less │ │ │ │ │ ├── TextBox.css │ │ │ │ │ ├── TextBox.less │ │ │ │ │ ├── TimePicker.css │ │ │ │ │ ├── ToggleButton-compat.css │ │ │ │ │ ├── ToggleButton-compat.less │ │ │ │ │ ├── ToggleButton.css │ │ │ │ │ ├── ToggleButton.less │ │ │ │ │ ├── ToolBarButton-compat.css │ │ │ │ │ ├── ToolBarButton-compat.less │ │ │ │ │ ├── ToolBarButton.css │ │ │ │ │ ├── ToolBarButton.less │ │ │ │ │ ├── Tooltip-compat.css │ │ │ │ │ ├── Tooltip-compat.less │ │ │ │ │ ├── Tooltip.css │ │ │ │ │ ├── Tooltip.less │ │ │ │ │ ├── ValuePicker-compat.css │ │ │ │ │ ├── ValuePicker-compat.less │ │ │ │ │ ├── ValuePicker.css │ │ │ │ │ ├── ValuePicker.less │ │ │ │ │ ├── View.css │ │ │ │ │ ├── View.less │ │ │ │ │ ├── base-compat.css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── common-compat.css │ │ │ │ │ ├── common-compat.less │ │ │ │ │ ├── common.css │ │ │ │ │ ├── common.less │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── arrow-button-bg-sel.png │ │ │ │ │ │ ├── arrow-button-bg.png │ │ │ │ │ │ ├── arrow-button-head-sel.png │ │ │ │ │ │ ├── arrow-button-head.png │ │ │ │ │ │ ├── arrow-button-right-head-sel.png │ │ │ │ │ │ ├── arrow-button-right-head.png │ │ │ │ │ │ ├── blue-button-bg.png │ │ │ │ │ │ ├── blue-button-sel-bg.png │ │ │ │ │ │ ├── button-arrow-head-bg.gif │ │ │ │ │ │ ├── button-bg.png │ │ │ │ │ │ ├── button-chk-bg.png │ │ │ │ │ │ ├── button-sel-bg.png │ │ │ │ │ │ ├── button-unsel-bg.png │ │ │ │ │ │ ├── heading-bg.png │ │ │ │ │ │ ├── icon-content-heading-bg.png │ │ │ │ │ │ ├── red-button-bg.png │ │ │ │ │ │ ├── red-button-sel-bg.png │ │ │ │ │ │ ├── slider-h-bar-bg.png │ │ │ │ │ │ ├── slider-h-bg.png │ │ │ │ │ │ ├── slider-handle-bg.png │ │ │ │ │ │ ├── switch-arc1-k.gif │ │ │ │ │ │ ├── switch-arc1-l.gif │ │ │ │ │ │ ├── switch-arc1-r.gif │ │ │ │ │ │ ├── switch-arc2-k.gif │ │ │ │ │ │ ├── switch-arc2-l.gif │ │ │ │ │ │ ├── switch-arc2-r.gif │ │ │ │ │ │ ├── switch-round1-k.gif │ │ │ │ │ │ ├── switch-round1-l.gif │ │ │ │ │ │ ├── switch-round1-r.gif │ │ │ │ │ │ ├── switch-round2-k.gif │ │ │ │ │ │ ├── switch-round2-l.gif │ │ │ │ │ │ ├── switch-round2-r.gif │ │ │ │ │ │ ├── switch-square-k.gif │ │ │ │ │ │ ├── switch-square-l.gif │ │ │ │ │ │ ├── switch-square-r.gif │ │ │ │ │ │ ├── tab-seg-button-bg.png │ │ │ │ │ │ ├── tab-seg-sel-button-bg.png │ │ │ │ │ │ ├── tab-slim-bar-bg.png │ │ │ │ │ │ ├── tab-tall-bar-bg.png │ │ │ │ │ │ ├── togglebutton-chk-mark-bg.png │ │ │ │ │ │ └── valuepicker-button-bg.png │ │ │ │ │ ├── custom-compat.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── dijit │ │ │ │ │ │ ├── Calendar-compat.css │ │ │ │ │ │ ├── Calendar-compat.less │ │ │ │ │ │ ├── Calendar.css │ │ │ │ │ │ ├── Calendar.less │ │ │ │ │ │ └── compat │ │ │ │ │ │ │ ├── calendar-datelabel-act-bg.png │ │ │ │ │ │ │ ├── calendar-datelabel-sel-bg.png │ │ │ │ │ │ │ ├── calendar-month-bg.png │ │ │ │ │ │ │ └── calendar-year-bg.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── thumb-overlay-large.png │ │ │ │ │ │ ├── thumb-overlay-small.png │ │ │ │ │ │ └── thumb-overlay.png │ │ │ │ │ └── variables.less │ │ │ │ └── iphone │ │ │ │ │ ├── Accordion-compat.css │ │ │ │ │ ├── Accordion-compat.less │ │ │ │ │ ├── Accordion.css │ │ │ │ │ ├── Accordion.less │ │ │ │ │ ├── Button-compat.css │ │ │ │ │ ├── Button-compat.less │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.less │ │ │ │ │ ├── Carousel.css │ │ │ │ │ ├── Carousel.less │ │ │ │ │ ├── CheckBox-compat.css │ │ │ │ │ ├── CheckBox-compat.less │ │ │ │ │ ├── CheckBox.css │ │ │ │ │ ├── CheckBox.less │ │ │ │ │ ├── ComboBox-compat.css │ │ │ │ │ ├── ComboBox-compat.less │ │ │ │ │ ├── ComboBox.css │ │ │ │ │ ├── ComboBox.less │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ ├── EdgeToEdgeCategory-compat.css │ │ │ │ │ ├── EdgeToEdgeCategory.css │ │ │ │ │ ├── EdgeToEdgeCategory.less │ │ │ │ │ ├── EdgeToEdgeList.css │ │ │ │ │ ├── EdgeToEdgeList.less │ │ │ │ │ ├── FixedSplitter.css │ │ │ │ │ ├── FixedSplitter.less │ │ │ │ │ ├── GridLayout.css │ │ │ │ │ ├── GridLayout.less │ │ │ │ │ ├── Heading-compat.css │ │ │ │ │ ├── Heading-compat.less │ │ │ │ │ ├── Heading.css │ │ │ │ │ ├── Heading.less │ │ │ │ │ ├── IconContainer-compat.css │ │ │ │ │ ├── IconContainer-compat.less │ │ │ │ │ ├── IconContainer.css │ │ │ │ │ ├── IconContainer.less │ │ │ │ │ ├── IconMenu-compat.css │ │ │ │ │ ├── IconMenu-compat.less │ │ │ │ │ ├── IconMenu.css │ │ │ │ │ ├── IconMenu.less │ │ │ │ │ ├── ListItem-compat.css │ │ │ │ │ ├── ListItem-compat.less │ │ │ │ │ ├── ListItem.css │ │ │ │ │ ├── ListItem.less │ │ │ │ │ ├── Opener-compat.css │ │ │ │ │ ├── Opener.css │ │ │ │ │ ├── Overlay-compat.css │ │ │ │ │ ├── Overlay-compat.less │ │ │ │ │ ├── Overlay.css │ │ │ │ │ ├── Overlay.less │ │ │ │ │ ├── PageIndicator-compat.css │ │ │ │ │ ├── PageIndicator.css │ │ │ │ │ ├── PageIndicator.less │ │ │ │ │ ├── ProgressBar-compat.css │ │ │ │ │ ├── ProgressBar-compat.less │ │ │ │ │ ├── ProgressBar.css │ │ │ │ │ ├── ProgressBar.less │ │ │ │ │ ├── ProgressIndicator-compat.css │ │ │ │ │ ├── ProgressIndicator-compat.less │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ ├── ProgressIndicator.less │ │ │ │ │ ├── RadioButton-compat.css │ │ │ │ │ ├── RadioButton-compat.less │ │ │ │ │ ├── RadioButton.css │ │ │ │ │ ├── RadioButton.less │ │ │ │ │ ├── RoundRect-compat.css │ │ │ │ │ ├── RoundRect-compat.less │ │ │ │ │ ├── RoundRect.css │ │ │ │ │ ├── RoundRect.less │ │ │ │ │ ├── RoundRectCategory.css │ │ │ │ │ ├── RoundRectCategory.less │ │ │ │ │ ├── RoundRectList-compat.css │ │ │ │ │ ├── RoundRectList-compat.less │ │ │ │ │ ├── RoundRectList.css │ │ │ │ │ ├── RoundRectList.less │ │ │ │ │ ├── ScrollablePane.css │ │ │ │ │ ├── ScrollablePane.less │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ ├── SearchBox.less │ │ │ │ │ ├── SimpleDialog-compat.css │ │ │ │ │ ├── SimpleDialog-compat.less │ │ │ │ │ ├── SimpleDialog.css │ │ │ │ │ ├── SimpleDialog.less │ │ │ │ │ ├── Slider-compat.css │ │ │ │ │ ├── Slider-compat.less │ │ │ │ │ ├── Slider.css │ │ │ │ │ ├── Slider.less │ │ │ │ │ ├── SpinWheel-compat.css │ │ │ │ │ ├── SpinWheel-compat.less │ │ │ │ │ ├── SpinWheel.css │ │ │ │ │ ├── SpinWheel.less │ │ │ │ │ ├── Switch-compat.css │ │ │ │ │ ├── Switch-compat.less │ │ │ │ │ ├── Switch.css │ │ │ │ │ ├── Switch.less │ │ │ │ │ ├── TabBar-compat.css │ │ │ │ │ ├── TabBar-compat.less │ │ │ │ │ ├── TabBar.css │ │ │ │ │ ├── TabBar.less │ │ │ │ │ ├── TextArea-compat.css │ │ │ │ │ ├── TextArea-compat.less │ │ │ │ │ ├── TextArea.css │ │ │ │ │ ├── TextArea.less │ │ │ │ │ ├── TextBox-compat.css │ │ │ │ │ ├── TextBox-compat.less │ │ │ │ │ ├── TextBox.css │ │ │ │ │ ├── TextBox.less │ │ │ │ │ ├── TimePicker.css │ │ │ │ │ ├── ToggleButton-compat.css │ │ │ │ │ ├── ToggleButton-compat.less │ │ │ │ │ ├── ToggleButton.css │ │ │ │ │ ├── ToggleButton.less │ │ │ │ │ ├── ToolBarButton-compat.css │ │ │ │ │ ├── ToolBarButton-compat.less │ │ │ │ │ ├── ToolBarButton.css │ │ │ │ │ ├── ToolBarButton.less │ │ │ │ │ ├── Tooltip-compat.css │ │ │ │ │ ├── Tooltip-compat.less │ │ │ │ │ ├── Tooltip.css │ │ │ │ │ ├── Tooltip.less │ │ │ │ │ ├── ValuePicker-compat.css │ │ │ │ │ ├── ValuePicker-compat.less │ │ │ │ │ ├── ValuePicker.css │ │ │ │ │ ├── ValuePicker.less │ │ │ │ │ ├── View.css │ │ │ │ │ ├── View.less │ │ │ │ │ ├── base-compat.css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── common-compat.css │ │ │ │ │ ├── common-compat.less │ │ │ │ │ ├── common.css │ │ │ │ │ ├── common.less │ │ │ │ │ ├── compat │ │ │ │ │ ├── arrow-button-bg-sel.png │ │ │ │ │ ├── arrow-button-bg.png │ │ │ │ │ ├── arrow-button-head-sel.png │ │ │ │ │ ├── arrow-button-head.png │ │ │ │ │ ├── arrow-button-right-head-sel.png │ │ │ │ │ ├── arrow-button-right-head.png │ │ │ │ │ ├── blue-button-bg.png │ │ │ │ │ ├── blue-button-sel-bg.png │ │ │ │ │ ├── button-arrow-head-bg.gif │ │ │ │ │ ├── button-bg.png │ │ │ │ │ ├── button-chk-bg.png │ │ │ │ │ ├── button-sel-bg.png │ │ │ │ │ ├── button-unsel-bg.png │ │ │ │ │ ├── edge-categ-bg.png │ │ │ │ │ ├── gray-arrow.png │ │ │ │ │ ├── heading-bg.png │ │ │ │ │ ├── icon-content-heading-bg.png │ │ │ │ │ ├── ipad-arrow-button-bg.png │ │ │ │ │ ├── ipad-arrow-button-head-sel.png │ │ │ │ │ ├── ipad-arrow-button-head.png │ │ │ │ │ ├── ipad-arrow-button-right-head-sel.png │ │ │ │ │ ├── ipad-arrow-button-right-head.png │ │ │ │ │ ├── ipad-arrow-button-sel-bg.png │ │ │ │ │ ├── ipad-heading-bg.png │ │ │ │ │ ├── red-button-bg.png │ │ │ │ │ ├── red-button-sel-bg.png │ │ │ │ │ ├── slider-h-bar-bg.png │ │ │ │ │ ├── slider-h-bg.png │ │ │ │ │ ├── slider-handle-bg.png │ │ │ │ │ ├── switch-arc-l.gif │ │ │ │ │ ├── switch-arc-r.gif │ │ │ │ │ ├── switch-arc1-k.gif │ │ │ │ │ ├── switch-arc1-l.gif │ │ │ │ │ ├── switch-arc1-r.gif │ │ │ │ │ ├── switch-arc2-k.gif │ │ │ │ │ ├── switch-arc2-l.gif │ │ │ │ │ ├── switch-arc2-r.gif │ │ │ │ │ ├── switch-default-k.gif │ │ │ │ │ ├── switch-default-l.gif │ │ │ │ │ ├── switch-default-r.gif │ │ │ │ │ ├── switch-round-l.gif │ │ │ │ │ ├── switch-round-r.gif │ │ │ │ │ ├── switch-round1-k.gif │ │ │ │ │ ├── switch-round1-l.gif │ │ │ │ │ ├── switch-round1-r.gif │ │ │ │ │ ├── switch-round2-k.gif │ │ │ │ │ ├── switch-round2-l.gif │ │ │ │ │ ├── switch-round2-r.gif │ │ │ │ │ ├── switch-square-k.gif │ │ │ │ │ ├── switch-square-l.gif │ │ │ │ │ ├── switch-square-r.gif │ │ │ │ │ ├── tab-button-bg.png │ │ │ │ │ ├── tab-seg-button-bg.png │ │ │ │ │ ├── tab-seg-sel-button-bg.png │ │ │ │ │ ├── tab-sel-button-bg.png │ │ │ │ │ ├── tab-slim-bar-bg.png │ │ │ │ │ ├── tab-tall-bar-bg.png │ │ │ │ │ ├── togglebutton-chk-mark-bg.png │ │ │ │ │ ├── tooltip-button-bg.png │ │ │ │ │ ├── tooltip-heading-bg.png │ │ │ │ │ ├── valuepicker-button-bg.png │ │ │ │ │ └── white-arrow.png │ │ │ │ │ ├── dijit │ │ │ │ │ ├── Calendar-compat.css │ │ │ │ │ ├── Calendar-compat.less │ │ │ │ │ ├── Calendar.css │ │ │ │ │ ├── Calendar.less │ │ │ │ │ └── compat │ │ │ │ │ │ ├── calendar-daylabel-bg.png │ │ │ │ │ │ ├── calendar-month-bg.png │ │ │ │ │ │ └── calendar-year-bg.png │ │ │ │ │ ├── images │ │ │ │ │ ├── thumb-overlay-large.png │ │ │ │ │ ├── thumb-overlay-small.png │ │ │ │ │ └── thumb-overlay.png │ │ │ │ │ ├── ipad-compat.css │ │ │ │ │ ├── ipad.css │ │ │ │ │ ├── iphone-app-compat.css │ │ │ │ │ ├── iphone-app.css │ │ │ │ │ ├── iphone-compat.css │ │ │ │ │ ├── iphone.css │ │ │ │ │ └── variables.less │ │ │ ├── transition.js │ │ │ ├── uacss.js │ │ │ └── viewRegistry.js │ │ ├── mvc.js │ │ ├── mvc │ │ │ ├── Bind.js │ │ │ ├── EditModelRefController.js │ │ │ ├── EditStoreRefController.js │ │ │ ├── EditStoreRefListController.js │ │ │ ├── Element.js │ │ │ ├── Generate.js │ │ │ ├── Group.js │ │ │ ├── ListController.js │ │ │ ├── ModelRefController.js │ │ │ ├── Output.js │ │ │ ├── README │ │ │ ├── Repeat.js │ │ │ ├── StatefulArray.js │ │ │ ├── StatefulModel.js │ │ │ ├── StatefulSeries.js │ │ │ ├── StoreRefController.js │ │ │ ├── Templated.js │ │ │ ├── WidgetList.js │ │ │ ├── _Container.js │ │ │ ├── _Controller.js │ │ │ ├── _DataBindingExtension.js │ │ │ ├── _DataBindingMixin.js │ │ │ ├── _InlineTemplateMixin.js │ │ │ ├── _TextBoxExtensions.js │ │ │ ├── _atBindingExtension.js │ │ │ ├── _atBindingMixin.js │ │ │ ├── _base.js │ │ │ ├── _patches.js │ │ │ ├── at.js │ │ │ ├── equals.js │ │ │ ├── getPlainValue.js │ │ │ ├── getStateful.js │ │ │ ├── parserExtension.js │ │ │ ├── resolve.js │ │ │ └── sync.js │ │ ├── package.json │ │ ├── rails.js │ │ ├── rails │ │ │ └── README │ │ ├── resources │ │ │ ├── README.template │ │ │ └── explore.php │ │ ├── rpc │ │ │ ├── Client.js │ │ │ ├── JsonRPC.js │ │ │ ├── JsonRest.js │ │ │ ├── ProxiedPath.js │ │ │ ├── README │ │ │ ├── Rest.js │ │ │ ├── SMDLibrary │ │ │ │ ├── dojo-api.smd │ │ │ │ ├── friendfeed.smd │ │ │ │ ├── geonames.smd │ │ │ │ ├── google.smd │ │ │ │ ├── twitter.smd │ │ │ │ ├── wikipedia.smd │ │ │ │ └── yahoo.smd │ │ │ └── Service.js │ │ ├── secure │ │ │ ├── DOM.js │ │ │ ├── README │ │ │ ├── capability.js │ │ │ ├── fromJson.js │ │ │ └── sandbox.js │ │ ├── sketch.js │ │ ├── sketch │ │ │ ├── Anchor.js │ │ │ ├── Annotation.js │ │ │ ├── DoubleArrowAnnotation.js │ │ │ ├── Figure.js │ │ │ ├── LeadAnnotation.js │ │ │ ├── PreexistingAnnotation.js │ │ │ ├── README │ │ │ ├── SingleArrowAnnotation.js │ │ │ ├── Slider.js │ │ │ ├── Toolbar.js │ │ │ ├── UnderlineAnnotation.js │ │ │ ├── UndoStack.js │ │ │ ├── _Plugin.js │ │ │ └── resources │ │ │ │ ├── images │ │ │ │ └── icons.gif │ │ │ │ └── sketch.css │ │ ├── socket.js │ │ ├── socket │ │ │ ├── README │ │ │ └── Reconnect.js │ │ ├── store │ │ │ └── README │ │ ├── string │ │ │ ├── BidiComplex.js │ │ │ ├── BidiEngine.js │ │ │ ├── Builder.js │ │ │ ├── README │ │ │ ├── sprintf.js │ │ │ └── tokenize.js │ │ ├── testing │ │ │ ├── DocTest.js │ │ │ └── README │ │ ├── timing.js │ │ ├── timing │ │ │ ├── README │ │ │ ├── Sequence.js │ │ │ ├── Streamer.js │ │ │ ├── ThreadPool.js │ │ │ ├── _base.js │ │ │ └── doLater.js │ │ ├── treemap │ │ │ ├── DrillDownUp.js │ │ │ ├── GroupLabel.js │ │ │ ├── Keyboard.js │ │ │ ├── README │ │ │ ├── ScaledLabel.js │ │ │ ├── TreeMap.js │ │ │ ├── _utils.js │ │ │ └── themes │ │ │ │ ├── DrillDownUp.css │ │ │ │ ├── GroupLabel.css │ │ │ │ ├── MobileTreeMap.css │ │ │ │ └── TreeMap.css │ │ ├── uuid.js │ │ ├── uuid │ │ │ ├── README │ │ │ ├── Uuid.js │ │ │ ├── _base.js │ │ │ ├── generateRandomUuid.js │ │ │ └── generateTimeBasedUuid.js │ │ ├── validate.js │ │ ├── validate │ │ │ ├── README │ │ │ ├── _base.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── check.js │ │ │ ├── creditCard.js │ │ │ ├── isbn.js │ │ │ ├── regexp.js │ │ │ ├── us.js │ │ │ └── web.js │ │ ├── widget │ │ │ ├── AnalogGauge.js │ │ │ ├── AutoRotator.js │ │ │ ├── BarGauge.js │ │ │ ├── Calendar.js │ │ │ ├── Calendar │ │ │ │ ├── Calendar.css │ │ │ │ ├── Calendar.html │ │ │ │ ├── CalendarDay.html │ │ │ │ ├── CalendarMonth.html │ │ │ │ ├── CalendarMonthYear.html │ │ │ │ └── CalendarYear.html │ │ │ ├── Calendar2Pane.js │ │ │ ├── Calendar3Pane.js │ │ │ ├── CalendarFisheye.js │ │ │ ├── CalendarFx.js │ │ │ ├── CalendarViews.js │ │ │ ├── ColorPicker.js │ │ │ ├── ColorPicker │ │ │ │ ├── ColorPicker.css │ │ │ │ ├── ColorPicker.html │ │ │ │ └── images │ │ │ │ │ ├── hue.png │ │ │ │ │ ├── hueHandle.png │ │ │ │ │ ├── hueHandleA11y.png │ │ │ │ │ ├── pickerPointer.png │ │ │ │ │ └── underlay.png │ │ │ ├── DailyCalendar.js │ │ │ ├── DataPresentation.js │ │ │ ├── Dialog.js │ │ │ ├── Dialog │ │ │ │ ├── Dialog.css │ │ │ │ ├── Dialog.html │ │ │ │ └── images │ │ │ │ │ ├── dialogCloseButton.gif │ │ │ │ │ └── dialogCloseButton.png │ │ │ ├── DialogSimple.js │ │ │ ├── DocTester.js │ │ │ ├── DocTester │ │ │ │ ├── DocTester.css │ │ │ │ └── DocTester.html │ │ │ ├── DynamicTooltip.js │ │ │ ├── FeedPortlet.js │ │ │ ├── FilePicker.js │ │ │ ├── FilePicker │ │ │ │ ├── FilePicker.css │ │ │ │ ├── _FileInfoPane.html │ │ │ │ └── images │ │ │ │ │ ├── nihiloFileIcons.gif │ │ │ │ │ ├── soriaFileIcons.gif │ │ │ │ │ └── tundraFileIcons.gif │ │ │ ├── FisheyeList.js │ │ │ ├── FisheyeList │ │ │ │ └── FisheyeList.css │ │ │ ├── FisheyeListItem.js │ │ │ ├── FisheyeLite.js │ │ │ ├── Iterator.js │ │ │ ├── Loader.js │ │ │ ├── Loader │ │ │ │ ├── Loader.css │ │ │ │ └── icons │ │ │ │ │ └── loading.gif │ │ │ ├── MonthAndYearlyCalendar.js │ │ │ ├── MonthlyCalendar.js │ │ │ ├── MultiSelectCalendar.js │ │ │ ├── MultiSelectCalendar │ │ │ │ └── MultiSelectCalendar.html │ │ │ ├── Pager.js │ │ │ ├── Pager │ │ │ │ ├── Pager.css │ │ │ │ ├── Pager.html │ │ │ │ └── images │ │ │ │ │ ├── hNext.png │ │ │ │ │ ├── hPrevious.png │ │ │ │ │ ├── pageActive.png │ │ │ │ │ ├── pageInactive.png │ │ │ │ │ ├── vNext.png │ │ │ │ │ └── vPrevious.png │ │ │ ├── PagerItem.js │ │ │ ├── PlaceholderMenuItem.js │ │ │ ├── Portlet.js │ │ │ ├── Portlet │ │ │ │ ├── Portlet.css │ │ │ │ └── images │ │ │ │ │ ├── icons.gif │ │ │ │ │ └── icons.png │ │ │ ├── PortletDialogSettings.js │ │ │ ├── PortletSettings.js │ │ │ ├── README │ │ │ ├── Roller.js │ │ │ ├── RollingList.js │ │ │ ├── RollingList │ │ │ │ ├── RollingList.css │ │ │ │ └── RollingList.html │ │ │ ├── Rotator.js │ │ │ ├── Selection.js │ │ │ ├── SortList.js │ │ │ ├── SortList │ │ │ │ ├── SortList.css │ │ │ │ └── SortList.html │ │ │ ├── Standby.js │ │ │ ├── Standby │ │ │ │ └── images │ │ │ │ │ └── loading.gif │ │ │ ├── TitleGroup.js │ │ │ ├── TitleGroup │ │ │ │ └── TitleGroup.css │ │ │ ├── Toaster.js │ │ │ ├── Toaster │ │ │ │ └── Toaster.css │ │ │ ├── UpgradeBar.js │ │ │ ├── UpgradeBar │ │ │ │ ├── UpgradeBar.css │ │ │ │ └── UpgradeBar.html │ │ │ ├── Wizard.js │ │ │ ├── Wizard │ │ │ │ ├── Wizard.css │ │ │ │ └── Wizard.html │ │ │ ├── WizardPane.js │ │ │ ├── YearlyCalendar.js │ │ │ ├── _CalendarBase.js │ │ │ ├── _CalendarDay.js │ │ │ ├── _CalendarDayView.js │ │ │ ├── _CalendarMonth.js │ │ │ ├── _CalendarMonthView.js │ │ │ ├── _CalendarMonthYear.js │ │ │ ├── _CalendarMonthYearView.js │ │ │ ├── _CalendarView.js │ │ │ ├── _CalendarYear.js │ │ │ ├── _CalendarYearView.js │ │ │ ├── _FisheyeFX.js │ │ │ ├── _Invalidating.js │ │ │ ├── gauge │ │ │ │ ├── AnalogArcIndicator.js │ │ │ │ ├── AnalogArrowIndicator.js │ │ │ │ ├── AnalogNeedleIndicator.js │ │ │ │ ├── BarIndicator.js │ │ │ │ └── _Gauge.js │ │ │ ├── nls │ │ │ │ ├── ColorPicker.js │ │ │ │ ├── FilePicker.js │ │ │ │ ├── Wizard.js │ │ │ │ ├── ar │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── az │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── bg │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── ca │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── cs │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── da │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── de │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── el │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── es │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── fi │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── fr │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── he │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── hr │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── hu │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── it │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── ja │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── kk │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── ko │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── nb │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── nl │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── pl │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── pt │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── ro │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── ru │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── sk │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── sl │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── sv │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── th │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── tr │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ ├── zh-tw │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ │ └── zh │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── FilePicker.js │ │ │ │ │ └── Wizard.js │ │ │ └── rotator │ │ │ │ ├── Controller.js │ │ │ │ ├── Fade.js │ │ │ │ ├── Pan.js │ │ │ │ ├── PanFade.js │ │ │ │ ├── Slide.js │ │ │ │ ├── ThumbnailController.js │ │ │ │ └── Wipe.js │ │ ├── wire.js │ │ ├── wire │ │ │ ├── CompositeWire.js │ │ │ ├── DataWire.js │ │ │ ├── README │ │ │ ├── TableAdapter.js │ │ │ ├── TextAdapter.js │ │ │ ├── TreeAdapter.js │ │ │ ├── Wire.js │ │ │ ├── XmlWire.js │ │ │ ├── _base.js │ │ │ └── ml │ │ │ │ ├── Action.js │ │ │ │ ├── Data.js │ │ │ │ ├── DataStore.js │ │ │ │ ├── Invocation.js │ │ │ │ ├── JsonHandler.js │ │ │ │ ├── RestHandler.js │ │ │ │ ├── Service.js │ │ │ │ ├── Transfer.js │ │ │ │ ├── XmlHandler.js │ │ │ │ └── util.js │ │ ├── xml │ │ │ ├── DomParser.js │ │ │ ├── README │ │ │ ├── Script.js │ │ │ ├── parser.js │ │ │ └── widgetParser.js │ │ └── xmpp │ │ │ ├── ChatService.js │ │ │ ├── PresenceService.js │ │ │ ├── README │ │ │ ├── RosterService.js │ │ │ ├── TransportSession.js │ │ │ ├── UserService.js │ │ │ ├── bosh.js │ │ │ ├── sasl.js │ │ │ ├── util.js │ │ │ ├── widget │ │ │ ├── ChatSession.js │ │ │ └── templates │ │ │ │ └── ChatSession.html │ │ │ └── xmppSession.js │ │ ├── index.html │ │ └── version.txt ├── com.ibm.sbt.jquery182 │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── ibm-web-ext.xml │ │ └── web.xml │ │ ├── index.html │ │ └── js │ │ └── jquery-1.8.2.min.js └── pom.xml ├── domino ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── com.ibm.sbt.domino.feature │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── com.ibm.sbt.domino.updatesite │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── assembly.xml │ ├── pom.xml │ └── site.xml ├── com.ibm.sbt.opensocial.domino.explorer.feature │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── com.ibm.sbt.opensocial.domino.explorer │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WebContent │ │ ├── .gitignore │ │ └── WEB-INF │ │ │ └── web.xml │ ├── build.properties │ ├── plugin.xml │ └── pom.xml ├── com.ibm.sbt.opensocial.domino.feature │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── com.ibm.sbt.opensocial.domino │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WebContent │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── WEB-INF │ │ │ └── web.xml │ ├── build.properties │ ├── config │ │ ├── domino-container.js │ │ └── domino-shindig.properties │ ├── plugin.xml │ ├── pom.xml │ ├── schema │ │ └── com.ibm.sbt.opensocial.domino.container.exsd │ └── src │ │ └── com │ │ └── ibm │ │ └── sbt │ │ └── opensocial │ │ └── domino │ │ ├── config │ │ ├── DefaultContainerConfig.java │ │ ├── ExtensionPointContainerConfig.java │ │ └── OpenSocialContainerConfig.java │ │ ├── container │ │ ├── ContainerExtPoint.java │ │ ├── ContainerExtPointException.java │ │ ├── ContainerExtPointManager.java │ │ └── ContainerExtPointManagerProvider.java │ │ ├── internal │ │ ├── DominoHttpFetcher.java │ │ └── OpenSocialPlugin.java │ │ ├── modules │ │ ├── DominoModule.java │ │ ├── DominoOAuth2HandlerModule.java │ │ ├── DominoOAuthModule.java │ │ └── DominoPropertiesModule.java │ │ ├── oauth │ │ ├── BasicDominoOAuth2Accessor.java │ │ ├── DominoOAuth2Accessor.java │ │ ├── DominoOAuth2Cache.java │ │ ├── DominoOAuth2CallbackState.java │ │ ├── DominoOAuth2Client.java │ │ ├── DominoOAuth2Persister.java │ │ ├── DominoOAuth2Request.java │ │ ├── DominoOAuth2Store.java │ │ ├── DominoOAuth2TokenStore.java │ │ ├── DominoOAuthClient.java │ │ ├── DominoOAuthStore.java │ │ ├── DominoOAuthStoreProvider.java │ │ ├── DominoTokenAuthorizationResponseHandler.java │ │ ├── InternalDominoOAuthStore.java │ │ └── clients │ │ │ ├── ConnectionsOAuth2Client.java │ │ │ ├── DropBoxOAuthClient.java │ │ │ ├── GoogleOAuth2Client.java │ │ │ └── SmartCloudOAuthClient.java │ │ ├── security │ │ └── DominoSecurityTokenCodec.java │ │ └── servlets │ │ ├── DominoOAuth2CallbackServlet.java │ │ └── SecurityTokenServlet.java ├── com.ibm.sbt.playground │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ibm │ │ └── sbt │ │ ├── playground │ │ ├── assets │ │ │ ├── AbstractNodeFactory.java │ │ │ ├── Asset.java │ │ │ ├── AssetBrowser.java │ │ │ ├── AssetNode.java │ │ │ ├── CategoryNode.java │ │ │ ├── Node.java │ │ │ ├── NodeFactory.java │ │ │ ├── RootNode.java │ │ │ ├── apis │ │ │ │ ├── APIAssetNode.java │ │ │ │ ├── APIDescription.java │ │ │ │ └── APINodeFactory.java │ │ │ ├── javasnippets │ │ │ │ ├── JavaSnippet.java │ │ │ │ ├── JavaSnippetAssetNode.java │ │ │ │ └── JavaSnippetNodeFactory.java │ │ │ ├── jssnippets │ │ │ │ ├── JSSnippet.java │ │ │ │ ├── JSSnippetAssetNode.java │ │ │ │ └── JSSnippetNodeFactory.java │ │ │ ├── opensocial │ │ │ │ ├── GadgetSnippet.java │ │ │ │ ├── GadgetSnippetAssetNode.java │ │ │ │ └── GadgetSnippetNodeFactory.java │ │ │ └── xpages │ │ │ │ ├── XPagesSnippet.java │ │ │ │ ├── XPagesSnippetAssetNode.java │ │ │ │ └── XPagesSnippetNodeFactory.java │ │ ├── dojo │ │ │ ├── JsonListRenderer.java │ │ │ ├── JsonTreeRenderer.java │ │ │ └── JsonWriter.java │ │ ├── git │ │ │ └── GitImport.java │ │ └── vfs │ │ │ ├── FileVFS.java │ │ │ ├── GitVFS.java │ │ │ ├── RemoteVFS.java │ │ │ ├── ServletVFS.java │ │ │ ├── VFS.java │ │ │ └── VFSFile.java │ │ └── sample │ │ └── web │ │ └── util │ │ ├── JSSnippetNode.java │ │ ├── JavaSnippetNode.java │ │ ├── SnippetFactory.java │ │ ├── SnippetServlet.java │ │ └── Util.java ├── com.ibm.xsp.opensocial │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── LICENSE │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── com │ │ └── ibm │ │ └── xsp │ │ └── opensocial │ │ ├── DefaultContainerExtPoint.java │ │ ├── OpenSocialActivator.java │ │ └── OpenSocialLibrary.java ├── com.ibm.xsp.sbtsdk │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── pom.xml │ ├── resources │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-scoped-responsive.min.css │ │ │ │ ├── bootstrap-scoped.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ └── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ └── web │ │ │ └── extlib │ │ │ ├── dijit │ │ │ ├── CommunitiesVCard.js │ │ │ ├── CommunitiesVCard.js.keep │ │ │ ├── ProfilesVCard.js │ │ │ ├── ProfilesVCard.js.keep │ │ │ ├── ProfilesVCardInline.js │ │ │ ├── ProfilesVCardInline.js.keep │ │ │ └── templates │ │ │ │ ├── CommunitiesVCard.html │ │ │ │ ├── ProfilesVCard.html │ │ │ │ └── ProfilesVCardInline.html │ │ │ ├── dojo │ │ │ └── SametimeLogin.js │ │ │ └── sbt │ │ │ ├── facebook │ │ │ └── channel.html │ │ │ └── sametime │ │ │ └── tunnel.html │ └── src │ │ └── main │ │ ├── java │ │ ├── com │ │ │ └── ibm │ │ │ │ └── xsp │ │ │ │ ├── extlib │ │ │ │ ├── component │ │ │ │ │ ├── facebook │ │ │ │ │ │ ├── UIComments.java │ │ │ │ │ │ ├── UIFacebookClient.java │ │ │ │ │ │ ├── UILike.java │ │ │ │ │ │ └── UILogin.java │ │ │ │ │ ├── sametime │ │ │ │ │ │ ├── UISametimeClient.java │ │ │ │ │ │ └── UISametimeWidget.java │ │ │ │ │ ├── sbt │ │ │ │ │ │ ├── UISbtClient.java │ │ │ │ │ │ └── UISbtWidget.java │ │ │ │ │ └── util │ │ │ │ │ │ └── UIHttpHeader.java │ │ │ │ ├── config │ │ │ │ │ ├── SBTConfig.java │ │ │ │ │ ├── SBTConfig.java.keep │ │ │ │ │ ├── extlib-sbt-faces-config.xml │ │ │ │ │ ├── extlib-sbt-sametime-faces-config.xml │ │ │ │ │ ├── extlib-sbt-sametime.xsp-config │ │ │ │ │ ├── extlib-sbt-sbt-faces-config.xml │ │ │ │ │ ├── extlib-sbt-sbt.xsp-config │ │ │ │ │ ├── extlib-sbt-util.xsp-config │ │ │ │ │ └── extlib-sbt.xsp-config │ │ │ │ ├── minifier │ │ │ │ │ └── SBTLoader.java │ │ │ │ ├── renderkit │ │ │ │ │ └── html_extended │ │ │ │ │ │ ├── facebook │ │ │ │ │ │ ├── CommentsRenderer.java │ │ │ │ │ │ ├── FacebookClientRenderer.java │ │ │ │ │ │ ├── FacebookPluginBaseRenderer.java │ │ │ │ │ │ ├── LikeRenderer.java │ │ │ │ │ │ └── LoginRenderer.java │ │ │ │ │ │ ├── sametime │ │ │ │ │ │ ├── SametimeClientRenderer.java │ │ │ │ │ │ └── SametimeWidgetRenderer.java │ │ │ │ │ │ └── sbt │ │ │ │ │ │ ├── SbtClientRenderer.java │ │ │ │ │ │ └── SbtWidgetRenderer.java │ │ │ │ └── sbt │ │ │ │ │ ├── activitystreams │ │ │ │ │ └── ActivityStreamDataSource.java │ │ │ │ │ ├── connections │ │ │ │ │ ├── ConnectionDataSource.java │ │ │ │ │ ├── contenttype │ │ │ │ │ │ └── VCard.java │ │ │ │ │ ├── proxy │ │ │ │ │ │ └── ConnectionsProxyHandler.java │ │ │ │ │ └── social │ │ │ │ │ │ └── ProfilesBeanDataProvider.java │ │ │ │ │ ├── files │ │ │ │ │ ├── FileEntry.java │ │ │ │ │ ├── FileServiceData.java │ │ │ │ │ ├── FilesBreadCrumbNode.java │ │ │ │ │ ├── IFileType.java │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── ExtLibxServletFactory.java │ │ │ │ │ │ ├── FileHandler.java │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── ConnectionsFilesProxyEndPointService.java │ │ │ │ │ │ │ ├── DropboxProxyEndpointService.java │ │ │ │ │ │ │ └── XSPProxyEndpointProvider.java │ │ │ │ │ └── type │ │ │ │ │ │ ├── AbstractType.java │ │ │ │ │ │ ├── ConnectionsFiles.java │ │ │ │ │ │ ├── DropboxFiles.java │ │ │ │ │ │ ├── MimeIconRegistry.java │ │ │ │ │ │ └── SmartCloudFiles.java │ │ │ │ │ ├── generic │ │ │ │ │ ├── GenericRestDataSource.java │ │ │ │ │ ├── GenericRestJsonDataSource.java │ │ │ │ │ ├── GenericRestXmlDataSource.java │ │ │ │ │ └── GenericRestXmlNamespaceUri.java │ │ │ │ │ ├── javascript │ │ │ │ │ ├── SBTFunctions.java │ │ │ │ │ └── SBTFunctionsProviders.java │ │ │ │ │ ├── model │ │ │ │ │ ├── RestDataBlockAccessor.java │ │ │ │ │ ├── RestDataSource.java │ │ │ │ │ ├── RestObjectDataSource.java │ │ │ │ │ ├── UrlParameter.java │ │ │ │ │ └── accessor │ │ │ │ │ │ ├── AtomXmlBlockAccessor.java │ │ │ │ │ │ ├── JsonArrayBlockAccessor.java │ │ │ │ │ │ └── XmlArrayBlockAccessor.java │ │ │ │ │ ├── resources │ │ │ │ │ └── SBTResources.java │ │ │ │ │ ├── sametime │ │ │ │ │ └── LiveName.java │ │ │ │ │ ├── services │ │ │ │ │ └── client │ │ │ │ │ │ ├── DropboxService.java │ │ │ │ │ │ ├── SmartCLoudContactsService.java │ │ │ │ │ │ ├── SmartCloudCommunitiesService.java │ │ │ │ │ │ ├── SmartCloudProfileService.java │ │ │ │ │ │ ├── SmartCloudService.java │ │ │ │ │ │ └── TwitterService.java │ │ │ │ │ ├── twitter │ │ │ │ │ ├── TwitterContentType.java │ │ │ │ │ ├── TwitterDataSource.java │ │ │ │ │ ├── TwitterEntry.java │ │ │ │ │ ├── TwitterRegEx.java │ │ │ │ │ └── TwitterSpaces.java │ │ │ │ │ └── user │ │ │ │ │ └── SmartCloudPeopleDataProvider.java │ │ │ │ └── sbtsdk │ │ │ │ ├── Activator.java │ │ │ │ ├── config │ │ │ │ ├── sbtsdk-faces-config.xml │ │ │ │ └── sbtsdk.xsp-config │ │ │ │ ├── library │ │ │ │ └── SbtSdkLibrary.java │ │ │ │ ├── resources │ │ │ │ ├── SbtLoader.java │ │ │ │ ├── SbtModulePath.java │ │ │ │ └── SbtResourceProvider.java │ │ │ │ ├── runtime │ │ │ │ ├── XspApplication.java │ │ │ │ ├── XspContext.java │ │ │ │ └── XspRuntimeFactory.java │ │ │ │ ├── services │ │ │ │ └── mail │ │ │ │ │ ├── DominoMimeEmail.java │ │ │ │ │ └── DominoMimeEmailFactory.java │ │ │ │ ├── servlets │ │ │ │ ├── DominoDojoLibrary.java │ │ │ │ ├── DominoJQueryLibrary.java │ │ │ │ ├── DominoServiceServlet.java │ │ │ │ ├── JavaScriptLibraries.java │ │ │ │ ├── ProxyServletFactory.java │ │ │ │ ├── ToolkitServlet.java │ │ │ │ └── ToolkitServletFactory.java │ │ │ │ └── util │ │ │ │ └── HttpUtil.java │ │ └── sbt │ │ │ ├── ActivityStreamService.java │ │ │ ├── CommunityService.java │ │ │ ├── ConnectionsFileService.java │ │ │ ├── ConnectionsProfileService.java │ │ │ ├── ConnectionsService.java │ │ │ ├── DropboxService.java │ │ │ ├── ForumService.java │ │ │ ├── GenericService.java │ │ │ ├── JsonNavigator.java │ │ │ ├── SmartCloudProfileService.java │ │ │ ├── SmartCloudService.java │ │ │ ├── TwitterService.java │ │ │ └── XmlNavigator.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── com.ibm.xsp.minifier.loader └── pom.xml ├── libraries ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── com.ibm.sbt.libs.derby │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── lib │ │ ├── derby.jar │ │ ├── derbyclient.jar │ │ └── derbytools.jar │ └── pom.xml ├── com.ibm.sbt.libs.domino │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── lib │ │ ├── apache-mime4j-0.6.jar │ │ ├── commons-codec-1.6.jar │ │ ├── commons-fileupload-1.3.2.jar │ │ ├── commons-io-2.4.jar │ │ ├── httpclient-4.3.1.jar │ │ ├── httpcore-4.3.jar │ │ └── httpmime-4.3.1.jar │ └── pom.xml ├── com.ibm.sbt.libs.j2ee │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── lib │ │ ├── apache-mime4j-0.6.jar │ │ ├── commons-codec-1.6.jar │ │ ├── commons-fileupload-1.3.2.jar │ │ ├── commons-io-2.4.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── httpclient-4.3.1.jar │ │ ├── httpcore-4.3.jar │ │ └── httpmime-4.3.1.jar │ └── pom.xml ├── com.ibm.sbt.libs.java │ ├── .classpath │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── lib │ │ ├── apache-mime4j-0.6.jar │ │ ├── com.ibm.sbt.javamail-1.4.5.jar │ │ ├── commons-codec-1.6.jar │ │ ├── commons-fileupload-1.3.2.jar │ │ ├── commons-io-2.4.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── httpclient-4.3.1.jar │ │ ├── httpcore-4.3.jar │ │ └── httpmime-4.3.1.jar │ └── pom.xml ├── com.ibm.sbt.libs │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ └── pom.xml └── pom.xml ├── license ├── FirebugLiteLicense ├── ICAL4JLicense ├── LICENSE ├── LICENSE_Has ├── LICENSE_JQuery ├── LICENSE_Jenkins Plugins ├── LICENSE_Require.txt ├── LICENSE_SHA-1 ├── License_Jasmine ├── NOTICE ├── NOTICE_Bazaar ├── NOTICE_ExtLib ├── NOTICE_jaggr ├── SLF4JLicense ├── XercesJLicenseNotice.zip └── envjs-rhino.txt ├── notes.target ├── osgi ├── com.ibm.sbt.web.resources.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── com.ibm.sbt.web.resources.updatesite │ ├── .project │ ├── assembly.xml │ ├── pom.xml │ └── site.xml ├── com.ibm.sbt.web.resources │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── pom.xml │ ├── resources │ │ ├── index.html │ │ ├── js │ │ │ ├── libs │ │ │ │ ├── has.js │ │ │ │ ├── loginForm.js │ │ │ │ ├── require.js │ │ │ │ └── requirejsPlugins │ │ │ │ │ ├── i18n.js │ │ │ │ │ └── text.js │ │ │ └── sdk │ │ │ │ ├── _bridges │ │ │ │ ├── dojo-amd │ │ │ │ │ ├── IFrameTransport.js │ │ │ │ │ ├── RequestTransport.js │ │ │ │ │ ├── Transport.js │ │ │ │ │ ├── declare.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── i18n.js │ │ │ │ │ ├── json.js │ │ │ │ │ ├── lang.js │ │ │ │ │ ├── ready.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── ui │ │ │ │ │ │ ├── BasicAuth_Dialog.js │ │ │ │ │ │ ├── OAuth10_Dialog.js │ │ │ │ │ │ ├── OAuthDialog.js │ │ │ │ │ │ └── SSO_Dialog.js │ │ │ │ ├── dojo │ │ │ │ │ ├── IFrameTransport.js │ │ │ │ │ ├── Transport.js │ │ │ │ │ ├── amdcompat.js │ │ │ │ │ ├── declare.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── i18n.js │ │ │ │ │ ├── json.js │ │ │ │ │ ├── lang.js │ │ │ │ │ ├── ready.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── ui │ │ │ │ │ │ ├── BasicAuth_Dialog.js │ │ │ │ │ │ ├── OAuth10_Dialog.js │ │ │ │ │ │ ├── OAuthDialog.js │ │ │ │ │ │ └── SSO_Dialog.js │ │ │ │ └── jquery │ │ │ │ │ ├── IFrameTransport.js │ │ │ │ │ ├── Transport.js │ │ │ │ │ ├── declare.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── i18n.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── json.js │ │ │ │ │ ├── lang.js │ │ │ │ │ ├── ready.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── ui │ │ │ │ │ ├── BasicAuth_Dialog.js │ │ │ │ │ ├── OAuth10_Dialog.js │ │ │ │ │ ├── OAuthDialog.js │ │ │ │ │ └── SSO_Dialog.js │ │ │ │ ├── _layers │ │ │ │ ├── sbt-core-dojo-amd.js │ │ │ │ ├── sbt-core-dojo-amd.js.uncompressed.js │ │ │ │ ├── sbt-extra-controls-dojo-amd.js │ │ │ │ └── sbt-extra-controls-dojo-amd.js.uncompressed.js │ │ │ │ ├── dojo │ │ │ │ ├── _TemplatedDialog.js │ │ │ │ ├── _TemplatedWidget.js │ │ │ │ ├── _TypeAhead.js │ │ │ │ └── grid │ │ │ │ │ └── _Grid.js │ │ │ │ ├── dojo2 │ │ │ │ ├── _TemplatedDialog.js │ │ │ │ ├── _TemplatedWidget.js │ │ │ │ ├── _TypeAhead.js │ │ │ │ └── grid │ │ │ │ │ └── _Grid.js │ │ │ │ ├── sbt-dojo-amd.profile.js │ │ │ │ ├── sbt-dojo-nonamd.profile.js │ │ │ │ └── sbt │ │ │ │ ├── Cache.js │ │ │ │ ├── DebugTransport.js │ │ │ │ ├── Endpoint.js │ │ │ │ ├── ErrorTransport.js │ │ │ │ ├── Gadget.js │ │ │ │ ├── GadgetTransport.js │ │ │ │ ├── IWidget.js │ │ │ │ ├── Jsonpath.js │ │ │ │ ├── MockTransport.js │ │ │ │ ├── Portlet.js │ │ │ │ ├── Promise.js │ │ │ │ ├── Proxy.js │ │ │ │ ├── WPSProxy.js │ │ │ │ ├── _bridge │ │ │ │ ├── IFrameTransport.js │ │ │ │ ├── Transport.js │ │ │ │ ├── amdcompat.js │ │ │ │ ├── declare.js │ │ │ │ ├── dom.js │ │ │ │ ├── i18n.js │ │ │ │ ├── json.js │ │ │ │ ├── lang.js │ │ │ │ ├── ready.js │ │ │ │ ├── text.js │ │ │ │ └── ui │ │ │ │ │ ├── BasicAuth_Dialog.js │ │ │ │ │ ├── OAuth10_Dialog.js │ │ │ │ │ ├── OAuthDialog.js │ │ │ │ │ └── SSO_Dialog.js │ │ │ │ ├── authenticator │ │ │ │ ├── Basic.js │ │ │ │ ├── GadgetOAuth.js │ │ │ │ ├── OAuth.js │ │ │ │ ├── SSO.js │ │ │ │ ├── nls │ │ │ │ │ └── SSO.js │ │ │ │ └── templates │ │ │ │ │ ├── ConnectionsLogin.html │ │ │ │ │ ├── ConnectionsLoginDialog.html │ │ │ │ │ ├── Message.html │ │ │ │ │ ├── MessageDialogSSO.html │ │ │ │ │ ├── MessageSSO.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── login.js │ │ │ │ │ ├── loginDialog.html │ │ │ │ │ └── messageSSO.js │ │ │ │ ├── base │ │ │ │ ├── AtomEntity.js │ │ │ │ ├── BaseConstants.js │ │ │ │ ├── BaseEntity.js │ │ │ │ ├── BaseService.js │ │ │ │ ├── DataHandler.js │ │ │ │ ├── JsonDataHandler.js │ │ │ │ ├── VCardDataHandler.js │ │ │ │ ├── XmlDataHandler.js │ │ │ │ └── core.js │ │ │ │ ├── compat.js │ │ │ │ ├── connections │ │ │ │ ├── ActivityConstants.js │ │ │ │ ├── ActivityService.js │ │ │ │ ├── ActivityStreamConstants.js │ │ │ │ ├── ActivityStreamService.js │ │ │ │ ├── BlogConstants.js │ │ │ │ ├── BlogPost.js │ │ │ │ ├── BlogService.js │ │ │ │ ├── BookmarkConstants.js │ │ │ │ ├── BookmarkService.js │ │ │ │ ├── CommunityConstants.js │ │ │ │ ├── CommunityService.js │ │ │ │ ├── ConnectionsConstants.js │ │ │ │ ├── ConnectionsService.js │ │ │ │ ├── FileConstants.js │ │ │ │ ├── FileService.js │ │ │ │ ├── FollowConstants.js │ │ │ │ ├── FollowService.js │ │ │ │ ├── ForumConstants.js │ │ │ │ ├── ForumService.js │ │ │ │ ├── IdeationBlogService.js │ │ │ │ ├── ProfileAdminService.js │ │ │ │ ├── ProfileConstants.js │ │ │ │ ├── ProfileService.js │ │ │ │ ├── SearchConstants.js │ │ │ │ ├── SearchService.js │ │ │ │ ├── Tag.js │ │ │ │ ├── WikiConstants.js │ │ │ │ ├── WikiService.js │ │ │ │ ├── controls │ │ │ │ │ ├── ConnectionsGridRenderer.js │ │ │ │ │ ├── ViewAllAction.js │ │ │ │ │ ├── WidgetWrapper.js │ │ │ │ │ ├── _ConnectionsWidget.js │ │ │ │ │ ├── activities │ │ │ │ │ │ ├── ActivityAction.js │ │ │ │ │ │ ├── ActivityGrid.js │ │ │ │ │ │ ├── ActivityGridRenderer.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ └── ActivityGridRenderer.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── ActivityRow.html │ │ │ │ │ ├── astream │ │ │ │ │ │ ├── ActivityStreamWrapper.js │ │ │ │ │ │ ├── _ActivityStream.js │ │ │ │ │ │ ├── _SbtAsConfigUtil.js │ │ │ │ │ │ ├── _XhrHandler.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ └── ActivityStreamWrapper.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── ActivityStreamContent.html │ │ │ │ │ ├── bookmarks │ │ │ │ │ │ ├── BookmarkGrid.js │ │ │ │ │ │ ├── BookmarkGridRenderer.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ └── BookmarkGridRenderer.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── BookmarkListItem.html │ │ │ │ │ │ │ ├── BookmarkRow.html │ │ │ │ │ │ │ └── TagAnchor.html │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── CommunityRendererMixin.js │ │ │ │ │ │ ├── FileRendererMixin.js │ │ │ │ │ │ ├── ProfileRendererMixin.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── CommunityRow.html │ │ │ │ │ │ │ ├── FileRow.html │ │ │ │ │ │ │ ├── ProfileRow.html │ │ │ │ │ │ │ └── TagAnchor.html │ │ │ │ │ ├── communities │ │ │ │ │ │ ├── CommunityAction.js │ │ │ │ │ │ ├── CommunityGrid.js │ │ │ │ │ │ ├── CommunityGridRenderer.js │ │ │ │ │ │ ├── CommunityMembersAction.js │ │ │ │ │ │ ├── CommunityMembersGrid.js │ │ │ │ │ │ ├── CommunityMembersGridRenderer.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ ├── CommunityGridRenderer.js │ │ │ │ │ │ │ └── CommunityMembersGridRenderer.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── CommunityMemberRow.html │ │ │ │ │ │ │ ├── CommunityRow.html │ │ │ │ │ │ │ └── TagAnchor.html │ │ │ │ │ ├── files │ │ │ │ │ │ ├── AddTagsAction.js │ │ │ │ │ │ ├── AddTagsWidget.js │ │ │ │ │ │ ├── DownloadFileAction.js │ │ │ │ │ │ ├── FileAction.js │ │ │ │ │ │ ├── FileGrid.js │ │ │ │ │ │ ├── FileGridRenderer.js │ │ │ │ │ │ ├── FilesView.js │ │ │ │ │ │ ├── MoveToTrashAction.js │ │ │ │ │ │ ├── MoveToTrashWidget.js │ │ │ │ │ │ ├── NewFolderAction.js │ │ │ │ │ │ ├── NewFolderWidget.js │ │ │ │ │ │ ├── ShareFileAction.js │ │ │ │ │ │ ├── ShareFileWidget.js │ │ │ │ │ │ ├── UploadFileAction.js │ │ │ │ │ │ ├── UploadFileWidget.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ ├── FileGridRenderer.js │ │ │ │ │ │ │ └── files.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── AddTags.html │ │ │ │ │ │ │ ├── CommentRow.html │ │ │ │ │ │ │ ├── FileRow.html │ │ │ │ │ │ │ ├── FolderRow.html │ │ │ │ │ │ │ ├── MoveToTrash.html │ │ │ │ │ │ │ ├── NewFolder.html │ │ │ │ │ │ │ ├── RecycledFileRow.html │ │ │ │ │ │ │ ├── ShareFile.html │ │ │ │ │ │ │ └── UploadFile.html │ │ │ │ │ ├── forums │ │ │ │ │ │ ├── BackAction.js │ │ │ │ │ │ ├── DeleteTopicAction.js │ │ │ │ │ │ ├── DeleteTopicWidget.js │ │ │ │ │ │ ├── ForumAction.js │ │ │ │ │ │ ├── ForumGrid.js │ │ │ │ │ │ ├── ForumGridRenderer.js │ │ │ │ │ │ ├── ForumView.js │ │ │ │ │ │ ├── StartTopicAction.js │ │ │ │ │ │ ├── StartTopicWidget.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ ├── ForumGridRenderer.js │ │ │ │ │ │ │ └── ForumView.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── DeleteTopic.html │ │ │ │ │ │ │ ├── ForumRow.html │ │ │ │ │ │ │ ├── ForumTopicRow.html │ │ │ │ │ │ │ ├── MyTopicsBreadCrumb.html │ │ │ │ │ │ │ ├── ReplyBreadCrumb.html │ │ │ │ │ │ │ ├── ReplyHeader.html │ │ │ │ │ │ │ ├── ReplyRow.html │ │ │ │ │ │ │ ├── StartATopic.html │ │ │ │ │ │ │ ├── TableHeader.html │ │ │ │ │ │ │ ├── TopicBreadCrumb.html │ │ │ │ │ │ │ ├── TopicHeader.html │ │ │ │ │ │ │ └── TopicRow.html │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── ConnectionsGridRenderer.js │ │ │ │ │ │ └── WidgetWrapper.js │ │ │ │ │ ├── profiles │ │ │ │ │ │ ├── ColleagueGrid.js │ │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ │ ├── EditProfilePhoto.html │ │ │ │ │ │ ├── ProfileAction.js │ │ │ │ │ │ ├── ProfileGrid.js │ │ │ │ │ │ ├── ProfileGridRenderer.js │ │ │ │ │ │ ├── ProfilePanel.js │ │ │ │ │ │ ├── ProfileTagAction.js │ │ │ │ │ │ ├── ProfileTagsGrid.js │ │ │ │ │ │ ├── ProfileTagsGridRenderer.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ │ │ ├── ProfileGridRenderer.js │ │ │ │ │ │ │ └── ProfileTagsGridRenderer.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── ColleagueItem.html │ │ │ │ │ │ │ ├── ColleagueItemFull.html │ │ │ │ │ │ │ ├── ColleagueRow.html │ │ │ │ │ │ │ ├── CommunityMemberRow.html │ │ │ │ │ │ │ ├── ProfilePanel.html │ │ │ │ │ │ │ ├── ProfileRow.html │ │ │ │ │ │ │ ├── SharedConnectionsRow.html │ │ │ │ │ │ │ ├── StatusUpdateRow.html │ │ │ │ │ │ │ ├── TagListHeader.html │ │ │ │ │ │ │ ├── TagListRow.html │ │ │ │ │ │ │ └── ViewAll.html │ │ │ │ │ ├── search │ │ │ │ │ │ ├── SearchBox.js │ │ │ │ │ │ ├── SearchBoxRenderer.js │ │ │ │ │ │ ├── SearchGrid.js │ │ │ │ │ │ ├── SearchGridRenderer.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ ├── SearchBoxRenderer.js │ │ │ │ │ │ │ └── SearchGridRenderer.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── BookmarkBody.html │ │ │ │ │ │ │ ├── CalendarBody.html │ │ │ │ │ │ │ ├── CommunityBody.html │ │ │ │ │ │ │ ├── DefaultBody.html │ │ │ │ │ │ │ ├── DefaultHeader.html │ │ │ │ │ │ │ ├── DefaultSummary.html │ │ │ │ │ │ │ ├── MemberListItemTemplate.html │ │ │ │ │ │ │ ├── MemberListTemplate.html │ │ │ │ │ │ │ ├── NoResults.html │ │ │ │ │ │ │ ├── PersonCard.html │ │ │ │ │ │ │ ├── PopUpTemplate.html │ │ │ │ │ │ │ ├── ProfileBody.html │ │ │ │ │ │ │ ├── ProfileHeader.html │ │ │ │ │ │ │ ├── SearchBoxTemplate.html │ │ │ │ │ │ │ ├── SearchSuggestTemplate.html │ │ │ │ │ │ │ ├── SingleApplicationSearch.html │ │ │ │ │ │ │ ├── SingleSearchPopUp.html │ │ │ │ │ │ │ ├── StatusUpdateExtraHeader.html │ │ │ │ │ │ │ ├── StatusUpdateHeader.html │ │ │ │ │ │ │ ├── SuggestPopUpTemplate.html │ │ │ │ │ │ │ ├── a.html │ │ │ │ │ │ │ ├── div.html │ │ │ │ │ │ │ ├── em.html │ │ │ │ │ │ │ ├── img.html │ │ │ │ │ │ │ ├── li.html │ │ │ │ │ │ │ ├── span.html │ │ │ │ │ │ │ ├── td.html │ │ │ │ │ │ │ ├── tr.html │ │ │ │ │ │ │ └── ul.html │ │ │ │ │ ├── sharebox │ │ │ │ │ │ ├── InputFormWrapper.js │ │ │ │ │ │ ├── _InputForm.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── InputFormContent.html │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── FileGridWrapperContent.html │ │ │ │ │ │ ├── LoadingPage.html │ │ │ │ │ │ ├── ProfileCardWrapperContent.html │ │ │ │ │ │ └── WidgetFrame.html │ │ │ │ │ ├── vcard │ │ │ │ │ │ ├── CommunityVCard.js │ │ │ │ │ │ ├── ProfileVCard.js │ │ │ │ │ │ ├── ProfileVCardInline.js │ │ │ │ │ │ ├── SemanticTagService.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── CommunityVCard.html │ │ │ │ │ │ │ ├── ProfileVCard.html │ │ │ │ │ │ │ └── ProfileVCardInline.html │ │ │ │ │ └── wrappers │ │ │ │ │ │ ├── FileGridWrapper.js │ │ │ │ │ │ └── ProfileCardWrapper.js │ │ │ │ └── nls │ │ │ │ │ ├── CommunityService.js │ │ │ │ │ ├── ConnectionsService.js │ │ │ │ │ └── ProfileService.js │ │ │ │ ├── control-main.js │ │ │ │ ├── controls │ │ │ │ ├── StoreMixin.js │ │ │ │ ├── TypeAhead.js │ │ │ │ ├── dialog │ │ │ │ │ ├── Dialog.js │ │ │ │ │ ├── nls │ │ │ │ │ │ └── dialog.js │ │ │ │ │ └── templates │ │ │ │ │ │ └── Dialog.html │ │ │ │ ├── grid │ │ │ │ │ ├── Grid.js │ │ │ │ │ ├── GridAction.js │ │ │ │ │ ├── GridRenderer.js │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── GridRendererMixin.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── GridPager.html │ │ │ │ │ │ │ ├── GridSorter.html │ │ │ │ │ │ │ └── SortAnchor.html │ │ │ │ │ └── templates │ │ │ │ │ │ ├── Grid.html │ │ │ │ │ │ ├── GridFooter.html │ │ │ │ │ │ ├── GridPager.html │ │ │ │ │ │ ├── GridSorter.html │ │ │ │ │ │ └── SortAnchor.html │ │ │ │ ├── panel │ │ │ │ │ └── _ProfilePanel.js │ │ │ │ └── view │ │ │ │ │ ├── Action.js │ │ │ │ │ ├── ActionBar.js │ │ │ │ │ ├── BaseDialogContent.js │ │ │ │ │ ├── BaseView.js │ │ │ │ │ ├── BaseWidget.js │ │ │ │ │ ├── NavTree.js │ │ │ │ │ ├── NavTreeNode.js │ │ │ │ │ ├── ResidencyView.js │ │ │ │ │ ├── SearchBar.js │ │ │ │ │ ├── Section.js │ │ │ │ │ ├── TabBar.js │ │ │ │ │ ├── TabItem.js │ │ │ │ │ ├── TabbedBaseView.js │ │ │ │ │ ├── _ActionContainer.js │ │ │ │ │ ├── nls │ │ │ │ │ └── BaseView.js │ │ │ │ │ └── templates │ │ │ │ │ ├── ActionBar.html │ │ │ │ │ ├── ActionBarButton.html │ │ │ │ │ ├── BaseView.html │ │ │ │ │ ├── BootstrapTab.html │ │ │ │ │ ├── BootstrapTabBar.html │ │ │ │ │ ├── Message.html │ │ │ │ │ ├── Messages.html │ │ │ │ │ ├── NavTree.html │ │ │ │ │ ├── NavTreeNode.html │ │ │ │ │ ├── Navigator.html │ │ │ │ │ ├── SearchBar.html │ │ │ │ │ ├── Section.html │ │ │ │ │ ├── Tab.html │ │ │ │ │ ├── TabBar.html │ │ │ │ │ ├── TitleBar.html │ │ │ │ │ └── TypeAhead.html │ │ │ │ ├── data │ │ │ │ └── AtomReadStore.js │ │ │ │ ├── declare.js │ │ │ │ ├── defer.js │ │ │ │ ├── dom.js │ │ │ │ ├── emailService.js │ │ │ │ ├── i18n.js │ │ │ │ ├── itemFactory.js │ │ │ │ ├── json.js │ │ │ │ ├── lang.js │ │ │ │ ├── log.js │ │ │ │ ├── main.js │ │ │ │ ├── nls │ │ │ │ ├── Endpoint.js │ │ │ │ ├── ErrorTransport.js │ │ │ │ ├── loginForm.js │ │ │ │ ├── messageSSO.js │ │ │ │ ├── util.js │ │ │ │ └── validate.js │ │ │ │ ├── pathUtil.js │ │ │ │ ├── ready.js │ │ │ │ ├── smartcloud │ │ │ │ ├── CommunityConstants.js │ │ │ │ ├── ProfileConstants.js │ │ │ │ ├── ProfileService.js │ │ │ │ ├── SmartcloudConstants.js │ │ │ │ ├── Subscriber.js │ │ │ │ └── controls │ │ │ │ │ ├── BaseGridRenderer.js │ │ │ │ │ ├── nls │ │ │ │ │ └── BaseGridRenderer.js │ │ │ │ │ └── profiles │ │ │ │ │ ├── ColleagueGrid.js │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ ├── ProfileAction.js │ │ │ │ │ ├── ProfileGrid.js │ │ │ │ │ ├── ProfileGridRenderer.js │ │ │ │ │ ├── ProfilePanel.js │ │ │ │ │ ├── nls │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ └── ProfileGridRenderer.js │ │ │ │ │ └── templates │ │ │ │ │ ├── ColleagueItem.html │ │ │ │ │ ├── ColleagueItemFull.html │ │ │ │ │ ├── CommunityMember.html │ │ │ │ │ ├── ProfilePanel.html │ │ │ │ │ ├── ProfileRow.html │ │ │ │ │ └── ViewAll.html │ │ │ │ ├── store │ │ │ │ ├── AtomStore.js │ │ │ │ └── parameter.js │ │ │ │ ├── stringUtil.js │ │ │ │ ├── text.js │ │ │ │ ├── url.js │ │ │ │ ├── util.js │ │ │ │ ├── validate.js │ │ │ │ ├── widget │ │ │ │ ├── _TemplatedDialog.js │ │ │ │ ├── _TemplatedWidget.js │ │ │ │ ├── _TypeAhead.js │ │ │ │ └── grid │ │ │ │ │ └── _Grid.js │ │ │ │ ├── xml.js │ │ │ │ ├── xpath.js │ │ │ │ └── xsl.js │ │ ├── loginForm.html │ │ └── xhr │ │ │ ├── IFrameContent.html │ │ │ └── sametime │ │ │ └── tunnel.html │ └── src │ │ └── com │ │ └── ibm │ │ └── sbt │ │ └── web │ │ └── resources │ │ ├── Activator.java │ │ ├── LibraryProvider.java │ │ └── LibraryResource.java └── pom.xml ├── php ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── moodle-block │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── assembly-moodle.xml │ ├── pom.xml │ └── src │ │ ├── block_ibmsbt.php │ │ ├── core │ │ ├── models │ │ │ ├── SBTCredentialStore.php │ │ │ └── SBTSettings.php │ │ └── views │ │ │ ├── basic-auth-login-display.php │ │ │ ├── endpoint-logout.php │ │ │ ├── includes │ │ │ └── header.php │ │ │ └── oauth-login-display.php │ │ ├── db │ │ ├── access.php │ │ └── uninstall.php │ │ ├── edit_form.php │ │ ├── endpoint_settings.php │ │ ├── lang │ │ └── en │ │ │ └── block_ibmsbt.php │ │ ├── security-config.php │ │ ├── settings.php │ │ ├── tests │ │ ├── CredentialStore_test.php │ │ ├── SBTBaseTestCase.php │ │ ├── SBTCredentialStore_test.php │ │ ├── SBTHeader_test.php │ │ ├── SBTSettings_test.php │ │ ├── SBTWidgets_test.php │ │ └── bootstrap.php │ │ ├── user_widgets │ │ ├── communities.php │ │ ├── community-files.php │ │ ├── files-view.php │ │ ├── files.php │ │ └── templates │ │ │ ├── assets │ │ │ └── loading_small.gif │ │ │ ├── ibm-sbt-communities-grid-row.php │ │ │ ├── ibm-sbt-community-files.php │ │ │ ├── ibm-sbt-files-grid-row.php │ │ │ └── ibm-sbt-files-view.php │ │ ├── version.php │ │ └── views │ │ ├── endpointSetupDialog.php │ │ └── js │ │ ├── endpointConfig.js │ │ └── globalPluginSettingsEditor.js ├── php-core │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── assembly-core.xml │ ├── pom.xml │ └── src │ │ ├── autoload.php │ │ ├── config.php │ │ ├── controllers │ │ ├── SBTPlugin.php │ │ ├── endpoint │ │ │ ├── SBTBasicAuthEndpoint.php │ │ │ ├── SBTEndpoint.php │ │ │ ├── SBTOAuth1Endpoint.php │ │ │ └── SBTOAuth2Endpoint.php │ │ └── services │ │ │ ├── Proxy.php │ │ │ ├── SBTAtomService.php │ │ │ ├── SBTProxyHelper.php │ │ │ └── connections │ │ │ ├── SBTFileService.php │ │ │ └── com │ │ │ └── SBTFile.php │ │ ├── index.php │ │ ├── models │ │ ├── SBTCredentialStore.php │ │ └── SBTSettings.php │ │ ├── samples │ │ ├── atomService.php │ │ ├── fileService.php │ │ └── test.php │ │ ├── security.php │ │ └── system │ │ ├── core │ │ ├── BaseController.php │ │ ├── BaseModel.php │ │ └── BasePluginController.php │ │ └── libs │ │ ├── composer.json │ │ ├── composer.lock │ │ └── composer.phar ├── pom.xml ├── ruleset.xml └── wordpress-plugin │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs │ ├── assembly-wordpress.xml │ ├── phpunit.xml │ ├── pom.xml │ ├── src │ ├── controllers │ │ ├── SBTBaseGridWidget.php │ │ ├── SBTBaseWidget.php │ │ ├── SBTCommunitiesWidget.php │ │ ├── SBTCommunityFilesWidget.php │ │ ├── SBTFilesViewWidget.php │ │ ├── SBTFilesWidget.php │ │ └── SBTPluginSettings.php │ ├── core │ │ ├── models │ │ │ ├── SBTCookie.php │ │ │ ├── SBTCookieAdapter.php │ │ │ ├── SBTCredentialStore.php │ │ │ ├── SBTMemoryCookieAdapter.php │ │ │ ├── SBTPHPCookieAdapter.php │ │ │ └── SBTSettings.php │ │ └── views │ │ │ └── oauth-login-display.php │ ├── ibm-sbt-constants.php │ ├── ibm-sbt-plugin-setup.php │ ├── ibm-sbt-widget-callbacks.php │ ├── ibm-sbt-widget-registration.php │ ├── ibm-sbt.php │ ├── lang │ │ └── en │ │ │ └── lang.php │ ├── user_widgets │ │ ├── controllers │ │ │ ├── SBTSampleCommunityWidget.php │ │ │ ├── SBTSampleForumWidget.php │ │ │ └── SBTSampleWidget.php │ │ └── views │ │ │ ├── ibm-sbt-community-sample.php │ │ │ ├── ibm-sbt-forum-sample.php │ │ │ ├── ibm-sbt-sample.php │ │ │ └── templates │ │ │ ├── ibm-sbt-sample-community-template.php │ │ │ ├── ibm-sbt-sample-forum-template.php │ │ │ ├── ibm-sbt-sample-template-2.php │ │ │ └── ibm-sbt-sample-template.php │ └── views │ │ ├── assets │ │ └── sbtk-icon.png │ │ ├── basic-auth-login-display.php │ │ ├── includes │ │ └── header.php │ │ ├── js │ │ ├── endpointCreationDialog.js │ │ └── option.js │ │ ├── loginDialog.html │ │ ├── oauth-logout-display.php │ │ ├── widgets │ │ ├── ibm-sbt-community-files.php │ │ ├── ibm-sbt-files-grid.php │ │ ├── ibm-sbt-files-view.php │ │ ├── ibm-sbt-my-communities-grid.php │ │ └── templates │ │ │ ├── ibm-sbt-communities-grid-row.php │ │ │ ├── ibm-sbt-community-files.php │ │ │ ├── ibm-sbt-files-grid-row.php │ │ │ └── ibm-sbt-files-view.php │ │ └── wp-settings │ │ ├── defaultSdkDeployUrlButton.php │ │ ├── deleteEndpointButton.php │ │ ├── editEndpointButton.php │ │ ├── endpointList.php │ │ ├── hiddenEndpointFields.php │ │ ├── hiddenSettings.php │ │ ├── librariesList.php │ │ ├── newEndpointButton.php │ │ ├── org.eclipse.core.resources.prefs │ │ ├── pluginOptionsTabs.php │ │ └── sdkDeploy.php │ └── tests │ ├── bootstrap_tests.php │ ├── mock_data.php │ ├── test_core_widgets.php │ ├── test_credentials_store.php │ ├── test_plugin_data.php │ ├── test_settings.php │ ├── test_setup.php │ └── test_views.php ├── pom.xml ├── readme ├── samples ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── com.ibm.sbt.samples.commons │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ibm │ │ └── sbt │ │ ├── playground │ │ ├── assets │ │ │ ├── AbstractNodeFactory.java │ │ │ ├── Asset.java │ │ │ ├── AssetBrowser.java │ │ │ ├── AssetNode.java │ │ │ ├── CategoryNode.java │ │ │ ├── Node.java │ │ │ ├── NodeFactory.java │ │ │ ├── RootNode.java │ │ │ ├── apis │ │ │ │ ├── APIAssetNode.java │ │ │ │ ├── APIDescription.java │ │ │ │ └── APINodeFactory.java │ │ │ ├── javasnippets │ │ │ │ ├── JavaSnippet.java │ │ │ │ ├── JavaSnippetAssetNode.java │ │ │ │ └── JavaSnippetNodeFactory.java │ │ │ ├── jssnippets │ │ │ │ ├── JSSnippet.java │ │ │ │ ├── JSSnippetAssetNode.java │ │ │ │ └── JSSnippetNodeFactory.java │ │ │ ├── opensocial │ │ │ │ ├── GadgetSnippet.java │ │ │ │ ├── GadgetSnippetAssetNode.java │ │ │ │ └── GadgetSnippetNodeFactory.java │ │ │ └── xpages │ │ │ │ ├── XPagesSnippet.java │ │ │ │ ├── XPagesSnippetAssetNode.java │ │ │ │ └── XPagesSnippetNodeFactory.java │ │ ├── dojo │ │ │ ├── JsonListRenderer.java │ │ │ ├── JsonTreeRenderer.java │ │ │ └── JsonWriter.java │ │ ├── extension │ │ │ ├── JavaScriptPreviewExtension.java │ │ │ └── PlaygroundExtensionFactory.java │ │ ├── git │ │ │ └── GitImport.java │ │ └── vfs │ │ │ ├── FileVFS.java │ │ │ ├── GitVFS.java │ │ │ ├── RemoteVFS.java │ │ │ ├── ServletVFS.java │ │ │ ├── VFS.java │ │ │ └── VFSFile.java │ │ └── sample │ │ └── web │ │ └── util │ │ ├── JSSnippetNode.java │ │ ├── JavaSnippetNode.java │ │ ├── SnippetFactory.java │ │ ├── SnippetServlet.java │ │ └── Util.java ├── config │ └── sbt.properties ├── dbscripts │ ├── CreateTableDB2.sql │ ├── CreateTableDerby.sql │ └── CreateTableMySQL.sql ├── domino │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── com.ibm.sbt.domino.playground.feature │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── feature.xml │ │ └── pom.xml │ ├── com.ibm.sbt.domino.playground.updatesite │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── assembly.xml │ │ ├── pom.xml │ │ └── site.xml │ ├── com.ibm.xsp.sbtsdk.playground.sbt │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── ibm │ │ │ └── xsp │ │ │ └── sbtsdk │ │ │ └── playground │ │ │ └── sbt │ │ │ ├── SbtPlaygroundExtensionFactory.java │ │ │ ├── config │ │ │ └── playground-faces-config.xml │ │ │ └── extension │ │ │ ├── SbtEndpoints.java │ │ │ ├── SbtFragment.java │ │ │ ├── SbtImportOptions.java │ │ │ ├── SbtJavaPreview.java │ │ │ └── SbtJavaScriptPreview.java │ ├── com.ibm.xsp.sbtsdk.playground │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── nsf │ │ │ └── playground │ │ │ ├── beans │ │ │ ├── APIBean.java │ │ │ ├── AssetBean.java │ │ │ ├── DataAccessBean.java │ │ │ ├── DocBean.java │ │ │ ├── DocOptionsBean.java │ │ │ ├── GadgetSnippetBean.java │ │ │ ├── ImportExportBean.java │ │ │ ├── JavaScriptSnippetBean.java │ │ │ ├── JavaSnippetBean.java │ │ │ ├── OptionsBean.java │ │ │ └── XPagesSnippetBean.java │ │ │ ├── environments │ │ │ ├── EnvironmentFactory.java │ │ │ ├── PlaygroundEnvironment.java │ │ │ ├── PlaygroundOAuth2Store.java │ │ │ ├── PlaygroundOAuthStore.java │ │ │ └── SbtConstants.java │ │ │ ├── extension │ │ │ ├── Endpoints.java │ │ │ ├── ImportOptions.java │ │ │ ├── JavaPreviewExtension.java │ │ │ ├── JavaScriptLibraries.java │ │ │ ├── JavaScriptPreviewExtension.java │ │ │ ├── PlaygroundExtensionFactory.java │ │ │ └── PlaygroundFragment.java │ │ │ ├── impexp │ │ │ ├── JsonExport.java │ │ │ ├── JsonImport.java │ │ │ └── JsonImportExport.java │ │ │ ├── jobs │ │ │ ├── AsyncAction.java │ │ │ ├── ImportAssetAction.java │ │ │ └── TestAction.java │ │ │ ├── json │ │ │ └── JsonJavaObjectI.java │ │ │ ├── jsp │ │ │ ├── JspCompiler.java │ │ │ ├── JspFragment.java │ │ │ └── JspSampleWriter.java │ │ │ ├── library │ │ │ └── PlaygroundLibrary.java │ │ │ ├── playground │ │ │ ├── PreviewExportHandler.java │ │ │ ├── PreviewFactory.java │ │ │ ├── PreviewGadgetHandler.java │ │ │ ├── PreviewHandler.java │ │ │ ├── PreviewImportHandler.java │ │ │ ├── PreviewJavaHandler.java │ │ │ ├── PreviewJavaScriptHandler.java │ │ │ ├── PreviewServlet.java │ │ │ └── PreviewXPagesHandler.java │ │ │ ├── servlets │ │ │ ├── PlaygroundDominoServiceServlet.java │ │ │ └── PlaygroundToolkitServlet.java │ │ │ ├── snippets │ │ │ ├── APIImporter.java │ │ │ ├── AssetImporter.java │ │ │ ├── GadgetSnippetImporter.java │ │ │ ├── ImportSource.java │ │ │ ├── JavaScriptSnippetImporter.java │ │ │ ├── JavaSnippetImporter.java │ │ │ └── XPagesSnippetImporter.java │ │ │ └── util │ │ │ └── JsonTreeFromDominoView.java │ ├── nsf │ │ ├── playground │ │ │ └── sbtplayground.nsf │ │ └── socialenabler │ │ │ └── XPagesSBT.nsf │ ├── nsfsrc │ │ ├── nsf.playground │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── .jsdtscope │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── AppProperties │ │ │ │ ├── database.properties │ │ │ │ └── xspdesign.properties │ │ │ ├── Code │ │ │ │ ├── Java │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── com.ibm.sbt.core.environmentfactory │ │ │ │ │ │ │ ├── com.ibm.sbt.core.environmentfactory.metadata │ │ │ │ │ │ │ ├── com.ibm.xsp.adapter.servletFactory │ │ │ │ │ │ │ └── com.ibm.xsp.adapter.servletFactory.metadata │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── DocAPI.java │ │ │ │ │ │ ├── DocAPI.java.metadata │ │ │ │ │ │ ├── OptionsBean.java │ │ │ │ │ │ └── OptionsBean.java.metadata │ │ │ │ │ └── playground │ │ │ │ │ │ └── beans │ │ │ │ │ │ ├── APIBean.java │ │ │ │ │ │ ├── APIBean.java.metadata │ │ │ │ │ │ ├── DataAccessBean.java │ │ │ │ │ │ ├── DataAccessBean.java.metadata │ │ │ │ │ │ ├── DynamicXPagesBean.java │ │ │ │ │ │ ├── DynamicXPagesBean.java.metadata │ │ │ │ │ │ ├── GadgetSnippetBean.java │ │ │ │ │ │ ├── GadgetSnippetBean.java.metadata │ │ │ │ │ │ ├── ImportExportBean.java │ │ │ │ │ │ ├── ImportExportBean.java.metadata │ │ │ │ │ │ ├── JavaScriptSnippetBean.java │ │ │ │ │ │ ├── JavaScriptSnippetBean.java.metadata │ │ │ │ │ │ ├── JavaSnippetBean.java │ │ │ │ │ │ ├── JavaSnippetBean.java.metadata │ │ │ │ │ │ ├── OptionsBean.java │ │ │ │ │ │ ├── OptionsBean.java.metadata │ │ │ │ │ │ ├── XPagesSnippetBean.java │ │ │ │ │ │ └── XPagesSnippetBean.java.metadata │ │ │ │ ├── ScriptLibraries │ │ │ │ │ ├── commonSnippets.js │ │ │ │ │ ├── commonSnippets.js.metadata │ │ │ │ │ ├── explorer.js │ │ │ │ │ ├── explorer.js.metadata │ │ │ │ │ ├── gadgetSnippets.js │ │ │ │ │ ├── gadgetSnippets.js.metadata │ │ │ │ │ ├── home.js │ │ │ │ │ ├── home.js.metadata │ │ │ │ │ ├── javaScriptSnippets.js │ │ │ │ │ ├── javaScriptSnippets.js.metadata │ │ │ │ │ ├── javaSnippets.js │ │ │ │ │ ├── javaSnippets.js.metadata │ │ │ │ │ ├── main.js │ │ │ │ │ ├── main.js.metadata │ │ │ │ │ ├── xPagesSnippets.js │ │ │ │ │ └── xPagesSnippets.js.metadata │ │ │ │ └── dbscript.lsdb │ │ │ ├── CustomControls │ │ │ │ ├── AccessError.xsp │ │ │ │ ├── AccessError.xsp-config │ │ │ │ ├── AccessError.xsp.metadata │ │ │ │ ├── ApacheLicense.xsp │ │ │ │ ├── ApacheLicense.xsp-config │ │ │ │ ├── ApacheLicense.xsp.metadata │ │ │ │ ├── ApiDocBreadcrumb.xsp │ │ │ │ ├── ApiDocBreadcrumb.xsp-config │ │ │ │ ├── ApiDocBreadcrumb.xsp.metadata │ │ │ │ ├── ApiDocExampleInput.xsp │ │ │ │ ├── ApiDocExampleInput.xsp-config │ │ │ │ ├── ApiDocExampleInput.xsp.metadata │ │ │ │ ├── ApiDocFormApi.xsp │ │ │ │ ├── ApiDocFormApi.xsp-config │ │ │ │ ├── ApiDocFormApi.xsp.metadata │ │ │ │ ├── ApiDocFormButtonBar.xsp │ │ │ │ ├── ApiDocFormButtonBar.xsp-config │ │ │ │ ├── ApiDocFormButtonBar.xsp.metadata │ │ │ │ ├── ApiDocFormCategory.xsp │ │ │ │ ├── ApiDocFormCategory.xsp-config │ │ │ │ ├── ApiDocFormCategory.xsp.metadata │ │ │ │ ├── ApiDocPageLayout.xsp │ │ │ │ ├── ApiDocPageLayout.xsp-config │ │ │ │ ├── ApiDocPageLayout.xsp.metadata │ │ │ │ ├── ApiDocParamInput.xsp │ │ │ │ ├── ApiDocParamInput.xsp-config │ │ │ │ ├── ApiDocParamInput.xsp.metadata │ │ │ │ ├── ApiDocReferenceInput.xsp │ │ │ │ ├── ApiDocReferenceInput.xsp-config │ │ │ │ ├── ApiDocReferenceInput.xsp.metadata │ │ │ │ ├── ApiDocRenderApi.xsp │ │ │ │ ├── ApiDocRenderApi.xsp-config │ │ │ │ ├── ApiDocRenderApi.xsp.metadata │ │ │ │ ├── ApiDocRenderCategory.xsp │ │ │ │ ├── ApiDocRenderCategory.xsp-config │ │ │ │ ├── ApiDocRenderCategory.xsp.metadata │ │ │ │ ├── ApiDocRenderParam.xsp │ │ │ │ ├── ApiDocRenderParam.xsp-config │ │ │ │ ├── ApiDocRenderParam.xsp.metadata │ │ │ │ ├── ApiDocTree.xsp │ │ │ │ ├── ApiDocTree.xsp-config │ │ │ │ ├── ApiDocTree.xsp.metadata │ │ │ │ ├── ApiDocView.xsp │ │ │ │ ├── ApiDocView.xsp-config │ │ │ │ ├── ApiDocView.xsp.metadata │ │ │ │ ├── DevelopmentWarning.xsp │ │ │ │ ├── DevelopmentWarning.xsp-config │ │ │ │ ├── DevelopmentWarning.xsp.metadata │ │ │ │ ├── GadgetsPreviewPane.xsp │ │ │ │ ├── GadgetsPreviewPane.xsp-config │ │ │ │ ├── GadgetsPreviewPane.xsp.metadata │ │ │ │ ├── GoogleAnalytics.xsp │ │ │ │ ├── GoogleAnalytics.xsp-config │ │ │ │ ├── GoogleAnalytics.xsp.metadata │ │ │ │ ├── ManageAPIsForm.xsp │ │ │ │ ├── ManageAPIsForm.xsp-config │ │ │ │ ├── ManageAPIsForm.xsp.metadata │ │ │ │ ├── ManageAllDocumentsActionBar.xsp │ │ │ │ ├── ManageAllDocumentsActionBar.xsp-config │ │ │ │ ├── ManageAllDocumentsActionBar.xsp.metadata │ │ │ │ ├── ManageAllDocumentsForm.xsp │ │ │ │ ├── ManageAllDocumentsForm.xsp-config │ │ │ │ ├── ManageAllDocumentsForm.xsp.metadata │ │ │ │ ├── ManageGadgetSnippetsForm.xsp │ │ │ │ ├── ManageGadgetSnippetsForm.xsp-config │ │ │ │ ├── ManageGadgetSnippetsForm.xsp.metadata │ │ │ │ ├── ManageImportExportAsset.xsp │ │ │ │ ├── ManageImportExportAsset.xsp-config │ │ │ │ ├── ManageImportExportAsset.xsp.metadata │ │ │ │ ├── ManageJavaScriptSnippetsForm.xsp │ │ │ │ ├── ManageJavaScriptSnippetsForm.xsp-config │ │ │ │ ├── ManageJavaScriptSnippetsForm.xsp.metadata │ │ │ │ ├── ManageJavaSnippetsForm.xsp │ │ │ │ ├── ManageJavaSnippetsForm.xsp-config │ │ │ │ ├── ManageJavaSnippetsForm.xsp.metadata │ │ │ │ ├── ManageLeftNavigator.xsp │ │ │ │ ├── ManageLeftNavigator.xsp-config │ │ │ │ ├── ManageLeftNavigator.xsp.metadata │ │ │ │ ├── ManageSnippetsActionBar.xsp │ │ │ │ ├── ManageSnippetsActionBar.xsp-config │ │ │ │ ├── ManageSnippetsActionBar.xsp.metadata │ │ │ │ ├── ManageXPagesSnippetsForm.xsp │ │ │ │ ├── ManageXPagesSnippetsForm.xsp-config │ │ │ │ ├── ManageXPagesSnippetsForm.xsp.metadata │ │ │ │ ├── PanelDocGadget.xsp │ │ │ │ ├── PanelDocGadget.xsp-config │ │ │ │ ├── PanelDocGadget.xsp.metadata │ │ │ │ ├── PanelDocJava.xsp │ │ │ │ ├── PanelDocJava.xsp-config │ │ │ │ ├── PanelDocJava.xsp.metadata │ │ │ │ ├── PanelDocJavaScript.xsp │ │ │ │ ├── PanelDocJavaScript.xsp-config │ │ │ │ ├── PanelDocJavaScript.xsp.metadata │ │ │ │ ├── PanelDocXPages.xsp │ │ │ │ ├── PanelDocXPages.xsp-config │ │ │ │ ├── PanelDocXPages.xsp.metadata │ │ │ │ ├── PlaygroundTabCss.xsp │ │ │ │ ├── PlaygroundTabCss.xsp-config │ │ │ │ ├── PlaygroundTabCss.xsp.metadata │ │ │ │ ├── PlaygroundTabDocumentation.xsp │ │ │ │ ├── PlaygroundTabDocumentation.xsp-config │ │ │ │ ├── PlaygroundTabDocumentation.xsp.metadata │ │ │ │ ├── PlaygroundTabGadget.xsp │ │ │ │ ├── PlaygroundTabGadget.xsp-config │ │ │ │ ├── PlaygroundTabGadget.xsp.metadata │ │ │ │ ├── PlaygroundTabHtml.xsp │ │ │ │ ├── PlaygroundTabHtml.xsp-config │ │ │ │ ├── PlaygroundTabHtml.xsp.metadata │ │ │ │ ├── PlaygroundTabJava.xsp │ │ │ │ ├── PlaygroundTabJava.xsp-config │ │ │ │ ├── PlaygroundTabJava.xsp.metadata │ │ │ │ ├── PlaygroundTabJavaScript.xsp │ │ │ │ ├── PlaygroundTabJavaScript.xsp-config │ │ │ │ ├── PlaygroundTabJavaScript.xsp.metadata │ │ │ │ ├── PlaygroundTabJson.xsp │ │ │ │ ├── PlaygroundTabJson.xsp-config │ │ │ │ ├── PlaygroundTabJson.xsp.metadata │ │ │ │ ├── PlaygroundTabJsp.xsp │ │ │ │ ├── PlaygroundTabJsp.xsp-config │ │ │ │ ├── PlaygroundTabJsp.xsp.metadata │ │ │ │ ├── PlaygroundTabProperties.xsp │ │ │ │ ├── PlaygroundTabProperties.xsp-config │ │ │ │ ├── PlaygroundTabProperties.xsp.metadata │ │ │ │ ├── PlaygroundTabXPages.xsp │ │ │ │ ├── PlaygroundTabXPages.xsp-config │ │ │ │ ├── PlaygroundTabXPages.xsp.metadata │ │ │ │ ├── SSLWarning.xsp │ │ │ │ ├── SSLWarning.xsp-config │ │ │ │ ├── SSLWarning.xsp.metadata │ │ │ │ ├── SnippetsPreviewPane.xsp │ │ │ │ ├── SnippetsPreviewPane.xsp-config │ │ │ │ ├── SnippetsPreviewPane.xsp.metadata │ │ │ │ ├── __deprecated_PlaygroundLeftWidget.xsp │ │ │ │ ├── __deprecated_PlaygroundLeftWidget.xsp-config │ │ │ │ ├── __deprecated_PlaygroundLeftWidget.xsp.metadata │ │ │ │ ├── __deprecated_SnippetView.xsp │ │ │ │ ├── __deprecated_SnippetView.xsp-config │ │ │ │ ├── __deprecated_SnippetView.xsp.metadata │ │ │ │ ├── ccAnonOAuthWarning.xsp │ │ │ │ ├── ccAnonOAuthWarning.xsp-config │ │ │ │ ├── ccAnonOAuthWarning.xsp.metadata │ │ │ │ ├── ccAssetTree.xsp │ │ │ │ ├── ccAssetTree.xsp-config │ │ │ │ ├── ccAssetTree.xsp.metadata │ │ │ │ ├── ccAsyncProgress.xsp │ │ │ │ ├── ccAsyncProgress.xsp-config │ │ │ │ ├── ccAsyncProgress.xsp.metadata │ │ │ │ ├── ccAsyncProgressDialog.xsp │ │ │ │ ├── ccAsyncProgressDialog.xsp-config │ │ │ │ ├── ccAsyncProgressDialog.xsp.metadata │ │ │ │ ├── ccBootstrapStylesFixes.xsp │ │ │ │ ├── ccBootstrapStylesFixes.xsp-config │ │ │ │ ├── ccBootstrapStylesFixes.xsp.metadata │ │ │ │ ├── ccEnvironmentComboBox.xsp │ │ │ │ ├── ccEnvironmentComboBox.xsp-config │ │ │ │ ├── ccEnvironmentComboBox.xsp.metadata │ │ │ │ ├── ccEnvironmentComboBoxDialogs.xsp │ │ │ │ ├── ccEnvironmentComboBoxDialogs.xsp-config │ │ │ │ ├── ccEnvironmentComboBoxDialogs.xsp.metadata │ │ │ │ ├── ccEnvironmentForm.xsp │ │ │ │ ├── ccEnvironmentForm.xsp-config │ │ │ │ ├── ccEnvironmentForm.xsp.metadata │ │ │ │ ├── ccEnvironmentWizard.xsp │ │ │ │ ├── ccEnvironmentWizard.xsp-config │ │ │ │ ├── ccEnvironmentWizard.xsp.metadata │ │ │ │ ├── ccExplorerAPIEntry.xsp │ │ │ │ ├── ccExplorerAPIEntry.xsp-config │ │ │ │ ├── ccExplorerAPIEntry.xsp.metadata │ │ │ │ ├── ccLayout.xsp │ │ │ │ ├── ccLayout.xsp-config │ │ │ │ ├── ccLayout.xsp.metadata │ │ │ │ ├── ccLayoutMini.xsp │ │ │ │ ├── ccLayoutMini.xsp-config │ │ │ │ ├── ccLayoutMini.xsp.metadata │ │ │ │ ├── ccMainPageResources.xsp │ │ │ │ ├── ccMainPageResources.xsp-config │ │ │ │ ├── ccMainPageResources.xsp.metadata │ │ │ │ ├── ccManagePageResources.xsp │ │ │ │ ├── ccManagePageResources.xsp-config │ │ │ │ ├── ccManagePageResources.xsp.metadata │ │ │ │ ├── ccNoAccessUser.xsp │ │ │ │ ├── ccNoAccessUser.xsp-config │ │ │ │ ├── ccNoAccessUser.xsp.metadata │ │ │ │ ├── ccOneUI21StylesFixes.xsp │ │ │ │ ├── ccOneUI21StylesFixes.xsp-config │ │ │ │ ├── ccOneUI21StylesFixes.xsp.metadata │ │ │ │ ├── ccOneUI302StylesFixes.xsp │ │ │ │ ├── ccOneUI302StylesFixes.xsp-config │ │ │ │ ├── ccOneUI302StylesFixes.xsp.metadata │ │ │ │ ├── ccOneUIStylesFixes.xsp │ │ │ │ ├── ccOneUIStylesFixes.xsp-config │ │ │ │ ├── ccOneUIStylesFixes.xsp.metadata │ │ │ │ ├── ccSmartCloudTestNavBar.xsp │ │ │ │ ├── ccSmartCloudTestNavBar.xsp-config │ │ │ │ └── ccSmartCloudTestNavBar.xsp.metadata │ │ │ ├── Forms │ │ │ │ ├── $$LoginUserForm.form │ │ │ │ ├── API.form │ │ │ │ ├── APIDescription.form │ │ │ │ ├── Category.form │ │ │ │ ├── Environment.form │ │ │ │ ├── GadgetSnippet.form │ │ │ │ ├── GlobalOptions.form │ │ │ │ ├── ImportSource.form │ │ │ │ ├── JavaScriptSnippet.form │ │ │ │ ├── JavaSnippet.form │ │ │ │ └── XPagesSnippet.form │ │ │ ├── Resources │ │ │ │ ├── AboutDocument │ │ │ │ ├── Files │ │ │ │ │ ├── blank.html │ │ │ │ │ ├── blank.html.metadata │ │ │ │ │ ├── loading.html │ │ │ │ │ ├── loading.html.metadata │ │ │ │ │ ├── preview.html │ │ │ │ │ └── preview.html.metadata │ │ │ │ ├── IconNote │ │ │ │ ├── Images │ │ │ │ │ ├── arrowdn.png │ │ │ │ │ ├── arrowdn.png.metadata │ │ │ │ │ ├── arrowempty.png │ │ │ │ │ ├── arrowempty.png.metadata │ │ │ │ │ ├── arrowup.png │ │ │ │ │ ├── arrowup.png.metadata │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── blank.gif.metadata │ │ │ │ │ ├── clearbtn.png │ │ │ │ │ ├── clearbtn.png.metadata │ │ │ │ │ ├── collapseall.png │ │ │ │ │ ├── collapseall.png.metadata │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── delete.png.metadata │ │ │ │ │ ├── diamond.png │ │ │ │ │ ├── diamond.png.metadata │ │ │ │ │ ├── dw-tab.png │ │ │ │ │ ├── dw-tab.png.metadata │ │ │ │ │ ├── dw-title.png │ │ │ │ │ ├── dw-title.png.metadata │ │ │ │ │ ├── edit.jpg │ │ │ │ │ ├── edit.jpg.metadata │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── edit.png.metadata │ │ │ │ │ ├── expandall.png │ │ │ │ │ ├── expandall.png.metadata │ │ │ │ │ ├── explorer_delete.png │ │ │ │ │ ├── explorer_delete.png.metadata │ │ │ │ │ ├── explorer_get.png │ │ │ │ │ ├── explorer_get.png.metadata │ │ │ │ │ ├── explorer_head.png │ │ │ │ │ ├── explorer_head.png.metadata │ │ │ │ │ ├── explorer_post.png │ │ │ │ │ ├── explorer_post.png.metadata │ │ │ │ │ ├── explorer_put.png │ │ │ │ │ ├── explorer_put.png.metadata │ │ │ │ │ ├── glamourshot.png │ │ │ │ │ ├── glamourshot.png.metadata │ │ │ │ │ ├── helpicon.png │ │ │ │ │ ├── helpicon.png.metadata │ │ │ │ │ ├── home_arrow.png │ │ │ │ │ ├── home_arrow.png.metadata │ │ │ │ │ ├── home_blank.gif │ │ │ │ │ ├── home_blank.gif.metadata │ │ │ │ │ ├── home_help.png │ │ │ │ │ ├── home_help.png.metadata │ │ │ │ │ ├── home_section_closed.png │ │ │ │ │ ├── home_section_closed.png.metadata │ │ │ │ │ ├── home_section_closed_hover.png │ │ │ │ │ ├── home_section_closed_hover.png.metadata │ │ │ │ │ ├── home_section_open.png │ │ │ │ │ ├── home_section_open.png.metadata │ │ │ │ │ ├── miniadd.png │ │ │ │ │ ├── miniadd.png.metadata │ │ │ │ │ ├── minidelete.png │ │ │ │ │ ├── minidelete.png.metadata │ │ │ │ │ ├── miniedit.png │ │ │ │ │ ├── miniedit.png.metadata │ │ │ │ │ ├── navbar.png │ │ │ │ │ ├── navbar.png.metadata │ │ │ │ │ ├── proddocblue24.png │ │ │ │ │ ├── proddocblue24.png.metadata │ │ │ │ │ ├── progressIndicator.gif │ │ │ │ │ ├── progressIndicator.gif.metadata │ │ │ │ │ ├── search.png │ │ │ │ │ ├── search.png.metadata │ │ │ │ │ ├── selectarrow.png │ │ │ │ │ ├── selectarrow.png.metadata │ │ │ │ │ ├── setcategory.png │ │ │ │ │ ├── setcategory.png.metadata │ │ │ │ │ ├── step1img.png │ │ │ │ │ ├── step1img.png.metadata │ │ │ │ │ ├── topnavi.png │ │ │ │ │ ├── topnavi.png.metadata │ │ │ │ │ ├── warning.png │ │ │ │ │ └── warning.png.metadata │ │ │ │ ├── StyleSheets │ │ │ │ │ ├── apirender.css │ │ │ │ │ ├── apirender.css.metadata │ │ │ │ │ ├── explorer.css │ │ │ │ │ ├── explorer.css.metadata │ │ │ │ │ ├── gadget.css │ │ │ │ │ ├── gadget.css.metadata │ │ │ │ │ ├── home.css │ │ │ │ │ ├── home.css.metadata │ │ │ │ │ ├── home_new.css │ │ │ │ │ ├── home_new.css.metadata │ │ │ │ │ ├── home_sav.css │ │ │ │ │ ├── home_sav.css.metadata │ │ │ │ │ ├── mainpage.css │ │ │ │ │ ├── mainpage.css.metadata │ │ │ │ │ ├── sbtbanner.css │ │ │ │ │ └── sbtbanner.css.metadata │ │ │ │ └── UsingDocument │ │ │ ├── Views │ │ │ │ ├── (AllDocs).view │ │ │ │ ├── (Main Content View).view │ │ │ │ ├── AllAPIExplorer.view │ │ │ │ ├── AllCategories.view │ │ │ │ ├── AllDocumentation.view │ │ │ │ ├── AllEnvironments.view │ │ │ │ ├── AllImportSourcesByType.view │ │ │ │ ├── AllSnippets.view │ │ │ │ ├── AllSnippetsByAuthor.view │ │ │ │ ├── AllSnippetsById.view │ │ │ │ ├── AllSnippetsByImportSource.view │ │ │ │ ├── AllSnippetsFlat.view │ │ │ │ ├── AllTags.view │ │ │ │ └── GlobalOptions.view │ │ │ ├── WebContent │ │ │ │ ├── WEB-INF │ │ │ │ │ ├── faces-config.xml │ │ │ │ │ └── xsp.properties │ │ │ │ └── modules │ │ │ │ │ ├── gadget-spec-service.js │ │ │ │ │ ├── gadgetSnippets.js │ │ │ │ │ ├── securityToken.js │ │ │ │ │ ├── util.js │ │ │ │ │ └── widgets │ │ │ │ │ └── gadgetarea │ │ │ │ │ ├── PlaygroundGadgetArea.js │ │ │ │ │ ├── PlaygroundGadgetModalDialog.js │ │ │ │ │ └── PlaygroundPreferencesDialog.js │ │ │ ├── XPages │ │ │ │ ├── ApiDocumentation.xsp │ │ │ │ ├── ApiDocumentation.xsp.metadata │ │ │ │ ├── ApiEditor.xsp │ │ │ │ ├── ApiEditor.xsp.metadata │ │ │ │ ├── Explorer.xsp │ │ │ │ ├── Explorer.xsp.metadata │ │ │ │ ├── ExplorerMini.xsp │ │ │ │ ├── ExplorerMini.xsp.metadata │ │ │ │ ├── GadgetSnippets.xsp │ │ │ │ ├── GadgetSnippets.xsp.metadata │ │ │ │ ├── Home.xsp │ │ │ │ ├── Home.xsp.metadata │ │ │ │ ├── Home_new.xsp │ │ │ │ ├── Home_new.xsp.metadata │ │ │ │ ├── Home_sav.xsp │ │ │ │ ├── Home_sav.xsp.metadata │ │ │ │ ├── JavaScriptSnippets.xsp │ │ │ │ ├── JavaScriptSnippets.xsp.metadata │ │ │ │ ├── JavaSnippets.xsp │ │ │ │ ├── JavaSnippets.xsp.metadata │ │ │ │ ├── ManageAPIsByAuthor.xsp │ │ │ │ ├── ManageAPIsByAuthor.xsp.metadata │ │ │ │ ├── ManageAPIsByCategory.xsp │ │ │ │ ├── ManageAPIsByCategory.xsp.metadata │ │ │ │ ├── ManageAllDocuments.xsp │ │ │ │ ├── ManageAllDocuments.xsp.metadata │ │ │ │ ├── ManageEnvironments.xsp │ │ │ │ ├── ManageEnvironments.xsp.metadata │ │ │ │ ├── ManageGadgetSnippetsByAuthor.xsp │ │ │ │ ├── ManageGadgetSnippetsByAuthor.xsp.metadata │ │ │ │ ├── ManageGadgetSnippetsByCategory.xsp │ │ │ │ ├── ManageGadgetSnippetsByCategory.xsp.metadata │ │ │ │ ├── ManageImportAPIs.xsp │ │ │ │ ├── ManageImportAPIs.xsp.metadata │ │ │ │ ├── ManageImportGadgetSnippets.xsp │ │ │ │ ├── ManageImportGadgetSnippets.xsp.metadata │ │ │ │ ├── ManageImportJavaScriptSnippets.xsp │ │ │ │ ├── ManageImportJavaScriptSnippets.xsp.metadata │ │ │ │ ├── ManageImportJavaSnippets.xsp │ │ │ │ ├── ManageImportJavaSnippets.xsp.metadata │ │ │ │ ├── ManageImportXPagesSnippets.xsp │ │ │ │ ├── ManageImportXPagesSnippets.xsp.metadata │ │ │ │ ├── ManageJavaScriptSnippetsByAuthor.xsp │ │ │ │ ├── ManageJavaScriptSnippetsByAuthor.xsp.metadata │ │ │ │ ├── ManageJavaScriptSnippetsByCategory.xsp │ │ │ │ ├── ManageJavaScriptSnippetsByCategory.xsp.metadata │ │ │ │ ├── ManageJavaSnippetsByAuthor.xsp │ │ │ │ ├── ManageJavaSnippetsByAuthor.xsp.metadata │ │ │ │ ├── ManageJavaSnippetsByCategory.xsp │ │ │ │ ├── ManageJavaSnippetsByCategory.xsp.metadata │ │ │ │ ├── ManageOptions.xsp │ │ │ │ ├── ManageOptions.xsp.metadata │ │ │ │ ├── ManageXPagesSnippetsByAuthor.xsp │ │ │ │ ├── ManageXPagesSnippetsByAuthor.xsp.metadata │ │ │ │ ├── ManageXPagesSnippetsByCategory.xsp │ │ │ │ ├── ManageXPagesSnippetsByCategory.xsp.metadata │ │ │ │ ├── Playground.xsp │ │ │ │ ├── Playground.xsp.metadata │ │ │ │ ├── PrintDocumentation.xsp │ │ │ │ ├── PrintDocumentation.xsp.metadata │ │ │ │ ├── XPagesSnippets.xsp │ │ │ │ ├── XPagesSnippets.xsp.metadata │ │ │ │ ├── _PreviewXPages.xsp │ │ │ │ ├── _PreviewXPages.xsp.metadata │ │ │ │ ├── test.xsp │ │ │ │ └── test.xsp.metadata │ │ │ └── plugin.xml │ │ └── nsf.socialenabler │ │ │ └── XPagesSBT │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ │ │ ├── AppProperties │ │ │ ├── database.properties │ │ │ └── xspdesign.properties │ │ │ ├── Code │ │ │ ├── Java │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ ├── com.ibm.xsp.core.events.ApplicationListener │ │ │ │ │ │ ├── com.ibm.xsp.core.events.ApplicationListener.metadata │ │ │ │ │ │ ├── com.ibm.xsp.extlib.social.IdentityProvider │ │ │ │ │ │ └── com.ibm.xsp.extlib.social.IdentityProvider.metadata │ │ │ │ ├── demo │ │ │ │ │ ├── AppListener.java │ │ │ │ │ ├── AppListener.java.metadata │ │ │ │ │ ├── IdentityProvider.java │ │ │ │ │ ├── IdentityProvider.java.metadata │ │ │ │ │ ├── SocialEnablerContainerExtPoint.java │ │ │ │ │ └── SocialEnablerContainerExtPoint.java.metadata │ │ │ │ └── nsf │ │ │ │ │ ├── JsonService.java │ │ │ │ │ ├── JsonService.java.metadata │ │ │ │ │ ├── XMLService.java │ │ │ │ │ └── XMLService.java.metadata │ │ │ ├── ScriptLibraries │ │ │ │ ├── Communities.jss │ │ │ │ ├── Communities.jss.metadata │ │ │ │ ├── Users.jss │ │ │ │ ├── Users.jss.metadata │ │ │ │ ├── Utils.jss │ │ │ │ ├── Utils.jss.metadata │ │ │ │ ├── container.js │ │ │ │ └── container.js.metadata │ │ │ └── dbscript.lsdb │ │ │ ├── CustomControls │ │ │ ├── BasicAuthenticationPanel.xsp │ │ │ ├── BasicAuthenticationPanel.xsp-config │ │ │ ├── BasicAuthenticationPanel.xsp.metadata │ │ │ ├── Frame_iPhone.xsp │ │ │ ├── Frame_iPhone.xsp-config │ │ │ ├── Frame_iPhone.xsp.metadata │ │ │ ├── LeftConnections.xsp │ │ │ ├── LeftConnections.xsp-config │ │ │ ├── LeftConnections.xsp.metadata │ │ │ ├── LeftDropbox.xsp │ │ │ ├── LeftDropbox.xsp-config │ │ │ ├── LeftDropbox.xsp.metadata │ │ │ ├── LeftFacebook.xsp │ │ │ ├── LeftFacebook.xsp-config │ │ │ ├── LeftFacebook.xsp.metadata │ │ │ ├── LeftGeneric.xsp │ │ │ ├── LeftGeneric.xsp-config │ │ │ ├── LeftGeneric.xsp.metadata │ │ │ ├── LeftSBT.xsp │ │ │ ├── LeftSBT.xsp-config │ │ │ ├── LeftSBT.xsp.metadata │ │ │ ├── LeftSametime.xsp │ │ │ ├── LeftSametime.xsp-config │ │ │ ├── LeftSametime.xsp.metadata │ │ │ ├── LeftSmartCloud.xsp │ │ │ ├── LeftSmartCloud.xsp-config │ │ │ ├── LeftSmartCloud.xsp.metadata │ │ │ ├── LeftTwitter.xsp │ │ │ ├── LeftTwitter.xsp-config │ │ │ ├── LeftTwitter.xsp.metadata │ │ │ ├── LeftUtilities.xsp │ │ │ ├── LeftUtilities.xsp-config │ │ │ ├── LeftUtilities.xsp.metadata │ │ │ ├── OneUILayout.xsp │ │ │ ├── OneUILayout.xsp-config │ │ │ ├── OneUILayout.xsp.metadata │ │ │ ├── WarningConnectionsVersion.xsp │ │ │ ├── WarningConnectionsVersion.xsp-config │ │ │ ├── WarningConnectionsVersion.xsp.metadata │ │ │ ├── WarningSBTUsage.xsp │ │ │ ├── WarningSBTUsage.xsp-config │ │ │ ├── WarningSBTUsage.xsp.metadata │ │ │ ├── sbtContactsSmartCloud.xsp │ │ │ ├── sbtContactsSmartCloud.xsp-config │ │ │ ├── sbtContactsSmartCloud.xsp.metadata │ │ │ ├── sbtFilesConnections.xsp │ │ │ ├── sbtFilesConnections.xsp-config │ │ │ ├── sbtFilesConnections.xsp.metadata │ │ │ ├── sbtFilesDropbox.xsp │ │ │ ├── sbtFilesDropbox.xsp-config │ │ │ ├── sbtFilesDropbox.xsp.metadata │ │ │ ├── sbtFilesSmartCloud.xsp │ │ │ ├── sbtFilesSmartCloud.xsp-config │ │ │ ├── sbtFilesSmartCloud.xsp.metadata │ │ │ ├── sbtLoginDialog.xsp │ │ │ ├── sbtLoginDialog.xsp-config │ │ │ ├── sbtLoginDialog.xsp.metadata │ │ │ ├── sbtLoginPage.xsp │ │ │ ├── sbtLoginPage.xsp-config │ │ │ ├── sbtLoginPage.xsp.metadata │ │ │ ├── sbtLoginPanel.xsp │ │ │ ├── sbtLoginPanel.xsp-config │ │ │ ├── sbtLoginPanel.xsp.metadata │ │ │ ├── sbtLoginSection.xsp │ │ │ ├── sbtLoginSection.xsp-config │ │ │ ├── sbtLoginSection.xsp.metadata │ │ │ ├── sbtProfileSmartCloud.xsp │ │ │ ├── sbtProfileSmartCloud.xsp-config │ │ │ ├── sbtProfileSmartCloud.xsp.metadata │ │ │ ├── sbtSmartCloudCommunities.xsp │ │ │ ├── sbtSmartCloudCommunities.xsp-config │ │ │ ├── sbtSmartCloudCommunities.xsp.metadata │ │ │ ├── sbtTwitter.xsp │ │ │ ├── sbtTwitter.xsp-config │ │ │ ├── sbtTwitter.xsp.metadata │ │ │ ├── sbtTwitterSearch.xsp │ │ │ ├── sbtTwitterSearch.xsp-config │ │ │ └── sbtTwitterSearch.xsp.metadata │ │ │ ├── Resources │ │ │ ├── AboutDocument │ │ │ ├── Files │ │ │ │ ├── XPagesLogo.png │ │ │ │ ├── XPagesLogo.png.metadata │ │ │ │ ├── demo-gadget.xml │ │ │ │ ├── demo-gadget.xml.metadata │ │ │ │ ├── strings.properties │ │ │ │ └── strings.properties.metadata │ │ │ ├── IconNote │ │ │ ├── Images │ │ │ │ ├── XPages_Logo.png │ │ │ │ ├── XPages_Logo.png.metadata │ │ │ │ ├── add.png │ │ │ │ ├── add.png.metadata │ │ │ │ ├── bin_closed.png │ │ │ │ ├── bin_closed.png.metadata │ │ │ │ ├── folder.png │ │ │ │ ├── folder.png.metadata │ │ │ │ ├── folder_add.png │ │ │ │ ├── folder_add.png.metadata │ │ │ │ ├── icon_add.jpg │ │ │ │ ├── icon_add.jpg.metadata │ │ │ │ ├── icon_audio.png │ │ │ │ ├── icon_audio.png.metadata │ │ │ │ ├── icon_delete_16.png │ │ │ │ ├── icon_delete_16.png.metadata │ │ │ │ ├── icon_document.png │ │ │ │ ├── icon_document.png.metadata │ │ │ │ ├── icon_folder.png │ │ │ │ ├── icon_folder.png.metadata │ │ │ │ ├── icon_home.png │ │ │ │ ├── icon_home.png.metadata │ │ │ │ ├── icon_image.png │ │ │ │ ├── icon_image.png.metadata │ │ │ │ ├── icon_pdf.png │ │ │ │ ├── icon_pdf.png.metadata │ │ │ │ ├── icon_presentation.png │ │ │ │ ├── icon_presentation.png.metadata │ │ │ │ ├── icon_spreadsheet.png │ │ │ │ ├── icon_spreadsheet.png.metadata │ │ │ │ ├── icon_text.png │ │ │ │ ├── icon_text.png.metadata │ │ │ │ ├── icon_upDirectory.png │ │ │ │ ├── icon_upDirectory.png.metadata │ │ │ │ ├── icon_video.png │ │ │ │ ├── icon_video.png.metadata │ │ │ │ ├── icon_zip.png │ │ │ │ ├── icon_zip.png.metadata │ │ │ │ ├── iph_bottom.jpg │ │ │ │ ├── iph_bottom.jpg.metadata │ │ │ │ ├── iph_bottom_l.jpg │ │ │ │ ├── iph_bottom_l.jpg.metadata │ │ │ │ ├── iph_left.jpg │ │ │ │ ├── iph_left.jpg.metadata │ │ │ │ ├── iph_left_l.jpg │ │ │ │ ├── iph_left_l.jpg.metadata │ │ │ │ ├── iph_right.jpg │ │ │ │ ├── iph_right.jpg.metadata │ │ │ │ ├── iph_right_l.jpg │ │ │ │ ├── iph_right_l.jpg.metadata │ │ │ │ ├── iph_top.jpg │ │ │ │ ├── iph_top.jpg.metadata │ │ │ │ ├── iph_top_l.jpg │ │ │ │ ├── iph_top_l.jpg.metadata │ │ │ │ ├── no_pic.jpg │ │ │ │ └── no_pic.jpg.metadata │ │ │ ├── StyleSheets │ │ │ │ ├── pager.css │ │ │ │ └── pager.css.metadata │ │ │ └── UsingDocument │ │ │ ├── Views │ │ │ └── (untitled).view │ │ │ ├── WebContent │ │ │ └── WEB-INF │ │ │ │ ├── faces-config.xml │ │ │ │ └── xsp.properties │ │ │ ├── XPages │ │ │ ├── ConnectionsActivities.xsp │ │ │ ├── ConnectionsActivities.xsp.metadata │ │ │ ├── ConnectionsActivityStream.xsp │ │ │ ├── ConnectionsActivityStream.xsp.metadata │ │ │ ├── ConnectionsCommunities.xsp │ │ │ ├── ConnectionsCommunities.xsp.metadata │ │ │ ├── ConnectionsCommunitiesVCard.xsp │ │ │ ├── ConnectionsCommunitiesVCard.xsp.metadata │ │ │ ├── ConnectionsFiles.xsp │ │ │ ├── ConnectionsFiles.xsp.metadata │ │ │ ├── ConnectionsProfiles.xsp │ │ │ ├── ConnectionsProfiles.xsp.metadata │ │ │ ├── ConnectionsProfilesVCard.xsp │ │ │ ├── ConnectionsProfilesVCard.xsp.metadata │ │ │ ├── DropboxFiles.xsp │ │ │ ├── DropboxFiles.xsp.metadata │ │ │ ├── DropboxOAuth.xsp │ │ │ ├── DropboxOAuth.xsp.metadata │ │ │ ├── FacebookClientAPI.xsp │ │ │ ├── FacebookClientAPI.xsp.metadata │ │ │ ├── FacebookPlugins.xsp │ │ │ ├── FacebookPlugins.xsp.metadata │ │ │ ├── GenericRedmine.xsp │ │ │ ├── GenericRedmine.xsp.metadata │ │ │ ├── GenericStackoverflow.xsp │ │ │ ├── GenericStackoverflow.xsp.metadata │ │ │ ├── Home.xsp │ │ │ ├── Home.xsp.metadata │ │ │ ├── OSContainer.xsp │ │ │ ├── OSContainer.xsp.metadata │ │ │ ├── SBTActivityStreamsAPI.xsp │ │ │ ├── SBTActivityStreamsAPI.xsp.metadata │ │ │ ├── SBTActivityStreamsJson.xsp │ │ │ ├── SBTActivityStreamsJson.xsp.metadata │ │ │ ├── SBTActivityStreamsMobile.xsp │ │ │ ├── SBTActivityStreamsMobile.xsp.metadata │ │ │ ├── SBTActivityStreamsXml.xsp │ │ │ ├── SBTActivityStreamsXml.xsp.metadata │ │ │ ├── SBTOAuth.xsp │ │ │ ├── SBTOAuth.xsp.metadata │ │ │ ├── SametimeLiveName.xsp │ │ │ ├── SametimeLiveName.xsp.metadata │ │ │ ├── SametimeWidgets.xsp │ │ │ ├── SametimeWidgets.xsp.metadata │ │ │ ├── SmartCloudContacts.xsp │ │ │ ├── SmartCloudContacts.xsp.metadata │ │ │ ├── SmartCloudFiles.xsp │ │ │ ├── SmartCloudFiles.xsp.metadata │ │ │ ├── SmartCloudMyCommunities.xsp │ │ │ ├── SmartCloudMyCommunities.xsp.metadata │ │ │ ├── SmartCloudOAuth.xsp │ │ │ ├── SmartCloudOAuth.xsp.metadata │ │ │ ├── SmartCloudProfiles.xsp │ │ │ ├── SmartCloudProfiles.xsp.metadata │ │ │ ├── Twitter.xsp │ │ │ ├── Twitter.xsp.metadata │ │ │ ├── TwitterOAuth.xsp │ │ │ ├── TwitterOAuth.xsp.metadata │ │ │ ├── TwitterSearch.xsp │ │ │ ├── TwitterSearch.xsp.metadata │ │ │ ├── UtilFunctions.xsp │ │ │ ├── UtilFunctions.xsp.metadata │ │ │ ├── UtilHttpHeader.xsp │ │ │ ├── UtilHttpHeader.xsp.metadata │ │ │ ├── UtilJsonNavigator.xsp │ │ │ ├── UtilJsonNavigator.xsp.metadata │ │ │ ├── UtilUserBean.xsp │ │ │ ├── UtilUserBean.xsp.metadata │ │ │ ├── UtilXmlNavigator.xsp │ │ │ ├── UtilXmlNavigator.xsp.metadata │ │ │ ├── _BasicLogin.xsp │ │ │ ├── _BasicLogin.xsp.metadata │ │ │ ├── mobileSBTActivityStreamsMobile.xsp │ │ │ └── mobileSBTActivityStreamsMobile.xsp.metadata │ │ │ └── plugin.xml │ └── pom.xml ├── j2ee │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── acme │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── acme.sample.webapp │ │ │ ├── .checkstyle │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── .jsdtscope │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ ├── org.eclipse.wst.common.component │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ │ └── org.eclipse.wst.validation.prefs │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── ibm-web-bnd.xml │ │ │ │ ├── ibm-web-ext.xml │ │ │ │ ├── lib │ │ │ │ │ └── readme.txt │ │ │ │ ├── managed-beans.xml │ │ │ │ └── web.xml │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── Logo.png │ │ │ │ └── header.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── acme.airlines.js │ │ │ │ ├── flights.js │ │ │ │ ├── main.js │ │ │ │ ├── menu.js │ │ │ │ ├── templateUtils.js │ │ │ │ └── widgets │ │ │ │ │ ├── CheckInWidget.js │ │ │ │ │ ├── FlightRowWidget.js │ │ │ │ │ ├── FlightStatusWidget.js │ │ │ │ │ ├── FlightsWidget.js │ │ │ │ │ ├── HomeWidget.js │ │ │ │ │ ├── MenuViewWidget.js │ │ │ │ │ ├── MenuWidget.js │ │ │ │ │ ├── MyFlightRowWidget.js │ │ │ │ │ ├── MyFlightsWidget.js │ │ │ │ │ └── ServicesWidget.js │ │ │ │ └── pages │ │ │ │ └── tests │ │ │ │ ├── dataapp.html │ │ │ │ ├── testAcmeAirlinesAPI-GET.html │ │ │ │ └── testAcmeAirlinesAPI-POST.html │ │ ├── acme.social.sample.dataapp │ │ │ ├── .classpath │ │ │ ├── .factorypath │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── .jsdtscope │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ ├── org.eclipse.wst.common.component │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ │ └── org.eclipse.wst.validation.prefs │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── acme │ │ │ │ │ ├── dataapp │ │ │ │ │ ├── AirportCodes.java │ │ │ │ │ ├── FlightController.java │ │ │ │ │ ├── FlightState.java │ │ │ │ │ ├── Flights.java │ │ │ │ │ ├── MOTD.java │ │ │ │ │ └── MyFlights.java │ │ │ │ │ ├── interfaces │ │ │ │ │ ├── Operation.java │ │ │ │ │ └── UserDirectory.java │ │ │ │ │ └── sample │ │ │ │ │ └── services │ │ │ │ │ ├── DataServlet.java │ │ │ │ │ └── FlightsServlet.java │ │ │ │ ├── resources │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── acme │ │ │ │ │ └── dataapp │ │ │ │ │ ├── airportcodes.json │ │ │ │ │ ├── flightcontroller.json │ │ │ │ │ ├── flights.json │ │ │ │ │ ├── motd.json │ │ │ │ │ └── myflights.json │ │ │ │ └── webapp │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── WEB-INF │ │ │ │ ├── ibm-web-ext.xml │ │ │ │ ├── lib │ │ │ │ │ └── wink-json4j-1.2.1-incubating.jar │ │ │ │ └── web.xml │ │ │ │ └── index.html │ │ ├── acme.social.sample.ear │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ ├── org.eclipse.wst.common.component │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ └── org.eclipse.wst.validation.prefs │ │ │ ├── META-INF │ │ │ │ └── .gitignore │ │ │ └── pom.xml │ │ ├── acme.social.sample.webapp │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── .jsdtscope │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ ├── org.eclipse.wst.common.component │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ │ └── org.eclipse.wst.validation.prefs │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── webapp │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── WEB-INF │ │ │ │ ├── ibm-web-bnd.xml │ │ │ │ ├── ibm-web-ext.xml │ │ │ │ ├── lib │ │ │ │ │ └── readme.txt │ │ │ │ ├── managed-beans.xml │ │ │ │ └── web.xml │ │ │ │ ├── favicon.ico │ │ │ │ ├── gadgets │ │ │ │ └── airlines │ │ │ │ │ ├── airlines.xml │ │ │ │ │ ├── ee.html │ │ │ │ │ └── home.html │ │ │ │ ├── images │ │ │ │ ├── Logo.png │ │ │ │ └── header.png │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ ├── activitystream.js │ │ │ │ ├── eeMain.js │ │ │ │ ├── email.js │ │ │ │ ├── gadgetMain.js │ │ │ │ ├── login.js │ │ │ │ ├── main.js │ │ │ │ ├── menu.js │ │ │ │ └── widgets │ │ │ │ ├── FlightRowWidget.js │ │ │ │ ├── FlightsWidget.js │ │ │ │ ├── MyFlightsWidget.js │ │ │ │ └── gadgets │ │ │ │ └── airlines │ │ │ │ ├── GadgetApprovalWidget.js │ │ │ │ ├── GadgetCheckInWidget.js │ │ │ │ ├── GadgetFlightStatusWidget.js │ │ │ │ ├── GadgetFlightsWidget.js │ │ │ │ ├── GadgetMenuViewWidget.js │ │ │ │ ├── GadgetMenuWidget.js │ │ │ │ ├── GadgetMyFlightsWidget.js │ │ │ │ └── GadgetServicesWidget.js │ │ └── pom.xml │ ├── pom.xml │ ├── readme.txt │ ├── snippets │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── com.ibm.sbt.automation.core │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ ├── .jazzignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ └── org.eclipse.m2e.core.prefs │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ibm │ │ │ │ │ └── sbt │ │ │ │ │ └── automation │ │ │ │ │ └── core │ │ │ │ │ ├── environment │ │ │ │ │ ├── AcmeEnvironment.java │ │ │ │ │ ├── PlaygroundEnvironment.java │ │ │ │ │ ├── SbtWebEnvironment.java │ │ │ │ │ ├── TestEnvironment.java │ │ │ │ │ └── TestEnvironmentFactory.java │ │ │ │ │ ├── test │ │ │ │ │ ├── BaseAcmeTest.java │ │ │ │ │ ├── BaseActivityStreamTest.java │ │ │ │ │ ├── BaseApiTest.java │ │ │ │ │ ├── BaseAuthJavaServiceTest.java │ │ │ │ │ ├── BaseAuthServiceTest.java │ │ │ │ │ ├── BaseFileLister.java │ │ │ │ │ ├── BaseGridTest.java │ │ │ │ │ ├── BaseGridTestSetup.java │ │ │ │ │ ├── BaseJavaServiceTest.java │ │ │ │ │ ├── BaseSampleFrameworkTest.java │ │ │ │ │ ├── BaseServiceTest.java │ │ │ │ │ ├── BaseTest.java │ │ │ │ │ ├── BaseVCardTest.java │ │ │ │ │ ├── BaseViewTest.java │ │ │ │ │ ├── BaseWidgetTest.java │ │ │ │ │ ├── BaseWrapperTest.java │ │ │ │ │ ├── FlexibleTest.java │ │ │ │ │ ├── connections │ │ │ │ │ │ ├── BaseActivitiesTest.java │ │ │ │ │ │ ├── BaseActivityStreamsTest.java │ │ │ │ │ │ ├── BaseCommunitiesGridTest.java │ │ │ │ │ │ ├── BaseCommunitiesTest.java │ │ │ │ │ │ ├── BaseFilesTest.java │ │ │ │ │ │ ├── BaseForumsTest.java │ │ │ │ │ │ ├── BaseProfilesTest.java │ │ │ │ │ │ ├── BaseSearchTest.java │ │ │ │ │ │ └── BaseWikisTest.java │ │ │ │ │ ├── pageobjects │ │ │ │ │ │ ├── AcmeSample │ │ │ │ │ │ │ ├── AcmeFlightsPage.java │ │ │ │ │ │ │ ├── AcmeMyFlightPage.java │ │ │ │ │ │ │ ├── AcmeNavigationPage.java │ │ │ │ │ │ │ └── AcmeResultPage.java │ │ │ │ │ │ ├── BaseResultPage.java │ │ │ │ │ │ ├── GridPagerPage.java │ │ │ │ │ │ ├── GridResultPage.java │ │ │ │ │ │ ├── GridSorterPage.java │ │ │ │ │ │ ├── JavaScriptPreviewPage.java │ │ │ │ │ │ ├── JavaScriptTesterPage.java │ │ │ │ │ │ ├── ListResultPage.java │ │ │ │ │ │ ├── PanelResultPage.java │ │ │ │ │ │ ├── PlaygroundResultPage.java │ │ │ │ │ │ ├── ResultPage.java │ │ │ │ │ │ ├── SampleFrameworkResultPage.java │ │ │ │ │ │ ├── SbtWebResultPage.java │ │ │ │ │ │ ├── VCardResultPage.java │ │ │ │ │ │ └── WrapperResultPage.java │ │ │ │ │ └── smartcloud │ │ │ │ │ │ └── BaseProfilesTest.java │ │ │ │ │ └── utils │ │ │ │ │ └── Trace.java │ │ │ │ └── resources │ │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── sbt │ │ │ │ └── automation │ │ │ │ └── core │ │ │ │ └── environment │ │ │ │ └── TestEnvironment.properties │ │ ├── com.ibm.sbt.automation.test │ │ │ ├── .classpath │ │ │ ├── .jazzignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ └── org.eclipse.m2e.core.prefs │ │ │ ├── config │ │ │ │ └── test.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── ibm │ │ │ │ │ │ └── sbt │ │ │ │ │ │ ├── AllTests.java │ │ │ │ │ │ ├── CheckinTestSuite.java │ │ │ │ │ │ ├── HeadlessTestsSuite.java │ │ │ │ │ │ ├── SbtTestSuite.java │ │ │ │ │ │ ├── SbtxTestSuite.java │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── AcmeTestSuite.java │ │ │ │ │ │ ├── ControlsTestSuite.java │ │ │ │ │ │ ├── GridsTestSuite.java │ │ │ │ │ │ ├── JavaScriptTestSuite.java │ │ │ │ │ │ ├── JavaTestSuite.java │ │ │ │ │ │ ├── MarksTestSuite.java │ │ │ │ │ │ ├── RefactorTestSuite.java │ │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── ActivitiesGridTestSuite.java │ │ │ │ │ │ ├── ActivityStreamTestSuite.java │ │ │ │ │ │ ├── BookmarksGridTestSuite.java │ │ │ │ │ │ ├── CommunitiesGridTestSuite.java │ │ │ │ │ │ ├── FilesGridTestSuite.java │ │ │ │ │ │ ├── ForumGridTestSuite.java │ │ │ │ │ │ ├── GridTestSuite.java │ │ │ │ │ │ ├── MySocialGridTestSuite.java │ │ │ │ │ │ ├── ProfilesGridTestSuite.java │ │ │ │ │ │ ├── SearchGridTestSuite.java │ │ │ │ │ │ ├── VCardTestSuite.java │ │ │ │ │ │ ├── ViewTestSuite.java │ │ │ │ │ │ ├── WrapperTestSuite.java │ │ │ │ │ │ ├── activitystream │ │ │ │ │ │ │ ├── CommunityRecentUpdates.java │ │ │ │ │ │ │ ├── CommunityStatusUpdates.java │ │ │ │ │ │ │ ├── HomepageConfig.java │ │ │ │ │ │ │ ├── MultipleViews.java │ │ │ │ │ │ │ ├── SimpleConfig.java │ │ │ │ │ │ │ ├── SimpleStream.java │ │ │ │ │ │ │ ├── SimpleStreamAllExtensions.java │ │ │ │ │ │ │ └── UpdateswithTag.java │ │ │ │ │ │ ├── communities │ │ │ │ │ │ │ ├── CommunitiesControlsTestSuite.java │ │ │ │ │ │ │ └── CreateMemberList.java │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ ├── CommunityRenderer.java │ │ │ │ │ │ │ ├── ConnectionsRenderer.java │ │ │ │ │ │ │ ├── Grid.java │ │ │ │ │ │ │ ├── TemplatedGridRow.java │ │ │ │ │ │ │ ├── actvities │ │ │ │ │ │ │ │ ├── BootstrapMyActivities.java │ │ │ │ │ │ │ │ └── MyActivities.java │ │ │ │ │ │ │ ├── bookmarks │ │ │ │ │ │ │ │ ├── AllBookmarks.java │ │ │ │ │ │ │ │ ├── BootstrapAllBookmarks.java │ │ │ │ │ │ │ │ ├── BootstrapMyBookmarks.java │ │ │ │ │ │ │ │ ├── BootstrapPublicBookmarks.java │ │ │ │ │ │ │ │ ├── MyBookmarks.java │ │ │ │ │ │ │ │ └── PublicBookmarks.java │ │ │ │ │ │ │ ├── communities │ │ │ │ │ │ │ │ ├── AddMembersToCommunities.java │ │ │ │ │ │ │ │ ├── BootstrapCommunitiesGrid.java │ │ │ │ │ │ │ │ ├── CommunityActionGrid.java │ │ │ │ │ │ │ │ ├── CommunityMembersGrid.java │ │ │ │ │ │ │ │ ├── CustomTemplateCommunity.java │ │ │ │ │ │ │ │ ├── MyCommunitiesGrid.java │ │ │ │ │ │ │ │ ├── OneClickToJoin.java │ │ │ │ │ │ │ │ ├── PublicCommunitiesDijit.java │ │ │ │ │ │ │ │ └── PublicCommunitiesGrid.java │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ │ ├── FileAction.java │ │ │ │ │ │ │ │ ├── FileComments.java │ │ │ │ │ │ │ │ ├── FileShares.java │ │ │ │ │ │ │ │ ├── MyActiveFolders.java │ │ │ │ │ │ │ │ ├── MyFiles.java │ │ │ │ │ │ │ │ ├── MyFilesBootstrap.java │ │ │ │ │ │ │ │ ├── MyFilesDijit.java │ │ │ │ │ │ │ │ ├── MyFolders.java │ │ │ │ │ │ │ │ ├── PinnedFiles.java │ │ │ │ │ │ │ │ ├── PinnedFolders.java │ │ │ │ │ │ │ │ ├── PublicFiles.java │ │ │ │ │ │ │ │ ├── PublicFolders.java │ │ │ │ │ │ │ │ └── RecycledFiles.java │ │ │ │ │ │ │ ├── forum │ │ │ │ │ │ │ │ ├── BootstrapMyForums.java │ │ │ │ │ │ │ │ ├── BootstrapMyTopics.java │ │ │ │ │ │ │ │ ├── BootstrapPublicForums.java │ │ │ │ │ │ │ │ ├── MyForums.java │ │ │ │ │ │ │ │ ├── MyTopics.java │ │ │ │ │ │ │ │ └── PublicForums.java │ │ │ │ │ │ │ ├── profiles │ │ │ │ │ │ │ │ ├── Colleagues.java │ │ │ │ │ │ │ │ ├── CommunityMembers.java │ │ │ │ │ │ │ │ ├── MyColleagues.java │ │ │ │ │ │ │ │ ├── MyProfilePanel.java │ │ │ │ │ │ │ │ ├── ProfileAction.java │ │ │ │ │ │ │ │ ├── ProfilePanel.java │ │ │ │ │ │ │ │ ├── ProfileSearch.java │ │ │ │ │ │ │ │ ├── ProfileTagSearch.java │ │ │ │ │ │ │ │ ├── ProfileTags.java │ │ │ │ │ │ │ │ └── ReportingChain.java │ │ │ │ │ │ │ └── search │ │ │ │ │ │ │ │ ├── SearchActivitiesPublic.java │ │ │ │ │ │ │ │ ├── SearchAll.java │ │ │ │ │ │ │ │ ├── SearchBlogsPublic.java │ │ │ │ │ │ │ │ ├── SearchBookmarks.java │ │ │ │ │ │ │ │ ├── SearchCommunitiesPublic.java │ │ │ │ │ │ │ │ ├── SearchFiles.java │ │ │ │ │ │ │ │ ├── SearchForums.java │ │ │ │ │ │ │ │ ├── SearchProfilesPublic.java │ │ │ │ │ │ │ │ ├── SearchStatusUpdates.java │ │ │ │ │ │ │ │ └── SearchWikis.java │ │ │ │ │ │ ├── vcard │ │ │ │ │ │ │ ├── CommunityVCard.java │ │ │ │ │ │ │ ├── ProfileVCard.java │ │ │ │ │ │ │ ├── ProfileVCardEmail.java │ │ │ │ │ │ │ ├── ProfileVCardInline.java │ │ │ │ │ │ │ └── ProfileVCards.java │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── ActionBar.java │ │ │ │ │ │ │ ├── Section.java │ │ │ │ │ │ │ ├── ShowMessageView.java │ │ │ │ │ │ │ ├── TabBar.java │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ │ ├── AddTagsWidget.java │ │ │ │ │ │ │ │ ├── FileActions.java │ │ │ │ │ │ │ │ ├── FilesView.java │ │ │ │ │ │ │ │ └── UploadFileWidget.java │ │ │ │ │ │ │ └── forums │ │ │ │ │ │ │ │ └── CreateForumWidget.java │ │ │ │ │ │ ├── widget │ │ │ │ │ │ │ └── WidgetBaseClassTest.java │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ ├── FileGridWrapper.java │ │ │ │ │ │ │ └── ProfileCardWrapper.java │ │ │ │ │ │ ├── java │ │ │ │ │ │ ├── AuthenticationTestSuite.java │ │ │ │ │ │ ├── ConnectionsTestSuite.java │ │ │ │ │ │ ├── SmartCloudTestSuite.java │ │ │ │ │ │ ├── authentication │ │ │ │ │ │ │ ├── GetMyCommunities.java │ │ │ │ │ │ │ └── GetMyProfile.java │ │ │ │ │ │ ├── connections │ │ │ │ │ │ │ ├── ActivitiesTestSuite.java │ │ │ │ │ │ │ ├── ActivityStreamsTestSuite.java │ │ │ │ │ │ │ ├── BlogsTestSuite.java │ │ │ │ │ │ │ ├── CommunitiesTestSuite.java │ │ │ │ │ │ │ ├── FilesTestSuite.java │ │ │ │ │ │ │ ├── ForumsTestSuite.java │ │ │ │ │ │ │ ├── ProfilesTestSuite.java │ │ │ │ │ │ │ ├── SearchTestSuite.java │ │ │ │ │ │ │ ├── activities │ │ │ │ │ │ │ │ ├── AddMember.java │ │ │ │ │ │ │ │ ├── ChangeActivityNodeType.java │ │ │ │ │ │ │ │ ├── CreateActivity.java │ │ │ │ │ │ │ │ ├── CreateChatNode.java │ │ │ │ │ │ │ │ ├── CreateEmailNode.java │ │ │ │ │ │ │ │ ├── CreateEntryNode.java │ │ │ │ │ │ │ │ ├── CreateReplyNode.java │ │ │ │ │ │ │ │ ├── CreateSectionNode.java │ │ │ │ │ │ │ │ ├── CreateTodoNode.java │ │ │ │ │ │ │ │ ├── DeleteActivity.java │ │ │ │ │ │ │ │ ├── DeleteActivityNode.java │ │ │ │ │ │ │ │ ├── DeleteMember.java │ │ │ │ │ │ │ │ ├── GetActivitiesInTrash.java │ │ │ │ │ │ │ │ ├── GetActivity.java │ │ │ │ │ │ │ │ ├── GetActivityNode.java │ │ │ │ │ │ │ │ ├── GetActivityNodeWithFields.java │ │ │ │ │ │ │ │ ├── GetActivityNodesInTrash.java │ │ │ │ │ │ │ │ ├── GetActivityNodesOfAnActivity.java │ │ │ │ │ │ │ │ ├── GetAllActivities.java │ │ │ │ │ │ │ │ ├── GetAllTags.java │ │ │ │ │ │ │ │ ├── GetAllTodos.java │ │ │ │ │ │ │ │ ├── GetCompletedActivities.java │ │ │ │ │ │ │ │ ├── GetMember.java │ │ │ │ │ │ │ │ ├── GetMembers.java │ │ │ │ │ │ │ │ ├── GetMyActivities.java │ │ │ │ │ │ │ │ ├── MoveEntryToSection.java │ │ │ │ │ │ │ │ ├── RestoreActivity.java │ │ │ │ │ │ │ │ ├── RestoreActivityNode.java │ │ │ │ │ │ │ │ ├── UpdateActivity.java │ │ │ │ │ │ │ │ ├── UpdateActivityNode.java │ │ │ │ │ │ │ │ └── UpdateMember.java │ │ │ │ │ │ │ ├── activitystreams │ │ │ │ │ │ │ │ ├── ActionableView.java │ │ │ │ │ │ │ │ ├── AllUpdates.java │ │ │ │ │ │ │ │ ├── CommunitiesIFollow.java │ │ │ │ │ │ │ │ ├── GetStreamEntities.java │ │ │ │ │ │ │ │ ├── MyNetworkUpdates.java │ │ │ │ │ │ │ │ ├── NotificationsForMe.java │ │ │ │ │ │ │ │ ├── NotificationsFromMe.java │ │ │ │ │ │ │ │ ├── PeopleIFollow.java │ │ │ │ │ │ │ │ ├── PostEvent.java │ │ │ │ │ │ │ │ ├── PostEventUsingPopulator.java │ │ │ │ │ │ │ │ ├── PostEventWithEmbeddedExperience.java │ │ │ │ │ │ │ │ ├── PostStatusUpdate.java │ │ │ │ │ │ │ │ ├── ResponseToMyContent.java │ │ │ │ │ │ │ │ ├── SavedView.java │ │ │ │ │ │ │ │ ├── Search.java │ │ │ │ │ │ │ │ ├── SearchByTag.java │ │ │ │ │ │ │ │ ├── UpdatesFromSpecificCommunity.java │ │ │ │ │ │ │ │ └── UpdatesFromUser.java │ │ │ │ │ │ │ ├── blogs │ │ │ │ │ │ │ │ ├── AllBlogs.java │ │ │ │ │ │ │ │ ├── AllComments.java │ │ │ │ │ │ │ │ ├── AllPosts.java │ │ │ │ │ │ │ │ ├── AllTags.java │ │ │ │ │ │ │ │ ├── BlogComments.java │ │ │ │ │ │ │ │ ├── BlogPosts.java │ │ │ │ │ │ │ │ ├── BlogTags.java │ │ │ │ │ │ │ │ ├── CreateBlog.java │ │ │ │ │ │ │ │ ├── CreateBlogComment.java │ │ │ │ │ │ │ │ ├── CreateBlogPost.java │ │ │ │ │ │ │ │ ├── FeaturedBlogs.java │ │ │ │ │ │ │ │ ├── FeaturedPosts.java │ │ │ │ │ │ │ │ ├── GetBlog.java │ │ │ │ │ │ │ │ ├── GetBlogComment.java │ │ │ │ │ │ │ │ ├── GetBlogPost.java │ │ │ │ │ │ │ │ ├── MyBlogs.java │ │ │ │ │ │ │ │ ├── RecommendPost.java │ │ │ │ │ │ │ │ ├── RecommendedPosts.java │ │ │ │ │ │ │ │ ├── UnrecommendPost.java │ │ │ │ │ │ │ │ ├── UpdateBlog.java │ │ │ │ │ │ │ │ └── UpdateBlogPost.java │ │ │ │ │ │ │ ├── communities │ │ │ │ │ │ │ │ ├── AcceptInvite.java │ │ │ │ │ │ │ │ ├── AddMember.java │ │ │ │ │ │ │ │ ├── CreateCommunity.java │ │ │ │ │ │ │ │ ├── CreateForumTopic.java │ │ │ │ │ │ │ │ ├── CreateInvite.java │ │ │ │ │ │ │ │ ├── DeclineInvite.java │ │ │ │ │ │ │ │ ├── GetBookmarks.java │ │ │ │ │ │ │ │ ├── GetCommunity.java │ │ │ │ │ │ │ │ ├── GetCommunityDataByEntity.java │ │ │ │ │ │ │ │ ├── GetForumTopics.java │ │ │ │ │ │ │ │ ├── GetForums.java │ │ │ │ │ │ │ │ ├── GetInvite.java │ │ │ │ │ │ │ │ ├── GetMembers.java │ │ │ │ │ │ │ │ ├── GetMyCommunities.java │ │ │ │ │ │ │ │ ├── GetMyInvites.java │ │ │ │ │ │ │ │ ├── GetPublicCommunities.java │ │ │ │ │ │ │ │ ├── GetSubCommunities.java │ │ │ │ │ │ │ │ ├── RemoveCommunity.java │ │ │ │ │ │ │ │ ├── RemoveMember.java │ │ │ │ │ │ │ │ ├── UpdateCommunity.java │ │ │ │ │ │ │ │ ├── UpdateCommunityLogo.java │ │ │ │ │ │ │ │ └── UpdateMember.java │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ │ ├── AddCommentToFile.java │ │ │ │ │ │ │ │ ├── AddGetCommunityFileComments.java │ │ │ │ │ │ │ │ ├── AddRemoveTag.java │ │ │ │ │ │ │ │ ├── CreateDeleteFile.java │ │ │ │ │ │ │ │ ├── CreateFolder.java │ │ │ │ │ │ │ │ ├── DownloadUploadCommunityFile.java │ │ │ │ │ │ │ │ ├── GetCommunityFiles.java │ │ │ │ │ │ │ │ ├── GetFileComments.java │ │ │ │ │ │ │ │ ├── GetFilesSharedByMe.java │ │ │ │ │ │ │ │ ├── GetFilesSharedWithMe.java │ │ │ │ │ │ │ │ ├── GetMyFiles.java │ │ │ │ │ │ │ │ ├── GetMyFolders.java │ │ │ │ │ │ │ │ ├── LockUnlockFile.java │ │ │ │ │ │ │ │ ├── UpdateCommunityFile.java │ │ │ │ │ │ │ │ ├── UpdateFile.java │ │ │ │ │ │ │ │ ├── UploadFile.java │ │ │ │ │ │ │ │ ├── UploadNewVersionOfFile.java │ │ │ │ │ │ │ │ └── UploadPublicFile.java │ │ │ │ │ │ │ ├── forums │ │ │ │ │ │ │ │ ├── CreateCommunityForumReply.java │ │ │ │ │ │ │ │ ├── CreateCommunityForumTopic.java │ │ │ │ │ │ │ │ ├── CreateForum.java │ │ │ │ │ │ │ │ ├── CreateReply.java │ │ │ │ │ │ │ │ ├── CreateTopic.java │ │ │ │ │ │ │ │ ├── ForumById.java │ │ │ │ │ │ │ │ ├── ForumTopicsTags.java │ │ │ │ │ │ │ │ ├── ForumsTags.java │ │ │ │ │ │ │ │ ├── GetMyForumEntities.java │ │ │ │ │ │ │ │ ├── GetRecommendations.java │ │ │ │ │ │ │ │ ├── MyForums.java │ │ │ │ │ │ │ │ ├── MyTopics.java │ │ │ │ │ │ │ │ ├── PublicForums.java │ │ │ │ │ │ │ │ ├── RemoveForum.java │ │ │ │ │ │ │ │ ├── RemoveReply.java │ │ │ │ │ │ │ │ ├── RemoveTopic.java │ │ │ │ │ │ │ │ ├── RepliesForATopic.java │ │ │ │ │ │ │ │ ├── ReplyById.java │ │ │ │ │ │ │ │ ├── TopicById.java │ │ │ │ │ │ │ │ ├── TopicsForAForum.java │ │ │ │ │ │ │ │ ├── UpdateForum.java │ │ │ │ │ │ │ │ ├── UpdateReply.java │ │ │ │ │ │ │ │ └── UpdateTopic.java │ │ │ │ │ │ │ ├── profiles │ │ │ │ │ │ │ │ ├── CheckColleague.java │ │ │ │ │ │ │ │ ├── GetColleagues.java │ │ │ │ │ │ │ │ ├── GetColleaguesByProfileEntity.java │ │ │ │ │ │ │ │ ├── GetCommonColleagues.java │ │ │ │ │ │ │ │ ├── GetMyProfile.java │ │ │ │ │ │ │ │ ├── GetName.java │ │ │ │ │ │ │ │ ├── GetPeopleManaged.java │ │ │ │ │ │ │ │ ├── GetPhoneNumber.java │ │ │ │ │ │ │ │ ├── GetProfileUrl.java │ │ │ │ │ │ │ │ ├── GetPronunciationUrl.java │ │ │ │ │ │ │ │ ├── GetReportingChain.java │ │ │ │ │ │ │ │ ├── GetSummary.java │ │ │ │ │ │ │ │ ├── GetTags.java │ │ │ │ │ │ │ │ ├── GetThumbnailUrl.java │ │ │ │ │ │ │ │ ├── GetTitle.java │ │ │ │ │ │ │ │ ├── SearchProfiles.java │ │ │ │ │ │ │ │ ├── UpdatePhoneNumber.java │ │ │ │ │ │ │ │ └── UpdateProfilePhoto.java │ │ │ │ │ │ │ └── search │ │ │ │ │ │ │ │ ├── BlogConstraint.java │ │ │ │ │ │ │ │ ├── CommunityFullText.java │ │ │ │ │ │ │ │ ├── CommunityTagSearch.java │ │ │ │ │ │ │ │ ├── GetPeople.java │ │ │ │ │ │ │ │ ├── GetResults.java │ │ │ │ │ │ │ │ ├── GetResultsByTag.java │ │ │ │ │ │ │ │ └── GetScopes.java │ │ │ │ │ │ └── smartcloud │ │ │ │ │ │ │ ├── ActivitiesTestSuite.java │ │ │ │ │ │ │ ├── CommunitiesTestSuite.java │ │ │ │ │ │ │ ├── FilesTestSuite.java │ │ │ │ │ │ │ ├── ProfilesTestSuite.java │ │ │ │ │ │ │ └── profiles │ │ │ │ │ │ │ ├── GetContactByGUID.java │ │ │ │ │ │ │ ├── GetMyContacts.java │ │ │ │ │ │ │ └── OAuth1SmartCloudProfiles.java │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── AuthenticationTestSuite.java │ │ │ │ │ │ ├── BaseTestSuite.java │ │ │ │ │ │ ├── ConnectionsTestSuite.java │ │ │ │ │ │ ├── SmartCloudTestSuite.java │ │ │ │ │ │ ├── SmartCloudTestSuiteV20.java │ │ │ │ │ │ ├── ToolkitTestSuite.java │ │ │ │ │ │ ├── authentication │ │ │ │ │ │ │ ├── Authentication.java │ │ │ │ │ │ │ ├── BasicDialog.java │ │ │ │ │ │ │ ├── BasicMainWindow.java │ │ │ │ │ │ │ ├── BasicPopup.java │ │ │ │ │ │ │ ├── LoginWithDelay.java │ │ │ │ │ │ │ ├── OAuth10MainWindow.java │ │ │ │ │ │ │ ├── OAuth10Popup.java │ │ │ │ │ │ │ ├── OAuth20MainWindow.java │ │ │ │ │ │ │ └── OAuth20Popup.java │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── AtomEntity.java │ │ │ │ │ │ │ ├── BaseEntity.java │ │ │ │ │ │ │ ├── BaseService.java │ │ │ │ │ │ │ ├── BaseServiceConstructUrl.java │ │ │ │ │ │ │ ├── BaseServiceDeleteEntity.java │ │ │ │ │ │ │ ├── BaseServiceEndpoint.java │ │ │ │ │ │ │ ├── BaseServiceGetEntities.java │ │ │ │ │ │ │ ├── BaseServiceGetEntity.java │ │ │ │ │ │ │ ├── BaseServiceUpdateEntity.java │ │ │ │ │ │ │ ├── BaseServiceValidation.java │ │ │ │ │ │ │ ├── CommunityEntryDataHandler.java │ │ │ │ │ │ │ ├── CommunityFeedDataHandler.java │ │ │ │ │ │ │ ├── CommunityInvitesFeedDataHandler.java │ │ │ │ │ │ │ ├── CommunityMembersFeedDataHandler.java │ │ │ │ │ │ │ ├── ConnectionsServices.java │ │ │ │ │ │ │ ├── VCardDataHandler.java │ │ │ │ │ │ │ └── XmlDataHandlerDate.java │ │ │ │ │ │ ├── connections │ │ │ │ │ │ │ ├── ActivitiesRestTestSuite.java │ │ │ │ │ │ │ ├── ActivitiesStreamsTestSuite.java │ │ │ │ │ │ │ ├── ActivitiesTestSuite.java │ │ │ │ │ │ │ ├── BlogsTestSuite.java │ │ │ │ │ │ │ ├── BookmarksRestTestSuite.java │ │ │ │ │ │ │ ├── BookmarksTestSuite.java │ │ │ │ │ │ │ ├── CommonServicesTestSuite.java │ │ │ │ │ │ │ ├── CommunitiesOA2TestSuite.java │ │ │ │ │ │ │ ├── CommunitiesRestTestSuite.java │ │ │ │ │ │ │ ├── CommunitiesTestSuite.java │ │ │ │ │ │ │ ├── FilesTestSuite.java │ │ │ │ │ │ │ ├── FollowTestSuite.java │ │ │ │ │ │ │ ├── ForumsRestTestSuite.java │ │ │ │ │ │ │ ├── ForumsTestSuite.java │ │ │ │ │ │ │ ├── IdeationBlogTestSuite.java │ │ │ │ │ │ │ ├── ProfilesRestTestSuite.java │ │ │ │ │ │ │ ├── ProfilesTestSuite.java │ │ │ │ │ │ │ ├── SearchRestTestSuite.java │ │ │ │ │ │ │ ├── SearchTestSuite.java │ │ │ │ │ │ │ ├── WikisTestSuite.java │ │ │ │ │ │ │ ├── activities │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ │ ├── AddMember.java │ │ │ │ │ │ │ │ │ ├── ChangeEntryType.java │ │ │ │ │ │ │ │ │ ├── CreateActivity.java │ │ │ │ │ │ │ │ │ ├── CreateActivityNode.java │ │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivity.java │ │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivityNode.java │ │ │ │ │ │ │ │ │ ├── DeleteMember.java │ │ │ │ │ │ │ │ │ ├── GetActivitiesInTrash.java │ │ │ │ │ │ │ │ │ ├── GetActivity.java │ │ │ │ │ │ │ │ │ ├── GetActivityNode.java │ │ │ │ │ │ │ │ │ ├── GetActivityNodeTags.java │ │ │ │ │ │ │ │ │ ├── GetActivityNodes.java │ │ │ │ │ │ │ │ │ ├── GetActivityNodesInTrash.java │ │ │ │ │ │ │ │ │ ├── GetActivityTags.java │ │ │ │ │ │ │ │ │ ├── GetAllActivities.java │ │ │ │ │ │ │ │ │ ├── GetAllTags.java │ │ │ │ │ │ │ │ │ ├── GetAllToDos.java │ │ │ │ │ │ │ │ │ ├── GetCompletedActivities.java │ │ │ │ │ │ │ │ │ ├── GetMember.java │ │ │ │ │ │ │ │ │ ├── GetMembers.java │ │ │ │ │ │ │ │ │ ├── GetMyActivities.java │ │ │ │ │ │ │ │ │ ├── MoveEntryToSection.java │ │ │ │ │ │ │ │ │ ├── UpdateActivity.java │ │ │ │ │ │ │ │ │ ├── UpdateActivityNode.java │ │ │ │ │ │ │ │ │ └── UpdateMember.java │ │ │ │ │ │ │ │ └── rest │ │ │ │ │ │ │ │ │ ├── GetMyActivities.java │ │ │ │ │ │ │ │ │ └── GetMyActivitiesXml.java │ │ │ │ │ │ │ ├── activitystreams │ │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ │ ├── GetMyActionableView.java │ │ │ │ │ │ │ │ │ ├── GetMySavedView.java │ │ │ │ │ │ │ │ │ ├── GetMyStatusUpdates.java │ │ │ │ │ │ │ │ │ ├── GetNotificationsForMe.java │ │ │ │ │ │ │ │ │ ├── GetNotificationsFromMe.java │ │ │ │ │ │ │ │ │ ├── GetPublicActivityStream.java │ │ │ │ │ │ │ │ │ ├── GetResponsesToMyContent.java │ │ │ │ │ │ │ │ │ ├── GetUpdatesFromACommunity.java │ │ │ │ │ │ │ │ │ ├── GetUpdatesFromAUser.java │ │ │ │ │ │ │ │ │ ├── GetUpdatesFromCommunitiesIFollow.java │ │ │ │ │ │ │ │ │ ├── GetUpdatesFromMyNetwork.java │ │ │ │ │ │ │ │ │ ├── GetUpdatesFromPeopleIFollow.java │ │ │ │ │ │ │ │ │ ├── PostAStatusUpdate.java │ │ │ │ │ │ │ │ │ ├── PostEntry.java │ │ │ │ │ │ │ │ │ ├── PostEntryIntoACommunityStream.java │ │ │ │ │ │ │ │ │ ├── PostEntryWithEmbeddedExperience.java │ │ │ │ │ │ │ │ │ ├── SearchByFilters.java │ │ │ │ │ │ │ │ │ ├── SearchByQuery.java │ │ │ │ │ │ │ │ │ └── SearchByTags.java │ │ │ │ │ │ │ ├── blogs │ │ │ │ │ │ │ │ ├── GetBlogComments.java │ │ │ │ │ │ │ │ ├── GetBlogPosts.java │ │ │ │ │ │ │ │ ├── GetBlogs.java │ │ │ │ │ │ │ │ ├── GetBlogsComments.java │ │ │ │ │ │ │ │ ├── GetBlogsPosts.java │ │ │ │ │ │ │ │ ├── GetFeaturedBlogs.java │ │ │ │ │ │ │ │ ├── GetFeaturedPosts.java │ │ │ │ │ │ │ │ ├── GetMyBlogs.java │ │ │ │ │ │ │ │ ├── GetRecommendedPosts.java │ │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ │ ├── CreateBlog.java │ │ │ │ │ │ │ │ │ ├── CreateComment.java │ │ │ │ │ │ │ │ │ ├── CreatePost.java │ │ │ │ │ │ │ │ │ ├── DeleteBlog.java │ │ │ │ │ │ │ │ │ ├── DeleteComment.java │ │ │ │ │ │ │ │ │ ├── DeletePost.java │ │ │ │ │ │ │ │ │ ├── GetAllBlogComments.java │ │ │ │ │ │ │ │ │ ├── GetAllBlogPosts.java │ │ │ │ │ │ │ │ │ ├── GetAllBlogTags.java │ │ │ │ │ │ │ │ │ ├── GetAllBlogs.java │ │ │ │ │ │ │ │ │ ├── GetBlog.java │ │ │ │ │ │ │ │ │ ├── GetBlogComments.java │ │ │ │ │ │ │ │ │ ├── GetBlogPost.java │ │ │ │ │ │ │ │ │ ├── GetBlogPostRecommenders.java │ │ │ │ │ │ │ │ │ ├── GetBlogPosts.java │ │ │ │ │ │ │ │ │ ├── GetBlogTags.java │ │ │ │ │ │ │ │ │ ├── GetComment.java │ │ │ │ │ │ │ │ │ ├── GetFeaturedBlogs.java │ │ │ │ │ │ │ │ │ ├── GetMyBlogs.java │ │ │ │ │ │ │ │ │ ├── RecommendPost.java │ │ │ │ │ │ │ │ │ ├── UnRecommendPost.java │ │ │ │ │ │ │ │ │ ├── UpdateBlog.java │ │ │ │ │ │ │ │ │ └── UpdatePost.java │ │ │ │ │ │ │ ├── bookmarks │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ │ ├── CreateBookmark.java │ │ │ │ │ │ │ │ │ ├── DeleteBookmark.java │ │ │ │ │ │ │ │ │ ├── GetAllBookmarks.java │ │ │ │ │ │ │ │ │ ├── GetBookmark.java │ │ │ │ │ │ │ │ │ ├── GetBookmarksTags.java │ │ │ │ │ │ │ │ │ └── UpdateBookmark.java │ │ │ │ │ │ │ │ └── rest │ │ │ │ │ │ │ │ │ ├── GetAllBookmarksList.java │ │ │ │ │ │ │ │ │ └── GetAllBookmarksXml.java │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ │ ├── GetEmailConfig.java │ │ │ │ │ │ │ │ │ ├── GetServiceConfigs.java │ │ │ │ │ │ │ │ │ └── GetSupportedDisplayLanguages.java │ │ │ │ │ │ │ ├── communities │ │ │ │ │ │ │ │ ├── AddRemoveCommunityMembers.java │ │ │ │ │ │ │ │ ├── CreateUpdateDeleteCommunity.java │ │ │ │ │ │ │ │ ├── GetCommunityEvents.java │ │ │ │ │ │ │ │ ├── GetCommunityForumTopics.java │ │ │ │ │ │ │ │ ├── GetMyCommunities.java │ │ │ │ │ │ │ │ ├── GetPublicCommunities.java │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ │ ├── AddMember.java │ │ │ │ │ │ │ │ │ ├── Community.java │ │ │ │ │ │ │ │ │ ├── CreateCommunity.java │ │ │ │ │ │ │ │ │ ├── CreateCommunityInvalidTitle.java │ │ │ │ │ │ │ │ │ ├── CreateCommunityJson.java │ │ │ │ │ │ │ │ │ ├── CreateCommunityLoadIt.java │ │ │ │ │ │ │ │ │ ├── CreateCommunityNew.java │ │ │ │ │ │ │ │ │ ├── CreateInvite.java │ │ │ │ │ │ │ │ │ ├── CrudCommunity.java │ │ │ │ │ │ │ │ │ ├── DeleteCommunity.java │ │ │ │ │ │ │ │ │ ├── GetAllInvites.java │ │ │ │ │ │ │ │ │ ├── GetCommunity.java │ │ │ │ │ │ │ │ │ ├── GetCommunityEvent.java │ │ │ │ │ │ │ │ │ ├── GetCommunityEvents.java │ │ │ │ │ │ │ │ │ ├── GetMember.java │ │ │ │ │ │ │ │ │ ├── GetMembers.java │ │ │ │ │ │ │ │ │ ├── GetMyCommunities.java │ │ │ │ │ │ │ │ │ ├── GetMyInvites.java │ │ │ │ │ │ │ │ │ ├── GetPublicCommunities.java │ │ │ │ │ │ │ │ │ ├── GetSaveCommunity.java │ │ │ │ │ │ │ │ │ ├── GetSubCommunities.java │ │ │ │ │ │ │ │ │ ├── NewSaveCommunity.java │ │ │ │ │ │ │ │ │ ├── RemoveInvite.java │ │ │ │ │ │ │ │ │ ├── RemoveMember.java │ │ │ │ │ │ │ │ │ ├── TestAddMember.java │ │ │ │ │ │ │ │ │ ├── UpdateCommunity.java │ │ │ │ │ │ │ │ │ ├── UpdateCommunityJson.java │ │ │ │ │ │ │ │ │ ├── UpdateCommunityTags.java │ │ │ │ │ │ │ │ │ └── ValidateBaseCommunitiesTest.java │ │ │ │ │ │ │ │ └── rest │ │ │ │ │ │ │ │ │ └── GetMyCommunitiesXml.java │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ │ ├── AddCommentToFile.java │ │ │ │ │ │ │ │ ├── GetFilesSharedByMe.java │ │ │ │ │ │ │ │ ├── GetFilesSharedWithMe.java │ │ │ │ │ │ │ │ ├── GetMyFileComments.java │ │ │ │ │ │ │ │ ├── GetMyFiles.java │ │ │ │ │ │ │ │ ├── GetMyFolders.java │ │ │ │ │ │ │ │ ├── GetPublicFileComments.java │ │ │ │ │ │ │ │ ├── GetPublicFiles.java │ │ │ │ │ │ │ │ ├── LoadUpdateLockPinDeleteFile.java │ │ │ │ │ │ │ │ ├── UploadFile.java │ │ │ │ │ │ │ │ ├── UploadNewVersion.java │ │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ │ ├── AddCommentToFile.java │ │ │ │ │ │ │ │ │ ├── AddFilesToFolder.java │ │ │ │ │ │ │ │ │ ├── DeleteFile.java │ │ │ │ │ │ │ │ │ ├── FileAddComment.java │ │ │ │ │ │ │ │ │ ├── GetFile.java │ │ │ │ │ │ │ │ │ ├── GetFilesSharedByMe.java │ │ │ │ │ │ │ │ │ ├── GetFilesSharedWithMe.java │ │ │ │ │ │ │ │ │ ├── GetMyFiles.java │ │ │ │ │ │ │ │ │ ├── GetMyFolders.java │ │ │ │ │ │ │ │ │ ├── GetMyPinnedFiles.java │ │ │ │ │ │ │ │ │ ├── GetPinnedFiles.java │ │ │ │ │ │ │ │ │ ├── GetPublicFileComments.java │ │ │ │ │ │ │ │ │ ├── GetPublicFiles.java │ │ │ │ │ │ │ │ │ ├── LockAndUnlockFile.java │ │ │ │ │ │ │ │ │ ├── PinFileAndUnpinFile.java │ │ │ │ │ │ │ │ │ ├── ShareFileWithCommunities.java │ │ │ │ │ │ │ │ │ └── UpdateFileMetadata.java │ │ │ │ │ │ │ ├── follow │ │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ │ ├── GetFollowedResource.java │ │ │ │ │ │ │ │ │ ├── GetFollowedResources.java │ │ │ │ │ │ │ │ │ ├── StartFollowing.java │ │ │ │ │ │ │ │ │ └── StopFollowing.java │ │ │ │ │ │ │ ├── forums │ │ │ │ │ │ │ │ ├── CreateUpdateDeleteReply.java │ │ │ │ │ │ │ │ ├── CreateUpdateDeleteTopic.java │ │ │ │ │ │ │ │ ├── GetMyAnsweredTopics.java │ │ │ │ │ │ │ │ ├── GetMyForumEntries.java │ │ │ │ │ │ │ │ ├── GetMyForums.java │ │ │ │ │ │ │ │ ├── GetMyTopics.java │ │ │ │ │ │ │ │ ├── GetMyTopicsRecommendations.java │ │ │ │ │ │ │ │ ├── StartAForum.java │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ │ ├── CreateForum.java │ │ │ │ │ │ │ │ │ ├── CreateForumReply.java │ │ │ │ │ │ │ │ │ ├── CreateForumTopic.java │ │ │ │ │ │ │ │ │ ├── DeleteForum.java │ │ │ │ │ │ │ │ │ ├── DeleteForumReply.java │ │ │ │ │ │ │ │ │ ├── DeleteForumTopic.java │ │ │ │ │ │ │ │ │ ├── GetAllForums.java │ │ │ │ │ │ │ │ │ ├── GetForum.java │ │ │ │ │ │ │ │ │ ├── GetForumReply.java │ │ │ │ │ │ │ │ │ ├── GetForumTopic.java │ │ │ │ │ │ │ │ │ ├── GetMyForums.java │ │ │ │ │ │ │ │ │ ├── GetPublicForums.java │ │ │ │ │ │ │ │ │ ├── UpdateForum.java │ │ │ │ │ │ │ │ │ ├── UpdateForumReply.java │ │ │ │ │ │ │ │ │ └── UpdateForumTopic.java │ │ │ │ │ │ │ │ └── rest │ │ │ │ │ │ │ │ │ ├── GetMyForums.java │ │ │ │ │ │ │ │ │ └── GetMyForumsXml.java │ │ │ │ │ │ │ ├── ideationBlog │ │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ │ ├── GetMyVotedIdeas.java │ │ │ │ │ │ │ │ │ ├── UnvoteIdea.java │ │ │ │ │ │ │ │ │ └── VoteIdea.java │ │ │ │ │ │ │ ├── profiles │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ │ ├── BaseProfileEntryTest.java │ │ │ │ │ │ │ │ │ ├── CheckProfileCache.java │ │ │ │ │ │ │ │ │ ├── CreateAndDeleteProfile.java │ │ │ │ │ │ │ │ │ ├── CreateProfile.java │ │ │ │ │ │ │ │ │ ├── DeleteProfile.java │ │ │ │ │ │ │ │ │ ├── GetCachedProfile.java │ │ │ │ │ │ │ │ │ ├── GetColleagues.java │ │ │ │ │ │ │ │ │ ├── GetColleaguesConnectionEntries.java │ │ │ │ │ │ │ │ │ ├── GetPeopleManaged.java │ │ │ │ │ │ │ │ │ ├── GetProfile.java │ │ │ │ │ │ │ │ │ ├── GetProfileDemonstrationSnippet.java │ │ │ │ │ │ │ │ │ ├── GetReportingChain.java │ │ │ │ │ │ │ │ │ ├── ProfileCreatePostData.java │ │ │ │ │ │ │ │ │ ├── ProfileEntryDataHandler.java │ │ │ │ │ │ │ │ │ ├── ProfileEntryHCardFull.java │ │ │ │ │ │ │ │ │ ├── ProfileEntryHCardLite.java │ │ │ │ │ │ │ │ │ ├── ProfileEntryVCardFull.java │ │ │ │ │ │ │ │ │ ├── ProfileEntryVCardLite.java │ │ │ │ │ │ │ │ │ ├── ProfileFeedDataHandler.java │ │ │ │ │ │ │ │ │ ├── Search.java │ │ │ │ │ │ │ │ │ ├── UpdateProfile.java │ │ │ │ │ │ │ │ │ ├── UpdateProfileDemonstrationSnippet.java │ │ │ │ │ │ │ │ │ ├── UpdateProfilePhoto.java │ │ │ │ │ │ │ │ │ └── UpdateTags.java │ │ │ │ │ │ │ │ └── rest │ │ │ │ │ │ │ │ │ ├── ReadNameAndEmail.java │ │ │ │ │ │ │ │ │ ├── ReadProfilePhoto.java │ │ │ │ │ │ │ │ │ ├── ReadProfileXml.java │ │ │ │ │ │ │ │ │ └── ReadResponseHeaders.java │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ ├── CommunityFullTextSearch.java │ │ │ │ │ │ │ │ ├── CommunityTagSearch.java │ │ │ │ │ │ │ │ ├── PeopleSearch.java │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ │ ├── GetMyPeople.java │ │ │ │ │ │ │ │ │ ├── GetMyResults.java │ │ │ │ │ │ │ │ │ ├── GetMyResultsByTag.java │ │ │ │ │ │ │ │ │ ├── GetPeople.java │ │ │ │ │ │ │ │ │ ├── GetResults.java │ │ │ │ │ │ │ │ │ └── GetResultsByTag.java │ │ │ │ │ │ │ │ └── rest │ │ │ │ │ │ │ │ │ ├── MyPeopleSearch.java │ │ │ │ │ │ │ │ │ ├── MySearch.java │ │ │ │ │ │ │ │ │ ├── MyTagSearch.java │ │ │ │ │ │ │ │ │ ├── PeopleSearch.java │ │ │ │ │ │ │ │ │ ├── Search.java │ │ │ │ │ │ │ │ │ └── TagSearch.java │ │ │ │ │ │ │ └── wikis │ │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ ├── CreateWiki.java │ │ │ │ │ │ │ │ ├── CreateWikiPage.java │ │ │ │ │ │ │ │ ├── GetAllWikis.java │ │ │ │ │ │ │ │ ├── GetMostCommentedWikis.java │ │ │ │ │ │ │ │ ├── GetMostRecommendedWikis.java │ │ │ │ │ │ │ │ ├── GetMostVisitedWikis.java │ │ │ │ │ │ │ │ ├── GetMyWikiPages.java │ │ │ │ │ │ │ │ ├── GetMyWikis.java │ │ │ │ │ │ │ │ ├── GetPublicWikis.java │ │ │ │ │ │ │ │ ├── GetRecycledWikiPages.java │ │ │ │ │ │ │ │ ├── GetWiki.java │ │ │ │ │ │ │ │ ├── GetWikiPage.java │ │ │ │ │ │ │ │ └── GetWikiPages.java │ │ │ │ │ │ ├── sbt │ │ │ │ │ │ │ ├── DemoSnippet.java │ │ │ │ │ │ │ ├── EndpointDelete.java │ │ │ │ │ │ │ ├── EndpointGet.java │ │ │ │ │ │ │ ├── EndpointLockFile.java │ │ │ │ │ │ │ ├── EndpointPost.java │ │ │ │ │ │ │ ├── EndpointPut.java │ │ │ │ │ │ │ ├── LangMixin.java │ │ │ │ │ │ │ ├── PromiseChain.java │ │ │ │ │ │ │ ├── RequireModules.java │ │ │ │ │ │ │ ├── ResponseHeaders.java │ │ │ │ │ │ │ └── TransportGet.java │ │ │ │ │ │ ├── smartcloud │ │ │ │ │ │ │ ├── ActivitiesTestSuite.java │ │ │ │ │ │ │ ├── CommunitiesTestSuite.java │ │ │ │ │ │ │ ├── FilesTestSuite.java │ │ │ │ │ │ │ ├── ForumsTestSuite.java │ │ │ │ │ │ │ ├── ProfilesGridTestSuite.java │ │ │ │ │ │ │ ├── ProfilesTestSuite.java │ │ │ │ │ │ │ ├── SearchRestTestSuite.java │ │ │ │ │ │ │ ├── SearchTestSuite.java │ │ │ │ │ │ │ └── profiles │ │ │ │ │ │ │ │ ├── GetConnections.java │ │ │ │ │ │ │ │ ├── GetContactByGUID.java │ │ │ │ │ │ │ │ ├── GetContacts.java │ │ │ │ │ │ │ │ ├── GetContactsByIndex.java │ │ │ │ │ │ │ │ ├── GetMyProfile.java │ │ │ │ │ │ │ │ ├── GetProfileByGUID.java │ │ │ │ │ │ │ │ ├── ProfileEntryJsonDataHandler.java │ │ │ │ │ │ │ │ ├── ProfileFeedJsonDataHandler.java │ │ │ │ │ │ │ │ ├── TestNumberJsonDataHandler.java │ │ │ │ │ │ │ │ └── controls │ │ │ │ │ │ │ │ ├── Colleagues.java │ │ │ │ │ │ │ │ └── MyProfilePanel.java │ │ │ │ │ │ └── utilities │ │ │ │ │ │ │ ├── CheckJavaScriptLibrary.java │ │ │ │ │ │ │ ├── Logging.java │ │ │ │ │ │ │ ├── UtilitiesTestSuite.java │ │ │ │ │ │ │ ├── XmlParser.java │ │ │ │ │ │ │ └── XpathEngine.java │ │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── SampleFrameworkTestSuite.java │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ └── mySocial │ │ │ │ │ │ │ │ ├── MyColleagues.java │ │ │ │ │ │ │ │ ├── MyCommunities.java │ │ │ │ │ │ │ │ └── MyFiles.java │ │ │ │ │ │ └── framework │ │ │ │ │ │ │ ├── SampleFrameworkJava.java │ │ │ │ │ │ │ └── SampleFrameworkJavaScript.java │ │ │ │ │ │ └── samples │ │ │ │ │ │ └── acme │ │ │ │ │ │ └── TestAcmeSampleApp.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── managed-beans.xml │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── sbt │ │ │ │ ├── automation │ │ │ │ └── core │ │ │ │ │ └── test │ │ │ │ │ └── connections │ │ │ │ │ └── mockData │ │ │ │ │ └── connectionsBasic │ │ │ │ │ ├── BaseCommunitiesTest_createCommunity.mock │ │ │ │ │ └── BaseCommunitiesTest_deleteCommunityAndQuit.mock │ │ │ │ └── test │ │ │ │ └── js │ │ │ │ ├── base │ │ │ │ └── mockData │ │ │ │ │ └── connectionsBasic │ │ │ │ │ └── BaseServiceGetEntities_testGetEntities.mock │ │ │ │ ├── connections │ │ │ │ └── communities │ │ │ │ │ └── api │ │ │ │ │ └── mockData │ │ │ │ │ └── connectionsBasic │ │ │ │ │ └── GetMyCommunities_testGetMyCommunities.mock │ │ │ │ └── sbt │ │ │ │ └── mockData │ │ │ │ └── connectionsBasic │ │ │ │ ├── EndpointDelete_testEndpointDelete.mock │ │ │ │ ├── EndpointGet_testEndpointGet.mock │ │ │ │ ├── EndpointPost_testEndpointPost.mock │ │ │ │ ├── EndpointPut_testEndpointPut.mock │ │ │ │ ├── PromiseChain_testResponseHeaders.mock │ │ │ │ └── ResponseHeaders_testResponseHeaders.mock │ │ ├── com.ibm.sbt.landing │ │ │ ├── .classpath │ │ │ ├── .factorypath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── .jsdtscope │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ ├── org.eclipse.wst.common.component │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ │ └── org.eclipse.wst.validation.prefs │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── webapp │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── WEB-INF │ │ │ │ ├── ibm-web-ext.xml │ │ │ │ ├── lib │ │ │ │ │ └── .gitignore │ │ │ │ └── web.xml │ │ │ │ ├── images │ │ │ │ ├── banner.jpg │ │ │ │ ├── cover-bg.gif │ │ │ │ ├── mq1.jpg │ │ │ │ └── wrench.gif │ │ │ │ └── index.html │ │ ├── com.ibm.sbt.sample.ear │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ ├── org.eclipse.wst.common.component │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ └── org.eclipse.wst.validation.prefs │ │ │ ├── META-INF │ │ │ │ ├── .gitignore │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── application.xml │ │ │ └── pom.xml │ │ ├── com.ibm.sbt.sample.web │ │ │ ├── .classpath │ │ │ ├── .factorypath │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── .jsdtscope │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ ├── org.eclipse.wst.common.component │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ │ └── org.eclipse.wst.validation.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── readme.txt │ │ │ │ └── webapp │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ ├── WEB-INF │ │ │ │ │ ├── ibm-web-bnd.xml │ │ │ │ │ ├── ibm-web-ext.xml │ │ │ │ │ ├── lib │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── managed-beans.xml │ │ │ │ │ └── web.xml │ │ │ │ │ ├── css │ │ │ │ │ └── stickyfooter.css │ │ │ │ │ ├── gadget │ │ │ │ │ ├── sampleCatalog.jsp │ │ │ │ │ ├── sampleRunner.jsp │ │ │ │ │ └── samplesJavaScript.jsp │ │ │ │ │ ├── home.jsp │ │ │ │ │ ├── html │ │ │ │ │ ├── DojoAmdCompat.html │ │ │ │ │ ├── DojoRequire.html │ │ │ │ │ └── EmbedFilesView.html │ │ │ │ │ ├── icontainertest.html │ │ │ │ │ ├── images │ │ │ │ │ ├── banner.jpg │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── collapseall.png │ │ │ │ │ ├── cover-bg.jpg │ │ │ │ │ ├── expandall.png │ │ │ │ │ ├── mq1.jpg │ │ │ │ │ ├── progressIndicator.gif │ │ │ │ │ ├── sbt.png │ │ │ │ │ ├── search.png │ │ │ │ │ ├── ssbanner.png │ │ │ │ │ ├── toolkit.png │ │ │ │ │ └── wrench.gif │ │ │ │ │ ├── includes │ │ │ │ │ ├── dojo143.jsp │ │ │ │ │ ├── dojo170cdn.jsp │ │ │ │ │ ├── dojo170cdnasync.jsp │ │ │ │ │ ├── dojo180.jsp │ │ │ │ │ ├── dojo180Layer.jsp │ │ │ │ │ ├── dojo180LayerCDN.jsp │ │ │ │ │ ├── dojo180cdn.jsp │ │ │ │ │ ├── dojo180cdnasync.jsp │ │ │ │ │ ├── dojo180uncompressed.jsp │ │ │ │ │ ├── footer.jsp │ │ │ │ │ ├── header.jsp │ │ │ │ │ ├── java_error.jsp │ │ │ │ │ ├── java_runner.jsp │ │ │ │ │ ├── java_snippet.jsp │ │ │ │ │ ├── jquery182.jsp │ │ │ │ │ ├── jquery182ScriptTag.jsp │ │ │ │ │ ├── jquery182debug.jsp │ │ │ │ │ ├── jquery191cdn.jsp │ │ │ │ │ ├── jquery191cdndebug.jsp │ │ │ │ │ ├── js_runner.jsp │ │ │ │ │ ├── js_snippet.jsp │ │ │ │ │ ├── oneui.jsp │ │ │ │ │ └── outline.jsp │ │ │ │ │ ├── java.jsp │ │ │ │ │ ├── javaPreview.jsp │ │ │ │ │ ├── javascript.jsp │ │ │ │ │ ├── javascriptPreview.jsp │ │ │ │ │ ├── js │ │ │ │ │ ├── java_jquery │ │ │ │ │ │ ├── jqueryAjax.js │ │ │ │ │ │ └── jqueryNavbar.js │ │ │ │ │ └── js_jquery │ │ │ │ │ │ ├── jqueryAjax.js │ │ │ │ │ │ └── jqueryNavbar.js │ │ │ │ │ ├── libs │ │ │ │ │ └── codemirror │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── keymap │ │ │ │ │ │ ├── emacs.js │ │ │ │ │ │ ├── emacs.js.uncompressed.js │ │ │ │ │ │ ├── vim.js │ │ │ │ │ │ └── vim.js.uncompressed.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ ├── codemirror.css.uncompressed.css │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ ├── codemirror.js.uncompressed.js │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ │ ├── closetag.js.uncompressed.js │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── dialog.css.uncompressed.css │ │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ │ ├── dialog.js.uncompressed.js │ │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ │ ├── foldcode.js.uncompressed.js │ │ │ │ │ │ │ ├── formatting.js │ │ │ │ │ │ │ ├── formatting.js.uncompressed.js │ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ │ ├── javascript-hint.js.uncompressed.js │ │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ │ ├── loadmode.js.uncompressed.js │ │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ │ ├── match-highlighter.js.uncompressed.js │ │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ │ ├── overlay.js.uncompressed.js │ │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ │ ├── runmode.js.uncompressed.js │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ ├── search.js.uncompressed.js │ │ │ │ │ │ │ ├── searchcursor.js │ │ │ │ │ │ │ ├── searchcursor.js.uncompressed.js │ │ │ │ │ │ │ ├── simple-hint.css │ │ │ │ │ │ │ ├── simple-hint.css.uncompressed.css │ │ │ │ │ │ │ ├── simple-hint.js │ │ │ │ │ │ │ └── simple-hint.js.uncompressed.js │ │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── clike │ │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ │ ├── clike.js.uncompressed.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ │ ├── css.js.uncompressed.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ │ ├── htmlembedded.js.uncompressed.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ │ ├── htmlmixed.js.uncompressed.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ └── javascript.js.uncompressed.js │ │ │ │ │ │ ├── less │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── less.js │ │ │ │ │ │ │ └── less.js.uncompressed.js │ │ │ │ │ │ ├── xml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── xml.js │ │ │ │ │ │ │ └── xml.js.uncompressed.js │ │ │ │ │ │ └── xmlpure │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── xmlpure.js │ │ │ │ │ │ │ └── xmlpure.js.uncompressed.js │ │ │ │ │ │ └── theme │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ ├── ambiance-mobile.css.uncompressed.css │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ ├── ambiance.css.uncompressed.css │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ ├── blackboard.css.uncompressed.css │ │ │ │ │ │ ├── cobalt.css │ │ │ │ │ │ ├── cobalt.css.uncompressed.css │ │ │ │ │ │ ├── eclipse.css │ │ │ │ │ │ ├── eclipse.css.uncompressed.css │ │ │ │ │ │ ├── elegant.css │ │ │ │ │ │ ├── elegant.css.uncompressed.css │ │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ │ ├── erlang-dark.css.uncompressed.css │ │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ │ ├── lesser-dark.css.uncompressed.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── monokai.css.uncompressed.css │ │ │ │ │ │ ├── neat.css │ │ │ │ │ │ ├── neat.css.uncompressed.css │ │ │ │ │ │ ├── night.css │ │ │ │ │ │ ├── night.css.uncompressed.css │ │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ │ ├── rubyblue.css.uncompressed.css │ │ │ │ │ │ ├── solarized.css │ │ │ │ │ │ ├── solarized.css.uncompressed.css │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ ├── twilight.css.uncompressed.css │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ ├── vibrant-ink.css.uncompressed.css │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ └── xq-dark.css.uncompressed.css │ │ │ │ │ └── samples │ │ │ │ │ ├── apis │ │ │ │ │ ├── Connections │ │ │ │ │ │ ├── Activity Streams.json │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ ├── Attachments.json │ │ │ │ │ │ │ ├── Comments.json │ │ │ │ │ │ │ ├── Communities.json │ │ │ │ │ │ │ ├── Feeds.json │ │ │ │ │ │ │ ├── Files.json │ │ │ │ │ │ │ ├── Folders.json │ │ │ │ │ │ │ ├── Pin.json │ │ │ │ │ │ │ └── Recycle Bin.json │ │ │ │ │ │ ├── Profiles.json │ │ │ │ │ │ ├── Wikis.json │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── Domino │ │ │ │ │ │ ├── Data Services.json │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── SmartCloud │ │ │ │ │ │ ├── Activities.json │ │ │ │ │ │ ├── Communities.json │ │ │ │ │ │ ├── Contacts.json │ │ │ │ │ │ ├── Files.json │ │ │ │ │ │ ├── Meetings.json │ │ │ │ │ │ ├── Profiles.json │ │ │ │ │ │ ├── To Be Deprecated.json │ │ │ │ │ │ ├── User Info.json │ │ │ │ │ │ └── _global.properties │ │ │ │ │ └── Tests │ │ │ │ │ │ ├── Examples.json │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── gadgets │ │ │ │ │ ├── Hello world.xml │ │ │ │ │ ├── connections │ │ │ │ │ │ └── activity-streams │ │ │ │ │ │ │ └── post │ │ │ │ │ │ │ ├── as-post.html │ │ │ │ │ │ │ ├── as-post.js │ │ │ │ │ │ │ ├── gadget.properties │ │ │ │ │ │ │ ├── gadget.xml │ │ │ │ │ │ │ └── spec.json │ │ │ │ │ ├── smartcloud │ │ │ │ │ │ └── oauth10a │ │ │ │ │ │ │ ├── SmartCloud.html │ │ │ │ │ │ │ ├── SmartCloud.js │ │ │ │ │ │ │ ├── SmartCloud.xml │ │ │ │ │ │ │ ├── gadget.properties │ │ │ │ │ │ │ └── spec.json │ │ │ │ │ └── specs.txt │ │ │ │ │ ├── html │ │ │ │ │ ├── CommunityGrid.html │ │ │ │ │ ├── ConnectionsSearchBox.html │ │ │ │ │ ├── FailingSearchEdit.html │ │ │ │ │ ├── GetMyActivities.html │ │ │ │ │ ├── GetMyCommunities.html │ │ │ │ │ ├── GetMyFiles.html │ │ │ │ │ ├── SearchBox.html │ │ │ │ │ ├── SearchEdit.html │ │ │ │ │ └── UserProfile.html │ │ │ │ │ ├── java │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── Basic Connections │ │ │ │ │ │ │ ├── Get My Communities popup.doc.html │ │ │ │ │ │ │ ├── Get My Communities popup.jsp │ │ │ │ │ │ │ ├── Get My Communities popup.properties │ │ │ │ │ │ │ ├── Get My Communities.doc.html │ │ │ │ │ │ │ ├── Get My Communities.jsp │ │ │ │ │ │ │ ├── Get My Communities.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── OAuth1 SmartCloud │ │ │ │ │ │ │ ├── Get My Profile.doc.html │ │ │ │ │ │ │ ├── Get My Profile.jsp │ │ │ │ │ │ │ ├── Get My Profile.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ └── OAuth2 Connections │ │ │ │ │ │ │ ├── ActivityStream From My Network.doc.html │ │ │ │ │ │ │ ├── ActivityStream From My Network.jsp │ │ │ │ │ │ │ ├── ActivityStream From My Network.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── BusinessSupport │ │ │ │ │ │ ├── Authentication │ │ │ │ │ │ │ ├── Change Password.doc.html │ │ │ │ │ │ │ ├── Change Password.jsp │ │ │ │ │ │ │ ├── Change Password.properties │ │ │ │ │ │ │ ├── Reset Password.doc.html │ │ │ │ │ │ │ ├── Reset Password.jsp │ │ │ │ │ │ │ ├── Reset Password.properties │ │ │ │ │ │ │ ├── Set One-time Password.doc.html │ │ │ │ │ │ │ ├── Set One-time Password.jsp │ │ │ │ │ │ │ └── Set One-time Password.properties │ │ │ │ │ │ ├── Authorization │ │ │ │ │ │ │ ├── Assign Role.doc.html │ │ │ │ │ │ │ ├── Assign Role.jsp │ │ │ │ │ │ │ ├── Assign Role.properties │ │ │ │ │ │ │ ├── Get Roles.doc.html │ │ │ │ │ │ │ ├── Get Roles.jsp │ │ │ │ │ │ │ ├── Get Roles.properties │ │ │ │ │ │ │ ├── Unassign Role.doc.html │ │ │ │ │ │ │ ├── Unassign Role.jsp │ │ │ │ │ │ │ └── Unassign Role.properties │ │ │ │ │ │ ├── CustomerManagement │ │ │ │ │ │ │ ├── Get Customer By Id.doc.html │ │ │ │ │ │ │ ├── Get Customer By Id.jsp │ │ │ │ │ │ │ ├── Get Customer By Id.properties │ │ │ │ │ │ │ ├── Get Customers By Email or Organization Name.doc.html │ │ │ │ │ │ │ ├── Get Customers By Email or Organization Name.jsp │ │ │ │ │ │ │ ├── Get Customers By Email or Organization Name.properties │ │ │ │ │ │ │ ├── Get Customers.doc.html │ │ │ │ │ │ │ ├── Get Customers.jsp │ │ │ │ │ │ │ ├── Get Customers.properties │ │ │ │ │ │ │ ├── Register Customer.doc.html │ │ │ │ │ │ │ ├── Register Customer.jsp │ │ │ │ │ │ │ ├── Register Customer.properties │ │ │ │ │ │ │ ├── Suspend Customer.doc.html │ │ │ │ │ │ │ ├── Suspend Customer.jsp │ │ │ │ │ │ │ ├── Suspend Customer.properties │ │ │ │ │ │ │ ├── Unregister Customer.doc.html │ │ │ │ │ │ │ ├── Unregister Customer.jsp │ │ │ │ │ │ │ ├── Unregister Customer.properties │ │ │ │ │ │ │ ├── Unsuspend Customer.doc.html │ │ │ │ │ │ │ ├── Unsuspend Customer.jsp │ │ │ │ │ │ │ ├── Unsuspend Customer.properties │ │ │ │ │ │ │ ├── Update Customer Profile.doc.html │ │ │ │ │ │ │ ├── Update Customer Profile.jsp │ │ │ │ │ │ │ └── Update Customer Profile.properties │ │ │ │ │ │ ├── SubscriberManagement │ │ │ │ │ │ │ ├── Add Subscriber.doc.html │ │ │ │ │ │ │ ├── Add Subscriber.jsp │ │ │ │ │ │ │ ├── Add Subscriber.properties │ │ │ │ │ │ │ ├── Delete Subscriber.doc.html │ │ │ │ │ │ │ ├── Delete Subscriber.jsp │ │ │ │ │ │ │ ├── Delete Subscriber.properties │ │ │ │ │ │ │ ├── Entitle Subscriber.doc.html │ │ │ │ │ │ │ ├── Entitle Subscriber.jsp │ │ │ │ │ │ │ ├── Entitle Subscriber.properties │ │ │ │ │ │ │ ├── Get Subscriber By Id.doc.html │ │ │ │ │ │ │ ├── Get Subscriber By Id.jsp │ │ │ │ │ │ │ ├── Get Subscriber By Id.properties │ │ │ │ │ │ │ ├── Get Subscribers By Email Address.doc.html │ │ │ │ │ │ │ ├── Get Subscribers By Email Address.jsp │ │ │ │ │ │ │ ├── Get Subscribers By Email Address.properties │ │ │ │ │ │ │ ├── Get Subscribers.doc.html │ │ │ │ │ │ │ ├── Get Subscribers.jsp │ │ │ │ │ │ │ ├── Get Subscribers.properties │ │ │ │ │ │ │ ├── Revoke Subscriber.doc.html │ │ │ │ │ │ │ ├── Revoke Subscriber.jsp │ │ │ │ │ │ │ ├── Revoke Subscriber.properties │ │ │ │ │ │ │ ├── Suspend Subscriber.doc.html │ │ │ │ │ │ │ ├── Suspend Subscriber.jsp │ │ │ │ │ │ │ ├── Suspend Subscriber.properties │ │ │ │ │ │ │ ├── Unsuspend Subscriber.doc.html │ │ │ │ │ │ │ ├── Unsuspend Subscriber.jsp │ │ │ │ │ │ │ ├── Unsuspend Subscriber.properties │ │ │ │ │ │ │ ├── Update Subscriber Profile.doc.html │ │ │ │ │ │ │ ├── Update Subscriber Profile.jsp │ │ │ │ │ │ │ └── Update Subscriber Profile.properties │ │ │ │ │ │ ├── SubscriptionManagement │ │ │ │ │ │ │ ├── Cancel Subscription.doc.html │ │ │ │ │ │ │ ├── Cancel Subscription.jsp │ │ │ │ │ │ │ ├── Cancel Subscription.properties │ │ │ │ │ │ │ ├── Create Subscription.doc.html │ │ │ │ │ │ │ ├── Create Subscription.jsp │ │ │ │ │ │ │ ├── Create Subscription.properties │ │ │ │ │ │ │ ├── Get Subscription By Id.doc.html │ │ │ │ │ │ │ ├── Get Subscription By Id.jsp │ │ │ │ │ │ │ ├── Get Subscription By Id.properties │ │ │ │ │ │ │ ├── Get Subscription List By Customer Id.doc.html │ │ │ │ │ │ │ ├── Get Subscription List By Customer Id.jsp │ │ │ │ │ │ │ ├── Get Subscription List By Customer Id.properties │ │ │ │ │ │ │ ├── Get Subscriptions.doc.html │ │ │ │ │ │ │ ├── Get Subscriptions.jsp │ │ │ │ │ │ │ ├── Get Subscriptions.properties │ │ │ │ │ │ │ ├── Suspend Subscription.doc.html │ │ │ │ │ │ │ ├── Suspend Subscription.jsp │ │ │ │ │ │ │ ├── Suspend Subscription.properties │ │ │ │ │ │ │ ├── Unsuspend Subscription.doc.html │ │ │ │ │ │ │ ├── Unsuspend Subscription.jsp │ │ │ │ │ │ │ ├── Unsuspend Subscription.properties │ │ │ │ │ │ │ ├── Update Subscription.doc.html │ │ │ │ │ │ │ ├── Update Subscription.jsp │ │ │ │ │ │ │ └── Update Subscription.properties │ │ │ │ │ │ └── UseCases │ │ │ │ │ │ │ ├── Provision User.doc.html │ │ │ │ │ │ │ ├── Provision User.jsp │ │ │ │ │ │ │ └── Provision User.properties │ │ │ │ │ ├── Dropbox │ │ │ │ │ │ ├── DropboxInfo.doc.html │ │ │ │ │ │ ├── DropboxInfo.jsp │ │ │ │ │ │ ├── DropboxInfo.properties │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── RestClient │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ ├── Delete Activity.jsp │ │ │ │ │ │ │ ├── Delete Bookmark.jsp │ │ │ │ │ │ │ ├── Delete Community.jsp │ │ │ │ │ │ │ └── Delete Wiki.jsp │ │ │ │ │ │ ├── Get │ │ │ │ │ │ │ ├── Get My Activities.jsp │ │ │ │ │ │ │ ├── Get My Bookmarks.jsp │ │ │ │ │ │ │ ├── Get My Communities.jsp │ │ │ │ │ │ │ └── Get My Files.jsp │ │ │ │ │ │ ├── Post │ │ │ │ │ │ │ ├── Create Activity.jsp │ │ │ │ │ │ │ ├── Create Bookmark.jsp │ │ │ │ │ │ │ ├── Create Community.jsp │ │ │ │ │ │ │ └── Create Wiki.jsp │ │ │ │ │ │ └── Put │ │ │ │ │ │ │ ├── Update Activity.jsp │ │ │ │ │ │ │ └── Update Community.jsp │ │ │ │ │ ├── Social │ │ │ │ │ │ ├── Activities │ │ │ │ │ │ │ ├── Add Member.doc.html │ │ │ │ │ │ │ ├── Add Member.jsp │ │ │ │ │ │ │ ├── Add Member.properties │ │ │ │ │ │ │ ├── Change Activity Node Type.doc.html │ │ │ │ │ │ │ ├── Change Activity Node Type.jsp │ │ │ │ │ │ │ ├── Change Activity Node Type.properties │ │ │ │ │ │ │ ├── Create Activity.doc.html │ │ │ │ │ │ │ ├── Create Activity.jsp │ │ │ │ │ │ │ ├── Create Activity.properties │ │ │ │ │ │ │ ├── Create Chat Node.doc.html │ │ │ │ │ │ │ ├── Create Chat Node.jsp │ │ │ │ │ │ │ ├── Create Chat Node.properties │ │ │ │ │ │ │ ├── Create Email Node.doc.html │ │ │ │ │ │ │ ├── Create Email Node.jsp │ │ │ │ │ │ │ ├── Create Email Node.properties │ │ │ │ │ │ │ ├── Create Entry Node.doc.html │ │ │ │ │ │ │ ├── Create Entry Node.jsp │ │ │ │ │ │ │ ├── Create Entry Node.properties │ │ │ │ │ │ │ ├── Create Reply Node.doc.html │ │ │ │ │ │ │ ├── Create Reply Node.jsp │ │ │ │ │ │ │ ├── Create Reply Node.properties │ │ │ │ │ │ │ ├── Create Section Node.doc.html │ │ │ │ │ │ │ ├── Create Section Node.jsp │ │ │ │ │ │ │ ├── Create Section Node.properties │ │ │ │ │ │ │ ├── Create Todo Node.doc.html │ │ │ │ │ │ │ ├── Create Todo Node.jsp │ │ │ │ │ │ │ ├── Create Todo Node.properties │ │ │ │ │ │ │ ├── Delete Activity Node.doc.html │ │ │ │ │ │ │ ├── Delete Activity Node.jsp │ │ │ │ │ │ │ ├── Delete Activity Node.properties │ │ │ │ │ │ │ ├── Delete Activity.doc.html │ │ │ │ │ │ │ ├── Delete Activity.jsp │ │ │ │ │ │ │ ├── Delete Activity.properties │ │ │ │ │ │ │ ├── Delete Member.doc.html │ │ │ │ │ │ │ ├── Delete Member.jsp │ │ │ │ │ │ │ ├── Delete Member.properties │ │ │ │ │ │ │ ├── Get Activities In Trash.doc.html │ │ │ │ │ │ │ ├── Get Activities In Trash.jsp │ │ │ │ │ │ │ ├── Get Activities In Trash.properties │ │ │ │ │ │ │ ├── Get Activity Node With Fields.jsp │ │ │ │ │ │ │ ├── Get Activity Node with Fields.doc.html │ │ │ │ │ │ │ ├── Get Activity Node with Fields.properties │ │ │ │ │ │ │ ├── Get Activity Node.doc.html │ │ │ │ │ │ │ ├── Get Activity Node.jsp │ │ │ │ │ │ │ ├── Get Activity Node.properties │ │ │ │ │ │ │ ├── Get Activity Nodes In Trash.doc.html │ │ │ │ │ │ │ ├── Get Activity Nodes In Trash.jsp │ │ │ │ │ │ │ ├── Get Activity Nodes In Trash.properties │ │ │ │ │ │ │ ├── Get Activity Nodes of an Activity.doc.html │ │ │ │ │ │ │ ├── Get Activity Nodes of an Activity.jsp │ │ │ │ │ │ │ ├── Get Activity Nodes of an Activity.properties │ │ │ │ │ │ │ ├── Get Activity.doc.html │ │ │ │ │ │ │ ├── Get Activity.jsp │ │ │ │ │ │ │ ├── Get Activity.properties │ │ │ │ │ │ │ ├── Get All Activities.doc.html │ │ │ │ │ │ │ ├── Get All Activities.jsp │ │ │ │ │ │ │ ├── Get All Activities.properties │ │ │ │ │ │ │ ├── Get All Tags.doc.html │ │ │ │ │ │ │ ├── Get All Tags.jsp │ │ │ │ │ │ │ ├── Get All Tags.properties │ │ │ │ │ │ │ ├── Get All Todos.doc.html │ │ │ │ │ │ │ ├── Get All Todos.jsp │ │ │ │ │ │ │ ├── Get All Todos.properties │ │ │ │ │ │ │ ├── Get Completed Activities.doc.html │ │ │ │ │ │ │ ├── Get Completed Activities.jsp │ │ │ │ │ │ │ ├── Get Completed Activities.properties │ │ │ │ │ │ │ ├── Get Member.doc.html │ │ │ │ │ │ │ ├── Get Member.jsp │ │ │ │ │ │ │ ├── Get Member.properties │ │ │ │ │ │ │ ├── Get Members.doc.html │ │ │ │ │ │ │ ├── Get Members.jsp │ │ │ │ │ │ │ ├── Get Members.properties │ │ │ │ │ │ │ ├── Get My Activities.doc.html │ │ │ │ │ │ │ ├── Get My Activities.jsp │ │ │ │ │ │ │ ├── Get My Activities.properties │ │ │ │ │ │ │ ├── Move Entry to Section.doc.html │ │ │ │ │ │ │ ├── Move Entry to Section.jsp │ │ │ │ │ │ │ ├── Move Entry to Section.properties │ │ │ │ │ │ │ ├── Restore Activity Node.doc.html │ │ │ │ │ │ │ ├── Restore Activity Node.jsp │ │ │ │ │ │ │ ├── Restore Activity Node.properties │ │ │ │ │ │ │ ├── Restore Activity.doc.html │ │ │ │ │ │ │ ├── Restore Activity.jsp │ │ │ │ │ │ │ ├── Restore Activity.properties │ │ │ │ │ │ │ ├── Update Activity Node.doc.html │ │ │ │ │ │ │ ├── Update Activity Node.jsp │ │ │ │ │ │ │ ├── Update Activity Node.properties │ │ │ │ │ │ │ ├── Update Activity.doc.html │ │ │ │ │ │ │ ├── Update Activity.jsp │ │ │ │ │ │ │ ├── Update Activity.properties │ │ │ │ │ │ │ ├── Update Member.doc.html │ │ │ │ │ │ │ ├── Update Member.jsp │ │ │ │ │ │ │ ├── Update Member.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── ActivityStreams │ │ │ │ │ │ │ ├── Actionable View.doc.html │ │ │ │ │ │ │ ├── Actionable View.jsp │ │ │ │ │ │ │ ├── Actionable View.properties │ │ │ │ │ │ │ ├── All Updates.doc.html │ │ │ │ │ │ │ ├── All Updates.jsp │ │ │ │ │ │ │ ├── All Updates.properties │ │ │ │ │ │ │ ├── Communities I Follow.doc.html │ │ │ │ │ │ │ ├── Communities I Follow.jsp │ │ │ │ │ │ │ ├── Communities I Follow.properties │ │ │ │ │ │ │ ├── Get Stream Entities.doc.html │ │ │ │ │ │ │ ├── Get Stream Entities.jsp │ │ │ │ │ │ │ ├── Get Stream Entities.properties │ │ │ │ │ │ │ ├── My Network.doc.html │ │ │ │ │ │ │ ├── My Network.jsp │ │ │ │ │ │ │ ├── My Network.properties │ │ │ │ │ │ │ ├── Notifications For Me.doc.html │ │ │ │ │ │ │ ├── Notifications For Me.jsp │ │ │ │ │ │ │ ├── Notifications For Me.properties │ │ │ │ │ │ │ ├── Notifications From Me.doc.html │ │ │ │ │ │ │ ├── Notifications From Me.jsp │ │ │ │ │ │ │ ├── Notifications From Me.properties │ │ │ │ │ │ │ ├── People I Follow.doc.html │ │ │ │ │ │ │ ├── People I Follow.jsp │ │ │ │ │ │ │ ├── People I Follow.properties │ │ │ │ │ │ │ ├── Post Event Using Populator.doc.html │ │ │ │ │ │ │ ├── Post Event Using Populator.jsp │ │ │ │ │ │ │ ├── Post Event Using Populator.properties │ │ │ │ │ │ │ ├── Post Event With Embedded Experience.doc.html │ │ │ │ │ │ │ ├── Post Event With Embedded Experience.jsp │ │ │ │ │ │ │ ├── Post Event With Embedded Experience.properties │ │ │ │ │ │ │ ├── Post Event.doc.html │ │ │ │ │ │ │ ├── Post Event.jsp │ │ │ │ │ │ │ ├── Post Event.properties │ │ │ │ │ │ │ ├── Post Status Update.doc.html │ │ │ │ │ │ │ ├── Post Status Update.jsp │ │ │ │ │ │ │ ├── Post Status Update.properties │ │ │ │ │ │ │ ├── Response To My Content.doc.html │ │ │ │ │ │ │ ├── Response To My Content.jsp │ │ │ │ │ │ │ ├── Response To My Content.properties │ │ │ │ │ │ │ ├── Saved View.doc.html │ │ │ │ │ │ │ ├── Saved View.jsp │ │ │ │ │ │ │ ├── Saved View.properties │ │ │ │ │ │ │ ├── Search By Tag.doc.html │ │ │ │ │ │ │ ├── Search By Tag.jsp │ │ │ │ │ │ │ ├── Search By Tag.properties │ │ │ │ │ │ │ ├── Search.doc.html │ │ │ │ │ │ │ ├── Search.jsp │ │ │ │ │ │ │ ├── Search.properties │ │ │ │ │ │ │ ├── Updates From Community.doc.html │ │ │ │ │ │ │ ├── Updates From Community.jsp │ │ │ │ │ │ │ ├── Updates From Community.properties │ │ │ │ │ │ │ ├── Updates From User.doc.html │ │ │ │ │ │ │ ├── Updates From User.jsp │ │ │ │ │ │ │ ├── Updates From User.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Blogs │ │ │ │ │ │ │ ├── All Blogs.doc.html │ │ │ │ │ │ │ ├── All Blogs.jsp │ │ │ │ │ │ │ ├── All Blogs.properties │ │ │ │ │ │ │ ├── All Comments.doc.html │ │ │ │ │ │ │ ├── All Comments.jsp │ │ │ │ │ │ │ ├── All Comments.properties │ │ │ │ │ │ │ ├── All Posts.doc.html │ │ │ │ │ │ │ ├── All Posts.jsp │ │ │ │ │ │ │ ├── All Posts.properties │ │ │ │ │ │ │ ├── All Tags.doc.html │ │ │ │ │ │ │ ├── All Tags.jsp │ │ │ │ │ │ │ ├── All Tags.properties │ │ │ │ │ │ │ ├── Blog Comments.doc.html │ │ │ │ │ │ │ ├── Blog Comments.jsp │ │ │ │ │ │ │ ├── Blog Comments.properties │ │ │ │ │ │ │ ├── Blog Posts.doc.html │ │ │ │ │ │ │ ├── Blog Posts.jsp │ │ │ │ │ │ │ ├── Blog Posts.properties │ │ │ │ │ │ │ ├── Blog Tags.doc.html │ │ │ │ │ │ │ ├── Blog Tags.jsp │ │ │ │ │ │ │ ├── Blog Tags.properties │ │ │ │ │ │ │ ├── Create Blog Comment.doc.html │ │ │ │ │ │ │ ├── Create Blog Comment.jsp │ │ │ │ │ │ │ ├── Create Blog Comment.properties │ │ │ │ │ │ │ ├── Create Blog Post.doc.html │ │ │ │ │ │ │ ├── Create Blog Post.jsp │ │ │ │ │ │ │ ├── Create Blog Post.properties │ │ │ │ │ │ │ ├── Create Blog.doc.html │ │ │ │ │ │ │ ├── Create Blog.jsp │ │ │ │ │ │ │ ├── Create Blog.properties │ │ │ │ │ │ │ ├── Featured Blogs.doc.html │ │ │ │ │ │ │ ├── Featured Blogs.jsp │ │ │ │ │ │ │ ├── Featured Blogs.properties │ │ │ │ │ │ │ ├── Featured Posts.doc.html │ │ │ │ │ │ │ ├── Featured Posts.jsp │ │ │ │ │ │ │ ├── Featured Posts.properties │ │ │ │ │ │ │ ├── Get Blog Comment.doc.html │ │ │ │ │ │ │ ├── Get Blog Comment.jsp │ │ │ │ │ │ │ ├── Get Blog Comment.properties │ │ │ │ │ │ │ ├── Get Blog Post.doc.html │ │ │ │ │ │ │ ├── Get Blog Post.jsp │ │ │ │ │ │ │ ├── Get Blog Post.properties │ │ │ │ │ │ │ ├── Get Blog.doc.html │ │ │ │ │ │ │ ├── Get Blog.jsp │ │ │ │ │ │ │ ├── Get Blog.properties │ │ │ │ │ │ │ ├── My Blogs.doc.html │ │ │ │ │ │ │ ├── My Blogs.jsp │ │ │ │ │ │ │ ├── My Blogs.properties │ │ │ │ │ │ │ ├── Recommend Post.doc.html │ │ │ │ │ │ │ ├── Recommend Post.jsp │ │ │ │ │ │ │ ├── Recommend Post.properties │ │ │ │ │ │ │ ├── Recommended Posts.doc.html │ │ │ │ │ │ │ ├── Recommended Posts.jsp │ │ │ │ │ │ │ ├── Recommended Posts.properties │ │ │ │ │ │ │ ├── Remove Blog Post.doc.html │ │ │ │ │ │ │ ├── Remove Blog Post.jsp │ │ │ │ │ │ │ ├── Remove Blog Post.properties │ │ │ │ │ │ │ ├── Unrecommend Post.jsp │ │ │ │ │ │ │ ├── Unrecommended Post.doc.html │ │ │ │ │ │ │ ├── Unrecommended Post.properties │ │ │ │ │ │ │ ├── Update Blog Post.doc.html │ │ │ │ │ │ │ ├── Update Blog Post.jsp │ │ │ │ │ │ │ ├── Update Blog Post.properties │ │ │ │ │ │ │ ├── Update Blog.doc.html │ │ │ │ │ │ │ ├── Update Blog.jsp │ │ │ │ │ │ │ ├── Update Blog.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Bookmarks │ │ │ │ │ │ │ ├── GetAllBookmarks.jsp │ │ │ │ │ │ │ ├── GetMyNotifications.jsp │ │ │ │ │ │ │ ├── GetMySentNotifications.jsp │ │ │ │ │ │ │ └── GetPopularBookmarks.jsp │ │ │ │ │ │ ├── CMIS Files │ │ │ │ │ │ │ ├── Get Files Shared With Me.doc.html │ │ │ │ │ │ │ ├── Get Files Shared With Me.jsp │ │ │ │ │ │ │ ├── Get Files Shared With Me.properties │ │ │ │ │ │ │ ├── Get My Collections.doc.html │ │ │ │ │ │ │ ├── Get My Collections.jsp │ │ │ │ │ │ │ ├── Get My Collections.properties │ │ │ │ │ │ │ ├── Get My Files.doc.html │ │ │ │ │ │ │ ├── Get My Files.jsp │ │ │ │ │ │ │ ├── Get My Files.properties │ │ │ │ │ │ │ ├── Get My Shares.doc.html │ │ │ │ │ │ │ ├── Get My Shares.jsp │ │ │ │ │ │ │ └── Get My Shares.properties │ │ │ │ │ │ ├── Communities │ │ │ │ │ │ │ ├── Accept Invite.doc.html │ │ │ │ │ │ │ ├── Accept Invite.jsp │ │ │ │ │ │ │ ├── Accept Invite.properties │ │ │ │ │ │ │ ├── Add Member.doc.html │ │ │ │ │ │ │ ├── Add Member.jsp │ │ │ │ │ │ │ ├── Add Member.properties │ │ │ │ │ │ │ ├── Create Community.doc.html │ │ │ │ │ │ │ ├── Create Community.jsp │ │ │ │ │ │ │ ├── Create Community.properties │ │ │ │ │ │ │ ├── Create Invite.doc.html │ │ │ │ │ │ │ ├── Create Invite.jsp │ │ │ │ │ │ │ ├── Create Invite.properties │ │ │ │ │ │ │ ├── Decline Invite.doc.html │ │ │ │ │ │ │ ├── Decline Invite.jsp │ │ │ │ │ │ │ ├── Decline Invite.properties │ │ │ │ │ │ │ ├── Get Bookmarks.jsp │ │ │ │ │ │ │ ├── Get Community Data By Entity.jsp │ │ │ │ │ │ │ ├── Get Community Data By Entity.properties │ │ │ │ │ │ │ ├── Get Community.jsp │ │ │ │ │ │ │ ├── Get Comnunity Data By Entity.doc.html │ │ │ │ │ │ │ ├── Get Invite.doc.html │ │ │ │ │ │ │ ├── Get Invite.jsp │ │ │ │ │ │ │ ├── Get Invite.properties │ │ │ │ │ │ │ ├── Get Members.doc.html │ │ │ │ │ │ │ ├── Get Members.jsp │ │ │ │ │ │ │ ├── Get Members.properties │ │ │ │ │ │ │ ├── Get My Communities.jsp │ │ │ │ │ │ │ ├── Get My Communities.properties │ │ │ │ │ │ │ ├── Get My Comnunities.doc.html │ │ │ │ │ │ │ ├── Get My Invites.doc.html │ │ │ │ │ │ │ ├── Get My Invites.jsp │ │ │ │ │ │ │ ├── Get My Invites.properties │ │ │ │ │ │ │ ├── Get Public Communities.jsp │ │ │ │ │ │ │ ├── Get Public Communities.properties │ │ │ │ │ │ │ ├── Get Public Comnunities.doc.html │ │ │ │ │ │ │ ├── Get Sub Communities.jsp │ │ │ │ │ │ │ ├── Get Sub Communities.properties │ │ │ │ │ │ │ ├── Get Sub Comnunities.doc.html │ │ │ │ │ │ │ ├── Remove Community.jsp │ │ │ │ │ │ │ ├── Remove Community.properties │ │ │ │ │ │ │ ├── Remove Comnunity.doc.html │ │ │ │ │ │ │ ├── Remove Member.doc.html │ │ │ │ │ │ │ ├── Remove Member.jsp │ │ │ │ │ │ │ ├── Remove Member.properties │ │ │ │ │ │ │ ├── Update Community Logo.doc.html │ │ │ │ │ │ │ ├── Update Community Logo.jsp │ │ │ │ │ │ │ ├── Update Community Logo.properties │ │ │ │ │ │ │ ├── Update Community.doc.html │ │ │ │ │ │ │ ├── Update Community.jsp │ │ │ │ │ │ │ ├── Update Community.properties │ │ │ │ │ │ │ ├── Update Member.doc.html │ │ │ │ │ │ │ ├── Update Member.jsp │ │ │ │ │ │ │ ├── Update Member.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ ├── Add Comment To File.doc.html │ │ │ │ │ │ │ ├── Add Comment To File.jsp │ │ │ │ │ │ │ ├── Add Comment To File.properties │ │ │ │ │ │ │ ├── Add and Get Community File Comments.doc.html │ │ │ │ │ │ │ ├── Add and Get Community File Comments.jsp │ │ │ │ │ │ │ ├── Add and Get Community File Comments.properties │ │ │ │ │ │ │ ├── Create Delete File.doc.html │ │ │ │ │ │ │ ├── Create Delete File.jsp │ │ │ │ │ │ │ ├── Create Delete File.properties │ │ │ │ │ │ │ ├── Create Folder.doc.html │ │ │ │ │ │ │ ├── Create Folder.jsp │ │ │ │ │ │ │ ├── Create Folder.properties │ │ │ │ │ │ │ ├── Delete File.doc.html │ │ │ │ │ │ │ ├── Delete File.jsp │ │ │ │ │ │ │ ├── Delete File.properties │ │ │ │ │ │ │ ├── Download Upload Community File.doc.html │ │ │ │ │ │ │ ├── Download Upload Community File.jsp │ │ │ │ │ │ │ ├── Download Upload Community File.properties │ │ │ │ │ │ │ ├── Get Community Files.doc.html │ │ │ │ │ │ │ ├── Get Community Files.jsp │ │ │ │ │ │ │ ├── Get Community Files.properties │ │ │ │ │ │ │ ├── Get File Comments.doc.html │ │ │ │ │ │ │ ├── Get File Comments.jsp │ │ │ │ │ │ │ ├── Get File Comments.properties │ │ │ │ │ │ │ ├── Get Files Shared By Me.doc.html │ │ │ │ │ │ │ ├── Get Files Shared By Me.jsp │ │ │ │ │ │ │ ├── Get Files Shared By Me.properties │ │ │ │ │ │ │ ├── Get Files Shared With Me.doc.html │ │ │ │ │ │ │ ├── Get Files Shared With Me.jsp │ │ │ │ │ │ │ ├── Get Files Shared With Me.properties │ │ │ │ │ │ │ ├── Get My Files.doc.html │ │ │ │ │ │ │ ├── Get My Files.jsp │ │ │ │ │ │ │ ├── Get My Files.properties │ │ │ │ │ │ │ ├── Get My Folders.doc.html │ │ │ │ │ │ │ ├── Get My Folders.properties │ │ │ │ │ │ │ ├── Lock File.doc.html │ │ │ │ │ │ │ ├── Lock File.jsp │ │ │ │ │ │ │ ├── Lock File.properties │ │ │ │ │ │ │ ├── Lock Unlock File.doc.html │ │ │ │ │ │ │ ├── Lock Unlock File.jsp │ │ │ │ │ │ │ ├── Lock Unlock File.properties │ │ │ │ │ │ │ ├── Unlock A File.doc.html │ │ │ │ │ │ │ ├── Unlock A File.jsp │ │ │ │ │ │ │ ├── Unlock A File.properties │ │ │ │ │ │ │ ├── Update Community File.doc.html │ │ │ │ │ │ │ ├── Update Community File.jsp │ │ │ │ │ │ │ ├── Update Community File.properties │ │ │ │ │ │ │ ├── Update File Metadata.doc.html │ │ │ │ │ │ │ ├── Update File Metadata.jsp │ │ │ │ │ │ │ ├── Update File Metadata.properties │ │ │ │ │ │ │ ├── Upload File.doc.html │ │ │ │ │ │ │ ├── Upload File.jsp │ │ │ │ │ │ │ ├── Upload File.properties │ │ │ │ │ │ │ ├── Upload New Version of a File.doc.html │ │ │ │ │ │ │ ├── Upload New Version of a File.jsp │ │ │ │ │ │ │ ├── Upload New Version of a File.properties │ │ │ │ │ │ │ ├── Upload Public File.doc.html │ │ │ │ │ │ │ ├── Upload Public File.jsp │ │ │ │ │ │ │ ├── Upload Public File.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Follow │ │ │ │ │ │ │ ├── Start And Stop Following.doc.html │ │ │ │ │ │ │ ├── Start And Stop Following.jsp │ │ │ │ │ │ │ ├── Start And Stop Following.properties │ │ │ │ │ │ │ ├── Updates from Communities Followed.doc.html │ │ │ │ │ │ │ ├── Updates from Communities Followed.jsp │ │ │ │ │ │ │ ├── Updates from Communities Followed.properties │ │ │ │ │ │ │ ├── Updates from Specific Community.doc.html │ │ │ │ │ │ │ ├── Updates from Specific Community.jsp │ │ │ │ │ │ │ └── Updates from Specific Community.properties │ │ │ │ │ │ ├── Forums │ │ │ │ │ │ │ ├── Create Community Forum Reply.doc.html │ │ │ │ │ │ │ ├── Create Community Forum Reply.jsp │ │ │ │ │ │ │ ├── Create Community Forum Reply.properties │ │ │ │ │ │ │ ├── Create Community Forum Topic.doc.html │ │ │ │ │ │ │ ├── Create Community Forum Topic.jsp │ │ │ │ │ │ │ ├── Create Community Forum Topic.properties │ │ │ │ │ │ │ ├── Create Forum.doc.html │ │ │ │ │ │ │ ├── Create Forum.jsp │ │ │ │ │ │ │ ├── Create Forum.properties │ │ │ │ │ │ │ ├── Create Reply.doc.html │ │ │ │ │ │ │ ├── Create Reply.jsp │ │ │ │ │ │ │ ├── Create Reply.properties │ │ │ │ │ │ │ ├── Create Topic.jsp │ │ │ │ │ │ │ ├── Create Topic.properties │ │ │ │ │ │ │ ├── CreateTopic.doc.html │ │ │ │ │ │ │ ├── Forum By Id.doc.html │ │ │ │ │ │ │ ├── Forum By Id.jsp │ │ │ │ │ │ │ ├── Forum By Id.properties │ │ │ │ │ │ │ ├── Forum Topics Tags.doc.html │ │ │ │ │ │ │ ├── Forum Topics Tags.jsp │ │ │ │ │ │ │ ├── Forum Topics Tags.properties │ │ │ │ │ │ │ ├── Forums Tags.html │ │ │ │ │ │ │ ├── Forums Tags.jsp │ │ │ │ │ │ │ ├── Forums Tags.properties │ │ │ │ │ │ │ ├── Get My Forum Entities.doc.html │ │ │ │ │ │ │ ├── Get My Forum Entities.jsp │ │ │ │ │ │ │ ├── Get My Forum Entities.properties │ │ │ │ │ │ │ ├── Get Recommendations.doc.html │ │ │ │ │ │ │ ├── Get Recommendations.jsp │ │ │ │ │ │ │ ├── Get Recommendations.properties │ │ │ │ │ │ │ ├── My Forums.doc.html │ │ │ │ │ │ │ ├── My Forums.jsp │ │ │ │ │ │ │ ├── My Forums.properties │ │ │ │ │ │ │ ├── My Topics.doc.html │ │ │ │ │ │ │ ├── My Topics.jsp │ │ │ │ │ │ │ ├── My Topics.properties │ │ │ │ │ │ │ ├── Public Forums.doc.html │ │ │ │ │ │ │ ├── Public Forums.jsp │ │ │ │ │ │ │ ├── Public Forums.properties │ │ │ │ │ │ │ ├── Remove Forum.doc.html │ │ │ │ │ │ │ ├── Remove Forum.jsp │ │ │ │ │ │ │ ├── Remove Forum.properties │ │ │ │ │ │ │ ├── Remove Reply.doc.html │ │ │ │ │ │ │ ├── Remove Reply.jsp │ │ │ │ │ │ │ ├── Remove Reply.properties │ │ │ │ │ │ │ ├── Remove Topic.doc.html │ │ │ │ │ │ │ ├── Remove Topic.jsp │ │ │ │ │ │ │ ├── Remove Topic.properties │ │ │ │ │ │ │ ├── Replies For A Topic.jsp │ │ │ │ │ │ │ ├── Reply By Id.doc.html │ │ │ │ │ │ │ ├── Reply By Id.jsp │ │ │ │ │ │ │ ├── Reply By Id.properties │ │ │ │ │ │ │ ├── Topic By Id.doc.html │ │ │ │ │ │ │ ├── Topic By Id.jsp │ │ │ │ │ │ │ ├── Topic By Id.properties │ │ │ │ │ │ │ ├── Topics For A Forum.doc.html │ │ │ │ │ │ │ ├── Topics For A Forum.jsp │ │ │ │ │ │ │ ├── Topics For A Forum.properties │ │ │ │ │ │ │ ├── Update Forum.doc.html │ │ │ │ │ │ │ ├── Update Forum.jsp │ │ │ │ │ │ │ ├── Update Forum.properties │ │ │ │ │ │ │ ├── Update Reply.doc.html │ │ │ │ │ │ │ ├── Update Reply.jsp │ │ │ │ │ │ │ ├── Update Reply.properties │ │ │ │ │ │ │ ├── Update Topic.doc.html │ │ │ │ │ │ │ ├── Update Topic.jsp │ │ │ │ │ │ │ ├── Update Topic.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Profiles SmartCloud │ │ │ │ │ │ │ ├── Get Contact by GUID.doc.html │ │ │ │ │ │ │ ├── Get Contact by GUID.jsp │ │ │ │ │ │ │ ├── Get Contact by GUID.properties │ │ │ │ │ │ │ ├── Get My Contacts.doc.html │ │ │ │ │ │ │ ├── Get My Contacts.jsp │ │ │ │ │ │ │ ├── Get My Contacts.properties │ │ │ │ │ │ │ ├── OAuth1 Smartcloud Profiles.doc.html │ │ │ │ │ │ │ ├── OAuth1 Smartcloud Profiles.jsp │ │ │ │ │ │ │ ├── OAuth1 Smartcloud Profiles.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Profiles │ │ │ │ │ │ │ ├── Check Colleague.doc.html │ │ │ │ │ │ │ ├── Check Colleague.jsp │ │ │ │ │ │ │ ├── Check Colleague.properties │ │ │ │ │ │ │ ├── Create Profile.doc.html │ │ │ │ │ │ │ ├── Create Profile.jsp │ │ │ │ │ │ │ ├── Create Profile.properties │ │ │ │ │ │ │ ├── Get Colleagues By Profile Entity.doc.html │ │ │ │ │ │ │ ├── Get Colleagues By Profile Entity.jsp │ │ │ │ │ │ │ ├── Get Colleagues By Profile Entity.properties │ │ │ │ │ │ │ ├── Get Colleagues.doc.html │ │ │ │ │ │ │ ├── Get Colleagues.jsp │ │ │ │ │ │ │ ├── Get Colleagues.properties │ │ │ │ │ │ │ ├── Get Common Colleagues.doc.html │ │ │ │ │ │ │ ├── Get Common Colleagues.jsp │ │ │ │ │ │ │ ├── Get Common Collleagues.properties │ │ │ │ │ │ │ ├── Get My Profile Extended.doc.html │ │ │ │ │ │ │ ├── Get My Profile Extended.jsp │ │ │ │ │ │ │ ├── Get My Profile Extended.properties │ │ │ │ │ │ │ ├── Get My Profile.doc.html │ │ │ │ │ │ │ ├── Get My Profile.jsp │ │ │ │ │ │ │ ├── Get My Profile.properties │ │ │ │ │ │ │ ├── Get Name.doc.html │ │ │ │ │ │ │ ├── Get Name.jsp │ │ │ │ │ │ │ ├── Get Name.properties │ │ │ │ │ │ │ ├── Get People Managed.doc.html │ │ │ │ │ │ │ ├── Get People Managed.jsp │ │ │ │ │ │ │ ├── Get People Managed.properties │ │ │ │ │ │ │ ├── Get Phone Number.doc.html │ │ │ │ │ │ │ ├── Get Phone Number.jsp │ │ │ │ │ │ │ ├── Get Phone Number.properties │ │ │ │ │ │ │ ├── Get Profile Url.doc.html │ │ │ │ │ │ │ ├── Get Profile Url.jsp │ │ │ │ │ │ │ ├── Get Profile Url.properties │ │ │ │ │ │ │ ├── Get Pronunciation Url.doc.html │ │ │ │ │ │ │ ├── Get Pronunciation Url.jsp │ │ │ │ │ │ │ ├── Get Pronunciation Url.properties │ │ │ │ │ │ │ ├── Get Reporting Chain.doc.html │ │ │ │ │ │ │ ├── Get Reporting Chain.jsp │ │ │ │ │ │ │ ├── Get Reporting Chain.properties │ │ │ │ │ │ │ ├── Get Summary.doc.html │ │ │ │ │ │ │ ├── Get Summary.jsp │ │ │ │ │ │ │ ├── Get Summary.properties │ │ │ │ │ │ │ ├── Get Tags.doc.html │ │ │ │ │ │ │ ├── Get Tags.jsp │ │ │ │ │ │ │ ├── Get Tags.properties │ │ │ │ │ │ │ ├── Get Thumbnail Url.doc.html │ │ │ │ │ │ │ ├── Get Thumbnail Url.jsp │ │ │ │ │ │ │ ├── Get Thumbnail Url.properties │ │ │ │ │ │ │ ├── Get Title.doc.html │ │ │ │ │ │ │ ├── Get Title.jsp │ │ │ │ │ │ │ ├── Get Title.properties │ │ │ │ │ │ │ ├── Search Profiles.doc.html │ │ │ │ │ │ │ ├── Search Profiles.jsp │ │ │ │ │ │ │ ├── Search Profiles.properties │ │ │ │ │ │ │ ├── Send Invite.doc.html │ │ │ │ │ │ │ ├── Send Invite.jsp │ │ │ │ │ │ │ ├── Send Invite.properties │ │ │ │ │ │ │ ├── Update Phone Number.doc.html │ │ │ │ │ │ │ ├── Update Phone Number.jsp │ │ │ │ │ │ │ ├── Update Phone Number.properties │ │ │ │ │ │ │ ├── Update Profile Photo.doc.html │ │ │ │ │ │ │ ├── Update Profile Photo.jsp │ │ │ │ │ │ │ ├── Update Profile Photo.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ └── Search │ │ │ │ │ │ │ ├── Blog Constraint.doc.html │ │ │ │ │ │ │ ├── Blog Constraint.jsp │ │ │ │ │ │ │ ├── Blog Constraint.properties │ │ │ │ │ │ │ ├── Community Full Text Search.doc.html │ │ │ │ │ │ │ ├── Community Full Text Search.jsp │ │ │ │ │ │ │ ├── Community Full Text Search.properties │ │ │ │ │ │ │ ├── Community Tag Search.doc.html │ │ │ │ │ │ │ ├── Community Tag Search.jsp │ │ │ │ │ │ │ ├── Community Tag Search.properties │ │ │ │ │ │ │ ├── Get People.doc.html │ │ │ │ │ │ │ ├── Get People.jsp │ │ │ │ │ │ │ ├── Get People.properties │ │ │ │ │ │ │ ├── Get Results By Tag.doc.html │ │ │ │ │ │ │ ├── Get Results By Tag.jsp │ │ │ │ │ │ │ ├── Get Results By Tag.properties │ │ │ │ │ │ │ ├── Get Results.doc.html │ │ │ │ │ │ │ ├── Get Results.jsp │ │ │ │ │ │ │ ├── Get Results.properties │ │ │ │ │ │ │ ├── Get Scopes.doc.html │ │ │ │ │ │ │ ├── Get Scopes.jsp │ │ │ │ │ │ │ ├── Get Scopes.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ └── Twitter │ │ │ │ │ │ ├── TestTwitter.doc.html │ │ │ │ │ │ ├── TestTwitter.jsp │ │ │ │ │ │ ├── TestTwitter.properties │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── js │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ ├── BasicDialog.js │ │ │ │ │ │ │ ├── BasicDialog.properties │ │ │ │ │ │ │ ├── BasicMainWindow.js │ │ │ │ │ │ │ ├── BasicMainWindow.properties │ │ │ │ │ │ │ ├── BasicPopup.js │ │ │ │ │ │ │ ├── BasicPopup.properties │ │ │ │ │ │ │ ├── OAuth10 MainWindow.js │ │ │ │ │ │ │ ├── OAuth10 MainWindow.properties │ │ │ │ │ │ │ ├── OAuth10 Popup.js │ │ │ │ │ │ │ ├── OAuth10 Popup.properties │ │ │ │ │ │ │ ├── OAuth10MainWindow.js │ │ │ │ │ │ │ ├── OAuth10MainWindow.properties │ │ │ │ │ │ │ ├── OAuth10Popup.js │ │ │ │ │ │ │ ├── OAuth10Popup.properties │ │ │ │ │ │ │ ├── OAuth20 MainWindow.js │ │ │ │ │ │ │ ├── OAuth20 MainWindow.properties │ │ │ │ │ │ │ ├── OAuth20 Popup.js │ │ │ │ │ │ │ ├── OAuth20 Popup.properties │ │ │ │ │ │ │ ├── OAuth20MainWindow.js │ │ │ │ │ │ │ ├── OAuth20MainWindow.properties │ │ │ │ │ │ │ ├── OAuth20Popup.js │ │ │ │ │ │ │ └── OAuth20Popup.properties │ │ │ │ │ │ ├── Authentication Summary.doc.html │ │ │ │ │ │ ├── Authentication Summary.html │ │ │ │ │ │ ├── Authentication Summary.js │ │ │ │ │ │ ├── Authentication Summary.properties │ │ │ │ │ │ ├── Connections Basic Auth.doc.html │ │ │ │ │ │ ├── Connections Basic Auth.html │ │ │ │ │ │ ├── Connections Basic Auth.js │ │ │ │ │ │ ├── Connections Basic Auth.properties │ │ │ │ │ │ ├── Connections OAuth 2.0.doc.html │ │ │ │ │ │ ├── Connections OAuth 2.0.html │ │ │ │ │ │ ├── Connections OAuth 2.0.js │ │ │ │ │ │ ├── Connections OAuth 2.0.properties │ │ │ │ │ │ ├── Domino Basic Auth.doc.html │ │ │ │ │ │ ├── Domino Basic Auth.html │ │ │ │ │ │ ├── Domino Basic Auth.js │ │ │ │ │ │ ├── Domino Basic Auth.properties │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ ├── Basic Dialog.js │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── SmartCloud Basic Auth.doc.html │ │ │ │ │ │ ├── SmartCloud Basic Auth.html │ │ │ │ │ │ ├── SmartCloud Basic Auth.js │ │ │ │ │ │ ├── SmartCloud Basic Auth.properties │ │ │ │ │ │ ├── SmartCloud OAuth 1.0a.doc.html │ │ │ │ │ │ ├── SmartCloud OAuth 1.0a.html │ │ │ │ │ │ ├── SmartCloud OAuth 1.0a.js │ │ │ │ │ │ ├── SmartCloud OAuth 1.0a.properties │ │ │ │ │ │ ├── SmartCloud OAuth 2.0.doc.html │ │ │ │ │ │ ├── SmartCloud OAuth 2.0.html │ │ │ │ │ │ ├── SmartCloud OAuth 2.0.js │ │ │ │ │ │ ├── SmartCloud OAuth 2.0.properties │ │ │ │ │ │ ├── UI Customization - Dialog Login Page.doc.html │ │ │ │ │ │ ├── UI Customization - Dialog Login Page.js │ │ │ │ │ │ ├── UI Customization - Dialog Login Page.properties │ │ │ │ │ │ ├── UI Customization - Login Page.doc.html │ │ │ │ │ │ ├── UI Customization - Login Page.js │ │ │ │ │ │ └── UI Customization - Login Page.properties │ │ │ │ │ ├── SampleApps │ │ │ │ │ │ ├── AcmeAirlines │ │ │ │ │ │ │ ├── Email Travel Request.doc.html │ │ │ │ │ │ │ ├── Email Travel Request.html │ │ │ │ │ │ │ ├── Email Travel Request.js │ │ │ │ │ │ │ ├── Email Travel Request.properties │ │ │ │ │ │ │ ├── Get Approver.doc.html │ │ │ │ │ │ │ ├── Get Approver.html │ │ │ │ │ │ │ ├── Get Approver.js │ │ │ │ │ │ │ ├── Get Approver.properties │ │ │ │ │ │ │ ├── Get Person Me.doc.html │ │ │ │ │ │ │ ├── Get Person Me.html │ │ │ │ │ │ │ ├── Get Person Me.js │ │ │ │ │ │ │ ├── Get Person Me.properties │ │ │ │ │ │ │ ├── Post ActivityStream Entry.doc.html │ │ │ │ │ │ │ ├── Post ActivityStream Entry.html │ │ │ │ │ │ │ ├── Post ActivityStream Entry.js │ │ │ │ │ │ │ ├── Post ActivityStream Entry.properties │ │ │ │ │ │ │ ├── Show Colleagues.doc.html │ │ │ │ │ │ │ ├── Show Colleagues.html │ │ │ │ │ │ │ ├── Show Colleagues.js │ │ │ │ │ │ │ ├── Show Colleagues.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── MySocial │ │ │ │ │ │ │ ├── My Colleagues.css │ │ │ │ │ │ │ ├── My Colleagues.doc.html │ │ │ │ │ │ │ ├── My Colleagues.html │ │ │ │ │ │ │ ├── My Colleagues.js │ │ │ │ │ │ │ ├── My Colleagues.properties │ │ │ │ │ │ │ ├── My Communities.css │ │ │ │ │ │ │ ├── My Communities.doc.html │ │ │ │ │ │ │ ├── My Communities.html │ │ │ │ │ │ │ ├── My Communities.js │ │ │ │ │ │ │ ├── My Communities.properties │ │ │ │ │ │ │ ├── My Files.css │ │ │ │ │ │ │ ├── My Files.doc.html │ │ │ │ │ │ │ ├── My Files.html │ │ │ │ │ │ │ ├── My Files.js │ │ │ │ │ │ │ ├── My Files.properties │ │ │ │ │ │ │ ├── User Profile.doc.html │ │ │ │ │ │ │ ├── User Profile.html │ │ │ │ │ │ │ ├── User Profile.js │ │ │ │ │ │ │ ├── User Profile.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Wordpress │ │ │ │ │ │ │ ├── Community Grid.doc.html │ │ │ │ │ │ │ ├── Community Grid.html │ │ │ │ │ │ │ ├── Community Grid.js │ │ │ │ │ │ │ ├── Community Grid.properties │ │ │ │ │ │ │ ├── Files Grid.doc.html │ │ │ │ │ │ │ ├── Files Grid.html │ │ │ │ │ │ │ ├── Files Grid.js │ │ │ │ │ │ │ ├── Files Grid.properties │ │ │ │ │ │ │ ├── Files View.doc.html │ │ │ │ │ │ │ ├── Files View.html │ │ │ │ │ │ │ ├── Files View.js │ │ │ │ │ │ │ └── Files View.properties │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── Social │ │ │ │ │ │ ├── Activities │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── AddMember.html │ │ │ │ │ │ │ │ ├── AddMember.js │ │ │ │ │ │ │ │ ├── AddMember.properties │ │ │ │ │ │ │ │ ├── ChangeEntryType.html │ │ │ │ │ │ │ │ ├── ChangeEntryType.js │ │ │ │ │ │ │ │ ├── ChangeEntryType.properties │ │ │ │ │ │ │ │ ├── CreateActivity.html │ │ │ │ │ │ │ │ ├── CreateActivity.js │ │ │ │ │ │ │ │ ├── CreateActivity.properties │ │ │ │ │ │ │ │ ├── CreateActivityNode.html │ │ │ │ │ │ │ │ ├── CreateActivityNode.js │ │ │ │ │ │ │ │ ├── CreateActivityNode.properties │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivity.html │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivity.js │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivity.properties │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivityNode.html │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivityNode.js │ │ │ │ │ │ │ │ ├── DeleteAndRestoreActivityNode.properties │ │ │ │ │ │ │ │ ├── DeleteMember.html │ │ │ │ │ │ │ │ ├── DeleteMember.js │ │ │ │ │ │ │ │ ├── DeleteMember.properties │ │ │ │ │ │ │ │ ├── GetActivitiesInTrash.html │ │ │ │ │ │ │ │ ├── GetActivitiesInTrash.js │ │ │ │ │ │ │ │ ├── GetActivitiesInTrash.properties │ │ │ │ │ │ │ │ ├── GetActivity.html │ │ │ │ │ │ │ │ ├── GetActivity.js │ │ │ │ │ │ │ │ ├── GetActivity.properties │ │ │ │ │ │ │ │ ├── GetActivityNode.html │ │ │ │ │ │ │ │ ├── GetActivityNode.js │ │ │ │ │ │ │ │ ├── GetActivityNode.properties │ │ │ │ │ │ │ │ ├── GetActivityNodeFromTrash.html │ │ │ │ │ │ │ │ ├── GetActivityNodeFromTrash.js │ │ │ │ │ │ │ │ ├── GetActivityNodeFromTrash.properties │ │ │ │ │ │ │ │ ├── GetActivityNodeTags.html │ │ │ │ │ │ │ │ ├── GetActivityNodeTags.js │ │ │ │ │ │ │ │ ├── GetActivityNodeTags.properties │ │ │ │ │ │ │ │ ├── GetActivityNodes.html │ │ │ │ │ │ │ │ ├── GetActivityNodes.js │ │ │ │ │ │ │ │ ├── GetActivityNodes.properties │ │ │ │ │ │ │ │ ├── GetActivityNodesInTrash.html │ │ │ │ │ │ │ │ ├── GetActivityNodesInTrash.js │ │ │ │ │ │ │ │ ├── GetActivityNodesInTrash.properties │ │ │ │ │ │ │ │ ├── GetActivityTags.html │ │ │ │ │ │ │ │ ├── GetActivityTags.js │ │ │ │ │ │ │ │ ├── GetActivityTags.properties │ │ │ │ │ │ │ │ ├── GetAllActivities.html │ │ │ │ │ │ │ │ ├── GetAllActivities.js │ │ │ │ │ │ │ │ ├── GetAllActivities.properties │ │ │ │ │ │ │ │ ├── GetAllTags.html │ │ │ │ │ │ │ │ ├── GetAllTags.js │ │ │ │ │ │ │ │ ├── GetAllTags.properties │ │ │ │ │ │ │ │ ├── GetAllToDos.html │ │ │ │ │ │ │ │ ├── GetAllToDos.js │ │ │ │ │ │ │ │ ├── GetAllToDos.properties │ │ │ │ │ │ │ │ ├── GetCompletedActivities.html │ │ │ │ │ │ │ │ ├── GetCompletedActivities.js │ │ │ │ │ │ │ │ ├── GetCompletedActivities.properties │ │ │ │ │ │ │ │ ├── GetMember.html │ │ │ │ │ │ │ │ ├── GetMember.js │ │ │ │ │ │ │ │ ├── GetMember.properties │ │ │ │ │ │ │ │ ├── GetMembers.html │ │ │ │ │ │ │ │ ├── GetMembers.js │ │ │ │ │ │ │ │ ├── GetMembers.properties │ │ │ │ │ │ │ │ ├── GetMyActivities.html │ │ │ │ │ │ │ │ ├── GetMyActivities.js │ │ │ │ │ │ │ │ ├── GetMyActivities.properties │ │ │ │ │ │ │ │ ├── MoveEntryToSection.html │ │ │ │ │ │ │ │ ├── MoveEntryToSection.js │ │ │ │ │ │ │ │ ├── MoveEntryToSection.properties │ │ │ │ │ │ │ │ ├── UpdateActivity.html │ │ │ │ │ │ │ │ ├── UpdateActivity.js │ │ │ │ │ │ │ │ ├── UpdateActivity.properties │ │ │ │ │ │ │ │ ├── UpdateActivityNode.html │ │ │ │ │ │ │ │ ├── UpdateActivityNode.js │ │ │ │ │ │ │ │ ├── UpdateActivityNode.properties │ │ │ │ │ │ │ │ ├── UpdateMember.html │ │ │ │ │ │ │ │ ├── UpdateMember.js │ │ │ │ │ │ │ │ ├── UpdateMember.properties │ │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Bootstrap My Activities.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap My Activities.html │ │ │ │ │ │ │ │ ├── Bootstrap My Activities.js │ │ │ │ │ │ │ │ ├── Bootstrap My Activities.properties │ │ │ │ │ │ │ │ ├── My Activities.doc.html │ │ │ │ │ │ │ │ ├── My Activities.html │ │ │ │ │ │ │ │ ├── My Activities.js │ │ │ │ │ │ │ │ └── My Activities.properties │ │ │ │ │ │ │ ├── Get My Activities.doc.html │ │ │ │ │ │ │ ├── Get My Activities.html │ │ │ │ │ │ │ ├── Get My Activities.js │ │ │ │ │ │ │ ├── Get My Activities.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Get My Activities XML.js │ │ │ │ │ │ │ │ ├── Get My Activities XML.properties │ │ │ │ │ │ │ │ ├── Get My Activities.js │ │ │ │ │ │ │ │ └── Get My Activities.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── ActivityStreams │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── GetMyActionableView.html │ │ │ │ │ │ │ │ ├── GetMyActionableView.js │ │ │ │ │ │ │ │ ├── GetMyActionableView.properties │ │ │ │ │ │ │ │ ├── GetMySavedView.html │ │ │ │ │ │ │ │ ├── GetMySavedView.js │ │ │ │ │ │ │ │ ├── GetMySavedView.properties │ │ │ │ │ │ │ │ ├── GetMyStatusUpdates.html │ │ │ │ │ │ │ │ ├── GetMyStatusUpdates.js │ │ │ │ │ │ │ │ ├── GetMyStatusUpdates.properties │ │ │ │ │ │ │ │ ├── GetNotificationsForMe.html │ │ │ │ │ │ │ │ ├── GetNotificationsForMe.js │ │ │ │ │ │ │ │ ├── GetNotificationsForMe.properties │ │ │ │ │ │ │ │ ├── GetNotificationsFromMe.html │ │ │ │ │ │ │ │ ├── GetNotificationsFromMe.js │ │ │ │ │ │ │ │ ├── GetNotificationsFromMe.properties │ │ │ │ │ │ │ │ ├── GetPublicActivityStream.html │ │ │ │ │ │ │ │ ├── GetPublicActivityStream.js │ │ │ │ │ │ │ │ ├── GetPublicActivityStream.properties │ │ │ │ │ │ │ │ ├── GetResponsesToMyContent.html │ │ │ │ │ │ │ │ ├── GetResponsesToMyContent.js │ │ │ │ │ │ │ │ ├── GetResponsesToMyContent.properties │ │ │ │ │ │ │ │ ├── GetUpdatesFromACommunity.html │ │ │ │ │ │ │ │ ├── GetUpdatesFromACommunity.js │ │ │ │ │ │ │ │ ├── GetUpdatesFromACommunity.properties │ │ │ │ │ │ │ │ ├── GetUpdatesFromAUser.html │ │ │ │ │ │ │ │ ├── GetUpdatesFromAUser.js │ │ │ │ │ │ │ │ ├── GetUpdatesFromAUser.properties │ │ │ │ │ │ │ │ ├── GetUpdatesFromCommunitiesIFollow.html │ │ │ │ │ │ │ │ ├── GetUpdatesFromCommunitiesIFollow.js │ │ │ │ │ │ │ │ ├── GetUpdatesFromCommunitiesIFollow.properties │ │ │ │ │ │ │ │ ├── GetUpdatesFromMyNetwork.html │ │ │ │ │ │ │ │ ├── GetUpdatesFromMyNetwork.js │ │ │ │ │ │ │ │ ├── GetUpdatesFromMyNetwork.properties │ │ │ │ │ │ │ │ ├── GetUpdatesFromPeopleIFollow.html │ │ │ │ │ │ │ │ ├── GetUpdatesFromPeopleIFollow.js │ │ │ │ │ │ │ │ ├── GetUpdatesFromPeopleIFollow.properties │ │ │ │ │ │ │ │ ├── PostAStatusUpdate.html │ │ │ │ │ │ │ │ ├── PostAStatusUpdate.js │ │ │ │ │ │ │ │ ├── PostAStatusUpdate.properties │ │ │ │ │ │ │ │ ├── PostEntry.html │ │ │ │ │ │ │ │ ├── PostEntry.js │ │ │ │ │ │ │ │ ├── PostEntry.properties │ │ │ │ │ │ │ │ ├── PostEntryIntoACommunityStream.html │ │ │ │ │ │ │ │ ├── PostEntryIntoACommunityStream.js │ │ │ │ │ │ │ │ ├── PostEntryIntoACommunityStream.properties │ │ │ │ │ │ │ │ ├── PostEntryWithEmbeddedExperience.html │ │ │ │ │ │ │ │ ├── PostEntryWithEmbeddedExperience.js │ │ │ │ │ │ │ │ ├── PostEntryWithEmbeddedExperience.properties │ │ │ │ │ │ │ │ ├── SearchByFilters.html │ │ │ │ │ │ │ │ ├── SearchByFilters.js │ │ │ │ │ │ │ │ ├── SearchByFilters.properties │ │ │ │ │ │ │ │ ├── SearchByQuery.html │ │ │ │ │ │ │ │ ├── SearchByQuery.js │ │ │ │ │ │ │ │ ├── SearchByQuery.properties │ │ │ │ │ │ │ │ ├── SearchByTags.html │ │ │ │ │ │ │ │ ├── SearchByTags.js │ │ │ │ │ │ │ │ └── SearchByTags.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Community Recent Updates.doc.html │ │ │ │ │ │ │ │ ├── Community Recent Updates.html │ │ │ │ │ │ │ │ ├── Community Recent Updates.js │ │ │ │ │ │ │ │ ├── Community Recent Updates.properties │ │ │ │ │ │ │ │ ├── Community Status Updates.doc.html │ │ │ │ │ │ │ │ ├── Community Status Updates.html │ │ │ │ │ │ │ │ ├── Community Status Updates.js │ │ │ │ │ │ │ │ ├── Community Status Updates.properties │ │ │ │ │ │ │ │ ├── Filter Extension.doc.html │ │ │ │ │ │ │ │ ├── Filter Extension.html │ │ │ │ │ │ │ │ ├── Filter Extension.js │ │ │ │ │ │ │ │ ├── Filter Extension.properties │ │ │ │ │ │ │ │ ├── Homepage Config.doc.html │ │ │ │ │ │ │ │ ├── Homepage Config.html │ │ │ │ │ │ │ │ ├── Homepage Config.js │ │ │ │ │ │ │ │ ├── Homepage Config.properties │ │ │ │ │ │ │ │ ├── Multiple Views.doc.html │ │ │ │ │ │ │ │ ├── Multiple Views.html │ │ │ │ │ │ │ │ ├── Multiple Views.js │ │ │ │ │ │ │ │ ├── Multiple Views.properties │ │ │ │ │ │ │ │ ├── Simple Config.doc.html │ │ │ │ │ │ │ │ ├── Simple Config.html │ │ │ │ │ │ │ │ ├── Simple Config.js │ │ │ │ │ │ │ │ ├── Simple Config.properties │ │ │ │ │ │ │ │ ├── Simple Stream All Extensions.doc.html │ │ │ │ │ │ │ │ ├── Simple Stream All Extensions.html │ │ │ │ │ │ │ │ ├── Simple Stream All Extensions.js │ │ │ │ │ │ │ │ ├── Simple Stream All Extensions.properties │ │ │ │ │ │ │ │ ├── Simple Stream.doc.html │ │ │ │ │ │ │ │ ├── Simple Stream.html │ │ │ │ │ │ │ │ ├── Simple Stream.js │ │ │ │ │ │ │ │ ├── Simple Stream.properties │ │ │ │ │ │ │ │ ├── Updates With Tag.doc.html │ │ │ │ │ │ │ │ ├── Updates With Tag.html │ │ │ │ │ │ │ │ ├── Updates With Tag.js │ │ │ │ │ │ │ │ ├── Updates With Tag.properties │ │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ │ ├── Get All Updates.doc.html │ │ │ │ │ │ │ ├── Get All Updates.html │ │ │ │ │ │ │ ├── Get All Updates.js │ │ │ │ │ │ │ ├── Get All Updates.properties │ │ │ │ │ │ │ ├── Get Default Stream Using getStream.doc.html │ │ │ │ │ │ │ ├── Get Default Stream Using getStream.html │ │ │ │ │ │ │ ├── Get Default Stream Using getStream.js │ │ │ │ │ │ │ ├── Get Default Stream Using getStream.properties │ │ │ │ │ │ │ ├── Get My Actionable View For Application.doc.html │ │ │ │ │ │ │ ├── Get My Actionable View For Application.html │ │ │ │ │ │ │ ├── Get My Actionable View For Application.js │ │ │ │ │ │ │ ├── Get My Actionable View For Application.properties │ │ │ │ │ │ │ ├── Get My Actionable View.doc.html │ │ │ │ │ │ │ ├── Get My Actionable View.html │ │ │ │ │ │ │ ├── Get My Actionable View.js │ │ │ │ │ │ │ ├── Get My Actionable View.properties │ │ │ │ │ │ │ ├── Get My Saved View For Application.doc.html │ │ │ │ │ │ │ ├── Get My Saved View For Application.html │ │ │ │ │ │ │ ├── Get My Saved View For Application.js │ │ │ │ │ │ │ ├── Get My Saved View For Application.properties │ │ │ │ │ │ │ ├── Get My Saved View.doc.html │ │ │ │ │ │ │ ├── Get My Saved View.html │ │ │ │ │ │ │ ├── Get My Saved View.js │ │ │ │ │ │ │ ├── Get My Saved View.properties │ │ │ │ │ │ │ ├── Get My Status Updates Using getStream.doc.html │ │ │ │ │ │ │ ├── Get My Status Updates Using getStream.html │ │ │ │ │ │ │ ├── Get My Status Updates Using getStream.js │ │ │ │ │ │ │ ├── Get My Status Updates Using getStream.properties │ │ │ │ │ │ │ ├── Get My Status Updates.doc.html │ │ │ │ │ │ │ ├── Get My Status Updates.html │ │ │ │ │ │ │ ├── Get My Status Updates.js │ │ │ │ │ │ │ ├── Get My Status Updates.properties │ │ │ │ │ │ │ ├── Get Notifications For Me.doc.html │ │ │ │ │ │ │ ├── Get Notifications For Me.html │ │ │ │ │ │ │ ├── Get Notifications For Me.js │ │ │ │ │ │ │ ├── Get Notifications For Me.properties │ │ │ │ │ │ │ ├── Get Notifications From Me.doc.html │ │ │ │ │ │ │ ├── Get Notifications From Me.html │ │ │ │ │ │ │ ├── Get Notifications From Me.js │ │ │ │ │ │ │ ├── Get Notifications From Me.properties │ │ │ │ │ │ │ ├── Get Responses To My Content.doc.html │ │ │ │ │ │ │ ├── Get Responses To My Content.html │ │ │ │ │ │ │ ├── Get Responses To My Content.js │ │ │ │ │ │ │ ├── Get Responses To My Content.properties │ │ │ │ │ │ │ ├── Get Status Updates From My Network.doc.html │ │ │ │ │ │ │ ├── Get Status Updates From My Network.html │ │ │ │ │ │ │ ├── Get Status Updates From My Network.js │ │ │ │ │ │ │ ├── Get Status Updates From My Network.properties │ │ │ │ │ │ │ ├── Get Updates From A Community.doc.html │ │ │ │ │ │ │ ├── Get Updates From A Community.html │ │ │ │ │ │ │ ├── Get Updates From A Community.js │ │ │ │ │ │ │ ├── Get Updates From A Community.properties │ │ │ │ │ │ │ ├── Get Updates From A User.doc.html │ │ │ │ │ │ │ ├── Get Updates From A User.html │ │ │ │ │ │ │ ├── Get Updates From A User.js │ │ │ │ │ │ │ ├── Get Updates From A User.properties │ │ │ │ │ │ │ ├── Get Updates From Communities I Follow.doc.html │ │ │ │ │ │ │ ├── Get Updates From Communities I Follow.html │ │ │ │ │ │ │ ├── Get Updates From Communities I Follow.js │ │ │ │ │ │ │ ├── Get Updates From Communities I Follow.properties │ │ │ │ │ │ │ ├── Get Updates From My Network.doc.html │ │ │ │ │ │ │ ├── Get Updates From My Network.html │ │ │ │ │ │ │ ├── Get Updates From My Network.js │ │ │ │ │ │ │ ├── Get Updates From My Network.properties │ │ │ │ │ │ │ ├── Get Updates From People I Follow.doc.html │ │ │ │ │ │ │ ├── Get Updates From People I Follow.html │ │ │ │ │ │ │ ├── Get Updates From People I Follow.js │ │ │ │ │ │ │ ├── Get Updates From People I Follow.properties │ │ │ │ │ │ │ ├── Post A Status Update String.doc.html │ │ │ │ │ │ │ ├── Post A Status Update String.html │ │ │ │ │ │ │ ├── Post A Status Update String.js │ │ │ │ │ │ │ ├── Post A Status Update String.properties │ │ │ │ │ │ │ ├── Post A Status Update.doc.html │ │ │ │ │ │ │ ├── Post A Status Update.html │ │ │ │ │ │ │ ├── Post A Status Update.js │ │ │ │ │ │ │ ├── Post A Status Update.properties │ │ │ │ │ │ │ ├── Post Entry into a Community Stream.doc.html │ │ │ │ │ │ │ ├── Post Entry into a Community Stream.html │ │ │ │ │ │ │ ├── Post Entry into a Community Stream.js │ │ │ │ │ │ │ ├── Post Entry into a Community Stream.properties │ │ │ │ │ │ │ ├── Post Entry with Embedded Experience.doc.html │ │ │ │ │ │ │ ├── Post Entry with Embedded Experience.html │ │ │ │ │ │ │ ├── Post Entry with Embedded Experience.js │ │ │ │ │ │ │ ├── Post Entry with Embedded Experience.properties │ │ │ │ │ │ │ ├── Post Entry.doc.html │ │ │ │ │ │ │ ├── Post Entry.html │ │ │ │ │ │ │ ├── Post Entry.js │ │ │ │ │ │ │ ├── Post Entry.properties │ │ │ │ │ │ │ ├── Search By Filters.doc.html │ │ │ │ │ │ │ ├── Search By Filters.html │ │ │ │ │ │ │ ├── Search By Filters.js │ │ │ │ │ │ │ ├── Search By Filters.properties │ │ │ │ │ │ │ ├── Search By Query.doc.html │ │ │ │ │ │ │ ├── Search By Query.html │ │ │ │ │ │ │ ├── Search By Query.js │ │ │ │ │ │ │ ├── Search By Query.properties │ │ │ │ │ │ │ ├── Search By Tags.doc.html │ │ │ │ │ │ │ ├── Search By Tags.html │ │ │ │ │ │ │ ├── Search By Tags.js │ │ │ │ │ │ │ ├── Search By Tags.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Blogs │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── CreateBlog.html │ │ │ │ │ │ │ │ ├── CreateBlog.js │ │ │ │ │ │ │ │ ├── CreateBlog.properties │ │ │ │ │ │ │ │ ├── CreateComment.html │ │ │ │ │ │ │ │ ├── CreateComment.js │ │ │ │ │ │ │ │ ├── CreateComment.properties │ │ │ │ │ │ │ │ ├── CreatePost.html │ │ │ │ │ │ │ │ ├── CreatePost.js │ │ │ │ │ │ │ │ ├── CreatePost.properties │ │ │ │ │ │ │ │ ├── DeleteBlog.html │ │ │ │ │ │ │ │ ├── DeleteBlog.js │ │ │ │ │ │ │ │ ├── DeleteBlog.properties │ │ │ │ │ │ │ │ ├── DeleteComment.html │ │ │ │ │ │ │ │ ├── DeleteComment.js │ │ │ │ │ │ │ │ ├── DeleteComment.properties │ │ │ │ │ │ │ │ ├── DeletePost.html │ │ │ │ │ │ │ │ ├── DeletePost.js │ │ │ │ │ │ │ │ ├── DeletePost.properties │ │ │ │ │ │ │ │ ├── GetAllBlogComments.html │ │ │ │ │ │ │ │ ├── GetAllBlogComments.js │ │ │ │ │ │ │ │ ├── GetAllBlogComments.properties │ │ │ │ │ │ │ │ ├── GetAllBlogPosts.html │ │ │ │ │ │ │ │ ├── GetAllBlogPosts.js │ │ │ │ │ │ │ │ ├── GetAllBlogPosts.properties │ │ │ │ │ │ │ │ ├── GetAllBlogTags.html │ │ │ │ │ │ │ │ ├── GetAllBlogTags.js │ │ │ │ │ │ │ │ ├── GetAllBlogTags.properties │ │ │ │ │ │ │ │ ├── GetAllBlogs.html │ │ │ │ │ │ │ │ ├── GetAllBlogs.js │ │ │ │ │ │ │ │ ├── GetAllBlogs.properties │ │ │ │ │ │ │ │ ├── GetBlog.html │ │ │ │ │ │ │ │ ├── GetBlog.js │ │ │ │ │ │ │ │ ├── GetBlog.properties │ │ │ │ │ │ │ │ ├── GetBlogComments.html │ │ │ │ │ │ │ │ ├── GetBlogComments.js │ │ │ │ │ │ │ │ ├── GetBlogComments.properties │ │ │ │ │ │ │ │ ├── GetBlogPost.html │ │ │ │ │ │ │ │ ├── GetBlogPost.js │ │ │ │ │ │ │ │ ├── GetBlogPost.properties │ │ │ │ │ │ │ │ ├── GetBlogPostRecommenders.html │ │ │ │ │ │ │ │ ├── GetBlogPostRecommenders.js │ │ │ │ │ │ │ │ ├── GetBlogPostRecommenders.properties │ │ │ │ │ │ │ │ ├── GetBlogPosts.html │ │ │ │ │ │ │ │ ├── GetBlogPosts.js │ │ │ │ │ │ │ │ ├── GetBlogPosts.properties │ │ │ │ │ │ │ │ ├── GetBlogTags.html │ │ │ │ │ │ │ │ ├── GetBlogTags.js │ │ │ │ │ │ │ │ ├── GetBlogTags.properties │ │ │ │ │ │ │ │ ├── GetComment.html │ │ │ │ │ │ │ │ ├── GetComment.js │ │ │ │ │ │ │ │ ├── GetComment.properties │ │ │ │ │ │ │ │ ├── GetFeaturedBlogs.html │ │ │ │ │ │ │ │ ├── GetFeaturedBlogs.js │ │ │ │ │ │ │ │ ├── GetFeaturedBlogs.properties │ │ │ │ │ │ │ │ ├── GetMyBlogs.html │ │ │ │ │ │ │ │ ├── GetMyBlogs.js │ │ │ │ │ │ │ │ ├── GetMyBlogs.properties │ │ │ │ │ │ │ │ ├── RecommendPost.html │ │ │ │ │ │ │ │ ├── RecommendPost.js │ │ │ │ │ │ │ │ ├── RecommendPost.properties │ │ │ │ │ │ │ │ ├── UnRecommendPost.html │ │ │ │ │ │ │ │ ├── UnRecommendPost.js │ │ │ │ │ │ │ │ ├── UnRecommendPost.properties │ │ │ │ │ │ │ │ ├── UpdateBlog.html │ │ │ │ │ │ │ │ ├── UpdateBlog.js │ │ │ │ │ │ │ │ ├── UpdateBlog.properties │ │ │ │ │ │ │ │ ├── UpdatePost.html │ │ │ │ │ │ │ │ ├── UpdatePost.js │ │ │ │ │ │ │ │ └── UpdatePost.properties │ │ │ │ │ │ │ ├── Get All Blogs.doc.html │ │ │ │ │ │ │ ├── Get All Blogs.html │ │ │ │ │ │ │ ├── Get All Blogs.js │ │ │ │ │ │ │ ├── Get All Blogs.properties │ │ │ │ │ │ │ ├── Get Blog Comments.doc.html │ │ │ │ │ │ │ ├── Get Blog Comments.html │ │ │ │ │ │ │ ├── Get Blog Comments.js │ │ │ │ │ │ │ ├── Get Blog Comments.properties │ │ │ │ │ │ │ ├── Get Blog Post Recommenders.doc.html │ │ │ │ │ │ │ ├── Get Blog Post Recommenders.html │ │ │ │ │ │ │ ├── Get Blog Post Recommenders.js │ │ │ │ │ │ │ ├── Get Blog Post Recommenders.properties │ │ │ │ │ │ │ ├── Get Blog Posts.doc.html │ │ │ │ │ │ │ ├── Get Blog Posts.html │ │ │ │ │ │ │ ├── Get Blog Posts.js │ │ │ │ │ │ │ ├── Get Blog Posts.properties │ │ │ │ │ │ │ ├── Get Blogs Comments.doc.html │ │ │ │ │ │ │ ├── Get Blogs Comments.html │ │ │ │ │ │ │ ├── Get Blogs Comments.js │ │ │ │ │ │ │ ├── Get Blogs Comments.properties │ │ │ │ │ │ │ ├── Get Blogs Posts.doc.html │ │ │ │ │ │ │ ├── Get Blogs Posts.html │ │ │ │ │ │ │ ├── Get Blogs Posts.js │ │ │ │ │ │ │ ├── Get Blogs Posts.properties │ │ │ │ │ │ │ ├── Get Featured Blogs.doc.html │ │ │ │ │ │ │ ├── Get Featured Blogs.html │ │ │ │ │ │ │ ├── Get Featured Blogs.js │ │ │ │ │ │ │ ├── Get Featured Blogs.properties │ │ │ │ │ │ │ ├── Get Featured Posts.doc.html │ │ │ │ │ │ │ ├── Get Featured Posts.html │ │ │ │ │ │ │ ├── Get Featured Posts.js │ │ │ │ │ │ │ ├── Get Featured Posts.properties │ │ │ │ │ │ │ ├── Get My Blogs.doc.html │ │ │ │ │ │ │ ├── Get My Blogs.html │ │ │ │ │ │ │ ├── Get My Blogs.js │ │ │ │ │ │ │ ├── Get My Blogs.properties │ │ │ │ │ │ │ ├── Get Recommended Posts.doc.html │ │ │ │ │ │ │ ├── Get Recommended Posts.html │ │ │ │ │ │ │ ├── Get Recommended Posts.js │ │ │ │ │ │ │ ├── Get Recommended Posts.properties │ │ │ │ │ │ │ ├── Read Blog Posts.html │ │ │ │ │ │ │ ├── Read Blog Posts.js │ │ │ │ │ │ │ ├── Read Blog Posts.properties │ │ │ │ │ │ │ ├── Read Blog.html │ │ │ │ │ │ │ ├── Read Blog.js │ │ │ │ │ │ │ └── Read Blog.properties │ │ │ │ │ │ ├── Bookmarks │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── CreateBookmark.html │ │ │ │ │ │ │ │ ├── CreateBookmark.js │ │ │ │ │ │ │ │ ├── CreateBookmark.properties │ │ │ │ │ │ │ │ ├── DeleteBookmark.html │ │ │ │ │ │ │ │ ├── DeleteBookmark.js │ │ │ │ │ │ │ │ ├── DeleteBookmark.properties │ │ │ │ │ │ │ │ ├── GetAllBookmarks.html │ │ │ │ │ │ │ │ ├── GetAllBookmarks.js │ │ │ │ │ │ │ │ ├── GetAllBookmarks.properties │ │ │ │ │ │ │ │ ├── GetBookmark.html │ │ │ │ │ │ │ │ ├── GetBookmark.js │ │ │ │ │ │ │ │ ├── GetBookmark.properties │ │ │ │ │ │ │ │ ├── GetBookmarksTags.html │ │ │ │ │ │ │ │ ├── GetBookmarksTags.js │ │ │ │ │ │ │ │ ├── GetBookmarksTags.properties │ │ │ │ │ │ │ │ ├── UpdateBookmark.html │ │ │ │ │ │ │ │ ├── UpdateBookmark.js │ │ │ │ │ │ │ │ └── UpdateBookmark.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── All Bookmarks List Grid.doc.html │ │ │ │ │ │ │ │ ├── All Bookmarks List Grid.html │ │ │ │ │ │ │ │ ├── All Bookmarks List Grid.js │ │ │ │ │ │ │ │ ├── All Bookmarks List Grid.properties │ │ │ │ │ │ │ │ ├── All Bookmarks Ordered List Grid.doc.html │ │ │ │ │ │ │ │ ├── All Bookmarks Ordered List Grid.html │ │ │ │ │ │ │ │ ├── All Bookmarks Ordered List Grid.js │ │ │ │ │ │ │ │ ├── All Bookmarks Ordered List Grid.properties │ │ │ │ │ │ │ │ ├── All Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── All Bookmarks.html │ │ │ │ │ │ │ │ ├── All Bookmarks.js │ │ │ │ │ │ │ │ ├── All Bookmarks.properties │ │ │ │ │ │ │ │ ├── Bootstrap All Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap All Bookmarks.html │ │ │ │ │ │ │ │ ├── Bootstrap All Bookmarks.js │ │ │ │ │ │ │ │ ├── Bootstrap All Bookmarks.properties │ │ │ │ │ │ │ │ ├── Bootstrap Community Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Community Bookmarks.html │ │ │ │ │ │ │ │ ├── Bootstrap Community Bookmarks.js │ │ │ │ │ │ │ │ ├── Bootstrap Community Bookmarks.properties │ │ │ │ │ │ │ │ ├── Bootstrap My Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap My Bookmarks.html │ │ │ │ │ │ │ │ ├── Bootstrap My Bookmarks.js │ │ │ │ │ │ │ │ ├── Bootstrap My Bookmarks.properties │ │ │ │ │ │ │ │ ├── Bootstrap Public Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Public Bookmarks.html │ │ │ │ │ │ │ │ ├── Bootstrap Public Bookmarks.js │ │ │ │ │ │ │ │ ├── Bootstrap Public Bookmarks.properties │ │ │ │ │ │ │ │ ├── Community Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Community Bookmarks.html │ │ │ │ │ │ │ │ ├── Community Bookmarks.js │ │ │ │ │ │ │ │ ├── Community Bookmarks.properties │ │ │ │ │ │ │ │ ├── My Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── My Bookmarks.html │ │ │ │ │ │ │ │ ├── My Bookmarks.js │ │ │ │ │ │ │ │ ├── My Bookmarks.properties │ │ │ │ │ │ │ │ ├── Public Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Public Bookmarks.html │ │ │ │ │ │ │ │ ├── Public Bookmarks.js │ │ │ │ │ │ │ │ └── Public Bookmarks.properties │ │ │ │ │ │ │ ├── Get All Bookmarks.doc.html │ │ │ │ │ │ │ ├── Get All Bookmarks.html │ │ │ │ │ │ │ ├── Get All Bookmarks.js │ │ │ │ │ │ │ ├── Get All Bookmarks.properties │ │ │ │ │ │ │ ├── Get Bookmarks Tags.doc.html │ │ │ │ │ │ │ ├── Get Bookmarks Tags.html │ │ │ │ │ │ │ ├── Get Bookmarks Tags.js │ │ │ │ │ │ │ ├── Get Bookmarks Tags.properties │ │ │ │ │ │ │ ├── Get User Bookmarks.doc.html │ │ │ │ │ │ │ ├── Get User Bookmarks.html │ │ │ │ │ │ │ ├── Get User Bookmarks.js │ │ │ │ │ │ │ ├── Get User Bookmarks.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Get All Bookmarks List.doc.html │ │ │ │ │ │ │ │ ├── Get All Bookmarks List.js │ │ │ │ │ │ │ │ ├── Get All Bookmarks XML.doc.html │ │ │ │ │ │ │ │ ├── Get All Bookmarks XML.js │ │ │ │ │ │ │ │ ├── Get All Bookmarks XML.properties │ │ │ │ │ │ │ │ ├── Get All Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Get All Bookmarks.js │ │ │ │ │ │ │ │ └── Get All Bookmarks.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── GetEmailConfig.html │ │ │ │ │ │ │ │ ├── GetEmailConfig.js │ │ │ │ │ │ │ │ ├── GetEmailConfig.properties │ │ │ │ │ │ │ │ ├── GetServiceConfigs.html │ │ │ │ │ │ │ │ ├── GetServiceConfigs.js │ │ │ │ │ │ │ │ ├── GetServiceConfigs.properties │ │ │ │ │ │ │ │ ├── GetSupportedDisplayLanguages.html │ │ │ │ │ │ │ │ ├── GetSupportedDisplayLanguages.js │ │ │ │ │ │ │ │ └── GetSupportedDisplayLanguages.properties │ │ │ │ │ │ │ ├── Get Services Configs.doc.html │ │ │ │ │ │ │ ├── Get Services Configs.html │ │ │ │ │ │ │ ├── Get Services Configs.js │ │ │ │ │ │ │ ├── Get Services Configs.properties │ │ │ │ │ │ │ ├── Get Supported Display Languages.doc.html │ │ │ │ │ │ │ ├── Get Supported Display Languages.html │ │ │ │ │ │ │ ├── Get Supported Display Languages.js │ │ │ │ │ │ │ ├── Get Supported Display Languages.properties │ │ │ │ │ │ │ ├── Is Email Exposed.doc.html │ │ │ │ │ │ │ ├── Is Email Exposed.html │ │ │ │ │ │ │ ├── Is Email Exposed.js │ │ │ │ │ │ │ └── Is Email Exposed.properties │ │ │ │ │ │ ├── Communities │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── AcceptInvite.html │ │ │ │ │ │ │ │ ├── AcceptInvite.js │ │ │ │ │ │ │ │ ├── AcceptInvite.properties │ │ │ │ │ │ │ │ ├── AddMember.html │ │ │ │ │ │ │ │ ├── AddMember.js │ │ │ │ │ │ │ │ ├── AddMember.mock │ │ │ │ │ │ │ │ ├── AddMember.properties │ │ │ │ │ │ │ │ ├── AddMember.result │ │ │ │ │ │ │ │ ├── Community.html │ │ │ │ │ │ │ │ ├── Community.js │ │ │ │ │ │ │ │ ├── Community.mock │ │ │ │ │ │ │ │ ├── Community.properties │ │ │ │ │ │ │ │ ├── Community.result │ │ │ │ │ │ │ │ ├── CommunityGetSave.html │ │ │ │ │ │ │ │ ├── CommunityGetSave.js │ │ │ │ │ │ │ │ ├── CommunityGetSave.mock │ │ │ │ │ │ │ │ ├── CommunityGetSave.properties │ │ │ │ │ │ │ │ ├── CommunityGetSave.result │ │ │ │ │ │ │ │ ├── CommunityLoad.html │ │ │ │ │ │ │ │ ├── CommunityLoad.js │ │ │ │ │ │ │ │ ├── CommunityLoad.properties │ │ │ │ │ │ │ │ ├── CommunityNewSave.html │ │ │ │ │ │ │ │ ├── CommunityNewSave.js │ │ │ │ │ │ │ │ ├── CommunityNewSave.mock │ │ │ │ │ │ │ │ ├── CommunityNewSave.properties │ │ │ │ │ │ │ │ ├── CommunityNewSave.result │ │ │ │ │ │ │ │ ├── CreateBookmark.html │ │ │ │ │ │ │ │ ├── CreateBookmark.js │ │ │ │ │ │ │ │ ├── CreateBookmark.properties │ │ │ │ │ │ │ │ ├── CreateCommunity.html │ │ │ │ │ │ │ │ ├── CreateCommunity.js │ │ │ │ │ │ │ │ ├── CreateCommunity.mock │ │ │ │ │ │ │ │ ├── CreateCommunity.properties │ │ │ │ │ │ │ │ ├── CreateCommunity.result │ │ │ │ │ │ │ │ ├── CreateCommunityInvalidTitle.html │ │ │ │ │ │ │ │ ├── CreateCommunityInvalidTitle.js │ │ │ │ │ │ │ │ ├── CreateCommunityInvalidTitle.mock │ │ │ │ │ │ │ │ ├── CreateCommunityInvalidTitle.properties │ │ │ │ │ │ │ │ ├── CreateCommunityInvalidTitle.result │ │ │ │ │ │ │ │ ├── CreateCommunityJson.html │ │ │ │ │ │ │ │ ├── CreateCommunityJson.js │ │ │ │ │ │ │ │ ├── CreateCommunityJson.mock │ │ │ │ │ │ │ │ ├── CreateCommunityJson.properties │ │ │ │ │ │ │ │ ├── CreateCommunityJson.result │ │ │ │ │ │ │ │ ├── CreateCommunityLoadIt.html │ │ │ │ │ │ │ │ ├── CreateCommunityLoadIt.js │ │ │ │ │ │ │ │ ├── CreateCommunityLoadIt.mock │ │ │ │ │ │ │ │ ├── CreateCommunityLoadIt.properties │ │ │ │ │ │ │ │ ├── CreateCommunityLoadIt.result │ │ │ │ │ │ │ │ ├── CreateCommunityNew.html │ │ │ │ │ │ │ │ ├── CreateCommunityNew.js │ │ │ │ │ │ │ │ ├── CreateCommunityNew.mock │ │ │ │ │ │ │ │ ├── CreateCommunityNew.properties │ │ │ │ │ │ │ │ ├── CreateCommunityNew.result │ │ │ │ │ │ │ │ ├── CreateForumTopic.html │ │ │ │ │ │ │ │ ├── CreateForumTopic.js │ │ │ │ │ │ │ │ ├── CreateForumTopic.properties │ │ │ │ │ │ │ │ ├── CreateInvite.html │ │ │ │ │ │ │ │ ├── CreateInvite.js │ │ │ │ │ │ │ │ ├── CreateInvite.properties │ │ │ │ │ │ │ │ ├── DeclineInvite.html │ │ │ │ │ │ │ │ ├── DeclineInvite.js │ │ │ │ │ │ │ │ ├── DeclineInvite.properties │ │ │ │ │ │ │ │ ├── DeleteCommunity.html │ │ │ │ │ │ │ │ ├── DeleteCommunity.js │ │ │ │ │ │ │ │ ├── DeleteCommunity.mock │ │ │ │ │ │ │ │ ├── DeleteCommunity.properties │ │ │ │ │ │ │ │ ├── DeleteCommunity.result │ │ │ │ │ │ │ │ ├── GetAllInvites.html │ │ │ │ │ │ │ │ ├── GetAllInvites.js │ │ │ │ │ │ │ │ ├── GetAllInvites.properties │ │ │ │ │ │ │ │ ├── GetCommunity.html │ │ │ │ │ │ │ │ ├── GetCommunity.js │ │ │ │ │ │ │ │ ├── GetCommunity.mock │ │ │ │ │ │ │ │ ├── GetCommunity.properties │ │ │ │ │ │ │ │ ├── GetCommunity.result │ │ │ │ │ │ │ │ ├── GetCommunityEventInsts.html │ │ │ │ │ │ │ │ ├── GetCommunityEventInsts.js │ │ │ │ │ │ │ │ ├── GetCommunityEventInsts.properties │ │ │ │ │ │ │ │ ├── GetCommunityEvents.html │ │ │ │ │ │ │ │ ├── GetCommunityEvents.js │ │ │ │ │ │ │ │ ├── GetCommunityEvents.properties │ │ │ │ │ │ │ │ ├── GetEventInst.html │ │ │ │ │ │ │ │ ├── GetEventInst.js │ │ │ │ │ │ │ │ ├── GetEventInst.properties │ │ │ │ │ │ │ │ ├── GetEventInsts.html │ │ │ │ │ │ │ │ ├── GetEventInsts.js │ │ │ │ │ │ │ │ ├── GetEventInsts.properties │ │ │ │ │ │ │ │ ├── GetForumTopics.html │ │ │ │ │ │ │ │ ├── GetForumTopics.js │ │ │ │ │ │ │ │ ├── GetForumTopics.properties │ │ │ │ │ │ │ │ ├── GetForums.html │ │ │ │ │ │ │ │ ├── GetForums.js │ │ │ │ │ │ │ │ ├── GetMember.html │ │ │ │ │ │ │ │ ├── GetMember.js │ │ │ │ │ │ │ │ ├── GetMember.properties │ │ │ │ │ │ │ │ ├── GetMembers.html │ │ │ │ │ │ │ │ ├── GetMembers.js │ │ │ │ │ │ │ │ ├── GetMembers.mock │ │ │ │ │ │ │ │ ├── GetMembers.properties │ │ │ │ │ │ │ │ ├── GetMembers.result │ │ │ │ │ │ │ │ ├── GetMyCommunities.html │ │ │ │ │ │ │ │ ├── GetMyCommunities.js │ │ │ │ │ │ │ │ ├── GetMyCommunities.mock │ │ │ │ │ │ │ │ ├── GetMyCommunities.properties │ │ │ │ │ │ │ │ ├── GetMyCommunities.result │ │ │ │ │ │ │ │ ├── GetMyCommunityMembers.js │ │ │ │ │ │ │ │ ├── GetMyInvites.html │ │ │ │ │ │ │ │ ├── GetMyInvites.js │ │ │ │ │ │ │ │ ├── GetMyInvites.properties │ │ │ │ │ │ │ │ ├── GetPublicCommunities.html │ │ │ │ │ │ │ │ ├── GetPublicCommunities.js │ │ │ │ │ │ │ │ ├── GetPublicCommunities.mock │ │ │ │ │ │ │ │ ├── GetPublicCommunities.properties │ │ │ │ │ │ │ │ ├── GetPublicCommunities.result │ │ │ │ │ │ │ │ ├── GetSubCommunities.html │ │ │ │ │ │ │ │ ├── GetSubCommunities.js │ │ │ │ │ │ │ │ ├── GetSubCommunities.properties │ │ │ │ │ │ │ │ ├── RemoveInvite.html │ │ │ │ │ │ │ │ ├── RemoveInvite.js │ │ │ │ │ │ │ │ ├── RemoveInvite.properties │ │ │ │ │ │ │ │ ├── RemoveMember.html │ │ │ │ │ │ │ │ ├── RemoveMember.js │ │ │ │ │ │ │ │ ├── RemoveMember.mock │ │ │ │ │ │ │ │ ├── RemoveMember.properties │ │ │ │ │ │ │ │ ├── RemoveMember.result │ │ │ │ │ │ │ │ ├── UpdateCommunity.html │ │ │ │ │ │ │ │ ├── UpdateCommunity.js │ │ │ │ │ │ │ │ ├── UpdateCommunity.mock │ │ │ │ │ │ │ │ ├── UpdateCommunity.properties │ │ │ │ │ │ │ │ ├── UpdateCommunity.result │ │ │ │ │ │ │ │ ├── UpdateCommunityJson.html │ │ │ │ │ │ │ │ ├── UpdateCommunityJson.js │ │ │ │ │ │ │ │ ├── UpdateCommunityJson.mock │ │ │ │ │ │ │ │ ├── UpdateCommunityJson.properties │ │ │ │ │ │ │ │ ├── UpdateCommunityJson.result │ │ │ │ │ │ │ │ ├── UpdateCommunityTags.html │ │ │ │ │ │ │ │ ├── UpdateCommunityTags.js │ │ │ │ │ │ │ │ ├── UpdateCommunityTags.mock │ │ │ │ │ │ │ │ ├── UpdateCommunityTags.properties │ │ │ │ │ │ │ │ ├── UpdateCommunityTags.result │ │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ │ ├── CommunityAllFeed.xml │ │ │ │ │ │ │ │ │ ├── CommunityCreateResponse.xml │ │ │ │ │ │ │ │ │ ├── CommunityEntryModerated.xml │ │ │ │ │ │ │ │ │ ├── CommunityEntryPublic.xml │ │ │ │ │ │ │ │ │ ├── CommunityEntryRestricted.xml │ │ │ │ │ │ │ │ │ ├── CommunityFeed.xml │ │ │ │ │ │ │ │ │ ├── CommunityInvitesFeed.xml │ │ │ │ │ │ │ │ │ ├── CommunityMemberFeed.xml │ │ │ │ │ │ │ │ │ ├── CommunityMembersFeed.xml │ │ │ │ │ │ │ │ │ ├── CommunityRequestBody.xml │ │ │ │ │ │ │ │ │ ├── SmartCloudCommunity.xml │ │ │ │ │ │ │ │ │ ├── SmartCloudCommunityFeed.xml │ │ │ │ │ │ │ │ │ └── SmartCloudCommunityMembers.xml │ │ │ │ │ │ │ ├── Add Remove Community Members.doc.html │ │ │ │ │ │ │ ├── Add Remove Community Members.html │ │ │ │ │ │ │ ├── Add Remove Community Members.js │ │ │ │ │ │ │ ├── Add Remove Community Members.properties │ │ │ │ │ │ │ ├── Community Folders.doc.html │ │ │ │ │ │ │ ├── Community Folders.html │ │ │ │ │ │ │ ├── Community Folders.js │ │ │ │ │ │ │ ├── Community Folders.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Add Members To Communities.doc.html │ │ │ │ │ │ │ │ ├── Add Members To Communities.html │ │ │ │ │ │ │ │ ├── Add Members To Communities.js │ │ │ │ │ │ │ │ ├── Add Members To Communities.properties │ │ │ │ │ │ │ │ ├── Bootstrap Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Communities Grid.html │ │ │ │ │ │ │ │ ├── Bootstrap Communities Grid.js │ │ │ │ │ │ │ │ ├── Bootstrap Communities Grid.properties │ │ │ │ │ │ │ │ ├── Bootstrap Community Action Grid.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Community Action Grid.html │ │ │ │ │ │ │ │ ├── Bootstrap Community Action Grid.js │ │ │ │ │ │ │ │ ├── Bootstrap Community Action Grid.properties │ │ │ │ │ │ │ │ ├── Bootstrap Community Delete Action Grid.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Community Delete Action Grid.html │ │ │ │ │ │ │ │ ├── Bootstrap Community Delete Action Grid.js │ │ │ │ │ │ │ │ ├── Bootstrap Community Delete Action Grid.properties │ │ │ │ │ │ │ │ ├── Bootstrap My Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap My Communities Grid.html │ │ │ │ │ │ │ │ ├── Bootstrap My Communities Grid.js │ │ │ │ │ │ │ │ ├── Bootstrap My Communities Grid.properties │ │ │ │ │ │ │ │ ├── Bootstrap Public Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Public Communities Grid.html │ │ │ │ │ │ │ │ ├── Bootstrap Public Communities Grid.js │ │ │ │ │ │ │ │ ├── Bootstrap Public Communities Grid.properties │ │ │ │ │ │ │ │ ├── Community Action Grid.doc.html │ │ │ │ │ │ │ │ ├── Community Action Grid.html │ │ │ │ │ │ │ │ ├── Community Action Grid.js │ │ │ │ │ │ │ │ ├── Community Action Grid.properties │ │ │ │ │ │ │ │ ├── Community Delete Action Grid.doc.html │ │ │ │ │ │ │ │ ├── Community Delete Action Grid.html │ │ │ │ │ │ │ │ ├── Community Delete Action Grid.js │ │ │ │ │ │ │ │ ├── Community Delete Action Grid.properties │ │ │ │ │ │ │ │ ├── Community Members.doc.html │ │ │ │ │ │ │ │ ├── Community Members.html │ │ │ │ │ │ │ │ ├── Community Members.js │ │ │ │ │ │ │ │ ├── Community Members.properties │ │ │ │ │ │ │ │ ├── Community VCard.doc.html │ │ │ │ │ │ │ │ ├── Community VCard.html │ │ │ │ │ │ │ │ ├── Community VCard.js │ │ │ │ │ │ │ │ ├── Community VCard.properties │ │ │ │ │ │ │ │ ├── Custom Template Community.doc.html │ │ │ │ │ │ │ │ ├── Custom Template Community.html │ │ │ │ │ │ │ │ ├── Custom Template Community.js │ │ │ │ │ │ │ │ ├── Custom Template Community.properties │ │ │ │ │ │ │ │ ├── Delete My Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── Delete My Communities Grid.html │ │ │ │ │ │ │ │ ├── Delete My Communities Grid.js │ │ │ │ │ │ │ │ ├── Delete My Communities Grid.properties │ │ │ │ │ │ │ │ ├── Member Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── Member Communities Grid.html │ │ │ │ │ │ │ │ ├── Member Communities Grid.js │ │ │ │ │ │ │ │ ├── Member Communities Grid.properties │ │ │ │ │ │ │ │ ├── My Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── My Communities Grid.html │ │ │ │ │ │ │ │ ├── My Communities Grid.js │ │ │ │ │ │ │ │ ├── My Communities Grid.properties │ │ │ │ │ │ │ │ ├── My Communities Templated.doc.html │ │ │ │ │ │ │ │ ├── My Communities Templated.html │ │ │ │ │ │ │ │ ├── My Communities Templated.js │ │ │ │ │ │ │ │ ├── My Communities Templated.properties │ │ │ │ │ │ │ │ ├── One Click To Join.doc.html │ │ │ │ │ │ │ │ ├── One Click To Join.html │ │ │ │ │ │ │ │ ├── One Click To Join.js │ │ │ │ │ │ │ │ ├── One Click To Join.properties │ │ │ │ │ │ │ │ ├── Public Communities Dijit.doc.html │ │ │ │ │ │ │ │ ├── Public Communities Dijit.html │ │ │ │ │ │ │ │ ├── Public Communities Dijit.js │ │ │ │ │ │ │ │ ├── Public Communities Dijit.properties │ │ │ │ │ │ │ │ ├── Public Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── Public Communities Grid.html │ │ │ │ │ │ │ │ ├── Public Communities Grid.js │ │ │ │ │ │ │ │ ├── Public Communities Grid.properties │ │ │ │ │ │ │ │ ├── Start New Community.doc.html │ │ │ │ │ │ │ │ ├── Start New Community.html │ │ │ │ │ │ │ │ ├── Start New Community.js │ │ │ │ │ │ │ │ ├── Start New Community.properties │ │ │ │ │ │ │ │ ├── Tagged Communities Grid.doc.html │ │ │ │ │ │ │ │ ├── Tagged Communities Grid.html │ │ │ │ │ │ │ │ ├── Tagged Communities Grid.js │ │ │ │ │ │ │ │ ├── Tagged Communities Grid.properties │ │ │ │ │ │ │ │ ├── _global.properties │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── CustomCommunityRow.html │ │ │ │ │ │ │ ├── Create Revoke Invites.doc.html │ │ │ │ │ │ │ ├── Create Revoke Invites.html │ │ │ │ │ │ │ ├── Create Revoke Invites.js │ │ │ │ │ │ │ ├── Create Revoke Invites.properties │ │ │ │ │ │ │ ├── Create Update Delete Community.doc.html │ │ │ │ │ │ │ ├── Create Update Delete Community.html │ │ │ │ │ │ │ ├── Create Update Delete Community.js │ │ │ │ │ │ │ ├── Create Update Delete Community.properties │ │ │ │ │ │ │ ├── Get Community Events.doc.html │ │ │ │ │ │ │ ├── Get Community Events.html │ │ │ │ │ │ │ ├── Get Community Events.js │ │ │ │ │ │ │ ├── Get Community Events.properties │ │ │ │ │ │ │ ├── Get Community Forum Topics.doc.html │ │ │ │ │ │ │ ├── Get Community Forum Topics.html │ │ │ │ │ │ │ ├── Get Community Forum Topics.js │ │ │ │ │ │ │ ├── Get Community Forum Topics.properties │ │ │ │ │ │ │ ├── Get My Communities.doc.html │ │ │ │ │ │ │ ├── Get My Communities.html │ │ │ │ │ │ │ ├── Get My Communities.js │ │ │ │ │ │ │ ├── Get My Communities.properties │ │ │ │ │ │ │ ├── Get My Invites.doc.html │ │ │ │ │ │ │ ├── Get My Invites.html │ │ │ │ │ │ │ ├── Get My Invites.js │ │ │ │ │ │ │ ├── Get My Invites.properties │ │ │ │ │ │ │ ├── Get Public Communities.doc.html │ │ │ │ │ │ │ ├── Get Public Communities.html │ │ │ │ │ │ │ ├── Get Public Communities.js │ │ │ │ │ │ │ ├── Get Public Communities.properties │ │ │ │ │ │ │ ├── My Communities List.doc.html │ │ │ │ │ │ │ ├── My Communities List.html │ │ │ │ │ │ │ ├── My Communities List.js │ │ │ │ │ │ │ ├── My Communities List.properties │ │ │ │ │ │ │ ├── My Communities.doc.html │ │ │ │ │ │ │ ├── My Communities.html │ │ │ │ │ │ │ ├── My Communities.js │ │ │ │ │ │ │ ├── My Communities.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Get Community Bookmarks XML.doc.html │ │ │ │ │ │ │ │ ├── Get Community Bookmarks XML.js │ │ │ │ │ │ │ │ ├── Get Community Bookmarks XML.properties │ │ │ │ │ │ │ │ ├── Get My Communities XML.doc.html │ │ │ │ │ │ │ │ ├── Get My Communities XML.js │ │ │ │ │ │ │ │ └── Get My Communities XML.properties │ │ │ │ │ │ │ ├── Share File Smartcloud Community.doc.html │ │ │ │ │ │ │ ├── Share File Smartcloud Community.html │ │ │ │ │ │ │ ├── Share File Smartcloud Community.js │ │ │ │ │ │ │ ├── Share File Smartcloud Community.properties │ │ │ │ │ │ │ ├── Update Community Logo.doc.html │ │ │ │ │ │ │ ├── Update Community Logo.html │ │ │ │ │ │ │ ├── Update Community Logo.js │ │ │ │ │ │ │ ├── Update Community Logo.properties │ │ │ │ │ │ │ ├── Upload Community File.doc.html │ │ │ │ │ │ │ ├── Upload Community File.html │ │ │ │ │ │ │ ├── Upload Community File.js │ │ │ │ │ │ │ ├── Upload Community File.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── AddCommentToCommunityFile.html │ │ │ │ │ │ │ │ ├── AddCommentToCommunityFile.js │ │ │ │ │ │ │ │ ├── AddCommentToCommunityFile.properties │ │ │ │ │ │ │ │ ├── AddCommentToFile.html │ │ │ │ │ │ │ │ ├── AddCommentToFile.js │ │ │ │ │ │ │ │ ├── AddCommentToFile.properties │ │ │ │ │ │ │ │ ├── AddCommentToMyFile.html │ │ │ │ │ │ │ │ ├── AddCommentToMyFile.js │ │ │ │ │ │ │ │ ├── AddCommentToMyFile.properties │ │ │ │ │ │ │ │ ├── AddFilesToFolder.html │ │ │ │ │ │ │ │ ├── AddFilesToFolder.js │ │ │ │ │ │ │ │ ├── AddFilesToFolder.properties │ │ │ │ │ │ │ │ ├── DeleteFile.html │ │ │ │ │ │ │ │ ├── DeleteFile.js │ │ │ │ │ │ │ │ ├── DeleteFile.properties │ │ │ │ │ │ │ │ ├── FileAddComment.html │ │ │ │ │ │ │ │ ├── FileAddComment.js │ │ │ │ │ │ │ │ ├── FileAddComment.properties │ │ │ │ │ │ │ │ ├── FileLock.html │ │ │ │ │ │ │ │ ├── FileLock.js │ │ │ │ │ │ │ │ ├── FileLock.properties │ │ │ │ │ │ │ │ ├── FilePin.html │ │ │ │ │ │ │ │ ├── FilePin.js │ │ │ │ │ │ │ │ ├── FilePin.properties │ │ │ │ │ │ │ │ ├── FileRemove.html │ │ │ │ │ │ │ │ ├── FileRemove.js │ │ │ │ │ │ │ │ ├── FileRemove.properties │ │ │ │ │ │ │ │ ├── FileUnlock.html │ │ │ │ │ │ │ │ ├── FileUnlock.js │ │ │ │ │ │ │ │ ├── FileUnlock.properties │ │ │ │ │ │ │ │ ├── FileUnpin.html │ │ │ │ │ │ │ │ ├── FileUnpin.js │ │ │ │ │ │ │ │ ├── FileUnpin.properties │ │ │ │ │ │ │ │ ├── FileUpdate.html │ │ │ │ │ │ │ │ ├── FileUpdate.js │ │ │ │ │ │ │ │ ├── FileUpdate.properties │ │ │ │ │ │ │ │ ├── GetAllCommunityFileComments.html │ │ │ │ │ │ │ │ ├── GetAllCommunityFileComments.js │ │ │ │ │ │ │ │ ├── GetAllCommunityFileComments.properties │ │ │ │ │ │ │ │ ├── GetCommunityFile.html │ │ │ │ │ │ │ │ ├── GetCommunityFile.js │ │ │ │ │ │ │ │ ├── GetCommunityFile.properties │ │ │ │ │ │ │ │ ├── GetCommunityFiles.html │ │ │ │ │ │ │ │ ├── GetCommunityFiles.js │ │ │ │ │ │ │ │ ├── GetCommunityFiles.properties │ │ │ │ │ │ │ │ ├── GetFile.html │ │ │ │ │ │ │ │ ├── GetFile.js │ │ │ │ │ │ │ │ ├── GetFile.properties │ │ │ │ │ │ │ │ ├── GetFilesSharedByMe.html │ │ │ │ │ │ │ │ ├── GetFilesSharedByMe.js │ │ │ │ │ │ │ │ ├── GetFilesSharedByMe.properties │ │ │ │ │ │ │ │ ├── GetFilesSharedWithMe.html │ │ │ │ │ │ │ │ ├── GetFilesSharedWithMe.js │ │ │ │ │ │ │ │ ├── GetFilesSharedWithMe.properties │ │ │ │ │ │ │ │ ├── GetMyFileComments.html │ │ │ │ │ │ │ │ ├── GetMyFileComments.js │ │ │ │ │ │ │ │ ├── GetMyFileComments.properties │ │ │ │ │ │ │ │ ├── GetMyFiles.html │ │ │ │ │ │ │ │ ├── GetMyFiles.js │ │ │ │ │ │ │ │ ├── GetMyFiles.properties │ │ │ │ │ │ │ │ ├── GetMyFolders.html │ │ │ │ │ │ │ │ ├── GetMyFolders.js │ │ │ │ │ │ │ │ ├── GetMyFolders.properties │ │ │ │ │ │ │ │ ├── GetMyLibrary.html │ │ │ │ │ │ │ │ ├── GetMyLibrary.js │ │ │ │ │ │ │ │ ├── GetMyLibrary.properties │ │ │ │ │ │ │ │ ├── GetPinnedFiles.html │ │ │ │ │ │ │ │ ├── GetPinnedFiles.js │ │ │ │ │ │ │ │ ├── GetPinnedFiles.properties │ │ │ │ │ │ │ │ ├── GetPublicFileComments.html │ │ │ │ │ │ │ │ ├── GetPublicFileComments.js │ │ │ │ │ │ │ │ ├── GetPublicFileComments.properties │ │ │ │ │ │ │ │ ├── GetPublicFiles.html │ │ │ │ │ │ │ │ ├── GetPublicFiles.js │ │ │ │ │ │ │ │ ├── GetPublicFiles.properties │ │ │ │ │ │ │ │ ├── LockFile.html │ │ │ │ │ │ │ │ ├── LockFile.js │ │ │ │ │ │ │ │ ├── LockFile.properties │ │ │ │ │ │ │ │ ├── PinFile.html │ │ │ │ │ │ │ │ ├── PinFile.js │ │ │ │ │ │ │ │ ├── PinFile.properties │ │ │ │ │ │ │ │ ├── ShareFileWithCommunities.html │ │ │ │ │ │ │ │ ├── ShareFileWithCommunities.js │ │ │ │ │ │ │ │ ├── ShareFileWithCommunities.properties │ │ │ │ │ │ │ │ ├── UnlockFile.html │ │ │ │ │ │ │ │ ├── UnlockFile.js │ │ │ │ │ │ │ │ ├── UnlockFile.properties │ │ │ │ │ │ │ │ ├── UnpinFile.html │ │ │ │ │ │ │ │ ├── UnpinFile.js │ │ │ │ │ │ │ │ ├── UnpinFile.properties │ │ │ │ │ │ │ │ ├── UpdateCommunityFileMetadata.html │ │ │ │ │ │ │ │ ├── UpdateCommunityFileMetadata.js │ │ │ │ │ │ │ │ ├── UpdateCommunityFileMetadata.properties │ │ │ │ │ │ │ │ ├── UpdateFileMetadata.html │ │ │ │ │ │ │ │ ├── UpdateFileMetadata.js │ │ │ │ │ │ │ │ ├── UpdateFileMetadata.properties │ │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ │ ├── Add Comment To File.doc.html │ │ │ │ │ │ │ ├── Add Comment To File.html │ │ │ │ │ │ │ ├── Add Comment To File.js │ │ │ │ │ │ │ ├── Add Comment To File.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Community Files.doc.html │ │ │ │ │ │ │ │ ├── Community Files.html │ │ │ │ │ │ │ │ ├── Community Files.js │ │ │ │ │ │ │ │ ├── Community Files.properties │ │ │ │ │ │ │ │ ├── File Action.doc.html │ │ │ │ │ │ │ │ ├── File Action.html │ │ │ │ │ │ │ │ ├── File Action.js │ │ │ │ │ │ │ │ ├── File Action.properties │ │ │ │ │ │ │ │ ├── File Comments.doc.html │ │ │ │ │ │ │ │ ├── File Comments.html │ │ │ │ │ │ │ │ ├── File Comments.js │ │ │ │ │ │ │ │ ├── File Comments.properties │ │ │ │ │ │ │ │ ├── File Grid Wrapper.doc.html │ │ │ │ │ │ │ │ ├── File Grid Wrapper.html │ │ │ │ │ │ │ │ ├── File Grid Wrapper.js │ │ │ │ │ │ │ │ ├── File Grid Wrapper.properties │ │ │ │ │ │ │ │ ├── File Shares.doc.html │ │ │ │ │ │ │ │ ├── File Shares.html │ │ │ │ │ │ │ │ ├── File Shares.js │ │ │ │ │ │ │ │ ├── File Shares.properties │ │ │ │ │ │ │ │ ├── Files Shared By Me.doc.html │ │ │ │ │ │ │ │ ├── Files Shared By Me.html │ │ │ │ │ │ │ │ ├── Files Shared By Me.js │ │ │ │ │ │ │ │ ├── Files Shared By Me.properties │ │ │ │ │ │ │ │ ├── Files Shared With Me.doc.html │ │ │ │ │ │ │ │ ├── Files Shared With Me.html │ │ │ │ │ │ │ │ ├── Files Shared With Me.js │ │ │ │ │ │ │ │ ├── Files Shared With Me.properties │ │ │ │ │ │ │ │ ├── Get Selected Rows.doc.html │ │ │ │ │ │ │ │ ├── Get Selected Rows.html │ │ │ │ │ │ │ │ ├── Get Selected Rows.js │ │ │ │ │ │ │ │ ├── Get Selected Rows.properties │ │ │ │ │ │ │ │ ├── My Active Folders.doc.html │ │ │ │ │ │ │ │ ├── My Active Folders.html │ │ │ │ │ │ │ │ ├── My Active Folders.js │ │ │ │ │ │ │ │ ├── My Active Folders.properties │ │ │ │ │ │ │ │ ├── My Files Bootstrap.doc.html │ │ │ │ │ │ │ │ ├── My Files Bootstrap.html │ │ │ │ │ │ │ │ ├── My Files Bootstrap.js │ │ │ │ │ │ │ │ ├── My Files Bootstrap.properties │ │ │ │ │ │ │ │ ├── My Files Dijit.doc.html │ │ │ │ │ │ │ │ ├── My Files Dijit.html │ │ │ │ │ │ │ │ ├── My Files Dijit.js │ │ │ │ │ │ │ │ ├── My Files Dijit.properties │ │ │ │ │ │ │ │ ├── My Files.doc.html │ │ │ │ │ │ │ │ ├── My Files.html │ │ │ │ │ │ │ │ ├── My Files.js │ │ │ │ │ │ │ │ ├── My Files.properties │ │ │ │ │ │ │ │ ├── My Folders.doc.html │ │ │ │ │ │ │ │ ├── My Folders.html │ │ │ │ │ │ │ │ ├── My Folders.js │ │ │ │ │ │ │ │ ├── My Folders.properties │ │ │ │ │ │ │ │ ├── Pinned Files.doc.html │ │ │ │ │ │ │ │ ├── Pinned Files.html │ │ │ │ │ │ │ │ ├── Pinned Files.js │ │ │ │ │ │ │ │ ├── Pinned Files.properties │ │ │ │ │ │ │ │ ├── Pinned Folders.doc.html │ │ │ │ │ │ │ │ ├── Pinned Folders.html │ │ │ │ │ │ │ │ ├── Pinned Folders.js │ │ │ │ │ │ │ │ ├── Pinned Folders.properties │ │ │ │ │ │ │ │ ├── Public Files.doc.html │ │ │ │ │ │ │ │ ├── Public Files.html │ │ │ │ │ │ │ │ ├── Public Files.js │ │ │ │ │ │ │ │ ├── Public Files.properties │ │ │ │ │ │ │ │ ├── Public Folders.doc.html │ │ │ │ │ │ │ │ ├── Public Folders.html │ │ │ │ │ │ │ │ ├── Public Folders.js │ │ │ │ │ │ │ │ ├── Public Folders.properties │ │ │ │ │ │ │ │ ├── Recycled Files.doc.html │ │ │ │ │ │ │ │ ├── Recycled Files.html │ │ │ │ │ │ │ │ ├── Recycled Files.js │ │ │ │ │ │ │ │ ├── Recycled Files.properties │ │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ │ ├── Get Files Shared By Me.doc.html │ │ │ │ │ │ │ ├── Get Files Shared By Me.html │ │ │ │ │ │ │ ├── Get Files Shared By Me.js │ │ │ │ │ │ │ ├── Get Files Shared By Me.properties │ │ │ │ │ │ │ ├── Get Files Shared With Me.doc.html │ │ │ │ │ │ │ ├── Get Files Shared With Me.html │ │ │ │ │ │ │ ├── Get Files Shared With Me.js │ │ │ │ │ │ │ ├── Get Files Shared With Me.properties │ │ │ │ │ │ │ ├── Get My File Comments.doc.html │ │ │ │ │ │ │ ├── Get My File Comments.html │ │ │ │ │ │ │ ├── Get My File Comments.js │ │ │ │ │ │ │ ├── Get My File Comments.properties │ │ │ │ │ │ │ ├── Get My Files.doc.html │ │ │ │ │ │ │ ├── Get My Files.html │ │ │ │ │ │ │ ├── Get My Files.js │ │ │ │ │ │ │ ├── Get My Files.properties │ │ │ │ │ │ │ ├── Get My Folders.doc.html │ │ │ │ │ │ │ ├── Get My Folders.html │ │ │ │ │ │ │ ├── Get My Folders.js │ │ │ │ │ │ │ ├── Get My Folders.properties │ │ │ │ │ │ │ ├── Get Public File Comments.doc.html │ │ │ │ │ │ │ ├── Get Public File Comments.html │ │ │ │ │ │ │ ├── Get Public File Comments.js │ │ │ │ │ │ │ ├── Get Public File Comments.properties │ │ │ │ │ │ │ ├── Get Public Files.doc.html │ │ │ │ │ │ │ ├── Get Public Files.html │ │ │ │ │ │ │ ├── Get Public Files.js │ │ │ │ │ │ │ ├── Get Public Files.properties │ │ │ │ │ │ │ ├── Load Update Lock Pin Delete File.doc.html │ │ │ │ │ │ │ ├── Load Update Lock Pin Delete File.html │ │ │ │ │ │ │ ├── Load Update Lock Pin Delete File.js │ │ │ │ │ │ │ ├── Load Update Lock Pin Delete File.properties │ │ │ │ │ │ │ ├── My Files.doc.html │ │ │ │ │ │ │ ├── My Files.html │ │ │ │ │ │ │ ├── My Files.js │ │ │ │ │ │ │ ├── My Files.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Get My Files XML.doc.html │ │ │ │ │ │ │ │ ├── Get My Files XML.js │ │ │ │ │ │ │ │ └── Get My Files XML.properties │ │ │ │ │ │ │ ├── Upload File.doc.html │ │ │ │ │ │ │ ├── Upload File.html │ │ │ │ │ │ │ ├── Upload File.js │ │ │ │ │ │ │ ├── Upload File.properties │ │ │ │ │ │ │ ├── Upload New Version.doc.html │ │ │ │ │ │ │ ├── Upload New Version.html │ │ │ │ │ │ │ ├── Upload New Version.js │ │ │ │ │ │ │ ├── Upload New Version.properties │ │ │ │ │ │ │ ├── Views │ │ │ │ │ │ │ │ ├── Add Tags Widget.html │ │ │ │ │ │ │ │ ├── Add Tags Widget.js │ │ │ │ │ │ │ │ ├── Add Tags Widget.properties │ │ │ │ │ │ │ │ ├── Bootstrap Files View.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Files View.html │ │ │ │ │ │ │ │ ├── Bootstrap Files View.js │ │ │ │ │ │ │ │ ├── Bootstrap Files View.properties │ │ │ │ │ │ │ │ ├── File Actions.html │ │ │ │ │ │ │ │ ├── File Actions.js │ │ │ │ │ │ │ │ ├── File Actions.properties │ │ │ │ │ │ │ │ ├── FilesView.html │ │ │ │ │ │ │ │ ├── FilesView.js │ │ │ │ │ │ │ │ ├── FilesView.properties │ │ │ │ │ │ │ │ ├── Move To Trash Widget.html │ │ │ │ │ │ │ │ ├── Move To Trash Widget.js │ │ │ │ │ │ │ │ ├── Move To Trash Widget.properties │ │ │ │ │ │ │ │ ├── New Folder Widget.html │ │ │ │ │ │ │ │ ├── New Folder Widget.js │ │ │ │ │ │ │ │ ├── New Folder Widget.properties │ │ │ │ │ │ │ │ ├── Upload File Widget.html │ │ │ │ │ │ │ │ ├── Upload File Widget.js │ │ │ │ │ │ │ │ └── Upload File Widget.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Follow │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── FollowedResource.xml │ │ │ │ │ │ │ │ ├── GetFollowedResource.html │ │ │ │ │ │ │ │ ├── GetFollowedResource.js │ │ │ │ │ │ │ │ ├── GetFollowedResource.properties │ │ │ │ │ │ │ │ ├── GetFollowedResources.html │ │ │ │ │ │ │ │ ├── GetFollowedResources.js │ │ │ │ │ │ │ │ ├── GetFollowedResources.properties │ │ │ │ │ │ │ │ ├── NotFollowedResource.xml │ │ │ │ │ │ │ │ ├── StartFollowing.html │ │ │ │ │ │ │ │ ├── StartFollowing.js │ │ │ │ │ │ │ │ ├── StartFollowing.properties │ │ │ │ │ │ │ │ ├── StopFollowing.html │ │ │ │ │ │ │ │ ├── StopFollowing.js │ │ │ │ │ │ │ │ └── StopFollowing.properties │ │ │ │ │ │ │ ├── Follow Public Communities.doc.html │ │ │ │ │ │ │ ├── Follow Public Communities.html │ │ │ │ │ │ │ ├── Follow Public Communities.js │ │ │ │ │ │ │ ├── Follow Public Communities.properties │ │ │ │ │ │ │ ├── Get Followed Communities.doc.html │ │ │ │ │ │ │ ├── Get Followed Communities.html │ │ │ │ │ │ │ ├── Get Followed Communities.js │ │ │ │ │ │ │ ├── Get Followed Communities.properties │ │ │ │ │ │ │ ├── Get Followed Profiles.doc.html │ │ │ │ │ │ │ ├── Get Followed Profiles.html │ │ │ │ │ │ │ ├── Get Followed Profiles.js │ │ │ │ │ │ │ ├── Get Followed Profiles.properties │ │ │ │ │ │ │ ├── Start And Stop Following.doc.html │ │ │ │ │ │ │ ├── Start And Stop Following.html │ │ │ │ │ │ │ ├── Start And Stop Following.js │ │ │ │ │ │ │ └── Start And Stop Following.properties │ │ │ │ │ │ ├── Forums │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── CreateForum.html │ │ │ │ │ │ │ │ ├── CreateForum.js │ │ │ │ │ │ │ │ ├── CreateForum.properties │ │ │ │ │ │ │ │ ├── CreateForumReply.html │ │ │ │ │ │ │ │ ├── CreateForumReply.js │ │ │ │ │ │ │ │ ├── CreateForumReply.properties │ │ │ │ │ │ │ │ ├── CreateForumTopic.html │ │ │ │ │ │ │ │ ├── CreateForumTopic.js │ │ │ │ │ │ │ │ ├── CreateForumTopic.properties │ │ │ │ │ │ │ │ ├── DeleteForum.html │ │ │ │ │ │ │ │ ├── DeleteForum.js │ │ │ │ │ │ │ │ ├── DeleteForum.properties │ │ │ │ │ │ │ │ ├── DeleteForumReply.html │ │ │ │ │ │ │ │ ├── DeleteForumReply.js │ │ │ │ │ │ │ │ ├── DeleteForumReply.properties │ │ │ │ │ │ │ │ ├── DeleteForumTopic.html │ │ │ │ │ │ │ │ ├── DeleteForumTopic.js │ │ │ │ │ │ │ │ ├── DeleteForumTopic.properties │ │ │ │ │ │ │ │ ├── GetAllForums.html │ │ │ │ │ │ │ │ ├── GetAllForums.js │ │ │ │ │ │ │ │ ├── GetAllForums.properties │ │ │ │ │ │ │ │ ├── GetCommunityForumTopics.html │ │ │ │ │ │ │ │ ├── GetCommunityForumTopics.js │ │ │ │ │ │ │ │ ├── GetCommunityForumTopics.properties │ │ │ │ │ │ │ │ ├── GetForum.html │ │ │ │ │ │ │ │ ├── GetForum.js │ │ │ │ │ │ │ │ ├── GetForum.properties │ │ │ │ │ │ │ │ ├── GetForumRecommendations.html │ │ │ │ │ │ │ │ ├── GetForumRecommendations.js │ │ │ │ │ │ │ │ ├── GetForumRecommendations.properties │ │ │ │ │ │ │ │ ├── GetForumReplies.html │ │ │ │ │ │ │ │ ├── GetForumReplies.js │ │ │ │ │ │ │ │ ├── GetForumReplies.properties │ │ │ │ │ │ │ │ ├── GetForumReply.html │ │ │ │ │ │ │ │ ├── GetForumReply.js │ │ │ │ │ │ │ │ ├── GetForumReply.properties │ │ │ │ │ │ │ │ ├── GetForumTopic.html │ │ │ │ │ │ │ │ ├── GetForumTopic.js │ │ │ │ │ │ │ │ ├── GetForumTopic.properties │ │ │ │ │ │ │ │ ├── GetForumTopics.html │ │ │ │ │ │ │ │ ├── GetForumTopics.js │ │ │ │ │ │ │ │ ├── GetForumTopics.properties │ │ │ │ │ │ │ │ ├── GetMyForums.html │ │ │ │ │ │ │ │ ├── GetMyForums.js │ │ │ │ │ │ │ │ ├── GetMyForums.properties │ │ │ │ │ │ │ │ ├── GetMyTopics.html │ │ │ │ │ │ │ │ ├── GetMyTopics.js │ │ │ │ │ │ │ │ ├── GetMyTopics.properties │ │ │ │ │ │ │ │ ├── GetMyTopicsRecommendations.html │ │ │ │ │ │ │ │ ├── GetMyTopicsRecommendations.js │ │ │ │ │ │ │ │ ├── GetMyTopicsRecommendations.properties │ │ │ │ │ │ │ │ ├── GetPublicForums.html │ │ │ │ │ │ │ │ ├── GetPublicForums.js │ │ │ │ │ │ │ │ ├── GetPublicForums.properties │ │ │ │ │ │ │ │ ├── UpdateForum.html │ │ │ │ │ │ │ │ ├── UpdateForum.js │ │ │ │ │ │ │ │ ├── UpdateForum.properties │ │ │ │ │ │ │ │ ├── UpdateForumReply.html │ │ │ │ │ │ │ │ ├── UpdateForumReply.js │ │ │ │ │ │ │ │ ├── UpdateForumReply.properties │ │ │ │ │ │ │ │ ├── UpdateForumTopic.html │ │ │ │ │ │ │ │ ├── UpdateForumTopic.js │ │ │ │ │ │ │ │ └── UpdateForumTopic.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Bootstrap Forum Topics.html │ │ │ │ │ │ │ │ ├── Bootstrap Forum Topics.js │ │ │ │ │ │ │ │ ├── Bootstrap Forum Topics.properties │ │ │ │ │ │ │ │ ├── Bootstrap My Forums.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap My Forums.html │ │ │ │ │ │ │ │ ├── Bootstrap My Forums.js │ │ │ │ │ │ │ │ ├── Bootstrap My Forums.properties │ │ │ │ │ │ │ │ ├── Bootstrap My Topics.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap My Topics.html │ │ │ │ │ │ │ │ ├── Bootstrap My Topics.js │ │ │ │ │ │ │ │ ├── Bootstrap My Topics.properties │ │ │ │ │ │ │ │ ├── Bootstrap Public Forums.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Public Forums.html │ │ │ │ │ │ │ │ ├── Bootstrap Public Forums.js │ │ │ │ │ │ │ │ ├── Bootstrap Public Forums.properties │ │ │ │ │ │ │ │ ├── Forum Topics.html │ │ │ │ │ │ │ │ ├── Forum Topics.js │ │ │ │ │ │ │ │ ├── Forum Topics.properties │ │ │ │ │ │ │ │ ├── My Forums.doc.html │ │ │ │ │ │ │ │ ├── My Forums.html │ │ │ │ │ │ │ │ ├── My Forums.js │ │ │ │ │ │ │ │ ├── My Forums.properties │ │ │ │ │ │ │ │ ├── My Topics.doc.html │ │ │ │ │ │ │ │ ├── My Topics.html │ │ │ │ │ │ │ │ ├── My Topics.js │ │ │ │ │ │ │ │ ├── My Topics.properties │ │ │ │ │ │ │ │ ├── Public Forums.doc.html │ │ │ │ │ │ │ │ ├── Public Forums.html │ │ │ │ │ │ │ │ ├── Public Forums.js │ │ │ │ │ │ │ │ └── Public Forums.properties │ │ │ │ │ │ │ ├── Create Update Delete Reply.doc.html │ │ │ │ │ │ │ ├── Create Update Delete Reply.html │ │ │ │ │ │ │ ├── Create Update Delete Reply.js │ │ │ │ │ │ │ ├── Create Update Delete Reply.properties │ │ │ │ │ │ │ ├── Create Update Delete Topic.doc.html │ │ │ │ │ │ │ ├── Create Update Delete Topic.html │ │ │ │ │ │ │ ├── Create Update Delete Topic.js │ │ │ │ │ │ │ ├── Create Update Delete Topic.properties │ │ │ │ │ │ │ ├── Get My Answered Topics.doc.html │ │ │ │ │ │ │ ├── Get My Answered Topics.html │ │ │ │ │ │ │ ├── Get My Answered Topics.js │ │ │ │ │ │ │ ├── Get My Answered Topics.properties │ │ │ │ │ │ │ ├── Get My Forum Entries.doc.html │ │ │ │ │ │ │ ├── Get My Forum Entries.html │ │ │ │ │ │ │ ├── Get My Forum Entries.js │ │ │ │ │ │ │ ├── Get My Forum Entries.properties │ │ │ │ │ │ │ ├── Get My Forums.doc.html │ │ │ │ │ │ │ ├── Get My Forums.html │ │ │ │ │ │ │ ├── Get My Forums.js │ │ │ │ │ │ │ ├── Get My Forums.properties │ │ │ │ │ │ │ ├── Get My Topics Recommendations.doc.html │ │ │ │ │ │ │ ├── Get My Topics Recommendations.html │ │ │ │ │ │ │ ├── Get My Topics Recommendations.js │ │ │ │ │ │ │ ├── Get My Topics Recommendations.properties │ │ │ │ │ │ │ ├── Get My Topics.doc.html │ │ │ │ │ │ │ ├── Get My Topics.html │ │ │ │ │ │ │ ├── Get My Topics.js │ │ │ │ │ │ │ ├── Get My Topics.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Get Forum Replies XML.doc.html │ │ │ │ │ │ │ │ ├── Get Forum Replies XML.js │ │ │ │ │ │ │ │ ├── Get Forum Replies XML.properties │ │ │ │ │ │ │ │ ├── Get Forum Topics XML.doc.html │ │ │ │ │ │ │ │ ├── Get Forum Topics XML.js │ │ │ │ │ │ │ │ ├── Get Forum Topics XML.properties │ │ │ │ │ │ │ │ ├── Get My Forums XML.doc.html │ │ │ │ │ │ │ │ ├── Get My Forums XML.js │ │ │ │ │ │ │ │ ├── Get My Forums XML.properties │ │ │ │ │ │ │ │ ├── Get My Forums.doc.html │ │ │ │ │ │ │ │ ├── Get My Forums.js │ │ │ │ │ │ │ │ ├── Get My Forums.properties │ │ │ │ │ │ │ │ ├── Get My Topics XML.doc.html │ │ │ │ │ │ │ │ ├── Get My Topics XML.js │ │ │ │ │ │ │ │ └── Get My Topics XML.properties │ │ │ │ │ │ │ ├── Start A Forum.doc.html │ │ │ │ │ │ │ ├── Start A Forum.html │ │ │ │ │ │ │ ├── Start A Forum.js │ │ │ │ │ │ │ ├── Start A Forum.properties │ │ │ │ │ │ │ ├── Views │ │ │ │ │ │ │ │ ├── ForumView.html │ │ │ │ │ │ │ │ ├── ForumView.js │ │ │ │ │ │ │ │ └── ForumView.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── IdeationBlog │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── GetMyVotedIdeas.html │ │ │ │ │ │ │ │ ├── GetMyVotedIdeas.js │ │ │ │ │ │ │ │ ├── GetMyVotedIdeas.properties │ │ │ │ │ │ │ │ ├── UnvoteIdea.html │ │ │ │ │ │ │ │ ├── UnvoteIdea.js │ │ │ │ │ │ │ │ ├── UnvoteIdea.properties │ │ │ │ │ │ │ │ ├── VoteIdea.html │ │ │ │ │ │ │ │ ├── VoteIdea.js │ │ │ │ │ │ │ │ └── VoteIdea.properties │ │ │ │ │ │ │ ├── Get My Voted Ideas.doc.html │ │ │ │ │ │ │ ├── Get My Voted Ideas.html │ │ │ │ │ │ │ ├── Get My Voted Ideas.js │ │ │ │ │ │ │ └── Get My Voted Ideas.properties │ │ │ │ │ │ ├── Profiles SmartCloud │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── GetConnections.html │ │ │ │ │ │ │ │ ├── GetConnections.js │ │ │ │ │ │ │ │ ├── GetConnections.properties │ │ │ │ │ │ │ │ ├── GetContactByGUID.html │ │ │ │ │ │ │ │ ├── GetContactByGUID.js │ │ │ │ │ │ │ │ ├── GetContactByGUID.properties │ │ │ │ │ │ │ │ ├── GetContacts.html │ │ │ │ │ │ │ │ ├── GetContacts.js │ │ │ │ │ │ │ │ ├── GetContacts.properties │ │ │ │ │ │ │ │ ├── GetContactsByIndex.html │ │ │ │ │ │ │ │ ├── GetContactsByIndex.js │ │ │ │ │ │ │ │ ├── GetContactsByIndex.properties │ │ │ │ │ │ │ │ ├── GetMyProfile.doc.html │ │ │ │ │ │ │ │ ├── GetMyProfile.html │ │ │ │ │ │ │ │ ├── GetMyProfile.js │ │ │ │ │ │ │ │ ├── GetMyProfile.properties │ │ │ │ │ │ │ │ ├── GetProfileByGUID.html │ │ │ │ │ │ │ │ ├── GetProfileByGUID.js │ │ │ │ │ │ │ │ ├── GetProfileByGUID.properties │ │ │ │ │ │ │ │ ├── GetSummary.html │ │ │ │ │ │ │ │ ├── GetSummary.js │ │ │ │ │ │ │ │ ├── GetSummary.properties │ │ │ │ │ │ │ │ ├── ProfileEntryJsonDataHandler.html │ │ │ │ │ │ │ │ ├── ProfileEntryJsonDataHandler.js │ │ │ │ │ │ │ │ ├── ProfileEntryJsonDataHandler.properties │ │ │ │ │ │ │ │ ├── ProfileFeedJsonDataHandler.html │ │ │ │ │ │ │ │ ├── ProfileFeedJsonDataHandler.js │ │ │ │ │ │ │ │ ├── ProfileFeedJsonDataHandler.properties │ │ │ │ │ │ │ │ ├── TestDateJsonDataHandler.html │ │ │ │ │ │ │ │ ├── TestDateJsonDataHandler.js │ │ │ │ │ │ │ │ ├── TestDateJsonDataHandler.properties │ │ │ │ │ │ │ │ ├── TestNumberJsonDataHandler.html │ │ │ │ │ │ │ │ ├── TestNumberJsonDataHandler.js │ │ │ │ │ │ │ │ └── TestNumberJsonDataHandler.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Colleague Grid.doc.html │ │ │ │ │ │ │ │ ├── Colleague Grid.html │ │ │ │ │ │ │ │ ├── Colleague Grid.js │ │ │ │ │ │ │ │ ├── Colleague Grid.properties │ │ │ │ │ │ │ │ ├── Colleagues.doc.html │ │ │ │ │ │ │ │ ├── Colleagues.html │ │ │ │ │ │ │ │ ├── Colleagues.js │ │ │ │ │ │ │ │ ├── Colleagues.properties │ │ │ │ │ │ │ │ ├── Community Members.html │ │ │ │ │ │ │ │ ├── Community Members.js │ │ │ │ │ │ │ │ ├── Community Members.properties │ │ │ │ │ │ │ │ ├── My Profile Panel.doc.html │ │ │ │ │ │ │ │ ├── My Profile Panel.html │ │ │ │ │ │ │ │ ├── My Profile Panel.js │ │ │ │ │ │ │ │ └── My Profile Panel.properties │ │ │ │ │ │ │ ├── Get My Contacts.doc.html │ │ │ │ │ │ │ ├── Get My Contacts.html │ │ │ │ │ │ │ ├── Get My Contacts.js │ │ │ │ │ │ │ ├── Get My Contacts.properties │ │ │ │ │ │ │ ├── Get My Profile.doc.html │ │ │ │ │ │ │ ├── Get My Profile.html │ │ │ │ │ │ │ ├── Get My Profile.js │ │ │ │ │ │ │ ├── Get My Profile.properties │ │ │ │ │ │ │ ├── Get Profile.doc.html │ │ │ │ │ │ │ ├── Get Profile.html │ │ │ │ │ │ │ ├── Get Profile.js │ │ │ │ │ │ │ ├── Get Profile.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Get My Profile Header.doc.html │ │ │ │ │ │ │ │ ├── Get My Profile Header.js │ │ │ │ │ │ │ │ ├── Get My Profile Header.properties │ │ │ │ │ │ │ │ ├── Get My Profile.doc.html │ │ │ │ │ │ │ │ ├── Get My Profile.js │ │ │ │ │ │ │ │ ├── Get My Profile.properties │ │ │ │ │ │ │ │ ├── Get Profile By User GUID.doc.html │ │ │ │ │ │ │ │ ├── Get Profile By User GUID.js │ │ │ │ │ │ │ │ ├── Get Profile By User GUID.properties │ │ │ │ │ │ │ │ ├── Get Profile By User GUIDHeader.doc.html │ │ │ │ │ │ │ │ ├── Get Profile By User GUIDHeader.js │ │ │ │ │ │ │ │ ├── Get Profile By User GUIDHeader.properties │ │ │ │ │ │ │ │ ├── Get User Identity.doc.html │ │ │ │ │ │ │ │ ├── Get User Identity.js │ │ │ │ │ │ │ │ ├── Get User Identity.properties │ │ │ │ │ │ │ │ ├── Get User Services.doc.html │ │ │ │ │ │ │ │ ├── Get User Services.js │ │ │ │ │ │ │ │ └── Get User Services.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Profiles │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── CheckProfileCache.html │ │ │ │ │ │ │ │ ├── CheckProfileCache.js │ │ │ │ │ │ │ │ ├── CheckProfileCache.properties │ │ │ │ │ │ │ │ ├── CreateInvite.html │ │ │ │ │ │ │ │ ├── CreateInvite.js │ │ │ │ │ │ │ │ ├── CreateInvite.properties │ │ │ │ │ │ │ │ ├── CreateProfile.html │ │ │ │ │ │ │ │ ├── CreateProfile.js │ │ │ │ │ │ │ │ ├── CreateProfile.properties │ │ │ │ │ │ │ │ ├── CreateTags.html │ │ │ │ │ │ │ │ ├── CreateTags.js │ │ │ │ │ │ │ │ ├── CreateTags.properties │ │ │ │ │ │ │ │ ├── DeleteProfile.html │ │ │ │ │ │ │ │ ├── DeleteProfile.js │ │ │ │ │ │ │ │ ├── DeleteProfile.properties │ │ │ │ │ │ │ │ ├── GetCachedProfile.html │ │ │ │ │ │ │ │ ├── GetCachedProfile.js │ │ │ │ │ │ │ │ ├── GetCachedProfile.properties │ │ │ │ │ │ │ │ ├── GetColleagueConnections.html │ │ │ │ │ │ │ │ ├── GetColleagueConnections.js │ │ │ │ │ │ │ │ ├── GetColleagueConnections.properties │ │ │ │ │ │ │ │ ├── GetColleagues.html │ │ │ │ │ │ │ │ ├── GetColleagues.js │ │ │ │ │ │ │ │ ├── GetColleagues.properties │ │ │ │ │ │ │ │ ├── GetPeopleManaged.html │ │ │ │ │ │ │ │ ├── GetPeopleManaged.js │ │ │ │ │ │ │ │ ├── GetPeopleManaged.properties │ │ │ │ │ │ │ │ ├── GetProfile.html │ │ │ │ │ │ │ │ ├── GetProfile.js │ │ │ │ │ │ │ │ ├── GetProfile.properties │ │ │ │ │ │ │ │ ├── GetProfileVCard.html │ │ │ │ │ │ │ │ ├── GetProfileVCard.js │ │ │ │ │ │ │ │ ├── GetProfileVCard.properties │ │ │ │ │ │ │ │ ├── GetReportingChain.html │ │ │ │ │ │ │ │ ├── GetReportingChain.js │ │ │ │ │ │ │ │ ├── GetReportingChain.properties │ │ │ │ │ │ │ │ ├── GetTags.doc.html │ │ │ │ │ │ │ │ ├── GetTags.html │ │ │ │ │ │ │ │ ├── GetTags.js │ │ │ │ │ │ │ │ ├── GetTags.properties │ │ │ │ │ │ │ │ ├── ProfileCreatePostData.html │ │ │ │ │ │ │ │ ├── ProfileCreatePostData.js │ │ │ │ │ │ │ │ ├── ProfileCreatePostData.properties │ │ │ │ │ │ │ │ ├── ProfileEntryDataHandler.html │ │ │ │ │ │ │ │ ├── ProfileEntryDataHandler.js │ │ │ │ │ │ │ │ ├── ProfileEntryDataHandler.properties │ │ │ │ │ │ │ │ ├── ProfileEntryHCardFull.html │ │ │ │ │ │ │ │ ├── ProfileEntryHCardFull.js │ │ │ │ │ │ │ │ ├── ProfileEntryHCardFull.properties │ │ │ │ │ │ │ │ ├── ProfileEntryHCardLite.html │ │ │ │ │ │ │ │ ├── ProfileEntryHCardLite.js │ │ │ │ │ │ │ │ ├── ProfileEntryHCardLite.properties │ │ │ │ │ │ │ │ ├── ProfileEntryVCardFull.html │ │ │ │ │ │ │ │ ├── ProfileEntryVCardFull.js │ │ │ │ │ │ │ │ ├── ProfileEntryVCardFull.properties │ │ │ │ │ │ │ │ ├── ProfileEntryVCardLite.html │ │ │ │ │ │ │ │ ├── ProfileEntryVCardLite.js │ │ │ │ │ │ │ │ ├── ProfileEntryVCardLite.properties │ │ │ │ │ │ │ │ ├── ProfileFeedDataHandler.html │ │ │ │ │ │ │ │ ├── ProfileFeedDataHandler.js │ │ │ │ │ │ │ │ ├── ProfileFeedDataHandler.properties │ │ │ │ │ │ │ │ ├── Search.html │ │ │ │ │ │ │ │ ├── Search.js │ │ │ │ │ │ │ │ ├── Search.properties │ │ │ │ │ │ │ │ ├── UpdateProfile.html │ │ │ │ │ │ │ │ ├── UpdateProfile.js │ │ │ │ │ │ │ │ ├── UpdateProfile.properties │ │ │ │ │ │ │ │ ├── UpdateProfileJson.html │ │ │ │ │ │ │ │ ├── UpdateProfileJson.js │ │ │ │ │ │ │ │ ├── UpdateProfileJson.properties │ │ │ │ │ │ │ │ ├── UpdateTags.html │ │ │ │ │ │ │ │ ├── UpdateTags.js │ │ │ │ │ │ │ │ ├── UpdateTags.properties │ │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ │ ├── ProfileEntry.xml │ │ │ │ │ │ │ │ │ ├── ProfileEntryHCardFull.xml │ │ │ │ │ │ │ │ │ ├── ProfileEntryHCardLite.xml │ │ │ │ │ │ │ │ │ ├── ProfileEntryVCardFull.xml │ │ │ │ │ │ │ │ │ ├── ProfileEntryVCardLite.xml │ │ │ │ │ │ │ │ │ └── ProfileFeed.xml │ │ │ │ │ │ │ ├── Add Tags.doc.html │ │ │ │ │ │ │ ├── Add Tags.html │ │ │ │ │ │ │ ├── Add Tags.js │ │ │ │ │ │ │ ├── Add Tags.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Are Colleagues.doc.html │ │ │ │ │ │ │ │ ├── Are Colleagues.html │ │ │ │ │ │ │ │ ├── Are Colleagues.js │ │ │ │ │ │ │ │ ├── Are Colleagues.properties │ │ │ │ │ │ │ │ ├── Bootstrap Colleagues Grid.doc.html │ │ │ │ │ │ │ │ ├── Bootstrap Colleagues Grid.html │ │ │ │ │ │ │ │ ├── Bootstrap Colleagues Grid.js │ │ │ │ │ │ │ │ ├── Bootstrap Colleagues Grid.properties │ │ │ │ │ │ │ │ ├── Colleagues Grid.doc.html │ │ │ │ │ │ │ │ ├── Colleagues Grid.html │ │ │ │ │ │ │ │ ├── Colleagues Grid.js │ │ │ │ │ │ │ │ ├── Colleagues Grid.properties │ │ │ │ │ │ │ │ ├── Colleagues.doc.html │ │ │ │ │ │ │ │ ├── Colleagues.html │ │ │ │ │ │ │ │ ├── Colleagues.js │ │ │ │ │ │ │ │ ├── Colleagues.properties │ │ │ │ │ │ │ │ ├── Community Members.doc.html │ │ │ │ │ │ │ │ ├── Community Members.html │ │ │ │ │ │ │ │ ├── Community Members.js │ │ │ │ │ │ │ │ ├── Community Members.properties │ │ │ │ │ │ │ │ ├── Connections In Common.doc.html │ │ │ │ │ │ │ │ ├── Connections In Common.html │ │ │ │ │ │ │ │ ├── Connections In Common.js │ │ │ │ │ │ │ │ ├── Connections In Common.properties │ │ │ │ │ │ │ │ ├── Direct Reports.doc.html │ │ │ │ │ │ │ │ ├── Direct Reports.html │ │ │ │ │ │ │ │ ├── Direct Reports.js │ │ │ │ │ │ │ │ ├── Direct Reports.properties │ │ │ │ │ │ │ │ ├── Get Selected Rows.doc.html │ │ │ │ │ │ │ │ ├── Get Selected Rows.html │ │ │ │ │ │ │ │ ├── Get Selected Rows.js │ │ │ │ │ │ │ │ ├── Get Selected Rows.properties │ │ │ │ │ │ │ │ ├── My Colleagues Bootstrap.html │ │ │ │ │ │ │ │ ├── My Colleagues Bootstrap.js │ │ │ │ │ │ │ │ ├── My Colleagues.doc.html │ │ │ │ │ │ │ │ ├── My Colleagues.html │ │ │ │ │ │ │ │ ├── My Colleagues.js │ │ │ │ │ │ │ │ ├── My Colleagues.properties │ │ │ │ │ │ │ │ ├── My Profile Panel.doc.html │ │ │ │ │ │ │ │ ├── My Profile Panel.html │ │ │ │ │ │ │ │ ├── My Profile Panel.js │ │ │ │ │ │ │ │ ├── My Profile Panel.properties │ │ │ │ │ │ │ │ ├── Network Invite.doc.html │ │ │ │ │ │ │ │ ├── Network Invite.html │ │ │ │ │ │ │ │ ├── Network Invite.js │ │ │ │ │ │ │ │ ├── Network Invite.properties │ │ │ │ │ │ │ │ ├── Profile Action.doc.html │ │ │ │ │ │ │ │ ├── Profile Action.html │ │ │ │ │ │ │ │ ├── Profile Action.js │ │ │ │ │ │ │ │ ├── Profile Action.properties │ │ │ │ │ │ │ │ ├── Profile Panel.doc.html │ │ │ │ │ │ │ │ ├── Profile Panel.html │ │ │ │ │ │ │ │ ├── Profile Panel.js │ │ │ │ │ │ │ │ ├── Profile Panel.properties │ │ │ │ │ │ │ │ ├── Profile Search.doc.html │ │ │ │ │ │ │ │ ├── Profile Search.html │ │ │ │ │ │ │ │ ├── Profile Search.js │ │ │ │ │ │ │ │ ├── Profile Search.properties │ │ │ │ │ │ │ │ ├── Profile Tag Action.doc.html │ │ │ │ │ │ │ │ ├── Profile Tag Action.html │ │ │ │ │ │ │ │ ├── Profile Tag Action.js │ │ │ │ │ │ │ │ ├── Profile Tag Action.properties │ │ │ │ │ │ │ │ ├── Profile Tag Search.doc.html │ │ │ │ │ │ │ │ ├── Profile Tag Search.html │ │ │ │ │ │ │ │ ├── Profile Tag Search.js │ │ │ │ │ │ │ │ ├── Profile Tag Search.properties │ │ │ │ │ │ │ │ ├── Profile Tagged By.doc.html │ │ │ │ │ │ │ │ ├── Profile Tagged By.html │ │ │ │ │ │ │ │ ├── Profile Tagged By.js │ │ │ │ │ │ │ │ ├── Profile Tagged By.properties │ │ │ │ │ │ │ │ ├── Profile Tags For.doc.html │ │ │ │ │ │ │ │ ├── Profile Tags For.html │ │ │ │ │ │ │ │ ├── Profile Tags For.js │ │ │ │ │ │ │ │ ├── Profile Tags For.properties │ │ │ │ │ │ │ │ ├── Profile VCard Email.doc.html │ │ │ │ │ │ │ │ ├── Profile VCard Email.html │ │ │ │ │ │ │ │ ├── Profile VCard Email.js │ │ │ │ │ │ │ │ ├── Profile VCard Email.properties │ │ │ │ │ │ │ │ ├── Profile VCard Inline.doc.html │ │ │ │ │ │ │ │ ├── Profile VCard Inline.html │ │ │ │ │ │ │ │ ├── Profile VCard Inline.js │ │ │ │ │ │ │ │ ├── Profile VCard Inline.properties │ │ │ │ │ │ │ │ ├── Profile VCard Wrapper.doc.html │ │ │ │ │ │ │ │ ├── Profile VCard Wrapper.html │ │ │ │ │ │ │ │ ├── Profile VCard Wrapper.js │ │ │ │ │ │ │ │ ├── Profile VCard Wrapper.properties │ │ │ │ │ │ │ │ ├── Profile VCard.doc.html │ │ │ │ │ │ │ │ ├── Profile VCard.html │ │ │ │ │ │ │ │ ├── Profile VCard.js │ │ │ │ │ │ │ │ ├── Profile VCard.properties │ │ │ │ │ │ │ │ ├── Profile VCards.doc.html │ │ │ │ │ │ │ │ ├── Profile VCards.html │ │ │ │ │ │ │ │ ├── Profile VCards.js │ │ │ │ │ │ │ │ ├── Profile VCards.properties │ │ │ │ │ │ │ │ ├── Reporting Chain Bootstrap.html │ │ │ │ │ │ │ │ ├── Reporting Chain Bootstrap.js │ │ │ │ │ │ │ │ ├── Reporting Chain Bootstrap.properties │ │ │ │ │ │ │ │ ├── Reporting Chain.doc.html │ │ │ │ │ │ │ │ ├── Reporting Chain.html │ │ │ │ │ │ │ │ ├── Reporting Chain.js │ │ │ │ │ │ │ │ ├── Reporting Chain.properties │ │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ │ ├── Get Extended Profile.html │ │ │ │ │ │ │ ├── Get Extended Profile.js │ │ │ │ │ │ │ ├── Get Extended Profile.properties │ │ │ │ │ │ │ ├── Get Profile.doc.html │ │ │ │ │ │ │ ├── Get Profile.html │ │ │ │ │ │ │ ├── Get Profile.js │ │ │ │ │ │ │ ├── Get Profile.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Read Name and Email.doc.html │ │ │ │ │ │ │ │ ├── Read Name and Email.js │ │ │ │ │ │ │ │ ├── Read Name and Email.properties │ │ │ │ │ │ │ │ ├── Read Profile Photo.doc.html │ │ │ │ │ │ │ │ ├── Read Profile Photo.js │ │ │ │ │ │ │ │ ├── Read Profile Photo.properties │ │ │ │ │ │ │ │ ├── Read Profile XML.doc.html │ │ │ │ │ │ │ │ ├── Read Profile XML.js │ │ │ │ │ │ │ │ ├── Read Profile XML.properties │ │ │ │ │ │ │ │ ├── Read Response Headers.doc.html │ │ │ │ │ │ │ │ ├── Read Response Headers.js │ │ │ │ │ │ │ │ ├── Read Response Headers.properties │ │ │ │ │ │ │ │ ├── Read Tags XML.doc.html │ │ │ │ │ │ │ │ ├── Read Tags XML.js │ │ │ │ │ │ │ │ └── Read Tags XML.properties │ │ │ │ │ │ │ ├── Update Profile Photo.doc.html │ │ │ │ │ │ │ ├── Update Profile Photo.html │ │ │ │ │ │ │ ├── Update Profile Photo.js │ │ │ │ │ │ │ ├── Update Profile Photo.properties │ │ │ │ │ │ │ ├── Update Profile.doc.html │ │ │ │ │ │ │ ├── Update Profile.html │ │ │ │ │ │ │ ├── Update Profile.js │ │ │ │ │ │ │ ├── Update Profile.properties │ │ │ │ │ │ │ ├── Update Tags.doc.html │ │ │ │ │ │ │ ├── Update Tags.html │ │ │ │ │ │ │ ├── Update Tags.js │ │ │ │ │ │ │ ├── Update Tags.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Search │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── GetMyPeople.doc.html │ │ │ │ │ │ │ │ ├── GetMyPeople.html │ │ │ │ │ │ │ │ ├── GetMyPeople.js │ │ │ │ │ │ │ │ ├── GetMyPeople.properties │ │ │ │ │ │ │ │ ├── GetMyResults.doc.html │ │ │ │ │ │ │ │ ├── GetMyResults.html │ │ │ │ │ │ │ │ ├── GetMyResults.js │ │ │ │ │ │ │ │ ├── GetMyResults.properties │ │ │ │ │ │ │ │ ├── GetMyResultsByTag.doc.html │ │ │ │ │ │ │ │ ├── GetMyResultsByTag.html │ │ │ │ │ │ │ │ ├── GetMyResultsByTag.js │ │ │ │ │ │ │ │ ├── GetMyResultsByTag.properties │ │ │ │ │ │ │ │ ├── GetMyResultsRequestArgs.html │ │ │ │ │ │ │ │ ├── GetMyResultsRequestArgs.js │ │ │ │ │ │ │ │ ├── GetMyResultsRequestArgs.properties │ │ │ │ │ │ │ │ ├── GetMySearch.doc.html │ │ │ │ │ │ │ │ ├── GetPeople.doc.html │ │ │ │ │ │ │ │ ├── GetPeople.html │ │ │ │ │ │ │ │ ├── GetPeople.js │ │ │ │ │ │ │ │ ├── GetPeople.properties │ │ │ │ │ │ │ │ ├── GetResults.doc.html │ │ │ │ │ │ │ │ ├── GetResults.html │ │ │ │ │ │ │ │ ├── GetResults.js │ │ │ │ │ │ │ │ ├── GetResults.properties │ │ │ │ │ │ │ │ ├── GetResultsByTag.doc.html │ │ │ │ │ │ │ │ ├── GetResultsByTag.html │ │ │ │ │ │ │ │ ├── GetResultsByTag.js │ │ │ │ │ │ │ │ ├── GetResultsByTag.properties │ │ │ │ │ │ │ │ ├── GetResultsRequestArgs.doc.html │ │ │ │ │ │ │ │ ├── GetResultsRequestArgs.html │ │ │ │ │ │ │ │ ├── GetResultsRequestArgs.js │ │ │ │ │ │ │ │ ├── GetResultsRequestArgs.properties │ │ │ │ │ │ │ │ ├── GetScopes.doc.html │ │ │ │ │ │ │ │ ├── GetScopes.html │ │ │ │ │ │ │ │ ├── GetScopes.js │ │ │ │ │ │ │ │ └── GetScopes.properties │ │ │ │ │ │ │ ├── Community Full Text Search.doc.html │ │ │ │ │ │ │ ├── Community Full Text Search.html │ │ │ │ │ │ │ ├── Community Full Text Search.js │ │ │ │ │ │ │ ├── Community Full Text Search.properties │ │ │ │ │ │ │ ├── Community Tag Search.doc.html │ │ │ │ │ │ │ ├── Community Tag Search.html │ │ │ │ │ │ │ ├── Community Tag Search.js │ │ │ │ │ │ │ ├── Community Tag Search.properties │ │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ │ ├── Search Activities Public.doc.html │ │ │ │ │ │ │ │ ├── Search Activities Public.html │ │ │ │ │ │ │ │ ├── Search Activities Public.js │ │ │ │ │ │ │ │ ├── Search Activities Public.properties │ │ │ │ │ │ │ │ ├── Search All.doc.html │ │ │ │ │ │ │ │ ├── Search All.html │ │ │ │ │ │ │ │ ├── Search All.js │ │ │ │ │ │ │ │ ├── Search All.properties │ │ │ │ │ │ │ │ ├── Search Blogs Public.doc.html │ │ │ │ │ │ │ │ ├── Search Blogs Public.html │ │ │ │ │ │ │ │ ├── Search Blogs Public.js │ │ │ │ │ │ │ │ ├── Search Blogs Public.properties │ │ │ │ │ │ │ │ ├── Search Bookmarks.doc.html │ │ │ │ │ │ │ │ ├── Search Bookmarks.html │ │ │ │ │ │ │ │ ├── Search Bookmarks.js │ │ │ │ │ │ │ │ ├── Search Bookmarks.properties │ │ │ │ │ │ │ │ ├── Search Box.doc.html │ │ │ │ │ │ │ │ ├── Search Box.html │ │ │ │ │ │ │ │ ├── Search Box.js │ │ │ │ │ │ │ │ ├── Search Box.properties │ │ │ │ │ │ │ │ ├── Search Communities Public.doc.html │ │ │ │ │ │ │ │ ├── Search Communities Public.html │ │ │ │ │ │ │ │ ├── Search Communities Public.js │ │ │ │ │ │ │ │ ├── Search Communities Public.properties │ │ │ │ │ │ │ │ ├── Search Edit Auth.doc.html │ │ │ │ │ │ │ │ ├── Search Edit Auth.html │ │ │ │ │ │ │ │ ├── Search Edit Auth.js │ │ │ │ │ │ │ │ ├── Search Edit Auth.properties │ │ │ │ │ │ │ │ ├── Search Edit With Grid.doc.html │ │ │ │ │ │ │ │ ├── Search Edit With Grid.html │ │ │ │ │ │ │ │ ├── Search Edit With Grid.js │ │ │ │ │ │ │ │ ├── Search Edit With Grid.properties │ │ │ │ │ │ │ │ ├── Search Edit.doc.html │ │ │ │ │ │ │ │ ├── Search Edit.html │ │ │ │ │ │ │ │ ├── Search Edit.js │ │ │ │ │ │ │ │ ├── Search Edit.properties │ │ │ │ │ │ │ │ ├── Search Files.doc.html │ │ │ │ │ │ │ │ ├── Search Files.html │ │ │ │ │ │ │ │ ├── Search Files.js │ │ │ │ │ │ │ │ ├── Search Files.properties │ │ │ │ │ │ │ │ ├── Search Forums.doc.html │ │ │ │ │ │ │ │ ├── Search Forums.html │ │ │ │ │ │ │ │ ├── Search Forums.js │ │ │ │ │ │ │ │ ├── Search Forums.properties │ │ │ │ │ │ │ │ ├── Search My Communities.doc.html │ │ │ │ │ │ │ │ ├── Search My Communities.html │ │ │ │ │ │ │ │ ├── Search My Communities.js │ │ │ │ │ │ │ │ ├── Search My Communities.properties │ │ │ │ │ │ │ │ ├── Search Profile Tag Public.html │ │ │ │ │ │ │ │ ├── Search Profile Tag Public.js │ │ │ │ │ │ │ │ ├── Search Profiles Public.doc.html │ │ │ │ │ │ │ │ ├── Search Profiles Public.html │ │ │ │ │ │ │ │ ├── Search Profiles Public.js │ │ │ │ │ │ │ │ ├── Search Profiles Public.properties │ │ │ │ │ │ │ │ ├── Search Status Updates.doc.html │ │ │ │ │ │ │ │ ├── Search Status Updates.html │ │ │ │ │ │ │ │ ├── Search Status Updates.js │ │ │ │ │ │ │ │ ├── Search Status Updates.properties │ │ │ │ │ │ │ │ ├── Search Wikis.doc.html │ │ │ │ │ │ │ │ ├── Search Wikis.html │ │ │ │ │ │ │ │ ├── Search Wikis.js │ │ │ │ │ │ │ │ ├── Search Wikis.properties │ │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ │ ├── People Search.doc.html │ │ │ │ │ │ │ ├── People Search.html │ │ │ │ │ │ │ ├── People Search.js │ │ │ │ │ │ │ ├── People Search.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── My Person Search.doc.html │ │ │ │ │ │ │ │ ├── My Person Search.html │ │ │ │ │ │ │ │ ├── My Person Search.js │ │ │ │ │ │ │ │ ├── My Person Search.properties │ │ │ │ │ │ │ │ ├── My Search.doc.html │ │ │ │ │ │ │ │ ├── My Search.html │ │ │ │ │ │ │ │ ├── My Search.js │ │ │ │ │ │ │ │ ├── My Search.properties │ │ │ │ │ │ │ │ ├── My Tag Search.doc.html │ │ │ │ │ │ │ │ ├── My Tag Search.html │ │ │ │ │ │ │ │ ├── My Tag Search.js │ │ │ │ │ │ │ │ ├── My Tag Search.properties │ │ │ │ │ │ │ │ ├── Person Search.doc.html │ │ │ │ │ │ │ │ ├── Person Search.html │ │ │ │ │ │ │ │ ├── Person Search.js │ │ │ │ │ │ │ │ ├── Person Search.properties │ │ │ │ │ │ │ │ ├── Scopes.doc.html │ │ │ │ │ │ │ │ ├── Scopes.html │ │ │ │ │ │ │ │ ├── Scopes.js │ │ │ │ │ │ │ │ ├── Scopes.properties │ │ │ │ │ │ │ │ ├── Search.doc.html │ │ │ │ │ │ │ │ ├── Search.html │ │ │ │ │ │ │ │ ├── Search.js │ │ │ │ │ │ │ │ ├── Search.properties │ │ │ │ │ │ │ │ ├── Tag Search.doc.html │ │ │ │ │ │ │ │ ├── Tag Search.html │ │ │ │ │ │ │ │ ├── Tag Search.js │ │ │ │ │ │ │ │ └── Tag Search.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ │ ├── Wikis │ │ │ │ │ │ │ ├── API │ │ │ │ │ │ │ │ ├── CreateWiki.html │ │ │ │ │ │ │ │ ├── CreateWiki.js │ │ │ │ │ │ │ │ ├── CreateWiki.properties │ │ │ │ │ │ │ │ ├── CreateWikiPage.html │ │ │ │ │ │ │ │ ├── CreateWikiPage.js │ │ │ │ │ │ │ │ ├── CreateWikiPage.properties │ │ │ │ │ │ │ │ ├── GetAllWikis.html │ │ │ │ │ │ │ │ ├── GetAllWikis.js │ │ │ │ │ │ │ │ ├── GetAllWikis.properties │ │ │ │ │ │ │ │ ├── GetMostCommentedWikis.html │ │ │ │ │ │ │ │ ├── GetMostCommentedWikis.js │ │ │ │ │ │ │ │ ├── GetMostCommentedWikis.properties │ │ │ │ │ │ │ │ ├── GetMostRecommendedWikis.html │ │ │ │ │ │ │ │ ├── GetMostRecommendedWikis.js │ │ │ │ │ │ │ │ ├── GetMostRecommendedWikis.properties │ │ │ │ │ │ │ │ ├── GetMostVisitedWikis.html │ │ │ │ │ │ │ │ ├── GetMostVisitedWikis.js │ │ │ │ │ │ │ │ ├── GetMostVisitedWikis.properties │ │ │ │ │ │ │ │ ├── GetMyWikiPages.html │ │ │ │ │ │ │ │ ├── GetMyWikiPages.js │ │ │ │ │ │ │ │ ├── GetMyWikiPages.properties │ │ │ │ │ │ │ │ ├── GetMyWikis.html │ │ │ │ │ │ │ │ ├── GetMyWikis.js │ │ │ │ │ │ │ │ ├── GetMyWikis.properties │ │ │ │ │ │ │ │ ├── GetPublicWikis.html │ │ │ │ │ │ │ │ ├── GetPublicWikis.js │ │ │ │ │ │ │ │ ├── GetPublicWikis.properties │ │ │ │ │ │ │ │ ├── GetRecycledWikiPages.html │ │ │ │ │ │ │ │ ├── GetRecycledWikiPages.js │ │ │ │ │ │ │ │ ├── GetRecycledWikiPages.properties │ │ │ │ │ │ │ │ ├── GetWiki.html │ │ │ │ │ │ │ │ ├── GetWiki.js │ │ │ │ │ │ │ │ ├── GetWiki.properties │ │ │ │ │ │ │ │ ├── GetWikiPage.html │ │ │ │ │ │ │ │ ├── GetWikiPage.js │ │ │ │ │ │ │ │ ├── GetWikiPage.properties │ │ │ │ │ │ │ │ ├── GetWikiPages.html │ │ │ │ │ │ │ │ ├── GetWikiPages.js │ │ │ │ │ │ │ │ └── GetWikiPages.properties │ │ │ │ │ │ │ ├── Create Update Delete Wiki Page.doc.html │ │ │ │ │ │ │ ├── Create Update Delete Wiki Page.html │ │ │ │ │ │ │ ├── Create Update Delete Wiki Page.js │ │ │ │ │ │ │ ├── Create Update Delete Wiki Page.properties │ │ │ │ │ │ │ ├── Create Update Delete Wiki.doc.html │ │ │ │ │ │ │ ├── Create Update Delete Wiki.html │ │ │ │ │ │ │ ├── Create Update Delete Wiki.js │ │ │ │ │ │ │ ├── Create Update Delete Wiki.properties │ │ │ │ │ │ │ ├── Get My Wiki Pages.doc.html │ │ │ │ │ │ │ ├── Get My Wiki Pages.html │ │ │ │ │ │ │ ├── Get My Wiki Pages.js │ │ │ │ │ │ │ ├── Get My Wiki Pages.properties │ │ │ │ │ │ │ ├── Get My Wikis.doc.html │ │ │ │ │ │ │ ├── Get My Wikis.html │ │ │ │ │ │ │ ├── Get My Wikis.js │ │ │ │ │ │ │ ├── Get My Wikis.properties │ │ │ │ │ │ │ ├── REST │ │ │ │ │ │ │ │ ├── Get All Wikis XML.doc.html │ │ │ │ │ │ │ │ ├── Get All Wikis XML.js │ │ │ │ │ │ │ │ ├── Get All Wikis XML.properties │ │ │ │ │ │ │ │ ├── Get My Wiki Pages XML.doc.html │ │ │ │ │ │ │ │ ├── Get My Wiki Pages XML.js │ │ │ │ │ │ │ │ ├── Get My Wiki Pages XML.properties │ │ │ │ │ │ │ │ ├── Get My Wikis XML.doc.html │ │ │ │ │ │ │ │ ├── Get My Wikis XML.js │ │ │ │ │ │ │ │ ├── Get My Wikis XML.properties │ │ │ │ │ │ │ │ ├── Get Public Wikis XML.doc.html │ │ │ │ │ │ │ │ ├── Get Public Wikis XML.js │ │ │ │ │ │ │ │ └── Get Public Wikis XML.properties │ │ │ │ │ │ │ ├── Start A Wiki.doc.html │ │ │ │ │ │ │ ├── Start A Wiki.html │ │ │ │ │ │ │ ├── Start A Wiki.js │ │ │ │ │ │ │ └── Start A Wiki.properties │ │ │ │ │ │ └── _global.properties │ │ │ │ │ ├── Toolkit │ │ │ │ │ │ ├── Base │ │ │ │ │ │ │ ├── AtomEntity.doc.html │ │ │ │ │ │ │ ├── AtomEntity.html │ │ │ │ │ │ │ ├── AtomEntity.js │ │ │ │ │ │ │ ├── AtomEntity.properties │ │ │ │ │ │ │ ├── BaseEntity.doc.html │ │ │ │ │ │ │ ├── BaseEntity.html │ │ │ │ │ │ │ ├── BaseEntity.js │ │ │ │ │ │ │ ├── BaseEntity.properties │ │ │ │ │ │ │ ├── BaseService.doc.html │ │ │ │ │ │ │ ├── BaseService.html │ │ │ │ │ │ │ ├── BaseService.js │ │ │ │ │ │ │ ├── BaseService.properties │ │ │ │ │ │ │ ├── BaseServiceConstructUrl.doc.html │ │ │ │ │ │ │ ├── BaseServiceConstructUrl.html │ │ │ │ │ │ │ ├── BaseServiceConstructUrl.js │ │ │ │ │ │ │ ├── BaseServiceConstructUrl.properties │ │ │ │ │ │ │ ├── BaseServiceDeleteEntity.doc.html │ │ │ │ │ │ │ ├── BaseServiceDeleteEntity.html │ │ │ │ │ │ │ ├── BaseServiceDeleteEntity.js │ │ │ │ │ │ │ ├── BaseServiceDeleteEntity.properties │ │ │ │ │ │ │ ├── BaseServiceEndpoint.doc.html │ │ │ │ │ │ │ ├── BaseServiceEndpoint.html │ │ │ │ │ │ │ ├── BaseServiceEndpoint.js │ │ │ │ │ │ │ ├── BaseServiceEndpoint.properties │ │ │ │ │ │ │ ├── BaseServiceGetEntities.doc.html │ │ │ │ │ │ │ ├── BaseServiceGetEntities.html │ │ │ │ │ │ │ ├── BaseServiceGetEntities.js │ │ │ │ │ │ │ ├── BaseServiceGetEntities.properties │ │ │ │ │ │ │ ├── BaseServiceGetEntity.doc.html │ │ │ │ │ │ │ ├── BaseServiceGetEntity.html │ │ │ │ │ │ │ ├── BaseServiceGetEntity.js │ │ │ │ │ │ │ ├── BaseServiceGetEntity.properties │ │ │ │ │ │ │ ├── BaseServiceUpdateEntity.doc.html │ │ │ │ │ │ │ ├── BaseServiceUpdateEntity.html │ │ │ │ │ │ │ ├── BaseServiceUpdateEntity.js │ │ │ │ │ │ │ ├── BaseServiceUpdateEntity.properties │ │ │ │ │ │ │ ├── BaseServiceValidation.doc.html │ │ │ │ │ │ │ ├── BaseServiceValidation.html │ │ │ │ │ │ │ ├── BaseServiceValidation.js │ │ │ │ │ │ │ ├── BaseServiceValidation.properties │ │ │ │ │ │ │ ├── CommunityEntryDataHandler.doc.html │ │ │ │ │ │ │ ├── CommunityEntryDataHandler.html │ │ │ │ │ │ │ ├── CommunityEntryDataHandler.js │ │ │ │ │ │ │ ├── CommunityEntryDataHandler.properties │ │ │ │ │ │ │ ├── CommunityFeedDataHandler.doc.html │ │ │ │ │ │ │ ├── CommunityFeedDataHandler.html │ │ │ │ │ │ │ ├── CommunityFeedDataHandler.js │ │ │ │ │ │ │ ├── CommunityFeedDataHandler.properties │ │ │ │ │ │ │ ├── CommunityInvitesFeedDataHandler.doc.html │ │ │ │ │ │ │ ├── CommunityInvitesFeedDataHandler.html │ │ │ │ │ │ │ ├── CommunityInvitesFeedDataHandler.js │ │ │ │ │ │ │ ├── CommunityInvitesFeedDataHandler.properties │ │ │ │ │ │ │ ├── CommunityMembersFeedDataHandler.doc.html │ │ │ │ │ │ │ ├── CommunityMembersFeedDataHandler.html │ │ │ │ │ │ │ ├── CommunityMembersFeedDataHandler.js │ │ │ │ │ │ │ ├── CommunityMembersFeedDataHandler.properties │ │ │ │ │ │ │ ├── VCardDataHandler.doc.html │ │ │ │ │ │ │ ├── VCardDataHandler.html │ │ │ │ │ │ │ ├── VCardDataHandler.js │ │ │ │ │ │ │ ├── VCardDataHandler.properties │ │ │ │ │ │ │ ├── VCardDataHandlerJson.doc.html │ │ │ │ │ │ │ ├── VCardDataHandlerJson.html │ │ │ │ │ │ │ ├── VCardDataHandlerJson.js │ │ │ │ │ │ │ ├── VCardDataHandlerJson.properties │ │ │ │ │ │ │ ├── XmlDataHandlerDate.doc.html │ │ │ │ │ │ │ ├── XmlDataHandlerDate.html │ │ │ │ │ │ │ ├── XmlDataHandlerDate.js │ │ │ │ │ │ │ ├── XmlDataHandlerDate.properties │ │ │ │ │ │ │ ├── XmlDataHandlerJson.doc.html │ │ │ │ │ │ │ ├── XmlDataHandlerJson.html │ │ │ │ │ │ │ ├── XmlDataHandlerJson.js │ │ │ │ │ │ │ ├── XmlDataHandlerJson.properties │ │ │ │ │ │ │ └── community.xml │ │ │ │ │ │ ├── Config.doc.html │ │ │ │ │ │ ├── Config.html │ │ │ │ │ │ ├── Config.js │ │ │ │ │ │ ├── Config.properties │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ ├── CommunityRenderer.doc.html │ │ │ │ │ │ │ │ ├── CommunityRenderer.html │ │ │ │ │ │ │ │ ├── CommunityRenderer.js │ │ │ │ │ │ │ │ ├── CommunityRenderer.properties │ │ │ │ │ │ │ │ ├── ConnectionsRenderer.doc.html │ │ │ │ │ │ │ │ ├── ConnectionsRenderer.html │ │ │ │ │ │ │ │ ├── ConnectionsRenderer.js │ │ │ │ │ │ │ │ ├── ConnectionsRenderer.properties │ │ │ │ │ │ │ │ ├── Grid Selection.doc.html │ │ │ │ │ │ │ │ ├── Grid Selection.html │ │ │ │ │ │ │ │ ├── Grid Selection.js │ │ │ │ │ │ │ │ ├── Grid Selection.properties │ │ │ │ │ │ │ │ ├── Grid With Business Card.doc.html │ │ │ │ │ │ │ │ ├── Grid With Business Card.html │ │ │ │ │ │ │ │ ├── Grid With Business Card.js │ │ │ │ │ │ │ │ ├── Grid With Business Card.properties │ │ │ │ │ │ │ │ ├── Grid.doc.html │ │ │ │ │ │ │ │ ├── Grid.html │ │ │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ │ │ ├── Grid.properties │ │ │ │ │ │ │ │ ├── TemplatedGridRow.doc.html │ │ │ │ │ │ │ │ ├── TemplatedGridRow.html │ │ │ │ │ │ │ │ ├── TemplatedGridRow.js │ │ │ │ │ │ │ │ └── TemplatedGridRow.properties │ │ │ │ │ │ │ └── Widget │ │ │ │ │ │ │ │ ├── Widget Base Class Functions.doc.html │ │ │ │ │ │ │ │ ├── Widget Base Class Functions.html │ │ │ │ │ │ │ │ ├── Widget Base Class Functions.js │ │ │ │ │ │ │ │ └── Widget Base Class Functions.properties │ │ │ │ │ │ ├── DemoSnippet.doc.html │ │ │ │ │ │ ├── DemoSnippet.html │ │ │ │ │ │ ├── DemoSnippet.js │ │ │ │ │ │ ├── DemoSnippet.properties │ │ │ │ │ │ ├── Endpoint.doc.html │ │ │ │ │ │ ├── Endpoint.html │ │ │ │ │ │ ├── Endpoint.js │ │ │ │ │ │ ├── Endpoint.properties │ │ │ │ │ │ ├── EndpointDelete.doc.html │ │ │ │ │ │ ├── EndpointDelete.html │ │ │ │ │ │ ├── EndpointDelete.js │ │ │ │ │ │ ├── EndpointDelete.properties │ │ │ │ │ │ ├── EndpointDownload.doc.html │ │ │ │ │ │ ├── EndpointDownload.html │ │ │ │ │ │ ├── EndpointDownload.js │ │ │ │ │ │ ├── EndpointDownload.properties │ │ │ │ │ │ ├── EndpointGet.doc.html │ │ │ │ │ │ ├── EndpointGet.html │ │ │ │ │ │ ├── EndpointGet.js │ │ │ │ │ │ ├── EndpointGet.properties │ │ │ │ │ │ ├── EndpointGetFile.doc.html │ │ │ │ │ │ ├── EndpointGetFile.html │ │ │ │ │ │ ├── EndpointGetFile.js │ │ │ │ │ │ ├── EndpointGetFile.properties │ │ │ │ │ │ ├── EndpointGetMyCommunityMembers.doc.html │ │ │ │ │ │ ├── EndpointGetMyCommunityMembers.js │ │ │ │ │ │ ├── EndpointGetMyCommunityMembers.properties │ │ │ │ │ │ ├── EndpointGetMyFiles.doc.html │ │ │ │ │ │ ├── EndpointGetMyFiles.html │ │ │ │ │ │ ├── EndpointGetMyFiles.js │ │ │ │ │ │ ├── EndpointGetMyFiles.properties │ │ │ │ │ │ ├── EndpointGetPublicFiles.doc.html │ │ │ │ │ │ ├── EndpointGetPublicFiles.html │ │ │ │ │ │ ├── EndpointGetPublicFiles.js │ │ │ │ │ │ ├── EndpointGetPublicFiles.properties │ │ │ │ │ │ ├── EndpointLockFile.doc.html │ │ │ │ │ │ ├── EndpointLockFile.html │ │ │ │ │ │ ├── EndpointLockFile.js │ │ │ │ │ │ ├── EndpointLockFile.properties │ │ │ │ │ │ ├── EndpointPost.doc.html │ │ │ │ │ │ ├── EndpointPost.html │ │ │ │ │ │ ├── EndpointPost.js │ │ │ │ │ │ ├── EndpointPost.properties │ │ │ │ │ │ ├── EndpointPut.doc.html │ │ │ │ │ │ ├── EndpointPut.html │ │ │ │ │ │ ├── EndpointPut.js │ │ │ │ │ │ ├── EndpointPut.properties │ │ │ │ │ │ ├── EndpointRequest.doc.html │ │ │ │ │ │ ├── EndpointRequest.html │ │ │ │ │ │ ├── EndpointRequest.js │ │ │ │ │ │ ├── EndpointRequest.properties │ │ │ │ │ │ ├── LangMixin.doc.html │ │ │ │ │ │ ├── LangMixin.html │ │ │ │ │ │ ├── LangMixin.js │ │ │ │ │ │ ├── LangMixin.properties │ │ │ │ │ │ ├── PromiseChain.doc.html │ │ │ │ │ │ ├── PromiseChain.html │ │ │ │ │ │ ├── PromiseChain.js │ │ │ │ │ │ ├── PromiseChain.properties │ │ │ │ │ │ ├── RequireEndpoint.doc.html │ │ │ │ │ │ ├── RequireEndpoint.js │ │ │ │ │ │ ├── ResponseHeaders.doc.html │ │ │ │ │ │ ├── ResponseHeaders.html │ │ │ │ │ │ ├── ResponseHeaders.js │ │ │ │ │ │ ├── ResponseHeaders.properties │ │ │ │ │ │ ├── Transport.doc.html │ │ │ │ │ │ ├── Transport.html │ │ │ │ │ │ ├── Transport.js │ │ │ │ │ │ ├── Transport.properties │ │ │ │ │ │ ├── TransportGet.doc.html │ │ │ │ │ │ ├── TransportGet.html │ │ │ │ │ │ ├── TransportGet.js │ │ │ │ │ │ ├── TransportGet.properties │ │ │ │ │ │ ├── Util.doc.html │ │ │ │ │ │ ├── Util.html │ │ │ │ │ │ ├── Util.js │ │ │ │ │ │ └── Views │ │ │ │ │ │ │ ├── ActionBar.html │ │ │ │ │ │ │ ├── ActionBar.js │ │ │ │ │ │ │ ├── ActionBar.properties │ │ │ │ │ │ │ ├── BaseView.html │ │ │ │ │ │ │ ├── BaseView.js │ │ │ │ │ │ │ ├── BaseView.properties │ │ │ │ │ │ │ ├── Section.html │ │ │ │ │ │ │ ├── Section.js │ │ │ │ │ │ │ ├── Section.properties │ │ │ │ │ │ │ ├── ShowMessageView.html │ │ │ │ │ │ │ ├── ShowMessageView.js │ │ │ │ │ │ │ ├── ShowMessageView.properties │ │ │ │ │ │ │ ├── TabBar.html │ │ │ │ │ │ │ ├── TabBar.js │ │ │ │ │ │ │ ├── TabBar.properties │ │ │ │ │ │ │ └── _global.properties │ │ │ │ │ └── Utilities │ │ │ │ │ │ ├── Check JavaScript Library.doc.html │ │ │ │ │ │ ├── Check JavaScript Library.html │ │ │ │ │ │ ├── Check JavaScript Library.js │ │ │ │ │ │ ├── Check JavaScript Library.properties │ │ │ │ │ │ ├── Email.doc.html │ │ │ │ │ │ ├── Email.html │ │ │ │ │ │ ├── Email.js │ │ │ │ │ │ ├── Email.properties │ │ │ │ │ │ ├── Logging.doc.html │ │ │ │ │ │ ├── Logging.js │ │ │ │ │ │ ├── Logging.properties │ │ │ │ │ │ ├── XML Parser.doc.html │ │ │ │ │ │ ├── XML Parser.js │ │ │ │ │ │ ├── XML Parser.properties │ │ │ │ │ │ ├── XPath Engine.doc.html │ │ │ │ │ │ ├── XPath Engine.js │ │ │ │ │ │ └── XPath Engine.properties │ │ │ │ │ └── xpages │ │ │ │ │ ├── Connections │ │ │ │ │ ├── Activities │ │ │ │ │ │ ├── Get Activities In Trash.xsp │ │ │ │ │ │ ├── Get Activity.xsp │ │ │ │ │ │ ├── Get All Activities.xsp │ │ │ │ │ │ ├── Get All Tags.xsp │ │ │ │ │ │ ├── Get All Todos.xsp │ │ │ │ │ │ ├── Get Completed Activities.xsp │ │ │ │ │ │ ├── Get Member.xsp │ │ │ │ │ │ ├── Get Members.xsp │ │ │ │ │ │ └── Get My Activities.xsp │ │ │ │ │ ├── ActivityStreams │ │ │ │ │ │ ├── Communities I Follow.xsp │ │ │ │ │ │ ├── Get All Activity Stream Entries.xsp │ │ │ │ │ │ ├── Get My Status Updates.xsp │ │ │ │ │ │ ├── Get Status Updates From My Network.xsp │ │ │ │ │ │ ├── Get Updates From My Network.xsp │ │ │ │ │ │ ├── Get Updates from People I Follow.xsp │ │ │ │ │ │ ├── People I Follow.xsp │ │ │ │ │ │ └── Post Event.xsp │ │ │ │ │ ├── Blogs │ │ │ │ │ │ ├── Create Blog Comment.xsp │ │ │ │ │ │ ├── Create Blog Post.xsp │ │ │ │ │ │ ├── Get All Blog Tags.xsp │ │ │ │ │ │ ├── Get All Blogs.xsp │ │ │ │ │ │ ├── Get Blog Entries.xsp │ │ │ │ │ │ ├── Get Featured Blogs.xsp │ │ │ │ │ │ ├── Get Featured Posts.xsp │ │ │ │ │ │ ├── Get Most Popular Blog Posts.xsp │ │ │ │ │ │ ├── Get My Blogs.xsp │ │ │ │ │ │ ├── Get Recent Blog Comments.xsp │ │ │ │ │ │ ├── Get Recent Blog Posts.xsp │ │ │ │ │ │ ├── Update Blog Post.xsp │ │ │ │ │ │ └── Update Blog Summary.xsp │ │ │ │ │ ├── Bookmarks │ │ │ │ │ │ ├── Get All Bookmarks.xsp │ │ │ │ │ │ ├── Get Most Clicked Bookmarks.xsp │ │ │ │ │ │ ├── Get My Bookmarks.xsp │ │ │ │ │ │ ├── Get Popular Bookmarks.xsp │ │ │ │ │ │ └── View a Bookmark.xsp │ │ │ │ │ ├── Communities │ │ │ │ │ │ ├── Communities Search.xsp │ │ │ │ │ │ ├── Create Community.xsp │ │ │ │ │ │ ├── Get My Communities.xsp │ │ │ │ │ │ ├── Get My Invites.xsp │ │ │ │ │ │ └── Get Public Communities.xsp │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── Delete Selected File.xsp │ │ │ │ │ │ ├── Delete a File.xsp │ │ │ │ │ │ ├── Get My Files.xsp │ │ │ │ │ │ ├── Get My Folders.xsp │ │ │ │ │ │ └── Upload a File.xsp │ │ │ │ │ ├── Forums │ │ │ │ │ │ ├── Create Forum.xsp │ │ │ │ │ │ ├── Create Topic.xsp │ │ │ │ │ │ ├── Forum Tag Cloud.xsp │ │ │ │ │ │ ├── Forum Tags.xsp │ │ │ │ │ │ ├── Get Recommendations.xsp │ │ │ │ │ │ ├── My Forum Topics.xsp │ │ │ │ │ │ ├── My Forums Advanced.xsp │ │ │ │ │ │ ├── My Forums.xsp │ │ │ │ │ │ ├── Remove Forum Topic.xsp │ │ │ │ │ │ └── Remove Forum.xsp │ │ │ │ │ ├── Profiles │ │ │ │ │ │ ├── Colleague Checker.xsp │ │ │ │ │ │ ├── Colleague Profile Pictures.xsp │ │ │ │ │ │ ├── Colleague Profiles IDs.xsp │ │ │ │ │ │ ├── Profile Details.xsp │ │ │ │ │ │ └── Search Profiles.xsp │ │ │ │ │ └── Search │ │ │ │ │ │ ├── Search All.xsp │ │ │ │ │ │ ├── Search People.xsp │ │ │ │ │ │ └── Search Service.xsp │ │ │ │ │ ├── Getting Started │ │ │ │ │ ├── Calling the Java API.xsp │ │ │ │ │ ├── Calling the JavaScript API.xsp │ │ │ │ │ └── Using a repeat control.xsp │ │ │ │ │ ├── Utilities │ │ │ │ │ └── Hello World.xsp │ │ │ │ │ └── _global.properties │ │ │ │ └── readme.txt │ │ └── pom.xml │ └── templates │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ │ ├── demosocial.webapp │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── readme.txt │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── index.jsp │ │ │ └── styles │ │ │ └── jumbotron-narrow.css │ │ ├── grantaccess.webapp │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── grantaccess │ │ │ │ └── webapp │ │ │ │ └── Users.java │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── managed-beans.xml │ │ │ └── web.xml │ │ │ ├── images │ │ │ └── sbt.png │ │ │ ├── index.jsp │ │ │ ├── login-failed.html │ │ │ ├── login.html │ │ │ └── logout.jsp │ │ ├── helloworld.webapp │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── lib │ │ │ │ └── readme.txt │ │ │ ├── managed-beans.xml │ │ │ └── web.xml │ │ │ ├── completed │ │ │ ├── commentonfiles.html │ │ │ ├── index.html │ │ │ ├── mycommunities.html │ │ │ └── myfiles.html │ │ │ └── index.html │ │ ├── mysocial.webapp │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── webapp │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── WEB-INF │ │ │ │ ├── ibm-web-bnd.xml │ │ │ │ ├── ibm-web-ext.xml │ │ │ │ ├── managed-beans.xml │ │ │ │ └── web.xml │ │ │ │ ├── images │ │ │ │ ├── banner.jpg │ │ │ │ ├── cover-bg.gif │ │ │ │ ├── mq1.jpg │ │ │ │ └── sbt.png │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ └── widgets │ │ │ │ └── MyProfile.js │ │ │ └── readme.txt │ │ ├── pom.xml │ │ ├── smartcloud.webapp │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── sbt │ │ │ │ └── smartcloud │ │ │ │ └── Util.java │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── lib │ │ │ │ └── readme.txt │ │ │ ├── managed-beans.xml │ │ │ └── web.xml │ │ │ ├── deleteMyCommunities.jsp │ │ │ ├── images │ │ │ └── sbt.png │ │ │ └── index.jsp │ │ ├── social.helloworld.webapp │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── lib │ │ │ │ └── readme.txt │ │ │ ├── managed-beans.xml │ │ │ └── web.xml │ │ │ └── index.html │ │ └── sso.sample.webapp │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── managed-beans.xml │ │ └── web.xml │ │ ├── index.html │ │ ├── java.jsp │ │ ├── js.jsp │ │ └── uploadFile.jsp ├── java │ ├── bss.provisioning.sample.app │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── dependency-reduced-pom.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── sbt │ │ │ │ └── provisioning │ │ │ │ └── sample │ │ │ │ └── app │ │ │ │ ├── WeightManager.java │ │ │ │ ├── logging │ │ │ │ ├── CustomFilter.java │ │ │ │ ├── CustomFormatter.java │ │ │ │ └── CustomLogger.java │ │ │ │ ├── model │ │ │ │ ├── Rest.java │ │ │ │ ├── SubscriptionEntitlement.java │ │ │ │ ├── Weight.java │ │ │ │ ├── WeightSet.java │ │ │ │ └── Weights.java │ │ │ │ ├── services │ │ │ │ ├── Authentication.java │ │ │ │ ├── Authorization.java │ │ │ │ ├── Customer.java │ │ │ │ ├── Subscriber.java │ │ │ │ └── Subscription.java │ │ │ │ ├── task │ │ │ │ ├── BSSProvisioning.java │ │ │ │ └── SubscriberTask.java │ │ │ │ ├── util │ │ │ │ ├── BSSEndpoints.java │ │ │ │ ├── ShutdownCommand.java │ │ │ │ └── Util.java │ │ │ │ └── weightedBSSCall │ │ │ │ ├── BSSCall.java │ │ │ │ ├── WeightedBSSCall.java │ │ │ │ ├── authentication │ │ │ │ ├── ChangePassword.java │ │ │ │ └── SetOneTimePassword.java │ │ │ │ ├── customer │ │ │ │ └── RegisterCustomer.java │ │ │ │ ├── subscriber │ │ │ │ ├── ActivateSubscriber.java │ │ │ │ ├── AddSubscriber.java │ │ │ │ ├── AddSubscriberSuppressEmail.java │ │ │ │ ├── EntitleSubscriber.java │ │ │ │ ├── GetSubscriber.java │ │ │ │ └── UpdateNotesSubscriber.java │ │ │ │ └── subscription │ │ │ │ ├── CreateSubscription.java │ │ │ │ └── GetSubscription.java │ │ │ └── resources │ │ │ ├── customer.json │ │ │ ├── subscribers.json │ │ │ └── weights.json │ ├── pom.xml │ ├── sbt.bss.app │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── ibm │ │ │ └── sbt │ │ │ └── bss │ │ │ └── app │ │ │ ├── AddSubscribersApp.java │ │ │ ├── BaseApp.java │ │ │ ├── BaseBssApp.java │ │ │ ├── ChangePassword.java │ │ │ ├── CreateSubscriptionsApp.java │ │ │ ├── CreateVendorApp.java │ │ │ ├── CustomerManagement.java │ │ │ ├── CustomerProvisioning.java │ │ │ ├── GetSubscriptionsApp.java │ │ │ └── SetOneTimePassword.java │ ├── sbt.bss.changepassword.app │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── bss │ │ │ └── changepassword │ │ │ └── app │ │ │ ├── ChangePassword.java │ │ │ └── SetUserPassword.java │ └── sbt.sample.app │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── sbt.properties │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ibm │ │ │ └── sbt │ │ │ └── sample │ │ │ └── app │ │ │ ├── AdminPublishActivityStream.java │ │ │ ├── BaseApp.java │ │ │ ├── BlogServiceApp.java │ │ │ ├── CommunityServiceApp.java │ │ │ ├── CreateCommunitiesApp.java │ │ │ ├── DownloadFileApp.java │ │ │ ├── ExportBlog.java │ │ │ ├── ExportWiki.java │ │ │ ├── FileServiceApp.java │ │ │ ├── GetAllCommunitiesApp.java │ │ │ ├── GetProfileXml.java │ │ │ ├── ProfileAdminApp.java │ │ │ ├── SearchApp.java │ │ │ ├── ThreadedActivityCreator.java │ │ │ ├── data.properties │ │ │ └── template.json │ │ └── resources │ │ └── META-INF │ │ └── managed-beans.xml ├── pom.xml └── scripts │ ├── .project │ ├── createOAuthKeys.sh │ ├── generateSBTProperties.sh │ ├── oauthQSI.py │ └── readme.txt ├── sdk ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── com.ibm.sbt.core.test │ ├── .classpath │ ├── .gitignore │ ├── .pmd │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── config │ │ └── test.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ ├── javascript │ │ │ │ └── units │ │ │ │ │ ├── AbstractRhinoTest.java │ │ │ │ │ └── BaseRhinoTest.java │ │ │ │ └── sbt │ │ │ │ └── test │ │ │ │ └── lib │ │ │ │ ├── MockEndpoint.java │ │ │ │ ├── MockSerializer.java │ │ │ │ ├── MockService.java │ │ │ │ ├── MockingException.java │ │ │ │ └── TestEnvironment.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── managed-beans.xml │ │ │ └── sbt.properties │ │ │ └── com │ │ │ └── ibm │ │ │ └── javascript │ │ │ └── units │ │ │ ├── MockLibrary.js │ │ │ ├── MockServiceTransport.js │ │ │ ├── base.html │ │ │ ├── env.rhino.js │ │ │ └── wgxpath.install.js │ │ └── test │ │ ├── java │ │ ├── META-INF │ │ │ └── managed-beans.xml │ │ └── com │ │ │ └── ibm │ │ │ └── sbt │ │ │ ├── ConnectionsJsTestSuite.java │ │ │ ├── ConnectionsTestSuite.java │ │ │ ├── SmartCloudTestSuite.java │ │ │ ├── config │ │ │ ├── MockAnonymousEndpoint.java │ │ │ ├── MockBasicEndpoint.java │ │ │ ├── MockManagedBeansFactory.java │ │ │ ├── MockOAuth2Endpoint.java │ │ │ ├── MockOAuthEndpoint.java │ │ │ ├── MockPropertiesFactory.java │ │ │ ├── MockSSOEndpoint.java │ │ │ ├── TestManagedBeansFactory.java │ │ │ ├── image1.jpg │ │ │ ├── image2.jpg │ │ │ ├── managed-beans.xml │ │ │ └── sbt.properties │ │ │ ├── js │ │ │ └── community │ │ │ │ └── CommunityTest.java │ │ │ ├── jslibrary │ │ │ └── LibraryTest.java │ │ │ ├── sample │ │ │ ├── connections │ │ │ │ └── test │ │ │ │ │ ├── AdminPublishActivityStreamTest.java │ │ │ │ │ ├── GetAllCommunitiesAppTest.java │ │ │ │ │ └── GetProfileXmlTest.java │ │ │ └── smartcloud │ │ │ │ └── test │ │ │ │ └── GetAllCommunitiesAppTest.java │ │ │ └── services │ │ │ ├── BaseUnitTest.java │ │ │ └── client │ │ │ ├── SerializationUtil.java │ │ │ ├── base │ │ │ ├── AuthTypei18nTest.java │ │ │ └── URLBuilderTest.java │ │ │ ├── connections │ │ │ ├── ActivitiesEnhTestSuite.java │ │ │ ├── ActivitiesFileTestSuite.java │ │ │ ├── ActivitiesTestSuite.java │ │ │ ├── activities │ │ │ │ ├── ActivitiesByTagTest.java │ │ │ │ ├── ActivitiesSinceTest.java │ │ │ │ ├── ActivityAddMemberTest.java │ │ │ │ ├── ActivityAddMembers.java │ │ │ │ ├── ActivityClient.java │ │ │ │ ├── ActivityCompletionTest.java │ │ │ │ ├── ActivityConcurrentCreates.java │ │ │ │ ├── ActivityConcurrentUpdates.java │ │ │ │ ├── ActivityCreatePerformanceTest.java │ │ │ │ ├── ActivityCreateShareIntentTest.java │ │ │ │ ├── ActivityCreateWithTagsTest.java │ │ │ │ ├── ActivityCrudrTest.java │ │ │ │ ├── ActivityDeleteMembers.java │ │ │ │ ├── ActivityDescendantsPerfTest.java │ │ │ │ ├── ActivityDescendantsSinceTest.java │ │ │ │ ├── ActivityDescendantsSortByTest.java │ │ │ │ ├── ActivityEnclosureLinkTest.java │ │ │ │ ├── ActivityEntryContentTest.java │ │ │ │ ├── ActivityEntryDuplicateTests.java │ │ │ │ ├── ActivityEntryPerformanceTest.java │ │ │ │ ├── ActivityFeedMoveTest.java │ │ │ │ ├── ActivityFeedTest.java │ │ │ │ ├── ActivityFieldCrudrTest.java │ │ │ │ ├── ActivityFieldLimitTest.java │ │ │ │ ├── ActivityFieldPerformanceTest.java │ │ │ │ ├── ActivityFileFieldTest.java │ │ │ │ ├── ActivityFileTest.java │ │ │ │ ├── ActivityGetUntilTest.java │ │ │ │ ├── ActivityLargeContentTest.java │ │ │ │ ├── ActivityLargeFieldTest.java │ │ │ │ ├── ActivityMemberArudTest.java │ │ │ │ ├── ActivityMemberPerformanceTest.java │ │ │ │ ├── ActivityMoveEntryPerformanceTest.java │ │ │ │ ├── ActivityMoveEntryTest.java │ │ │ │ ├── ActivityMoveFieldTest.java │ │ │ │ ├── ActivityNodeChildrenSinceTest.java │ │ │ │ ├── ActivityNodeCrudrTest.java │ │ │ │ ├── ActivityNodeDatesTest.java │ │ │ │ ├── ActivityNodeFileTest.java │ │ │ │ ├── ActivityNodeTypesTest.java │ │ │ │ ├── ActivityPerformanceTest.java │ │ │ │ ├── ActivityPriorityTest.java │ │ │ │ ├── ActivityReadNoTagsTest.java │ │ │ │ ├── ActivityTest.java │ │ │ │ ├── ActivityUpdatePerformanceTest.java │ │ │ │ ├── ActivityUrlsTest.java │ │ │ │ ├── BaseActivityServiceTest.java │ │ │ │ ├── CreateActivitiesLoadTest.java │ │ │ │ ├── CreateActivitiesTest.java │ │ │ │ ├── CreateActivityPerformanceTest.java │ │ │ │ ├── CreateActivityPriorityData.java │ │ │ │ ├── CreateHiddenFieldSearchData.java │ │ │ │ ├── DeleteAllActivitiesTest.java │ │ │ │ ├── FieldTest.java │ │ │ │ ├── GetActivityDescendantsTest.java │ │ │ │ ├── GetActivityReplyNodeTagsTest.java │ │ │ │ ├── GetMyActivitiesSinceUntilTest.java │ │ │ │ ├── GetMyActivitiesTest.java │ │ │ │ ├── MakeActivityPublicTest.java │ │ │ │ ├── MoveActivityNodeTest.java │ │ │ │ ├── PublicActivityDescendantsTest.java │ │ │ │ ├── PublicActivityTest.java │ │ │ │ ├── acl.xml │ │ │ │ ├── activities.xml │ │ │ │ ├── activity.xml │ │ │ │ ├── activity1.xml │ │ │ │ ├── activity2.xml │ │ │ │ ├── activity_hidden_fields.xml │ │ │ │ ├── fields.xml │ │ │ │ ├── history.xml │ │ │ │ ├── private_activity.xml │ │ │ │ └── public_activity.xml │ │ │ ├── activitystreams │ │ │ │ └── ActivityStreamServiceTest.java │ │ │ ├── blogs │ │ │ │ ├── BaseBlogServiceTest.java │ │ │ │ ├── BlogCommentCreateGetDeleteTest.java │ │ │ │ ├── BlogGetUpdateTest.java │ │ │ │ ├── BlogPostCreateTest.java │ │ │ │ ├── BlogPostDeleteTest.java │ │ │ │ ├── BlogPostGetUpdateLikeUnlikeTest.java │ │ │ │ ├── BlogSerializationTests.java │ │ │ │ ├── BlogServiceGetTests.java │ │ │ │ └── BlogServiceTestSuite.java │ │ │ ├── bookmarks │ │ │ │ └── BookmarkServiceTest.java │ │ │ ├── cmisfiles │ │ │ │ └── CMISFileServiceTest.java │ │ │ ├── communities │ │ │ │ ├── BaseCommunityServiceTest.java │ │ │ │ ├── CommunityServiceNoCommonCommunityTest.java │ │ │ │ ├── CommunityServiceTest.java │ │ │ │ ├── CommunityServiceTestSuite.java │ │ │ │ ├── CreateSubCommunity.java │ │ │ │ └── DeleteCommunityServiceTest.java │ │ │ ├── files │ │ │ │ ├── BaseFileServiceTest.java │ │ │ │ ├── FileDownloadTest.java │ │ │ │ ├── FileServiceSerializersTest.java │ │ │ │ ├── FileServiceTest.java │ │ │ │ ├── FileServiceTestSuite.java │ │ │ │ └── FileUpdateTest.java │ │ │ ├── follow │ │ │ │ └── FollowServiceTest.java │ │ │ ├── forums │ │ │ │ ├── BaseForumServiceTest.java │ │ │ │ ├── ForumCreateDeleteTest.java │ │ │ │ ├── ForumGetUpdateTest.java │ │ │ │ ├── ForumReplyCreateDeleteTest.java │ │ │ │ ├── ForumReplyGetUpdateTest.java │ │ │ │ ├── ForumSerializationTests.java │ │ │ │ ├── ForumServiceGetTests.java │ │ │ │ ├── ForumServiceTestSuite.java │ │ │ │ ├── ForumTopicCreateDeleteTest.java │ │ │ │ ├── ForumTopicGetUpdateTest.java │ │ │ │ └── LikeUnlikePostTest.java │ │ │ ├── profiles │ │ │ │ ├── ProfileAdminServiceTest.java │ │ │ │ ├── ProfileServiceTest.java │ │ │ │ └── ProfileServiceTestSuite.java │ │ │ └── wikis │ │ │ │ ├── BaseWikiServiceTest.java │ │ │ │ ├── WikiCreateAndDeleteTest.java │ │ │ │ ├── WikiFeedHandlerTest.java │ │ │ │ ├── WikiGetAndUpdate.java │ │ │ │ ├── WikiPageFeedHandlerTest.java │ │ │ │ ├── WikiPageTest.java │ │ │ │ └── WikiServiceTestSuite.java │ │ │ ├── email │ │ │ ├── MimeEmailTest.java │ │ │ └── MimePartTest.java │ │ │ └── smartcloud │ │ │ ├── BssTestSuite.java │ │ │ ├── bss │ │ │ ├── ActivateSubscriberTest.java │ │ │ ├── AddSubscriberTest.java │ │ │ ├── AddSubscriptionTest.java │ │ │ ├── AdditionalStorageSubscriptionTest.java │ │ │ ├── AssignRoleTest.java │ │ │ ├── BaseBssTest.java │ │ │ ├── CancelSubscriptionTest.java │ │ │ ├── ChangePasswordTest.java │ │ │ ├── CreateAdditionalVendorTest.java │ │ │ ├── CreateSubscriptionTest.java │ │ │ ├── CreateSubscriptionsTest.java │ │ │ ├── CustomerJsonBuilderTest.java │ │ │ ├── DeleteCustomersTest.java │ │ │ ├── DeleteSubscriberTest.java │ │ │ ├── EntitleSubscriberTest.java │ │ │ ├── ExpandAdditionalStorageTest.java │ │ │ ├── GetCustomerByIdTest.java │ │ │ ├── GetCustomerWorkflowsTest.java │ │ │ ├── GetCustomersTest.java │ │ │ ├── GetRolesTest.java │ │ │ ├── GetSubscriberByIdTest.java │ │ │ ├── GetSubscribersByIdTest.java │ │ │ ├── GetSubscribersPagingTest.java │ │ │ ├── GetSubscribersTest.java │ │ │ ├── GetSubscriptionByCustomerIdTest.java │ │ │ ├── GetSubscriptionByIdTest.java │ │ │ ├── GetSubscriptionsTest.java │ │ │ ├── GetWorkflowsTest.java │ │ │ ├── ProvisionSubscriberTest.java │ │ │ ├── ProvisionTestOrg.java │ │ │ ├── ProvisioningLoadTest.java │ │ │ ├── ProvisioningPendingTest.java │ │ │ ├── ProvisioningTermsOfUseTest.java │ │ │ ├── RegisterCustomerTest.java │ │ │ ├── ResetPasswordTest.java │ │ │ ├── RevokeStorageSubscriptionTest.java │ │ │ ├── SetOneTimePasswordTest.java │ │ │ ├── SuspendCustomerTest.java │ │ │ ├── SuspendSubscriberTest.java │ │ │ ├── SuspendSubscriptionTest.java │ │ │ ├── UnassignRoleTest.java │ │ │ ├── UnregisterCustomerTest.java │ │ │ ├── UnregisterCustomersTest.java │ │ │ ├── UnsuspendCustomerTest.java │ │ │ ├── UnsuspendSubscriberTest.java │ │ │ ├── UnsuspendSubscriptionTest.java │ │ │ ├── UpdateAdditionalStorageTest.java │ │ │ ├── UpdateCustomerProfileTest.java │ │ │ ├── UpdateSubscriberProfileTest.java │ │ │ ├── UpdateSubscriptionTest.java │ │ │ └── customer.json │ │ │ └── profiles │ │ │ └── ProfileServiceTest.java │ │ └── resources │ │ └── com │ │ └── ibm │ │ └── sbt │ │ ├── js │ │ └── community │ │ │ ├── TestCommunity.js │ │ │ └── mockData │ │ │ └── connectionsBasic │ │ │ ├── CommunityTest_testEverythingWorks.mock │ │ │ └── CommunityTest_testPublicCommunity.mock │ │ └── services │ │ └── client │ │ └── connections │ │ ├── activities │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── ActivityAddMemberTest_testAddMember.mock │ │ │ ├── ActivityCrudrTest_testCreateActivity.mock │ │ │ ├── ActivityCrudrTest_testDeleteActivity.mock │ │ │ ├── ActivityCrudrTest_testReadActivity.mock │ │ │ ├── ActivityCrudrTest_testRestoreActivity.mock │ │ │ ├── ActivityCrudrTest_testUpdateActivity.mock │ │ │ ├── ActivityFeedEnhTest_testIncludeCompletedActivities.mock │ │ │ ├── ActivityFeedEnhTest_testMoveField.mock │ │ │ ├── ActivityFeedEnhTest_testMoveFieldToDeletedNode.mock │ │ │ ├── ActivityFeedEnhTest_testMoveFieldUnsupportedNodeType.mock │ │ │ ├── ActivityFeedEnhTest_testMoveFieldWithWrongDestUuid.mock │ │ │ ├── ActivityFeedEnhTest_testMoveFieldWithWrongFieldUuid.mock │ │ │ ├── ActivityFeedEnhTest_testMoveNonexistentField.mock │ │ │ ├── ActivityFeedEnhTest_testMoveNullDestUuid.mock │ │ │ ├── ActivityFeedEnhTest_testReduceFieldsToSingleNode.mock │ │ │ ├── ActivityFeedMoveTest_testMoveField.mock │ │ │ ├── ActivityFeedMoveTest_testMoveFieldToItself.mock │ │ │ ├── ActivityFeedMoveTest_testMoveReply.mock │ │ │ ├── ActivityFeedMoveTest_testMoveReplyAdvanced.mock │ │ │ ├── ActivityFeedMoveTest_testMoveSection.mock │ │ │ ├── ActivityFeedMoveTest_testNotAuthorized.mock │ │ │ ├── ActivityFeedMoveTest_testNotFound.mock │ │ │ ├── ActivityFeedTest_testGetActivityTags.mock │ │ │ ├── ActivityFeedTest_testGetCompletedActivities.mock │ │ │ ├── ActivityFeedTest_testGetMyActivities.mock │ │ │ ├── ActivityFeedTest_testGetToDoActivities.mock │ │ │ ├── ActivityFieldCrudrTest_createDuplicateNameField.mock │ │ │ ├── ActivityFieldCrudrTest_createHiddenTextField.mock │ │ │ ├── ActivityFieldCrudrTest_createLinkField.mock │ │ │ ├── ActivityFieldCrudrTest_createPersonField.mock │ │ │ ├── ActivityFieldCrudrTest_createPersonFieldInline.mock │ │ │ ├── ActivityFieldCrudrTest_createTextField.mock │ │ │ ├── ActivityFieldCrudrTest_testCreateDateField.mock │ │ │ ├── ActivityFileTest_testCreateActivityNodeFile.mock │ │ │ ├── ActivityFileTest_testCreateActivityNodeFiles.mock │ │ │ ├── ActivityMemberArudTest_testAddActivityMember.mock │ │ │ ├── ActivityMemberArudTest_testDeleteActivityMember.mock │ │ │ ├── ActivityMemberArudTest_testRetrieveActivityMember.mock │ │ │ ├── ActivityMemberArudTest_testUpdateActivityMember.mock │ │ │ ├── ActivityNodeCrudrTest_testCreateActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testDeleteActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testReadActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testRestoreActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testUpdateActivityNode.mock │ │ │ ├── ActivityNodeDatesTest_testReadActivityDates.mock │ │ │ ├── ActivityNodeTypesTest_testCreateChatNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateEmailNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateEntryNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateEntryTemplateNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateReplyNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateSectionNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateTodoNode.mock │ │ │ ├── ActivityPriorityTest_testTunedOutActivity.mock │ │ │ ├── BaseActivityServiceTest_termActivityServiceTest.mock │ │ │ ├── CreateActivitiesTest_testCreateActivityNode.mock │ │ │ ├── CreateActivityPriorityData_createActivityPriorityData.mock │ │ │ ├── CreateHiddenFieldSearchData_testCreateActivitiesWithHiddenFields.mock │ │ │ ├── GetActivityDescendantsTest_testActivityDescendants.mock │ │ │ ├── GetMyActivitiesSinceUntilTest_testGetMyActivitiesSince.mock │ │ │ ├── GetMyActivitiesSinceUntilTest_testGetMyActivitiesUntil.mock │ │ │ ├── GetMyActivitiesTest_testGetMyActivities.mock │ │ │ ├── MoveActivityNodeTest_testMoveActivityNode.mock │ │ │ └── PublicActivityTest_testPublicActivity.mock │ │ │ └── smartcloudBasic │ │ │ ├── ActivityCrudrTest_testCreateActivity.mock │ │ │ ├── ActivityCrudrTest_testDeleteActivity.mock │ │ │ ├── ActivityCrudrTest_testReadActivity.mock │ │ │ ├── ActivityCrudrTest_testRestoreActivity.mock │ │ │ ├── ActivityCrudrTest_testUpdateActivity.mock │ │ │ ├── ActivityFeedMoveTest_testMoveField.mock │ │ │ ├── ActivityFeedMoveTest_testMoveFieldToItself.mock │ │ │ ├── ActivityFeedMoveTest_testMoveReply.mock │ │ │ ├── ActivityFeedMoveTest_testMoveReplyAdvanced.mock │ │ │ ├── ActivityFeedMoveTest_testMoveSection.mock │ │ │ ├── ActivityFeedMoveTest_testNotAuthorized.mock │ │ │ ├── ActivityFeedMoveTest_testNotFound.mock │ │ │ ├── ActivityFieldCrudrTest_createDuplicateNameField.mock │ │ │ ├── ActivityFieldCrudrTest_createHiddenTextField.mock │ │ │ ├── ActivityFieldCrudrTest_createLinkField.mock │ │ │ ├── ActivityFieldCrudrTest_createPersonField.mock │ │ │ ├── ActivityFieldCrudrTest_createPersonFieldInline.mock │ │ │ ├── ActivityFieldCrudrTest_createTextField.mock │ │ │ ├── ActivityFieldCrudrTest_testCreateDateField.mock │ │ │ ├── ActivityMemberArudTest_testAddActivityMember.mock │ │ │ ├── ActivityMemberArudTest_testDeleteActivityMember.mock │ │ │ ├── ActivityMemberArudTest_testRetrieveActivityMember.mock │ │ │ ├── ActivityMemberArudTest_testUpdateActivityMember.mock │ │ │ ├── ActivityMoveFieldTest_testIncludeCompletedActivities.mock │ │ │ ├── ActivityMoveFieldTest_testMoveField.mock │ │ │ ├── ActivityMoveFieldTest_testMoveFieldToDeletedNode.mock │ │ │ ├── ActivityMoveFieldTest_testMoveFieldUnsupportedNodeType.mock │ │ │ ├── ActivityMoveFieldTest_testMoveFieldWithUnauthorizedUser.mock │ │ │ ├── ActivityMoveFieldTest_testMoveFieldWithWrongDestUuid.mock │ │ │ ├── ActivityMoveFieldTest_testMoveFieldWithWrongFieldUuid.mock │ │ │ ├── ActivityMoveFieldTest_testMoveNonexistentField.mock │ │ │ ├── ActivityMoveFieldTest_testMoveNullDestUuid.mock │ │ │ ├── ActivityMoveFieldTest_testMovePersonField.mock │ │ │ ├── ActivityMoveFieldTest_testReduceFieldsToSingleNode.mock │ │ │ ├── ActivityNodeCrudrTest_testCreateActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testDeleteActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testReadActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testRestoreActivityNode.mock │ │ │ ├── ActivityNodeCrudrTest_testUpdateActivityNode.mock │ │ │ ├── ActivityNodeDatesTest_testReadActivityDates.mock │ │ │ ├── ActivityNodeTypesTest_testCreateChatNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateEmailNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateEntryNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateEntryTemplateNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateReplyNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateSectionNode.mock │ │ │ ├── ActivityNodeTypesTest_testCreateTodoNode.mock │ │ │ ├── ActivityPriorityTest_testTunedOutActivity.mock │ │ │ ├── BaseActivityServiceTest_termActivityServiceTest.mock │ │ │ ├── CreateActivitiesTest_testCreateActivityNode.mock │ │ │ ├── CreateActivityPriorityData_createActivityPriorityData.mock │ │ │ ├── CreateHiddenFieldSearchData_testCreateActivitiesWithHiddenFields.mock │ │ │ ├── GetActivityDescendantsTest_testActivityDescendants.mock │ │ │ ├── GetMyActivitiesSinceUntilTest_testGetMyActivitiesSince.mock │ │ │ ├── GetMyActivitiesSinceUntilTest_testGetMyActivitiesUntil.mock │ │ │ ├── GetMyActivitiesTest_testGetMyActivities.mock │ │ │ ├── MoveActivityNodeTest_testMoveActivityNode.mock │ │ │ └── PublicActivityTest_testPublicActivity.mock │ │ ├── activity │ │ └── mockData │ │ │ └── connectionsBasic │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_endCRUD.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_initCRUD.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testAddMember.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testChangeEntryType.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testCreateActivityNode.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testCreateDeleteAndRestoreActivity.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testDeleteActivityNode.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testGetActivityNode.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testGetActivityNodeFromTrash.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testGetActivityNodeTags.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testGetActivityNodes.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testGetActivityNodesInTrash.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testGetMembers.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testMoveEntryToSection.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testRestoreActivityNode.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testUpdateActivity.mock │ │ │ ├── ActivityServiceCreateUpdateDeleteTest_testUpdateActivityNode.mock │ │ │ ├── ActivityServiceGetTest_testGetActivitiesInTrash.mock │ │ │ ├── ActivityServiceGetTest_testGetAllActivities.mock │ │ │ ├── ActivityServiceGetTest_testGetAllTags.mock │ │ │ ├── ActivityServiceGetTest_testGetAllTodos.mock │ │ │ ├── ActivityServiceGetTest_testGetCompletedActivities.mock │ │ │ ├── ActivityServiceGetTest_testGetMyActivities.mock │ │ │ ├── ActivityServiceTest_testAddMember.mock │ │ │ ├── ActivityServiceTest_testChangeEntryType.mock │ │ │ ├── ActivityServiceTest_testCreateActivityNode.mock │ │ │ ├── ActivityServiceTest_testCreateDeleteAndRestoreActivity.mock │ │ │ ├── ActivityServiceTest_testGetActivitiesInTrash.mock │ │ │ ├── ActivityServiceTest_testGetActivityNode.mock │ │ │ ├── ActivityServiceTest_testGetActivityNodeFromTrash.mock │ │ │ ├── ActivityServiceTest_testGetActivityNodeTags.mock │ │ │ ├── ActivityServiceTest_testGetActivityNodes.mock │ │ │ ├── ActivityServiceTest_testGetActivityNodesInTrash.mock │ │ │ ├── ActivityServiceTest_testGetAllActivities.mock │ │ │ ├── ActivityServiceTest_testGetAllTags.mock │ │ │ ├── ActivityServiceTest_testGetAllTodos.mock │ │ │ ├── ActivityServiceTest_testGetCompletedActivities.mock │ │ │ ├── ActivityServiceTest_testGetMembers.mock │ │ │ ├── ActivityServiceTest_testGetMyActivities.mock │ │ │ ├── ActivityServiceTest_testRestoreActivityNode.mock │ │ │ ├── ActivityServiceTest_testUpdateActivity.mock │ │ │ └── ActivityServiceTest_testUpdateActivityNode.mock │ │ ├── activitystreams │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── ActivityStreamServiceTest_testGetUpdatesFromCommunity.mock │ │ │ ├── ActivityStreamServiceTest_testGetUpdatesFromUser.mock │ │ │ ├── ActivityStreamServiceTest_testPostEntry.mock │ │ │ └── ActivityStreamServiceTest_testSearchForTags.mock │ │ │ └── smartcloudBasic │ │ │ ├── ActivityStreamServiceTest_testGetUpdatesFromUser.mock │ │ │ └── ActivityStreamServiceTest_testSearchForTags.mock │ │ ├── blogs │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── BlogCommentCreateGetDeleteTest_CreateComment.mock │ │ │ ├── BlogCommentCreateGetDeleteTest_GetComment.mock │ │ │ ├── BlogCommentCreateGetDeleteTest_cleanUp.mock │ │ │ ├── BlogCommentCreateGetDeleteTest_createCommentInit.mock │ │ │ ├── BlogCommentCreateGetDeleteTest_deleteComment.mock │ │ │ ├── BlogCreateUpdateDeleteTest_CreateBlogTest.mock │ │ │ ├── BlogCreateUpdateDeleteTest_GetBlog.mock │ │ │ ├── BlogCreateUpdateDeleteTest_UpdateBlog.mock │ │ │ ├── BlogCreateUpdateDeleteTest_deleteBlog.mock │ │ │ ├── BlogCreateUpdateDeleteTest_deleteBlogOnExit.mock │ │ │ ├── BlogCreateUpdateDeleteTest_initBlog.mock │ │ │ ├── BlogGetUpdateTest_GetBlog.mock │ │ │ ├── BlogGetUpdateTest_UpdateBlog.mock │ │ │ ├── BlogGetUpdateTest_deleteBlogOnExit.mock │ │ │ ├── BlogGetUpdateTest_initBlog.mock │ │ │ ├── BlogPostCreateTest_createBlogPostTest.mock │ │ │ ├── BlogPostCreateTest_createBlogTest.mock │ │ │ ├── BlogPostDeleteTest_deleteBlog.mock │ │ │ ├── BlogPostDeleteTest_deleteBlogPost.mock │ │ │ ├── BlogPostGetUpdateLikeUnlikeTest_deleteBlogPostTestDataOnExit.mock │ │ │ ├── BlogPostGetUpdateLikeUnlikeTest_getBlogPost.mock │ │ │ ├── BlogPostGetUpdateLikeUnlikeTest_initBlogPostTestData.mock │ │ │ ├── BlogPostGetUpdateLikeUnlikeTest_recommendBlogPostTest.mock │ │ │ ├── BlogPostGetUpdateLikeUnlikeTest_updateBlogPost.mock │ │ │ ├── BlogPostLikeUnlikeTest_deleteBlogPostTestDataOnExit.mock │ │ │ ├── BlogPostLikeUnlikeTest_initBlogPostTestData.mock │ │ │ ├── BlogPostLikeUnlikeTest_recommendBlogPostTest.mock │ │ │ ├── BlogPostUpdateDeleteTest_createBlogPostTest.mock │ │ │ ├── BlogPostUpdateDeleteTest_deleteBlogPost.mock │ │ │ ├── BlogPostUpdateDeleteTest_deleteBlogPostTestDataOnExit.mock │ │ │ ├── BlogPostUpdateDeleteTest_getBlogPost.mock │ │ │ ├── BlogPostUpdateDeleteTest_initBlogPostTestData.mock │ │ │ ├── BlogPostUpdateDeleteTest_updateBlogPost.mock │ │ │ ├── BlogSerializationTests_testBlogCommentListSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogCommentSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogListSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogPostListSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogPostSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogSerialization.mock │ │ │ ├── BlogServiceGetTests_getAllBlogs.mock │ │ │ ├── BlogServiceGetTests_getAllComments.mock │ │ │ ├── BlogServiceGetTests_getAllPosts.mock │ │ │ ├── BlogServiceGetTests_getAllTags.mock │ │ │ ├── BlogServiceGetTests_getBlogComments.mock │ │ │ ├── BlogServiceGetTests_getBlogPosts.mock │ │ │ ├── BlogServiceGetTests_getBlogTags.mock │ │ │ ├── BlogServiceGetTests_getFeaturedBlogs.mock │ │ │ ├── BlogServiceGetTests_getFeaturedPosts.mock │ │ │ ├── BlogServiceGetTests_getMyBlogs.mock │ │ │ ├── BlogServiceGetTests_getRecommendedPosts.mock │ │ │ ├── CommentCreateGetDeleteTest_CreateComment.mock │ │ │ ├── CommentCreateGetDeleteTest_GetComment.mock │ │ │ ├── CommentCreateGetDeleteTest_createCommentInit.mock │ │ │ └── CommentCreateGetDeleteTest_deleteComment.mock │ │ │ └── smartcloudBasic │ │ │ ├── BlogCommentCreateGetDeleteTest_createCommentInit.mock │ │ │ ├── BlogGetUpdateTest_initBlog.mock │ │ │ ├── BlogPostCreateTest_createBlogPostTest.mock │ │ │ ├── BlogPostCreateTest_createBlogTest.mock │ │ │ ├── BlogPostDeleteTest_deleteBlog.mock │ │ │ ├── BlogPostDeleteTest_deleteBlogPost.mock │ │ │ ├── BlogPostGetUpdateLikeUnlikeTest_initBlogPostTestData.mock │ │ │ ├── BlogSerializationTests_testBlogCommentListSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogCommentSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogListSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogPostListSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogPostSerialization.mock │ │ │ ├── BlogSerializationTests_testBlogSerialization.mock │ │ │ ├── BlogServiceGetTests_getAllBlogs.mock │ │ │ ├── BlogServiceGetTests_getAllComments.mock │ │ │ ├── BlogServiceGetTests_getAllPosts.mock │ │ │ ├── BlogServiceGetTests_getAllTags.mock │ │ │ ├── BlogServiceGetTests_getBlogComments.mock │ │ │ ├── BlogServiceGetTests_getBlogPosts.mock │ │ │ ├── BlogServiceGetTests_getBlogTags.mock │ │ │ ├── BlogServiceGetTests_getFeaturedBlogs.mock │ │ │ ├── BlogServiceGetTests_getFeaturedPosts.mock │ │ │ ├── BlogServiceGetTests_getMyBlogs.mock │ │ │ └── BlogServiceGetTests_getRecommendedPosts.mock │ │ ├── bookmarks │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── BookmarkServiceTest_testGetAllBookmarks.mock │ │ │ ├── BookmarkServiceTest_testGetMyBookmarks.mock │ │ │ ├── BookmarkServiceTest_testGetMyNotifications.mock │ │ │ ├── BookmarkServiceTest_testGetMySentNotifications.mock │ │ │ ├── BookmarkServiceTest_testGetPopularBookmarks.mock │ │ │ └── BookmarkServiceTest_testGetPrivateBookmarks.mock │ │ │ └── smartcloudBasic │ │ │ ├── BookmarkServiceTest_testGetAllBookmarks.mock │ │ │ ├── BookmarkServiceTest_testGetMyBookmarks.mock │ │ │ ├── BookmarkServiceTest_testGetMyNotifications.mock │ │ │ ├── BookmarkServiceTest_testGetMySentNotifications.mock │ │ │ ├── BookmarkServiceTest_testGetPopularBookmarks.mock │ │ │ └── BookmarkServiceTest_testGetPrivateBookmarks.mock │ │ ├── cmisfiles │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── CMISFileServiceTest_testGetCollectionsSharedWithMe.mock │ │ │ ├── CMISFileServiceTest_testGetFileSharedWithMe.mock │ │ │ ├── CMISFileServiceTest_testGetMyCollections.mock │ │ │ ├── CMISFileServiceTest_testGetMyFiles.mock │ │ │ └── CMISFileServiceTest_testGetMyShares.mock │ │ │ └── smartcloudBasic │ │ │ ├── CMISFileServiceTest_testGetCollectionsSharedWithMe.mock │ │ │ ├── CMISFileServiceTest_testGetFileSharedWithMe.mock │ │ │ ├── CMISFileServiceTest_testGetMyCollections.mock │ │ │ └── CMISFileServiceTest_testGetMyFiles.mock │ │ ├── communities │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── BaseCommunityServiceTest_createTestData.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testCreateCommunity.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testCreateCommunityTwice.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetCommunityBookmarks.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetCommunityByInvalidId.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetCommunityForumTopics.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetMembers.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetMyCommunities.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetMyInvites.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetPublicCommunities.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetPublicCommunitiesByParameters.mock │ │ │ ├── CommunityServiceTest_createTestData.mock │ │ │ ├── CommunityServiceTest_deleteTestData.mock │ │ │ ├── CommunityServiceTest_testAddRemoveMember.mock │ │ │ ├── CommunityServiceTest_testCreateCommunity.mock │ │ │ ├── CommunityServiceTest_testCreateCommunityTwice.mock │ │ │ ├── CommunityServiceTest_testCreateCommuniy.mock │ │ │ ├── CommunityServiceTest_testDeleteCommunity.mock │ │ │ ├── CommunityServiceTest_testGetCommunityBookmarks.mock │ │ │ ├── CommunityServiceTest_testGetCommunityById.mock │ │ │ ├── CommunityServiceTest_testGetCommunityByInvalidId.mock │ │ │ ├── CommunityServiceTest_testGetCommunityForumTopics.mock │ │ │ ├── CommunityServiceTest_testGetMembers.mock │ │ │ ├── CommunityServiceTest_testGetMyCommunities.mock │ │ │ ├── CommunityServiceTest_testGetMyInvites.mock │ │ │ ├── CommunityServiceTest_testGetPublicCommunities.mock │ │ │ ├── CommunityServiceTest_testGetPublicCommunitiesByParameters.mock │ │ │ ├── CommunityServiceTest_testSubs.mock │ │ │ ├── CommunityServiceTest_testUpdateCommunity.mock │ │ │ ├── CommunityServiceTest_testUpdateCommuniy.mock │ │ │ └── DeleteCommunityServiceTest_testDeleteCommunity.mock │ │ │ └── smartcloudBasic │ │ │ ├── BaseCommunityServiceTest_createTestData.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testCreateCommunity.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetCommunityByInvalidId.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetMembers.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetMyCommunities.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetMyInvites.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetPublicCommunities.mock │ │ │ ├── CommunityServiceNoCommonCommunityTest_testGetPublicCommunitiesByParameters.mock │ │ │ ├── CommunityServiceTest_createTestData.mock │ │ │ ├── CommunityServiceTest_deleteTestData.mock │ │ │ ├── CommunityServiceTest_testAddRemoveMember.mock │ │ │ ├── CommunityServiceTest_testCreateCommuniy.mock │ │ │ ├── CommunityServiceTest_testDeleteCommunity.mock │ │ │ ├── CommunityServiceTest_testGetCommunityBookmarks.mock │ │ │ ├── CommunityServiceTest_testGetCommunityById.mock │ │ │ ├── CommunityServiceTest_testGetCommunityByInvalidId.mock │ │ │ ├── CommunityServiceTest_testGetCommunityForumTopics.mock │ │ │ ├── CommunityServiceTest_testGetMembers.mock │ │ │ ├── CommunityServiceTest_testGetMyCommunities.mock │ │ │ ├── CommunityServiceTest_testGetMyInvites.mock │ │ │ ├── CommunityServiceTest_testGetPublicCommunities.mock │ │ │ ├── CommunityServiceTest_testGetPublicCommunitiesByParameters.mock │ │ │ ├── CommunityServiceTest_testSubs.mock │ │ │ ├── CommunityServiceTest_testUpdateCommunity.mock │ │ │ └── CommunityServiceTest_testUpdateCommuniy.mock │ │ ├── files │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── FileDownloadTest_testDownloadPrivateCommunityFile.mock │ │ │ ├── FileDownloadTest_testDownloadPrivateFile.mock │ │ │ ├── FileDownloadTest_testDownloadPublicCommunityFile.mock │ │ │ ├── FileDownloadTest_testDownloadPublicFile.mock │ │ │ ├── FileDownloadTest_testDownloadSharedWithMeFiles.mock │ │ │ ├── FileServiceTest_pinAndUnpinFolder.mock │ │ │ ├── FileServiceTest_testAddCommentToFile.mock │ │ │ ├── FileServiceTest_testAddCommentToMyFile.mock │ │ │ ├── FileServiceTest_testAddRemoveFileToFolders.mock │ │ │ ├── FileServiceTest_testCreateComment.mock │ │ │ ├── FileServiceTest_testCreateDeleteFolder.mock │ │ │ ├── FileServiceTest_testDelete.mock │ │ │ ├── FileServiceTest_testDeleteComment.mock │ │ │ ├── FileServiceTest_testDeleteFileFromRecycleBin.mock │ │ │ ├── FileServiceTest_testFileUpload.mock │ │ │ ├── FileServiceTest_testGetAllFileComments.mock │ │ │ ├── FileServiceTest_testGetAllUserFiles.mock │ │ │ ├── FileServiceTest_testGetFileShares.mock │ │ │ ├── FileServiceTest_testGetFilesComments.mock │ │ │ ├── FileServiceTest_testGetFilesInFolder.mock │ │ │ ├── FileServiceTest_testGetFilesInMyRecycleBin.mock │ │ │ ├── FileServiceTest_testGetFilesSharedByMe.mock │ │ │ ├── FileServiceTest_testGetFilesSharedWithMe.mock │ │ │ ├── FileServiceTest_testGetFolder.mock │ │ │ ├── FileServiceTest_testGetFoldersWithRecentlyAddedFiles.mock │ │ │ ├── FileServiceTest_testGetMyFiles.mock │ │ │ ├── FileServiceTest_testGetMyFolders.mock │ │ │ ├── FileServiceTest_testGetNonce.mock │ │ │ ├── FileServiceTest_testGetPinnedFiles.mock │ │ │ ├── FileServiceTest_testGetPinnedFolders.mock │ │ │ ├── FileServiceTest_testGetPublicFiles.mock │ │ │ ├── FileServiceTest_testLock.mock │ │ │ ├── FileServiceTest_testPinAndUnPin.mock │ │ │ ├── FileServiceTest_testReadFile.mock │ │ │ ├── FileServiceTest_testReadFileWithLoadFalse.mock │ │ │ ├── FileServiceTest_testRestoreFileFromRecycleBin.mock │ │ │ ├── FileServiceTest_testShareFileWithCommunity.mock │ │ │ ├── FileServiceTest_testUnlock.mock │ │ │ ├── FileServiceTest_testUpdateComment.mock │ │ │ ├── FileServiceTest_testUpdateFileMetadata.mock │ │ │ ├── FileServiceTest_testUploadCommunityFile.mock │ │ │ ├── FileUpdateTest_testUpdatePrivateCommunityFile.mock │ │ │ ├── FileUpdateTest_testUpdatePrivateFile.mock │ │ │ ├── FileUpdateTest_testUpdatePublicCommunityFile.mock │ │ │ ├── FileUpdateTest_testUpdatePublicFile.mock │ │ │ └── FileUpdateTest_testUpdateSharedWithMeFiles.mock │ │ │ └── smartcloudBasic │ │ │ ├── FileDownloadTest_testDownloadPrivateCommunityFile.mock │ │ │ ├── FileDownloadTest_testDownloadPrivateFile.mock │ │ │ ├── FileDownloadTest_testDownloadPublicCommunityFile.mock │ │ │ ├── FileDownloadTest_testDownloadPublicFile.mock │ │ │ ├── FileServiceTest_testAddCommentToFile.mock │ │ │ ├── FileServiceTest_testAddCommentToMyFile.mock │ │ │ ├── FileServiceTest_testCreateComment.mock │ │ │ ├── FileServiceTest_testCreateDeleteFolder.mock │ │ │ ├── FileServiceTest_testDelete.mock │ │ │ ├── FileServiceTest_testDeleteComment.mock │ │ │ ├── FileServiceTest_testDeleteFileFromRecycleBin.mock │ │ │ ├── FileServiceTest_testFileUpload.mock │ │ │ ├── FileServiceTest_testGetAllFileComments.mock │ │ │ ├── FileServiceTest_testGetFileShares.mock │ │ │ ├── FileServiceTest_testGetFilesInMyRecycleBin.mock │ │ │ ├── FileServiceTest_testGetFilesSharedByMe.mock │ │ │ ├── FileServiceTest_testGetFilesSharedWithMe.mock │ │ │ ├── FileServiceTest_testGetFoldersWithRecentlyAddedFiles.mock │ │ │ ├── FileServiceTest_testGetMyFiles.mock │ │ │ ├── FileServiceTest_testGetMyFolders.mock │ │ │ ├── FileServiceTest_testGetNonce.mock │ │ │ ├── FileServiceTest_testGetPinnedFiles.mock │ │ │ ├── FileServiceTest_testGetPinnedFolders.mock │ │ │ ├── FileServiceTest_testReadFile.mock │ │ │ ├── FileServiceTest_testReadFileWithLoadFalse.mock │ │ │ ├── FileServiceTest_testRestoreFileFromRecycleBin.mock │ │ │ ├── FileServiceTest_testUpdateComment.mock │ │ │ ├── FileServiceTest_testUpdateFileMetadata.mock │ │ │ ├── FileServiceTest_testUploadCommunityFile.mock │ │ │ ├── FileUpdateTest_testUpdatePrivateCommunityFile.mock │ │ │ ├── FileUpdateTest_testUpdatePrivateFile.mock │ │ │ ├── FileUpdateTest_testUpdatePublicCommunityFile.mock │ │ │ ├── FileUpdateTest_testUpdatePublicFile.mock │ │ │ └── FileUpdateTest_testUpdateSharedWithMeFiles.mock │ │ ├── follow │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── FollowServiceTest_createCommunity.mock │ │ │ ├── FollowServiceTest_deleteCommunity.mock │ │ │ ├── FollowServiceTest_getFollowedResource.mock │ │ │ ├── FollowServiceTest_getFollowedResources.mock │ │ │ ├── FollowServiceTest_initfollowServiceTest.mock │ │ │ ├── FollowServiceTest_startFollowing.mock │ │ │ └── FollowServiceTest_stopFollowing.mock │ │ │ └── smartcloudBasic │ │ │ └── FollowServiceTest_initfollowServiceTest.mock │ │ ├── forums │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── ForumCreateDeleteTest_testCreateForum.mock │ │ │ ├── ForumCreateDeleteTest_testDeleteForum.mock │ │ │ ├── ForumGetUpdateTest_deleteForumOnExit.mock │ │ │ ├── ForumGetUpdateTest_initForum.mock │ │ │ ├── ForumGetUpdateTest_testGetForum.mock │ │ │ ├── ForumGetUpdateTest_testUpdateForum.mock │ │ │ ├── ForumReplyCreateDeleteTest_testCreateForumReply.mock │ │ │ ├── ForumReplyCreateDeleteTest_testDeleteForumReply.mock │ │ │ ├── ForumReplyGetUpdateTest_deleteReplyOnExit.mock │ │ │ ├── ForumReplyGetUpdateTest_initForum.mock │ │ │ ├── ForumReplyGetUpdateTest_testGetForumReply.mock │ │ │ ├── ForumReplyGetUpdateTest_testUpdateReply.mock │ │ │ ├── ForumSerializationTests_testForumListSerialization.mock │ │ │ ├── ForumSerializationTests_testForumReplySerialization.mock │ │ │ ├── ForumSerializationTests_testForumSerialization.mock │ │ │ ├── ForumSerializationTests_testForumTopicSerialization.mock │ │ │ ├── ForumSerializationTests_testReplyListSerialization.mock │ │ │ ├── ForumSerializationTests_testTopicListSerialization.mock │ │ │ ├── ForumServiceGetTests_getAllForums.mock │ │ │ ├── ForumServiceGetTests_getForumReplies.mock │ │ │ ├── ForumServiceGetTests_getForumTopicsTags.mock │ │ │ ├── ForumServiceGetTests_getForumsTags.mock │ │ │ ├── ForumServiceGetTests_getMyForumTopics.mock │ │ │ ├── ForumServiceGetTests_getMyForums.mock │ │ │ ├── ForumServiceGetTests_getPublicForumTopics.mock │ │ │ ├── ForumServiceGetTests_getPublicForums.mock │ │ │ ├── ForumServiceGetTests_getRecommendations.mock │ │ │ ├── ForumServiceGetTests_testGetAllForums.mock │ │ │ ├── ForumServiceGetTests_testGetForumReplies.mock │ │ │ ├── ForumServiceGetTests_testGetForumTopicsTags.mock │ │ │ ├── ForumServiceGetTests_testGetForumsTags.mock │ │ │ ├── ForumServiceGetTests_testGetMyForumTopics.mock │ │ │ ├── ForumServiceGetTests_testGetMyForums.mock │ │ │ ├── ForumServiceGetTests_testGetPublicForumTopics.mock │ │ │ ├── ForumServiceGetTests_testGetPublicForums.mock │ │ │ ├── ForumServiceGetTests_testGetRecommendations.mock │ │ │ ├── ForumTopicCreateDeleteTest_testCreateForumTopic.mock │ │ │ ├── ForumTopicCreateDeleteTest_testDeleteForumTopic.mock │ │ │ ├── ForumTopicGetUpdateTest_deleteTopicOnExit.mock │ │ │ ├── ForumTopicGetUpdateTest_initForum.mock │ │ │ ├── ForumTopicGetUpdateTest_testGetForumTopic.mock │ │ │ ├── ForumTopicGetUpdateTest_testUpdateTopic.mock │ │ │ ├── LikeUnlikePostTest_deleteForumTopicDataOnExit.mock │ │ │ ├── LikeUnlikePostTest_initForumTopic.mock │ │ │ └── LikeUnlikePostTest_testLikeunlikePostTest.mock │ │ │ └── smartcloudBasic │ │ │ ├── ForumCreateDeleteTest_testCreateForum.mock │ │ │ ├── ForumCreateDeleteTest_testDeleteForum.mock │ │ │ ├── ForumGetUpdateTest_initForum.mock │ │ │ ├── ForumReplyCreateDeleteTest_testCreateForumReply.mock │ │ │ ├── ForumReplyCreateDeleteTest_testDeleteForumReply.mock │ │ │ ├── ForumReplyGetUpdateTest_initForum.mock │ │ │ ├── ForumSerializationTests_testForumListSerialization.mock │ │ │ ├── ForumSerializationTests_testForumReplySerialization.mock │ │ │ ├── ForumSerializationTests_testForumSerialization.mock │ │ │ ├── ForumSerializationTests_testForumTopicSerialization.mock │ │ │ ├── ForumSerializationTests_testReplyListSerialization.mock │ │ │ ├── ForumSerializationTests_testTopicListSerialization.mock │ │ │ ├── ForumServiceGetTests_testGetAllForums.mock │ │ │ ├── ForumServiceGetTests_testGetForumReplies.mock │ │ │ ├── ForumServiceGetTests_testGetForumTopicsTags.mock │ │ │ ├── ForumServiceGetTests_testGetForumsTags.mock │ │ │ ├── ForumServiceGetTests_testGetMyForumTopics.mock │ │ │ ├── ForumServiceGetTests_testGetMyForums.mock │ │ │ ├── ForumServiceGetTests_testGetPublicForumTopics.mock │ │ │ ├── ForumServiceGetTests_testGetPublicForums.mock │ │ │ ├── ForumServiceGetTests_testGetRecommendations.mock │ │ │ ├── ForumTopicCreateDeleteTest_testCreateForumTopic.mock │ │ │ ├── ForumTopicCreateDeleteTest_testDeleteForumTopic.mock │ │ │ ├── ForumTopicGetUpdateTest_initForum.mock │ │ │ └── LikeUnlikePostTest_initForumTopic.mock │ │ ├── profiles │ │ └── mockData │ │ │ ├── connectionsBasic │ │ │ ├── ProfileAdminServiceTest_testCreateAndDeleteProfile.mock │ │ │ ├── ProfileServiceTest_tempMethodPrePopulatedData.mock │ │ │ ├── ProfileServiceTest_testAddTags.mock │ │ │ ├── ProfileServiceTest_testCheckColleague.mock │ │ │ ├── ProfileServiceTest_testGetColleagues.mock │ │ │ ├── ProfileServiceTest_testGetColleaguesConnectionEntries.mock │ │ │ ├── ProfileServiceTest_testGetColleaguesConnectionEntriesForInvalidUser.mock │ │ │ ├── ProfileServiceTest_testGetColleaguesForInvalidUser.mock │ │ │ ├── ProfileServiceTest_testGetCommonColleaguesProfiles.mock │ │ │ ├── ProfileServiceTest_testGetDirectReports.mock │ │ │ ├── ProfileServiceTest_testGetProfile.mock │ │ │ ├── ProfileServiceTest_testGetReportToChain.mock │ │ │ ├── ProfileServiceTest_testProfileListSerialization.mock │ │ │ ├── ProfileServiceTest_testProfileSerialization.mock │ │ │ ├── ProfileServiceTest_testSearchProfilesWithInvalidParams.mock │ │ │ ├── ProfileServiceTest_testSearchProfilesWithParams.mock │ │ │ ├── ProfileServiceTest_testSendInvite.mock │ │ │ ├── ProfileServiceTest_testSendInviteAndCheckColleagues.mock │ │ │ ├── ProfileServiceTest_testUpdateProfile.mock │ │ │ ├── ProfileServiceTest_testUpdateProfilePhoto.mock │ │ │ ├── ProfileServiceTest_testUpdateProfilePhotoForInvalidFilePath.mock │ │ │ ├── ProfileServiceTest_testUpdateProfilePhotoNullExtension.mock │ │ │ └── ProfileServiceTest_testUpdateProfileWithInvalidCredentials.mock │ │ │ └── smartcloudBasic │ │ │ ├── ProfileAdminServiceTest_testCreateAndDeleteProfile.mock │ │ │ ├── ProfileServiceTest_testAddTags.mock │ │ │ ├── ProfileServiceTest_testGetColleagues.mock │ │ │ ├── ProfileServiceTest_testGetColleaguesConnectionEntries.mock │ │ │ ├── ProfileServiceTest_testGetColleaguesConnectionEntriesForInvalidUser.mock │ │ │ ├── ProfileServiceTest_testGetColleaguesForInvalidUser.mock │ │ │ ├── ProfileServiceTest_testGetCommonColleaguesProfiles.mock │ │ │ ├── ProfileServiceTest_testGetDirectReports.mock │ │ │ ├── ProfileServiceTest_testGetProfile.mock │ │ │ ├── ProfileServiceTest_testGetReportToChain.mock │ │ │ ├── ProfileServiceTest_testProfileListSerialization.mock │ │ │ ├── ProfileServiceTest_testProfileSerialization.mock │ │ │ ├── ProfileServiceTest_testSearchProfilesWithInvalidParams.mock │ │ │ ├── ProfileServiceTest_testSearchProfilesWithParams.mock │ │ │ ├── ProfileServiceTest_testSendInviteAndCheckColleagues.mock │ │ │ ├── ProfileServiceTest_testUpdateProfile.mock │ │ │ ├── ProfileServiceTest_testUpdateProfilePhoto.mock │ │ │ ├── ProfileServiceTest_testUpdateProfilePhotoForInvalidFilePath.mock │ │ │ ├── ProfileServiceTest_testUpdateProfilePhotoNullExtension.mock │ │ │ └── ProfileServiceTest_testUpdateProfileWithInvalidCredentials.mock │ │ └── wikis │ │ ├── community_wiki.xml │ │ ├── mockData │ │ ├── connectionsBasic │ │ │ ├── WikiCreateAndDeleteTest_createWikiTest.mock │ │ │ ├── WikiCreateAndDeleteTest_deleteWikiTest.mock │ │ │ ├── WikiGetAndUpdate_createWikiInit.mock │ │ │ ├── WikiGetAndUpdate_deleteWiki.mock │ │ │ ├── WikiGetAndUpdate_getWikiTest.mock │ │ │ ├── WikiGetAndUpdate_updateWikiTest.mock │ │ │ ├── WikiPageTest_cleanup.mock │ │ │ ├── WikiPageTest_createWikiPageTest.mock │ │ │ ├── WikiPageTest_getAndDeleteWikiPageTest.mock │ │ │ ├── WikiPageTest_init.mock │ │ │ └── WikiPageTest_updateWikiPageTest.mock │ │ └── smartcloudBasic │ │ │ ├── WikiCreateAndDeleteTest_createWikiTest.mock │ │ │ ├── WikiGetAndUpdate_createWikiInit.mock │ │ │ ├── WikiGetAndUpdate_deleteWiki.mock │ │ │ ├── WikiGetAndUpdate_getWikiTest.mock │ │ │ ├── WikiGetAndUpdate_updateWikiTest.mock │ │ │ ├── WikiPageTest_cleanup.mock │ │ │ ├── WikiPageTest_createWikiPageTest.mock │ │ │ ├── WikiPageTest_getAndDeleteWikiPageTest.mock │ │ │ └── WikiPageTest_init.mock │ │ ├── public_wikis.xml │ │ ├── wiki.xml │ │ ├── wikipage.xml │ │ └── wikipages.xml ├── com.ibm.sbt.core │ ├── .classpath │ ├── .factorypath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ibm │ │ │ └── sbt │ │ │ ├── core │ │ │ └── configuration │ │ │ │ └── Configuration.java │ │ │ ├── jslibrary │ │ │ ├── CORSResourceFilter.java │ │ │ ├── SBTEnvironment.java │ │ │ ├── SBTEnvironmentFactory.java │ │ │ ├── impl │ │ │ │ └── SBTEnvironmentFactoryFromBean.java │ │ │ └── servlet │ │ │ │ ├── AbstractLibrary.java │ │ │ │ ├── DojoLibrary.java │ │ │ │ ├── JQueryLibrary.java │ │ │ │ ├── LibraryException.java │ │ │ │ ├── LibraryRequest.java │ │ │ │ ├── LibraryRequestParams.java │ │ │ │ ├── LibraryServlet.java │ │ │ │ └── RequireJSLibrary.java │ │ │ ├── log │ │ │ └── SbtLogger.java │ │ │ ├── plugin │ │ │ └── SbtCoreLogger.java │ │ │ ├── security │ │ │ ├── authentication │ │ │ │ ├── AuthenticationException.java │ │ │ │ ├── oauth │ │ │ │ │ ├── OAuthException.java │ │ │ │ │ └── consumer │ │ │ │ │ │ ├── AccessToken.java │ │ │ │ │ │ ├── Base64Url.java │ │ │ │ │ │ ├── ConsumerToken.java │ │ │ │ │ │ ├── HMACOAuth1Handler.java │ │ │ │ │ │ ├── OAConstants.java │ │ │ │ │ │ ├── OAuth1Handler.java │ │ │ │ │ │ ├── OAuth2Handler.java │ │ │ │ │ │ ├── OAuthFactory.java │ │ │ │ │ │ ├── OAuthHandler.java │ │ │ │ │ │ ├── servlet │ │ │ │ │ │ ├── OA2Callback.java │ │ │ │ │ │ ├── OACallback.java │ │ │ │ │ │ └── OAClientAuthentication.java │ │ │ │ │ │ └── store │ │ │ │ │ │ ├── DBTokenStore.java │ │ │ │ │ │ ├── MemoryTokenStore.java │ │ │ │ │ │ ├── OATokenStoreFactory.java │ │ │ │ │ │ ├── StaticTokenStore10.java │ │ │ │ │ │ ├── TokenStore.java │ │ │ │ │ │ ├── TokenStoreEncryptor.java │ │ │ │ │ │ └── TokenStoreEncryptorDummyImpl.java │ │ │ │ └── password │ │ │ │ │ ├── PasswordException.java │ │ │ │ │ └── consumer │ │ │ │ │ └── UserPassword.java │ │ │ ├── credential │ │ │ │ └── store │ │ │ │ │ ├── AnonymousSessionCredentialStore.java │ │ │ │ │ ├── BaseStore.java │ │ │ │ │ ├── CredentialEncryptor.java │ │ │ │ │ ├── CredentialStore.java │ │ │ │ │ ├── CredentialStoreException.java │ │ │ │ │ ├── CredentialStoreFactory.java │ │ │ │ │ ├── DBCredentialStore.java │ │ │ │ │ └── MemoryStore.java │ │ │ └── encryption │ │ │ │ └── HMACEncryptionUtility.java │ │ │ ├── service │ │ │ ├── basic │ │ │ │ ├── AbstractFileProxyService.java │ │ │ │ ├── ConnectionsFileProxyService.java │ │ │ │ ├── ProxyEndpointService.java │ │ │ │ ├── ProxyProfiler.java │ │ │ │ ├── ProxyService.java │ │ │ │ └── ProxyUrlService.java │ │ │ ├── core │ │ │ │ ├── handlers │ │ │ │ │ ├── AbstractServiceHandler.java │ │ │ │ │ ├── AuthCredsHandler.java │ │ │ │ │ ├── AuthenticationHandler.java │ │ │ │ │ ├── EmailHandler.java │ │ │ │ │ ├── FileHandler.java │ │ │ │ │ ├── PingHandler.java │ │ │ │ │ └── ProxyHandler.java │ │ │ │ └── servlet │ │ │ │ │ ├── ServiceServlet.java │ │ │ │ │ └── SimpleProxyServlet.java │ │ │ ├── debug │ │ │ │ ├── DebugMemoryOutput.java │ │ │ │ ├── DebugOutput.java │ │ │ │ ├── DebugProxyHook.java │ │ │ │ ├── DebugServiceHook.java │ │ │ │ ├── DebugServiceHookFactory.java │ │ │ │ ├── DebugStreamOutput.java │ │ │ │ └── ProxyDebugUtil.java │ │ │ ├── ext │ │ │ │ ├── DefaultProxyEndpointServiceProvider.java │ │ │ │ └── ProxyEndpointServiceProvider.java │ │ │ ├── proxy │ │ │ │ ├── AbstractProxy.java │ │ │ │ ├── Proxy.java │ │ │ │ ├── ProxyConfigException.java │ │ │ │ ├── ProxyFactory.java │ │ │ │ ├── SBTProxy.java │ │ │ │ └── WPSProxy.java │ │ │ └── util │ │ │ │ └── ServiceUtil.java │ │ │ ├── services │ │ │ ├── client │ │ │ │ ├── AuthenticationService.java │ │ │ │ ├── ClientService.java │ │ │ │ ├── ClientServiceFactory.java │ │ │ │ ├── ClientServiceListener.java │ │ │ │ ├── ClientServicesException.java │ │ │ │ ├── CookieStoreClientService.java │ │ │ │ ├── GenericService.java │ │ │ │ ├── InvalidInputException.java │ │ │ │ ├── Request.java │ │ │ │ ├── Response.java │ │ │ │ ├── RestClient.java │ │ │ │ ├── SBTServiceException.java │ │ │ │ ├── base │ │ │ │ │ ├── AtomEntity.java │ │ │ │ │ ├── AtomFeedHandler.java │ │ │ │ │ ├── AtomService.java │ │ │ │ │ ├── AtomXPath.java │ │ │ │ │ ├── AuthType.java │ │ │ │ │ ├── BaseEntity.java │ │ │ │ │ ├── BaseService.java │ │ │ │ │ ├── CategoryFeedHandler.java │ │ │ │ │ ├── CommonConstants.java │ │ │ │ │ ├── ConnectionsConstants.java │ │ │ │ │ ├── ConnectionsFeedXpath.java │ │ │ │ │ ├── ConnectionsService.java │ │ │ │ │ ├── IFeedHandler.java │ │ │ │ │ ├── JsonEntity.java │ │ │ │ │ ├── JsonFeedHandler.java │ │ │ │ │ ├── JsonService.java │ │ │ │ │ ├── NamedUrlPart.java │ │ │ │ │ ├── URLBuilder.java │ │ │ │ │ ├── URLContainer.java │ │ │ │ │ ├── URLPattern.java │ │ │ │ │ ├── Version.java │ │ │ │ │ ├── VersionedUrl.java │ │ │ │ │ ├── datahandlers │ │ │ │ │ │ ├── AtomEntityList.java │ │ │ │ │ │ ├── CategoryEntityList.java │ │ │ │ │ │ ├── DataHandler.java │ │ │ │ │ │ ├── DataHandlerException.java │ │ │ │ │ │ ├── EntityList.java │ │ │ │ │ │ ├── FieldEntry.java │ │ │ │ │ │ ├── JsonDataHandler.java │ │ │ │ │ │ ├── JsonEntityList.java │ │ │ │ │ │ ├── ResponseProvider.java │ │ │ │ │ │ └── XmlDataHandler.java │ │ │ │ │ ├── serializers │ │ │ │ │ │ ├── AtomEntitySerializer.java │ │ │ │ │ │ ├── BaseEntitySerializer.java │ │ │ │ │ │ ├── PersonSerializer.java │ │ │ │ │ │ └── XmlSerializer.java │ │ │ │ │ ├── transformers │ │ │ │ │ │ ├── AbstractBaseTransformer.java │ │ │ │ │ │ └── TransformerException.java │ │ │ │ │ └── util │ │ │ │ │ │ └── EntityUtil.java │ │ │ │ ├── connections │ │ │ │ │ ├── ConnectionsService.java │ │ │ │ │ ├── activities │ │ │ │ │ │ ├── Activity.java │ │ │ │ │ │ ├── ActivityAttachment.java │ │ │ │ │ │ ├── ActivityNode.java │ │ │ │ │ │ ├── ActivityService.java │ │ │ │ │ │ ├── ActivityUpdate.java │ │ │ │ │ │ ├── ActivityUrls.java │ │ │ │ │ │ ├── ActivityXPath.java │ │ │ │ │ │ ├── AssignedTo.java │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ ├── DateField.java │ │ │ │ │ │ ├── Field.java │ │ │ │ │ │ ├── FileField.java │ │ │ │ │ │ ├── InReplyTo.java │ │ │ │ │ │ ├── LinkField.java │ │ │ │ │ │ ├── NodeEntity.java │ │ │ │ │ │ ├── PersonField.java │ │ │ │ │ │ ├── Priority.java │ │ │ │ │ │ ├── TextField.java │ │ │ │ │ │ └── serializers │ │ │ │ │ │ │ ├── ActivityNodeSerializer.java │ │ │ │ │ │ │ ├── ActivitySerializer.java │ │ │ │ │ │ │ └── NodeSerializer.java │ │ │ │ │ ├── activitystreams │ │ │ │ │ │ ├── ASApplication.java │ │ │ │ │ │ ├── ASDataPopulator.java │ │ │ │ │ │ ├── ASGroup.java │ │ │ │ │ │ ├── ASUser.java │ │ │ │ │ │ ├── ASVerb.java │ │ │ │ │ │ ├── ActivityStreamEntity.java │ │ │ │ │ │ ├── ActivityStreamEntityList.java │ │ │ │ │ │ ├── ActivityStreamFeedHandler.java │ │ │ │ │ │ ├── ActivityStreamRequestParams.java │ │ │ │ │ │ ├── ActivityStreamService.java │ │ │ │ │ │ ├── ActivityStreamServiceException.java │ │ │ │ │ │ ├── ActivityStreamUrls.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── ASJsonPath.java │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Attachment.java │ │ │ │ │ │ │ ├── Community.java │ │ │ │ │ │ │ ├── Image.java │ │ │ │ │ │ │ ├── Recommendation.java │ │ │ │ │ │ │ └── Reply.java │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── actor │ │ │ │ │ │ │ ├── as │ │ │ │ │ │ │ ├── connState │ │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── object │ │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ ├── targetTmpl │ │ │ │ │ │ │ └── to │ │ │ │ │ │ └── transformers │ │ │ │ │ │ │ └── ActivityStreamTransformer.java │ │ │ │ │ ├── blogs │ │ │ │ │ │ ├── Blog.java │ │ │ │ │ │ ├── BlogBaseEntity.java │ │ │ │ │ │ ├── BlogConstants.java │ │ │ │ │ │ ├── BlogPost.java │ │ │ │ │ │ ├── BlogService.java │ │ │ │ │ │ ├── BlogUrlParts.java │ │ │ │ │ │ ├── BlogUrls.java │ │ │ │ │ │ ├── Comment.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── BaseBlogEntity.java │ │ │ │ │ │ │ └── BlogXPath.java │ │ │ │ │ │ └── serializers │ │ │ │ │ │ │ ├── BlogCommentSerializer.java │ │ │ │ │ │ │ ├── BlogPostSerializer.java │ │ │ │ │ │ │ └── BlogSerializer.java │ │ │ │ │ ├── bookmarks │ │ │ │ │ │ ├── Bookmark.java │ │ │ │ │ │ ├── BookmarkService.java │ │ │ │ │ │ ├── BookmarkUrls.java │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── BookmarkXPath.java │ │ │ │ │ ├── cmisfiles │ │ │ │ │ │ ├── CMISFile.java │ │ │ │ │ │ ├── CMISFileService.java │ │ │ │ │ │ ├── CMISFilesUrlParts.java │ │ │ │ │ │ ├── CMISFilesUrls.java │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── CMISAuthor.java │ │ │ │ │ │ │ ├── CMISFileXPath.java │ │ │ │ │ │ │ └── CMISModifier.java │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Bookmark.java │ │ │ │ │ │ ├── CommonXPath.java │ │ │ │ │ │ ├── Link.java │ │ │ │ │ │ ├── Member.java │ │ │ │ │ │ ├── Person.java │ │ │ │ │ │ ├── Tag.java │ │ │ │ │ │ └── serializers │ │ │ │ │ │ │ ├── MemberSerializer.java │ │ │ │ │ │ │ └── PersonSerializer.java │ │ │ │ │ ├── communities │ │ │ │ │ │ ├── Community.java │ │ │ │ │ │ ├── CommunityConstants.java │ │ │ │ │ │ ├── CommunityService.java │ │ │ │ │ │ ├── CommunityUrls.java │ │ │ │ │ │ ├── Invite.java │ │ │ │ │ │ ├── Member.java │ │ │ │ │ │ ├── RemoteApplication.java │ │ │ │ │ │ ├── Widget.java │ │ │ │ │ │ ├── WidgetCommunity.java │ │ │ │ │ │ ├── WidgetCommunityService.java │ │ │ │ │ │ ├── WidgetCommunityUrls.java │ │ │ │ │ │ ├── WidgetConstants.java │ │ │ │ │ │ ├── WidgetDefId.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── CommunityXPath.java │ │ │ │ │ │ │ └── WidgetXPath.java │ │ │ │ │ │ ├── serializers │ │ │ │ │ │ │ ├── CommunityInviteSerializer.java │ │ │ │ │ │ │ ├── CommunityMemberSerializer.java │ │ │ │ │ │ │ ├── CommunitySerializer.java │ │ │ │ │ │ │ └── WidgetSerializer.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── Messages.java │ │ │ │ │ ├── files │ │ │ │ │ │ ├── AccessType.java │ │ │ │ │ │ ├── Categories.java │ │ │ │ │ │ ├── Comment.java │ │ │ │ │ │ ├── ContentMapFiles.java │ │ │ │ │ │ ├── File.java │ │ │ │ │ │ ├── FileConstants.java │ │ │ │ │ │ ├── FileService.java │ │ │ │ │ │ ├── FileUrlParts.java │ │ │ │ │ │ ├── FileUrls.java │ │ │ │ │ │ ├── FilesModerationDocumentEntry.java │ │ │ │ │ │ ├── Filters.java │ │ │ │ │ │ ├── ModerationContentTypes.java │ │ │ │ │ │ ├── NamespacesConnections.java │ │ │ │ │ │ ├── ResultType.java │ │ │ │ │ │ ├── SubFilters.java │ │ │ │ │ │ ├── Views.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── FileCommentParameterBuilder.java │ │ │ │ │ │ │ ├── FileCommentsFeedParameterBuilder.java │ │ │ │ │ │ │ ├── FileCreationParameters.java │ │ │ │ │ │ │ ├── FileEntryXPath.java │ │ │ │ │ │ │ ├── FileRequestParams.java │ │ │ │ │ │ │ └── Headers.java │ │ │ │ │ │ ├── serializer │ │ │ │ │ │ │ ├── CommentSerializer.java │ │ │ │ │ │ │ ├── EntityIdSerializer.java │ │ │ │ │ │ │ ├── FileSerializer.java │ │ │ │ │ │ │ ├── FlagSerializer.java │ │ │ │ │ │ │ └── ModerationSerializer.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── Messages.java │ │ │ │ │ ├── follow │ │ │ │ │ │ ├── FollowService.java │ │ │ │ │ │ ├── FollowUrls.java │ │ │ │ │ │ ├── FollowXPath.java │ │ │ │ │ │ ├── FollowedResource.java │ │ │ │ │ │ ├── Resource.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── Source.java │ │ │ │ │ │ │ └── Type.java │ │ │ │ │ │ └── serializers │ │ │ │ │ │ │ └── FollowSerializer.java │ │ │ │ │ ├── forums │ │ │ │ │ │ ├── Forum.java │ │ │ │ │ │ ├── ForumReply.java │ │ │ │ │ │ ├── ForumService.java │ │ │ │ │ │ ├── ForumTopic.java │ │ │ │ │ │ ├── ForumUrls.java │ │ │ │ │ │ ├── ForumsXPath.java │ │ │ │ │ │ ├── Recommendation.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── BaseForumEntity.java │ │ │ │ │ │ │ └── FlagType.java │ │ │ │ │ │ ├── serializers │ │ │ │ │ │ │ └── ForumSerializer.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── ForumConstants.java │ │ │ │ │ ├── profiles │ │ │ │ │ │ ├── ColleagueConnection.java │ │ │ │ │ │ ├── Profile.java │ │ │ │ │ │ ├── ProfileAdminService.java │ │ │ │ │ │ ├── ProfileParams.java │ │ │ │ │ │ ├── ProfileService.java │ │ │ │ │ │ ├── ProfileUrls.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── ColleagueConnectionXPath.java │ │ │ │ │ │ │ └── ProfileXPath.java │ │ │ │ │ │ ├── serializers │ │ │ │ │ │ │ ├── ColleagueConnectionSerializer.java │ │ │ │ │ │ │ └── ProfileSerializer.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── Messages.java │ │ │ │ │ │ │ └── ProfilesConstants.java │ │ │ │ │ ├── proxy │ │ │ │ │ │ └── ConnectionsProxyHandler.java │ │ │ │ │ ├── search │ │ │ │ │ │ ├── Constraint.java │ │ │ │ │ │ ├── FacetValue.java │ │ │ │ │ │ ├── FacetValueXPath.java │ │ │ │ │ │ ├── Result.java │ │ │ │ │ │ ├── Scope.java │ │ │ │ │ │ ├── SearchService.java │ │ │ │ │ │ ├── SearchUrls.java │ │ │ │ │ │ └── SearchXPath.java │ │ │ │ │ └── wikis │ │ │ │ │ │ ├── Wiki.java │ │ │ │ │ │ ├── WikiBaseEntity.java │ │ │ │ │ │ ├── WikiPage.java │ │ │ │ │ │ ├── WikiService.java │ │ │ │ │ │ ├── WikiUrls.java │ │ │ │ │ │ ├── WikiXPath.java │ │ │ │ │ │ └── serializers │ │ │ │ │ │ ├── WikiPageSerializer.java │ │ │ │ │ │ └── WikiSerializer.java │ │ │ │ ├── domino │ │ │ │ │ └── DominoService.java │ │ │ │ ├── email │ │ │ │ │ ├── AbstractMimeEmail.java │ │ │ │ │ ├── DefaultMimeEmail.java │ │ │ │ │ ├── DefaultMimeEmailFactory.java │ │ │ │ │ ├── EnvironmentConfig.java │ │ │ │ │ ├── MailSessionFactory.java │ │ │ │ │ ├── MimeEmail.java │ │ │ │ │ ├── MimeEmailException.java │ │ │ │ │ ├── MimeEmailFactory.java │ │ │ │ │ └── MimePart.java │ │ │ │ ├── navigation │ │ │ │ │ └── DataNavigatorFactory.java │ │ │ │ ├── sametime │ │ │ │ │ └── SametimeService.java │ │ │ │ └── smartcloud │ │ │ │ │ ├── SmartCloudService.java │ │ │ │ │ ├── bss │ │ │ │ │ ├── AuthenticationService.java │ │ │ │ │ ├── AuthorizationService.java │ │ │ │ │ ├── BaseJsonBuilder.java │ │ │ │ │ ├── BssException.java │ │ │ │ │ ├── BssService.java │ │ │ │ │ ├── BssUrls.java │ │ │ │ │ ├── CustomerJsonBuilder.java │ │ │ │ │ ├── CustomerManagementService.java │ │ │ │ │ ├── OrderJsonBuilder.java │ │ │ │ │ ├── StateChangeListener.java │ │ │ │ │ ├── SubscriberJsonBuilder.java │ │ │ │ │ ├── SubscriberManagementService.java │ │ │ │ │ ├── SubscriptionManagementService.java │ │ │ │ │ ├── UserCredentialJsonBuilder.java │ │ │ │ │ └── WorkflowService.java │ │ │ │ │ └── profiles │ │ │ │ │ ├── Profile.java │ │ │ │ │ ├── ProfileConstants.java │ │ │ │ │ ├── ProfileList.java │ │ │ │ │ ├── ProfileService.java │ │ │ │ │ ├── ProfileServiceException.java │ │ │ │ │ ├── feedhandler │ │ │ │ │ └── ProfileFeedHandler.java │ │ │ │ │ ├── model │ │ │ │ │ └── ProfileJsonPath.java │ │ │ │ │ └── util │ │ │ │ │ └── Messages.java │ │ │ ├── endpoints │ │ │ │ ├── AbstractEndpoint.java │ │ │ │ ├── AnonymousEndpoint.java │ │ │ │ ├── ApplicationEndpoint.java │ │ │ │ ├── BasicEndpoint.java │ │ │ │ ├── ConnectionsBasicEndpoint.java │ │ │ │ ├── ConnectionsEndpointAdapter.java │ │ │ │ ├── ConnectionsOAuth2Endpoint.java │ │ │ │ ├── ConnectionsSSOEndpoint.java │ │ │ │ ├── DominoBasicEndpoint.java │ │ │ │ ├── DominoOAuth2Endpoint.java │ │ │ │ ├── DominoSSOEndpoint.java │ │ │ │ ├── DropBoxOAuthEndpoint.java │ │ │ │ ├── Endpoint.java │ │ │ │ ├── EndpointFactory.java │ │ │ │ ├── FacebookEndpoint.java │ │ │ │ ├── FormEndpoint.java │ │ │ │ ├── GadgetEndpoint.java │ │ │ │ ├── GadgetOAuthEndpoint.java │ │ │ │ ├── OAuth2Endpoint.java │ │ │ │ ├── OAuthEndpoint.java │ │ │ │ ├── SSOEndpoint.java │ │ │ │ ├── SametimeBasicEndpoint.java │ │ │ │ ├── SmartCloudBasicEndpoint.java │ │ │ │ ├── SmartCloudOAuth2Endpoint.java │ │ │ │ ├── SmartCloudOAuthEndpoint.java │ │ │ │ ├── TwitterOAuthEndpoint.java │ │ │ │ └── js │ │ │ │ │ └── JSReference.java │ │ │ ├── rest │ │ │ │ ├── RestClient.java │ │ │ │ └── atom │ │ │ │ │ ├── AtomEntry.java │ │ │ │ │ └── AtomFeed.java │ │ │ └── util │ │ │ │ ├── AnonymousCredentialStore.java │ │ │ │ ├── AuthUtil.java │ │ │ │ ├── CommonUtils.java │ │ │ │ ├── HttpDeleteWithBody.java │ │ │ │ ├── SSLUtil.java │ │ │ │ ├── XmlTextUtil.java │ │ │ │ ├── extractor │ │ │ │ └── field │ │ │ │ │ ├── DataExtractor.java │ │ │ │ │ ├── JSONFieldExtractor.java │ │ │ │ │ └── XMLFieldExtractor.java │ │ │ │ └── navigable │ │ │ │ └── NavigableObject.java │ │ │ └── util │ │ │ ├── DataNavigator.java │ │ │ ├── JsonNavigator.java │ │ │ ├── PayloadBuilder.java │ │ │ ├── SBTException.java │ │ │ ├── SBTFilter.java │ │ │ ├── XMLEntityInspector.java │ │ │ ├── XMLPayloadBuilder.java │ │ │ └── XmlNavigator.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ ├── com.ibm.commons.runtime.managedbeansfactory │ │ ├── com.ibm.commons.runtime.propertiesfactory │ │ ├── com.ibm.sbt.core.environmentfactory │ │ ├── com.ibm.sbt.jslibrary │ │ └── com.ibm.sbt.service.proxyendpointservice.provider ├── com.ibm.sbt.proxy.web │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── com.ibm.sbt.web │ ├── .apt_generated │ │ └── .gitignore │ ├── .classpath │ ├── .factorypath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── assembly-jar.xml │ ├── assembly-war.xml │ ├── build.properties │ ├── build.xml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ibm │ │ │ │ └── sbt │ │ │ │ └── web │ │ │ │ ├── CORSResourceFilter.java │ │ │ │ └── SbtWebActivator.java │ │ │ ├── scripts │ │ │ └── build │ │ │ │ ├── buildControlDefault.js │ │ │ │ └── plugins │ │ │ │ └── sbt │ │ │ │ ├── i18n.js │ │ │ │ └── text.js │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── WEB-INF │ │ │ ├── ibm-web-bnd.xml │ │ │ ├── ibm-web-ext.xml │ │ │ ├── lib │ │ │ │ └── readme.txt │ │ │ └── web.xml │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── libs │ │ │ │ ├── has.js │ │ │ │ ├── loginForm.js │ │ │ │ ├── require.js │ │ │ │ └── requirejsPlugins │ │ │ │ │ ├── i18n.js │ │ │ │ │ └── text.js │ │ │ ├── sdk │ │ │ │ ├── _bridges │ │ │ │ │ ├── dojo-amd │ │ │ │ │ │ ├── IFrameTransport.js │ │ │ │ │ │ ├── RequestTransport.js │ │ │ │ │ │ ├── Transport.js │ │ │ │ │ │ ├── declare.js │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ ├── i18n.js │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ ├── lang.js │ │ │ │ │ │ ├── localeUtil.js │ │ │ │ │ │ ├── ready.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── BasicAuth_Dialog.js │ │ │ │ │ │ │ ├── OAuth10_Dialog.js │ │ │ │ │ │ │ ├── OAuthDialog.js │ │ │ │ │ │ │ └── SSO_Dialog.js │ │ │ │ │ ├── dojo │ │ │ │ │ │ ├── IFrameTransport.js │ │ │ │ │ │ ├── Transport.js │ │ │ │ │ │ ├── amdcompat.js │ │ │ │ │ │ ├── declare.js │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ ├── i18n.js │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ ├── lang.js │ │ │ │ │ │ ├── localeUtil.js │ │ │ │ │ │ ├── ready.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── BasicAuth_Dialog.js │ │ │ │ │ │ │ ├── OAuth10_Dialog.js │ │ │ │ │ │ │ ├── OAuthDialog.js │ │ │ │ │ │ │ └── SSO_Dialog.js │ │ │ │ │ └── jquery │ │ │ │ │ │ ├── IFrameTransport.js │ │ │ │ │ │ ├── Transport.js │ │ │ │ │ │ ├── declare.js │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ ├── i18n.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ ├── lang.js │ │ │ │ │ │ ├── localeUtil.js │ │ │ │ │ │ ├── ready.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── BasicAuth_Dialog.js │ │ │ │ │ │ ├── OAuth10_Dialog.js │ │ │ │ │ │ ├── OAuthDialog.js │ │ │ │ │ │ └── SSO_Dialog.js │ │ │ │ ├── _layers │ │ │ │ │ ├── sbt-core-dojo-amd.js │ │ │ │ │ ├── sbt-core-dojo-amd.js.uncompressed.js │ │ │ │ │ ├── sbt-extra-controls-dojo-amd.js │ │ │ │ │ └── sbt-extra-controls-dojo-amd.js.uncompressed.js │ │ │ │ ├── dojo │ │ │ │ │ ├── _TemplatedDialog.js │ │ │ │ │ ├── _TemplatedWidget.js │ │ │ │ │ ├── _TypeAhead.js │ │ │ │ │ └── grid │ │ │ │ │ │ └── _Grid.js │ │ │ │ ├── dojo2 │ │ │ │ │ ├── _TemplatedDialog.js │ │ │ │ │ ├── _TemplatedWidget.js │ │ │ │ │ ├── _TypeAhead.js │ │ │ │ │ └── grid │ │ │ │ │ │ └── _Grid.js │ │ │ │ ├── sbt-dojo-amd.profile.js │ │ │ │ └── sbt │ │ │ │ │ ├── Cache.js │ │ │ │ │ ├── DebugTransport.js │ │ │ │ │ ├── Endpoint.js │ │ │ │ │ ├── ErrorTransport.js │ │ │ │ │ ├── Gadget.js │ │ │ │ │ ├── GadgetTransport.js │ │ │ │ │ ├── IWidget.js │ │ │ │ │ ├── Jsonpath.js │ │ │ │ │ ├── MockTransport.js │ │ │ │ │ ├── Portlet.js │ │ │ │ │ ├── Promise.js │ │ │ │ │ ├── Proxy.js │ │ │ │ │ ├── WPSProxy.js │ │ │ │ │ ├── _config.js │ │ │ │ │ ├── authenticator │ │ │ │ │ ├── Basic.js │ │ │ │ │ ├── GadgetOAuth.js │ │ │ │ │ ├── OAuth.js │ │ │ │ │ ├── SSO.js │ │ │ │ │ ├── nls │ │ │ │ │ │ └── SSO.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── ConnectionsLogin.html │ │ │ │ │ │ ├── ConnectionsLoginDialog.html │ │ │ │ │ │ ├── Message.html │ │ │ │ │ │ ├── MessageDialogSSO.html │ │ │ │ │ │ ├── MessageSSO.html │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ ├── login.js │ │ │ │ │ │ ├── loginDialog.html │ │ │ │ │ │ └── messageSSO.js │ │ │ │ │ ├── base │ │ │ │ │ ├── AtomEntity.js │ │ │ │ │ ├── BaseConstants.js │ │ │ │ │ ├── BaseEntity.js │ │ │ │ │ ├── BaseService.js │ │ │ │ │ ├── DataHandler.js │ │ │ │ │ ├── JsonDataHandler.js │ │ │ │ │ ├── VCardDataHandler.js │ │ │ │ │ ├── XmlDataHandler.js │ │ │ │ │ └── core.js │ │ │ │ │ ├── compat.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── connections │ │ │ │ │ ├── ActivityConstants.js │ │ │ │ │ ├── ActivityService.js │ │ │ │ │ ├── ActivityStreamConstants.js │ │ │ │ │ ├── ActivityStreamService.js │ │ │ │ │ ├── BlogConstants.js │ │ │ │ │ ├── BlogPost.js │ │ │ │ │ ├── BlogService.js │ │ │ │ │ ├── BookmarkConstants.js │ │ │ │ │ ├── BookmarkService.js │ │ │ │ │ ├── CommunityConstants.js │ │ │ │ │ ├── CommunityService.js │ │ │ │ │ ├── ConnectionsConstants.js │ │ │ │ │ ├── ConnectionsService.js │ │ │ │ │ ├── FileConstants.js │ │ │ │ │ ├── FileService.js │ │ │ │ │ ├── FollowConstants.js │ │ │ │ │ ├── FollowService.js │ │ │ │ │ ├── ForumConstants.js │ │ │ │ │ ├── ForumService.js │ │ │ │ │ ├── IdeationBlogService.js │ │ │ │ │ ├── ProfileAdminService.js │ │ │ │ │ ├── ProfileConstants.js │ │ │ │ │ ├── ProfileService.js │ │ │ │ │ ├── SearchConstants.js │ │ │ │ │ ├── SearchService.js │ │ │ │ │ ├── Tag.js │ │ │ │ │ ├── WikiConstants.js │ │ │ │ │ ├── WikiService.js │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── ConnectionsGridRenderer.js │ │ │ │ │ │ ├── ViewAllAction.js │ │ │ │ │ │ ├── WidgetWrapper.js │ │ │ │ │ │ ├── _ConnectionsWidget.js │ │ │ │ │ │ ├── activities │ │ │ │ │ │ │ ├── ActivityAction.js │ │ │ │ │ │ │ ├── ActivityGrid.js │ │ │ │ │ │ │ ├── ActivityGridRenderer.js │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ └── ActivityGridRenderer.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── ActivityRow.html │ │ │ │ │ │ │ │ └── BootstrapActivityRow.html │ │ │ │ │ │ ├── astream │ │ │ │ │ │ │ ├── ActivityStreamWrapper.js │ │ │ │ │ │ │ ├── _ActivityStream.js │ │ │ │ │ │ │ ├── _SbtAsConfigUtil.js │ │ │ │ │ │ │ ├── _XhrHandler.js │ │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ │ ├── ConfigButton.js │ │ │ │ │ │ │ │ ├── ConfigExtension.js │ │ │ │ │ │ │ │ ├── ConfigOverlay.js │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ ├── black-x.gif │ │ │ │ │ │ │ │ │ └── redcog.png │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ ├── ConfigButton.html │ │ │ │ │ │ │ │ │ └── ConfigOverlay.html │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ └── ActivityStreamWrapper.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── ActivityStreamContent.html │ │ │ │ │ │ ├── bookmarks │ │ │ │ │ │ │ ├── BookmarkGrid.js │ │ │ │ │ │ │ ├── BookmarkGridRenderer.js │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ └── BookmarkGridRenderer.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── BookmarkListItem.html │ │ │ │ │ │ │ │ ├── BookmarkRow.html │ │ │ │ │ │ │ │ ├── BootstrapBookmarkRow.html │ │ │ │ │ │ │ │ └── TagAnchor.html │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ │ ├── CommunityRendererMixin.js │ │ │ │ │ │ │ ├── FileRendererMixin.js │ │ │ │ │ │ │ ├── ProfileRendererMixin.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── CommunityRow.html │ │ │ │ │ │ │ │ ├── FileRow.html │ │ │ │ │ │ │ │ ├── ProfileRow.html │ │ │ │ │ │ │ │ └── TagAnchor.html │ │ │ │ │ │ ├── communities │ │ │ │ │ │ │ ├── CommunityAction.js │ │ │ │ │ │ │ ├── CommunityGrid.js │ │ │ │ │ │ │ ├── CommunityGridRenderer.js │ │ │ │ │ │ │ ├── CommunityMembersAction.js │ │ │ │ │ │ │ ├── CommunityMembersGrid.js │ │ │ │ │ │ │ ├── CommunityMembersGridRenderer.js │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ ├── CommunityGridRenderer.js │ │ │ │ │ │ │ │ └── CommunityMembersGridRenderer.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── BootstrapCommunityMember.html │ │ │ │ │ │ │ │ ├── BootstrapCommunityRow.html │ │ │ │ │ │ │ │ ├── CommunityMemberRow.html │ │ │ │ │ │ │ │ ├── CommunityRow.html │ │ │ │ │ │ │ │ ├── TagAnchor.html │ │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── blank.gif │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── AddTagsAction.js │ │ │ │ │ │ │ ├── AddTagsWidget.js │ │ │ │ │ │ │ ├── DownloadFileAction.js │ │ │ │ │ │ │ ├── FileAction.js │ │ │ │ │ │ │ ├── FileGrid.js │ │ │ │ │ │ │ ├── FileGridRenderer.js │ │ │ │ │ │ │ ├── FilesView.js │ │ │ │ │ │ │ ├── MoveToTrashAction.js │ │ │ │ │ │ │ ├── MoveToTrashWidget.js │ │ │ │ │ │ │ ├── NewFolderAction.js │ │ │ │ │ │ │ ├── NewFolderWidget.js │ │ │ │ │ │ │ ├── ShareFileAction.js │ │ │ │ │ │ │ ├── ShareFileWidget.js │ │ │ │ │ │ │ ├── UploadFileAction.js │ │ │ │ │ │ │ ├── UploadFileWidget.js │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ ├── FileGridRenderer.js │ │ │ │ │ │ │ │ └── files.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── AddTags.html │ │ │ │ │ │ │ │ ├── BootstrapCommentRow.html │ │ │ │ │ │ │ │ ├── BootstrapFileRow.html │ │ │ │ │ │ │ │ ├── BootstrapFolderRow.html │ │ │ │ │ │ │ │ ├── CommentRow.html │ │ │ │ │ │ │ │ ├── FileRow.html │ │ │ │ │ │ │ │ ├── FolderRow.html │ │ │ │ │ │ │ │ ├── MoveToTrash.html │ │ │ │ │ │ │ │ ├── NewFolder.html │ │ │ │ │ │ │ │ ├── RecycledFileRow.html │ │ │ │ │ │ │ │ ├── ShareFile.html │ │ │ │ │ │ │ │ └── UploadFile.html │ │ │ │ │ │ ├── forums │ │ │ │ │ │ │ ├── BackAction.js │ │ │ │ │ │ │ ├── DeleteTopicAction.js │ │ │ │ │ │ │ ├── DeleteTopicWidget.js │ │ │ │ │ │ │ ├── ForumAction.js │ │ │ │ │ │ │ ├── ForumGrid.js │ │ │ │ │ │ │ ├── ForumGridRenderer.js │ │ │ │ │ │ │ ├── ForumView.js │ │ │ │ │ │ │ ├── LockTopicAction.js │ │ │ │ │ │ │ ├── LockTopicWidget.js │ │ │ │ │ │ │ ├── MarkTopicAsQuestionAction.js │ │ │ │ │ │ │ ├── MarkTopicAsQuestionWidget.js │ │ │ │ │ │ │ ├── PinTopicAction.js │ │ │ │ │ │ │ ├── PinTopicWidget.js │ │ │ │ │ │ │ ├── ReplyToTopicAction.js │ │ │ │ │ │ │ ├── ReplyToTopicWidget.js │ │ │ │ │ │ │ ├── StartTopicAction.js │ │ │ │ │ │ │ ├── StartTopicWidget.js │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ ├── ForumGridRenderer.js │ │ │ │ │ │ │ │ └── ForumView.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── BootstrapForumRow.html │ │ │ │ │ │ │ │ ├── BootstrapReplyRow.html │ │ │ │ │ │ │ │ ├── BootstrapTopicRow.html │ │ │ │ │ │ │ │ ├── DeleteTopic.html │ │ │ │ │ │ │ │ ├── ForumRow.html │ │ │ │ │ │ │ │ ├── ForumTopicRow.html │ │ │ │ │ │ │ │ ├── LockTopic.html │ │ │ │ │ │ │ │ ├── MarkAsQuestion.html │ │ │ │ │ │ │ │ ├── MyTopicsBreadCrumb.html │ │ │ │ │ │ │ │ ├── PinTopic.html │ │ │ │ │ │ │ │ ├── ReplyBreadCrumb.html │ │ │ │ │ │ │ │ ├── ReplyHeader.html │ │ │ │ │ │ │ │ ├── ReplyRow.html │ │ │ │ │ │ │ │ ├── ReplyToTopic.html │ │ │ │ │ │ │ │ ├── StartATopic.html │ │ │ │ │ │ │ │ ├── TableHeader.html │ │ │ │ │ │ │ │ ├── TopicBreadCrumb.html │ │ │ │ │ │ │ │ ├── TopicHeader.html │ │ │ │ │ │ │ │ └── TopicRow.html │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ ├── ConnectionsGridRenderer.js │ │ │ │ │ │ │ └── WidgetWrapper.js │ │ │ │ │ │ ├── profiles │ │ │ │ │ │ │ ├── ColleagueGrid.js │ │ │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ │ │ ├── EditProfilePhoto.html │ │ │ │ │ │ │ ├── ProfileAction.js │ │ │ │ │ │ │ ├── ProfileGrid.js │ │ │ │ │ │ │ ├── ProfileGridRenderer.js │ │ │ │ │ │ │ ├── ProfilePanel.js │ │ │ │ │ │ │ ├── ProfileTagAction.js │ │ │ │ │ │ │ ├── ProfileTagsGrid.js │ │ │ │ │ │ │ ├── ProfileTagsGridRenderer.js │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ │ │ │ ├── ProfileGridRenderer.js │ │ │ │ │ │ │ │ └── ProfileTagsGridRenderer.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── BootstrapProfile.html │ │ │ │ │ │ │ │ ├── ColleagueItem.html │ │ │ │ │ │ │ │ ├── ColleagueItemFull.html │ │ │ │ │ │ │ │ ├── ColleagueRow.html │ │ │ │ │ │ │ │ ├── CommunityMemberRow.html │ │ │ │ │ │ │ │ ├── ProfilePanel.html │ │ │ │ │ │ │ │ ├── ProfileRow.html │ │ │ │ │ │ │ │ ├── SharedConnectionsRow.html │ │ │ │ │ │ │ │ ├── StatusUpdateRow.html │ │ │ │ │ │ │ │ ├── TagListHeader.html │ │ │ │ │ │ │ │ ├── TagListRow.html │ │ │ │ │ │ │ │ └── ViewAll.html │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── SearchBox.js │ │ │ │ │ │ │ ├── SearchBoxRenderer.js │ │ │ │ │ │ │ ├── SearchGrid.js │ │ │ │ │ │ │ ├── SearchGridRenderer.js │ │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ │ ├── SearchBoxRenderer.js │ │ │ │ │ │ │ │ └── SearchGridRenderer.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── BookmarkBody.html │ │ │ │ │ │ │ │ ├── CalendarBody.html │ │ │ │ │ │ │ │ ├── CommunityBody.html │ │ │ │ │ │ │ │ ├── DefaultBody.html │ │ │ │ │ │ │ │ ├── DefaultHeader.html │ │ │ │ │ │ │ │ ├── DefaultSummary.html │ │ │ │ │ │ │ │ ├── MemberListItemTemplate.html │ │ │ │ │ │ │ │ ├── MemberListTemplate.html │ │ │ │ │ │ │ │ ├── NoResults.html │ │ │ │ │ │ │ │ ├── PersonCard.html │ │ │ │ │ │ │ │ ├── PopUpTemplate.html │ │ │ │ │ │ │ │ ├── ProfileBody.html │ │ │ │ │ │ │ │ ├── ProfileHeader.html │ │ │ │ │ │ │ │ ├── SearchBoxTemplate.html │ │ │ │ │ │ │ │ ├── SearchSuggestTemplate.html │ │ │ │ │ │ │ │ ├── SingleApplicationSearch.html │ │ │ │ │ │ │ │ ├── SingleSearchPopUp.html │ │ │ │ │ │ │ │ ├── StatusUpdateExtraHeader.html │ │ │ │ │ │ │ │ ├── StatusUpdateHeader.html │ │ │ │ │ │ │ │ ├── SuggestPopUpTemplate.html │ │ │ │ │ │ │ │ ├── a.html │ │ │ │ │ │ │ │ ├── div.html │ │ │ │ │ │ │ │ ├── em.html │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── blank.gif │ │ │ │ │ │ │ │ ├── img.html │ │ │ │ │ │ │ │ ├── li.html │ │ │ │ │ │ │ │ ├── span.html │ │ │ │ │ │ │ │ ├── td.html │ │ │ │ │ │ │ │ ├── tr.html │ │ │ │ │ │ │ │ └── ul.html │ │ │ │ │ │ ├── sharebox │ │ │ │ │ │ │ ├── InputFormWrapper.js │ │ │ │ │ │ │ ├── _InputForm.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── InputFormContent.html │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── FileGridWrapperContent.html │ │ │ │ │ │ │ ├── LoadingPage.html │ │ │ │ │ │ │ ├── ProfileCardWrapperContent.html │ │ │ │ │ │ │ └── WidgetFrame.html │ │ │ │ │ │ ├── vcard │ │ │ │ │ │ │ ├── CommunityVCard.js │ │ │ │ │ │ │ ├── ProfileVCard.js │ │ │ │ │ │ │ ├── ProfileVCardInline.js │ │ │ │ │ │ │ ├── SemanticTagService.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── CommunityVCard.html │ │ │ │ │ │ │ │ ├── ProfileVCard.html │ │ │ │ │ │ │ │ └── ProfileVCardInline.html │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ ├── FileGridWrapper.js │ │ │ │ │ │ │ └── ProfileCardWrapper.js │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── CommunityService.js │ │ │ │ │ │ ├── ConnectionsService.js │ │ │ │ │ │ └── ProfileService.js │ │ │ │ │ └── template │ │ │ │ │ │ ├── CategoryTmpl.xml │ │ │ │ │ │ ├── CommunityThemeTmpl.xml │ │ │ │ │ │ ├── CommunityTmpl.xml │ │ │ │ │ │ ├── CommunityUpdateTmpl.xml │ │ │ │ │ │ ├── CommunityUuidTmpl.xml │ │ │ │ │ │ ├── EmailTmpl.xml │ │ │ │ │ │ ├── MemberTmpl.xml │ │ │ │ │ │ └── UseridTmpl.xml │ │ │ │ │ ├── control-main.js │ │ │ │ │ ├── controls │ │ │ │ │ ├── StoreMixin.js │ │ │ │ │ ├── TypeAhead.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── Dialog.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ │ └── dialog.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── Dialog.html │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ ├── GridAction.js │ │ │ │ │ │ ├── GridRenderer.js │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ │ ├── GridRendererMixin.js │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── GridFooter.html │ │ │ │ │ │ │ │ ├── GridPager.html │ │ │ │ │ │ │ │ ├── GridSorter.html │ │ │ │ │ │ │ │ └── SortAnchor.html │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── Grid.html │ │ │ │ │ │ │ ├── GridFooter.html │ │ │ │ │ │ │ ├── GridPager.html │ │ │ │ │ │ │ ├── GridSorter.html │ │ │ │ │ │ │ └── SortAnchor.html │ │ │ │ │ ├── panel │ │ │ │ │ │ └── _ProfilePanel.js │ │ │ │ │ └── view │ │ │ │ │ │ ├── Action.js │ │ │ │ │ │ ├── ActionBar.js │ │ │ │ │ │ ├── BaseDialogContent.js │ │ │ │ │ │ ├── BaseView.js │ │ │ │ │ │ ├── BaseWidget.js │ │ │ │ │ │ ├── NavTree.js │ │ │ │ │ │ ├── NavTreeNode.js │ │ │ │ │ │ ├── ResidencyView.js │ │ │ │ │ │ ├── SearchBar.js │ │ │ │ │ │ ├── Section.js │ │ │ │ │ │ ├── TabBar.js │ │ │ │ │ │ ├── TabItem.js │ │ │ │ │ │ ├── TabbedBaseView.js │ │ │ │ │ │ ├── _ActionContainer.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ └── BaseView.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── ActionBar.html │ │ │ │ │ │ ├── ActionBarButton.html │ │ │ │ │ │ ├── BaseView.html │ │ │ │ │ │ ├── BootstrapTab.html │ │ │ │ │ │ ├── BootstrapTabBar.html │ │ │ │ │ │ ├── Message.html │ │ │ │ │ │ ├── Messages.html │ │ │ │ │ │ ├── NavTree.html │ │ │ │ │ │ ├── NavTreeNode.html │ │ │ │ │ │ ├── Navigator.html │ │ │ │ │ │ ├── SearchBar.html │ │ │ │ │ │ ├── Section.html │ │ │ │ │ │ ├── Tab.html │ │ │ │ │ │ ├── TabBar.html │ │ │ │ │ │ ├── TabbedBaseView.html │ │ │ │ │ │ ├── TitleBar.html │ │ │ │ │ │ └── TypeAhead.html │ │ │ │ │ ├── data │ │ │ │ │ └── AtomReadStore.js │ │ │ │ │ ├── declare.js │ │ │ │ │ ├── defer.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── emailService.js │ │ │ │ │ ├── entities.js │ │ │ │ │ ├── i18n.js │ │ │ │ │ ├── itemFactory.js │ │ │ │ │ ├── json.js │ │ │ │ │ ├── lang.js │ │ │ │ │ ├── localeUtil.js │ │ │ │ │ ├── log.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── nls │ │ │ │ │ ├── Endpoint.js │ │ │ │ │ ├── ErrorTransport.js │ │ │ │ │ ├── Locale.js │ │ │ │ │ ├── loginForm.js │ │ │ │ │ ├── messageSSO.js │ │ │ │ │ ├── util.js │ │ │ │ │ └── validate.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── pathUtil.js │ │ │ │ │ ├── ready.js │ │ │ │ │ ├── smartcloud │ │ │ │ │ ├── CommunityConstants.js │ │ │ │ │ ├── ProfileConstants.js │ │ │ │ │ ├── ProfileService.js │ │ │ │ │ ├── SmartcloudConstants.js │ │ │ │ │ ├── Subscriber.js │ │ │ │ │ └── controls │ │ │ │ │ │ ├── BaseGridRenderer.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ └── BaseGridRenderer.js │ │ │ │ │ │ └── profiles │ │ │ │ │ │ ├── ColleagueGrid.js │ │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ │ ├── ProfileAction.js │ │ │ │ │ │ ├── ProfileGrid.js │ │ │ │ │ │ ├── ProfileGridRenderer.js │ │ │ │ │ │ ├── ProfilePanel.js │ │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── ColleagueGridRenderer.js │ │ │ │ │ │ └── ProfileGridRenderer.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── ColleagueItem.html │ │ │ │ │ │ ├── ColleagueItemFull.html │ │ │ │ │ │ ├── CommunityMember.html │ │ │ │ │ │ ├── ProfilePanel.html │ │ │ │ │ │ ├── ProfileRow.html │ │ │ │ │ │ └── ViewAll.html │ │ │ │ │ ├── store │ │ │ │ │ ├── AtomStore.js │ │ │ │ │ └── parameter.js │ │ │ │ │ ├── stringUtil.js │ │ │ │ │ ├── text.js │ │ │ │ │ ├── url.js │ │ │ │ │ ├── util.js │ │ │ │ │ ├── validate.js │ │ │ │ │ ├── xml.js │ │ │ │ │ ├── xpath.js │ │ │ │ │ └── xsl.js │ │ │ └── yuidoc.json │ │ │ ├── loginForm.html │ │ │ └── xhr │ │ │ ├── IFrameContent.html │ │ │ └── sametime │ │ │ └── tunnel.html │ └── tools.properties ├── pom.xml └── sbt.sso.webapp-archetype │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ └── org.eclipse.wst.common.project.facet.core.xml │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── managed-beans.xml │ │ └── web.xml │ │ ├── index.html │ │ ├── java.jsp │ │ └── js.jsp │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── team ├── j2ee-projectset.psf ├── j2ee-samples-projectset.psf ├── java-projectset.psf └── mysocial-projectset.psf └── test-whitespaces.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/.travis.yml -------------------------------------------------------------------------------- /assembly/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/.project -------------------------------------------------------------------------------- /assembly/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/assembly.xml -------------------------------------------------------------------------------- /assembly/cdnjs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/cdnjs/readme.txt -------------------------------------------------------------------------------- /assembly/cdnjs/sbt-core-dojo-amd.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /assembly/cdnjs/sbt-core-dojo-amd.js.uncompressed.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); -------------------------------------------------------------------------------- /assembly/cdnjs/sbt-extra-controls-dojo-amd.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /assembly/cdnjs/sbt-extra-controls-dojo-amd.js.uncompressed.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /assembly/deploy-cdnjs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/deploy-cdnjs.xml -------------------------------------------------------------------------------- /assembly/platform/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/platform/tomcat/context.xml -------------------------------------------------------------------------------- /assembly/platform/tomcat/keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/platform/tomcat/keystore -------------------------------------------------------------------------------- /assembly/platform/tomcat/secured/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/platform/tomcat/secured/server.xml -------------------------------------------------------------------------------- /assembly/platform/tomcat/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/platform/tomcat/server.xml -------------------------------------------------------------------------------- /assembly/platform/tomcat/tomcat-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/platform/tomcat/tomcat-users.xml -------------------------------------------------------------------------------- /assembly/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/assembly/pom.xml -------------------------------------------------------------------------------- /assembly/src/main/resources/version.txt: -------------------------------------------------------------------------------- 1 | ${project.version} -------------------------------------------------------------------------------- /com.ibm.sbt.p2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/com.ibm.sbt.p2/.project -------------------------------------------------------------------------------- /commons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/.project -------------------------------------------------------------------------------- /commons/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /commons/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.runtime/.classpath -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.runtime/.factorypath -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.runtime/.gitignore -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.runtime/.project -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.runtime/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.runtime/build.properties -------------------------------------------------------------------------------- /commons/com.ibm.commons.runtime/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.runtime/pom.xml -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.xml/.classpath -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.xml/.factorypath -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated 2 | -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/.localization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.xml/.localization -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.xml/.project -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.xml/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.xml/build.properties -------------------------------------------------------------------------------- /commons/com.ibm.commons.xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons.xml/pom.xml -------------------------------------------------------------------------------- /commons/com.ibm.commons/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/.classpath -------------------------------------------------------------------------------- /commons/com.ibm.commons/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/.factorypath -------------------------------------------------------------------------------- /commons/com.ibm.commons/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /commons/com.ibm.commons/.localization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/.localization -------------------------------------------------------------------------------- /commons/com.ibm.commons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/.project -------------------------------------------------------------------------------- /commons/com.ibm.commons/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /commons/com.ibm.commons/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /commons/com.ibm.commons/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/build.properties -------------------------------------------------------------------------------- /commons/com.ibm.commons/export-jar.jardesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/export-jar.jardesc -------------------------------------------------------------------------------- /commons/com.ibm.commons/localCustomBuildCallbacks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/localCustomBuildCallbacks.xml -------------------------------------------------------------------------------- /commons/com.ibm.commons/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/plugin.xml -------------------------------------------------------------------------------- /commons/com.ibm.commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/pom.xml -------------------------------------------------------------------------------- /commons/com.ibm.commons/schema/Extension.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/schema/Extension.exsd -------------------------------------------------------------------------------- /commons/com.ibm.commons/schema/ExtensionBundle.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/schema/ExtensionBundle.exsd -------------------------------------------------------------------------------- /commons/com.ibm.commons/schema/GlobalResource.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/schema/GlobalResource.exsd -------------------------------------------------------------------------------- /commons/com.ibm.commons/schema/Platform.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/schema/Platform.exsd -------------------------------------------------------------------------------- /commons/com.ibm.commons/schema/Service.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/com.ibm.commons/schema/Service.exsd -------------------------------------------------------------------------------- /commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/commons/pom.xml -------------------------------------------------------------------------------- /deps/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/.project -------------------------------------------------------------------------------- /deps/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /deps/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.bootstrap211/.classpath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.bootstrap211/.factorypath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.bootstrap211/.project -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.bootstrap211/.settings/.jsdtscope -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.bootstrap211/pom.xml -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.bootstrap211/src/main/webapp/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.1 -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.ckeditor422/.classpath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.ckeditor422/.factorypath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.ckeditor422/.project -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.ckeditor422/.settings/.jsdtscope -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.ckeditor422/pom.xml -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/src/main/webapp/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.ckeditor422/src/main/webapp/index.html -------------------------------------------------------------------------------- /deps/com.ibm.sbt.ckeditor422/src/main/webapp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.ckeditor422/src/main/webapp/readme.txt -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/.classpath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/.factorypath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/.project -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/.settings/.jsdtscope -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/pom.xml -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/LICENSE -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/Menu.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/Tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/Tree.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/_base.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/a11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/a11y.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/dijit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/dijit.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/focus.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/hccss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/hccss.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/main.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/place.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dijit/popup.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/LICENSE -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/aspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/aspect.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/back.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/cache.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/colors.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/cookie.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/date.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/dojo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/dojo.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/dom.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/fx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/fx.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/gears.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/gears.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/has.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/hash.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/hccss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/hccss.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/html.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/i18n.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/jaxer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/jaxer.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/json.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/keys.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/main.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/mouse.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/node.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/number.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/on.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/parser.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/query.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/ready.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/regexp.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/router.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/sniff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/sniff.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/string.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/tests.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/text.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/topic.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/touch.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/uacss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/uacss.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/when.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojo/window.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/LICENSE -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/calendar/themes/iphone/Common.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/color.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/date/zoneinfo/pacificnew: -------------------------------------------------------------------------------- 1 | Link America/Los_Angeles US/Pacific-New ## 2 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/dtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/dtl.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/editor/plugins/nls/ja/Save.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/editor/plugins/nls/ja/Save", ({ 3 | "save": "保存" 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/editor/plugins/nls/ko/Save.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/editor/plugins/nls/ko/Save", ({ 3 | "save": "저장" 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/editor/plugins/nls/zh/Save.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/editor/plugins/nls/zh/Save", ({ 3 | "save": "保存" 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/editor/plugins/resources/css/SafePaste.css: -------------------------------------------------------------------------------- 1 | @import "PasteFromWord.css"; 2 | 3 | 4 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/flash.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/ar/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/ar/Uploader", ({ 3 | label: "تحديد ملفات..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/da/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/da/Uploader", ({ 3 | label: "Vælg filer..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/he/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/he/Uploader", ({ 3 | label: "בחירת קבצים...‏" 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/ja/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/ja/Uploader", ({ 3 | label: "ファイルの選択..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/ko/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/ko/Uploader", ({ 3 | label: "파일 선택..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/nb/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/nb/Uploader", ({ 3 | label: "Velg filer..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/sv/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/sv/Uploader", ({ 3 | label: "Välj filer..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/th/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/th/Uploader", ({ 3 | label: "เลือกไฟล์..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/zh-tw/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/zh-tw/Uploader", ({ 3 | label: "選取檔案..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/form/nls/zh/Uploader.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dojox/form/nls/zh/Uploader", ({ 3 | label: "选择文件..." 4 | }) 5 | ); 6 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/fx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/fx.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/gfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/gfx.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/gfx3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/gfx3d.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/grid/enhanced/resources/claroEnhancedGrid.css: -------------------------------------------------------------------------------- 1 | /*backward compatible*/ 2 | @import "claro/EnhancedGrid.css"; -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/html.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/image.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/jq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/jq.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/main.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/math.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/mvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/mvc.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/rails.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/uuid.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/dojox/wire.js -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.dojo180/src/main/webapp/index.html -------------------------------------------------------------------------------- /deps/com.ibm.sbt.dojo180/src/main/webapp/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.9-20141215-IBM -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.jquery182/.classpath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.jquery182/.factorypath -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.jquery182/.project -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.jquery182/.settings/.jsdtscope -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.jquery182/pom.xml -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /deps/com.ibm.sbt.jquery182/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/com.ibm.sbt.jquery182/src/main/webapp/index.html -------------------------------------------------------------------------------- /deps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/deps/pom.xml -------------------------------------------------------------------------------- /domino/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/.project -------------------------------------------------------------------------------- /domino/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.domino.feature/.project -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.domino.feature/feature.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.domino.feature/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.updatesite/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.domino.updatesite/.project -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.updatesite/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.updatesite/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.domino.updatesite/assembly.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.updatesite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.domino.updatesite/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.domino.updatesite/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.domino.updatesite/site.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.explorer.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.explorer.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.explorer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino.explorer/.project -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.explorer/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.explorer/WebContent/.gitignore: -------------------------------------------------------------------------------- 1 | /js 2 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.explorer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino.explorer/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino.feature/.project -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino.feature/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino/.classpath -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino/.project -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino/build.properties -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino/plugin.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.opensocial.domino/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.opensocial.domino/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.playground/.classpath -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.playground/.factorypath -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated 2 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.playground/.project -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.playground/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.playground/build.properties -------------------------------------------------------------------------------- /domino/com.ibm.sbt.playground/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.sbt.playground/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.opensocial/.classpath -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.opensocial/.project -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.opensocial/LICENSE -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.opensocial/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.opensocial/build.properties -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.opensocial/plugin.xml -------------------------------------------------------------------------------- /domino/com.ibm.xsp.opensocial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.opensocial/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.sbtsdk/.classpath -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.sbtsdk/.project -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.sbtsdk/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.sbtsdk/build.properties -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.sbtsdk/plugin.xml -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/com.ibm.xsp.sbtsdk/pom.xml -------------------------------------------------------------------------------- /domino/com.ibm.xsp.sbtsdk/src/main/resources/META-INF/services/com.ibm.xsp.minifier.loader: -------------------------------------------------------------------------------- 1 | com.ibm.xsp.extlib.minifier.SBTLoader 2 | -------------------------------------------------------------------------------- /domino/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/domino/pom.xml -------------------------------------------------------------------------------- /libraries/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/.project -------------------------------------------------------------------------------- /libraries/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /libraries/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/.classpath -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/.project -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/build.properties -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/lib/derby.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/lib/derby.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/lib/derbyclient.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/lib/derbyclient.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/lib/derbytools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/lib/derbytools.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.derby/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.derby/pom.xml -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.domino/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.domino/.classpath -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.domino/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.domino/.project -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.domino/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.domino/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.domino/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.domino/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.domino/build.properties -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.domino/lib/httpcore-4.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.domino/lib/httpcore-4.3.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.domino/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.domino/pom.xml -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/.classpath -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/.project -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/build.properties -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/lib/httpcore-4.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/lib/httpcore-4.3.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/lib/httpmime-4.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/lib/httpmime-4.3.1.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.j2ee/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.j2ee/pom.xml -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/.classpath -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/.project -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/build.properties -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/lib/httpcore-4.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/lib/httpcore-4.3.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/lib/httpmime-4.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/lib/httpmime-4.3.1.jar -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs.java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs.java/pom.xml -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs/.classpath -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs/.project -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs/build.properties -------------------------------------------------------------------------------- /libraries/com.ibm.sbt.libs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/com.ibm.sbt.libs/pom.xml -------------------------------------------------------------------------------- /libraries/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/libraries/pom.xml -------------------------------------------------------------------------------- /license/FirebugLiteLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/FirebugLiteLicense -------------------------------------------------------------------------------- /license/ICAL4JLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/ICAL4JLicense -------------------------------------------------------------------------------- /license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/LICENSE -------------------------------------------------------------------------------- /license/LICENSE_Has: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/LICENSE_Has -------------------------------------------------------------------------------- /license/LICENSE_JQuery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/LICENSE_JQuery -------------------------------------------------------------------------------- /license/LICENSE_Jenkins Plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/LICENSE_Jenkins Plugins -------------------------------------------------------------------------------- /license/LICENSE_Require.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/LICENSE_Require.txt -------------------------------------------------------------------------------- /license/LICENSE_SHA-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/LICENSE_SHA-1 -------------------------------------------------------------------------------- /license/License_Jasmine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/License_Jasmine -------------------------------------------------------------------------------- /license/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/NOTICE -------------------------------------------------------------------------------- /license/NOTICE_Bazaar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/NOTICE_Bazaar -------------------------------------------------------------------------------- /license/NOTICE_ExtLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/NOTICE_ExtLib -------------------------------------------------------------------------------- /license/NOTICE_jaggr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/NOTICE_jaggr -------------------------------------------------------------------------------- /license/SLF4JLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/SLF4JLicense -------------------------------------------------------------------------------- /license/XercesJLicenseNotice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/XercesJLicenseNotice.zip -------------------------------------------------------------------------------- /license/envjs-rhino.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/license/envjs-rhino.txt -------------------------------------------------------------------------------- /notes.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/notes.target -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources.feature/.project -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources.feature/feature.xml -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources.feature/pom.xml -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.updatesite/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources.updatesite/.project -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.updatesite/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources.updatesite/assembly.xml -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.updatesite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources.updatesite/pom.xml -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources.updatesite/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources.updatesite/site.xml -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources/.classpath -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources/.project -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources/build.properties -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources/plugin.xml -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources/pom.xml -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/com.ibm.sbt.web.resources/resources/index.html -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/js/sdk/_layers/sbt-core-dojo-amd.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/js/sdk/_layers/sbt-core-dojo-amd.js.uncompressed.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/js/sdk/_layers/sbt-extra-controls-dojo-amd.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/js/sdk/_layers/sbt-extra-controls-dojo-amd.js.uncompressed.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/js/sdk/sbt/connections/controls/search/templates/tr.html: -------------------------------------------------------------------------------- 1 | ${content} -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/js/sdk/sbt/controls/grid/templates/Grid.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /osgi/com.ibm.sbt.web.resources/resources/js/sdk/sbt/controls/view/templates/NavTree.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /osgi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/osgi/pom.xml -------------------------------------------------------------------------------- /php/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/.project -------------------------------------------------------------------------------- /php/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /php/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /php/moodle-block/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/.project -------------------------------------------------------------------------------- /php/moodle-block/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /php/moodle-block/assembly-moodle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/assembly-moodle.xml -------------------------------------------------------------------------------- /php/moodle-block/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/pom.xml -------------------------------------------------------------------------------- /php/moodle-block/src/block_ibmsbt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/block_ibmsbt.php -------------------------------------------------------------------------------- /php/moodle-block/src/core/models/SBTSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/core/models/SBTSettings.php -------------------------------------------------------------------------------- /php/moodle-block/src/core/views/endpoint-logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/core/views/endpoint-logout.php -------------------------------------------------------------------------------- /php/moodle-block/src/core/views/includes/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/core/views/includes/header.php -------------------------------------------------------------------------------- /php/moodle-block/src/db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/db/access.php -------------------------------------------------------------------------------- /php/moodle-block/src/db/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/db/uninstall.php -------------------------------------------------------------------------------- /php/moodle-block/src/edit_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/edit_form.php -------------------------------------------------------------------------------- /php/moodle-block/src/endpoint_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/endpoint_settings.php -------------------------------------------------------------------------------- /php/moodle-block/src/lang/en/block_ibmsbt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/lang/en/block_ibmsbt.php -------------------------------------------------------------------------------- /php/moodle-block/src/security-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/security-config.php -------------------------------------------------------------------------------- /php/moodle-block/src/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/settings.php -------------------------------------------------------------------------------- /php/moodle-block/src/tests/CredentialStore_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/tests/CredentialStore_test.php -------------------------------------------------------------------------------- /php/moodle-block/src/tests/SBTBaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/tests/SBTBaseTestCase.php -------------------------------------------------------------------------------- /php/moodle-block/src/tests/SBTHeader_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/tests/SBTHeader_test.php -------------------------------------------------------------------------------- /php/moodle-block/src/tests/SBTSettings_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/tests/SBTSettings_test.php -------------------------------------------------------------------------------- /php/moodle-block/src/tests/SBTWidgets_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/tests/SBTWidgets_test.php -------------------------------------------------------------------------------- /php/moodle-block/src/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/tests/bootstrap.php -------------------------------------------------------------------------------- /php/moodle-block/src/user_widgets/communities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/user_widgets/communities.php -------------------------------------------------------------------------------- /php/moodle-block/src/user_widgets/files-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/user_widgets/files-view.php -------------------------------------------------------------------------------- /php/moodle-block/src/user_widgets/files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/user_widgets/files.php -------------------------------------------------------------------------------- /php/moodle-block/src/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/version.php -------------------------------------------------------------------------------- /php/moodle-block/src/views/endpointSetupDialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/views/endpointSetupDialog.php -------------------------------------------------------------------------------- /php/moodle-block/src/views/js/endpointConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/moodle-block/src/views/js/endpointConfig.js -------------------------------------------------------------------------------- /php/php-core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/.project -------------------------------------------------------------------------------- /php/php-core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /php/php-core/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /php/php-core/assembly-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/assembly-core.xml -------------------------------------------------------------------------------- /php/php-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/pom.xml -------------------------------------------------------------------------------- /php/php-core/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/autoload.php -------------------------------------------------------------------------------- /php/php-core/src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/config.php -------------------------------------------------------------------------------- /php/php-core/src/controllers/SBTPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/controllers/SBTPlugin.php -------------------------------------------------------------------------------- /php/php-core/src/controllers/services/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/controllers/services/Proxy.php -------------------------------------------------------------------------------- /php/php-core/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/index.php -------------------------------------------------------------------------------- /php/php-core/src/models/SBTCredentialStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/models/SBTCredentialStore.php -------------------------------------------------------------------------------- /php/php-core/src/models/SBTSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/models/SBTSettings.php -------------------------------------------------------------------------------- /php/php-core/src/samples/atomService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/samples/atomService.php -------------------------------------------------------------------------------- /php/php-core/src/samples/fileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/samples/fileService.php -------------------------------------------------------------------------------- /php/php-core/src/samples/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/samples/test.php -------------------------------------------------------------------------------- /php/php-core/src/security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/security.php -------------------------------------------------------------------------------- /php/php-core/src/system/core/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/system/core/BaseController.php -------------------------------------------------------------------------------- /php/php-core/src/system/core/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/system/core/BaseModel.php -------------------------------------------------------------------------------- /php/php-core/src/system/libs/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/system/libs/composer.json -------------------------------------------------------------------------------- /php/php-core/src/system/libs/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/php-core/src/system/libs/composer.lock -------------------------------------------------------------------------------- /php/php-core/src/system/libs/composer.phar: -------------------------------------------------------------------------------- 1 | BLANK - please download your version of composer.phar -------------------------------------------------------------------------------- /php/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/pom.xml -------------------------------------------------------------------------------- /php/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/ruleset.xml -------------------------------------------------------------------------------- /php/wordpress-plugin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/.project -------------------------------------------------------------------------------- /php/wordpress-plugin/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /php/wordpress-plugin/assembly-wordpress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/assembly-wordpress.xml -------------------------------------------------------------------------------- /php/wordpress-plugin/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/phpunit.xml -------------------------------------------------------------------------------- /php/wordpress-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/pom.xml -------------------------------------------------------------------------------- /php/wordpress-plugin/src/core/models/SBTCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/core/models/SBTCookie.php -------------------------------------------------------------------------------- /php/wordpress-plugin/src/core/models/SBTSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/core/models/SBTSettings.php -------------------------------------------------------------------------------- /php/wordpress-plugin/src/ibm-sbt-constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/ibm-sbt-constants.php -------------------------------------------------------------------------------- /php/wordpress-plugin/src/ibm-sbt-plugin-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/ibm-sbt-plugin-setup.php -------------------------------------------------------------------------------- /php/wordpress-plugin/src/ibm-sbt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/ibm-sbt.php -------------------------------------------------------------------------------- /php/wordpress-plugin/src/lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/lang/en/lang.php -------------------------------------------------------------------------------- /php/wordpress-plugin/src/views/assets/sbtk-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/views/assets/sbtk-icon.png -------------------------------------------------------------------------------- /php/wordpress-plugin/src/views/includes/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/views/includes/header.php -------------------------------------------------------------------------------- /php/wordpress-plugin/src/views/js/option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/views/js/option.js -------------------------------------------------------------------------------- /php/wordpress-plugin/src/views/loginDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/src/views/loginDialog.html -------------------------------------------------------------------------------- /php/wordpress-plugin/src/views/wp-settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /php/wordpress-plugin/tests/bootstrap_tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/tests/bootstrap_tests.php -------------------------------------------------------------------------------- /php/wordpress-plugin/tests/mock_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/tests/mock_data.php -------------------------------------------------------------------------------- /php/wordpress-plugin/tests/test_core_widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/tests/test_core_widgets.php -------------------------------------------------------------------------------- /php/wordpress-plugin/tests/test_plugin_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/tests/test_plugin_data.php -------------------------------------------------------------------------------- /php/wordpress-plugin/tests/test_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/tests/test_settings.php -------------------------------------------------------------------------------- /php/wordpress-plugin/tests/test_setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/tests/test_setup.php -------------------------------------------------------------------------------- /php/wordpress-plugin/tests/test_views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/php/wordpress-plugin/tests/test_views.php -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/pom.xml -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/readme -------------------------------------------------------------------------------- /samples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/.project -------------------------------------------------------------------------------- /samples/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /samples/com.ibm.sbt.samples.commons/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/com.ibm.sbt.samples.commons/.classpath -------------------------------------------------------------------------------- /samples/com.ibm.sbt.samples.commons/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/com.ibm.sbt.samples.commons/.factorypath -------------------------------------------------------------------------------- /samples/com.ibm.sbt.samples.commons/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated 2 | -------------------------------------------------------------------------------- /samples/com.ibm.sbt.samples.commons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/com.ibm.sbt.samples.commons/.project -------------------------------------------------------------------------------- /samples/com.ibm.sbt.samples.commons/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/com.ibm.sbt.samples.commons/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/com.ibm.sbt.samples.commons/build.properties -------------------------------------------------------------------------------- /samples/com.ibm.sbt.samples.commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/com.ibm.sbt.samples.commons/pom.xml -------------------------------------------------------------------------------- /samples/config/sbt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/config/sbt.properties -------------------------------------------------------------------------------- /samples/dbscripts/CreateTableDB2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/dbscripts/CreateTableDB2.sql -------------------------------------------------------------------------------- /samples/dbscripts/CreateTableDerby.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/dbscripts/CreateTableDerby.sql -------------------------------------------------------------------------------- /samples/dbscripts/CreateTableMySQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/dbscripts/CreateTableMySQL.sql -------------------------------------------------------------------------------- /samples/domino/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/.project -------------------------------------------------------------------------------- /samples/domino/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/domino/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /samples/domino/com.ibm.sbt.domino.playground.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/domino/com.ibm.sbt.domino.playground.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /samples/domino/com.ibm.xsp.sbtsdk.playground.sbt/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/domino/com.ibm.xsp.sbtsdk.playground/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/domino/com.ibm.xsp.sbtsdk.playground/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/com.ibm.xsp.sbtsdk.playground/pom.xml -------------------------------------------------------------------------------- /samples/domino/nsf/playground/sbtplayground.nsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsf/playground/sbtplayground.nsf -------------------------------------------------------------------------------- /samples/domino/nsf/socialenabler/XPagesSBT.nsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsf/socialenabler/XPagesSBT.nsf -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsfsrc/nsf.playground/.classpath -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsfsrc/nsf.playground/.project -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/AppProperties/xspdesign.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 04 12:33:24 EST 2014 2 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/Code/ScriptLibraries/gadgetSnippets.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/Code/dbscript.lsdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/Forms/API.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsfsrc/nsf.playground/Forms/API.form -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/Resources/AboutDocument: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/Resources/UsingDocument: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/XPages/Home.xsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsfsrc/nsf.playground/XPages/Home.xsp -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/XPages/test.xsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsfsrc/nsf.playground/XPages/test.xsp -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.playground/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/nsfsrc/nsf.playground/plugin.xml -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/AppProperties/xspdesign.properties: -------------------------------------------------------------------------------- 1 | #Wed Jan 22 15:30:06 GMT 2014 2 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/Code/Java/META-INF/services/com.ibm.xsp.core.events.ApplicationListener: -------------------------------------------------------------------------------- 1 | demo.AppListener -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/Code/Java/META-INF/services/com.ibm.xsp.extlib.social.IdentityProvider: -------------------------------------------------------------------------------- 1 | demo.IdentityProvider 2 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/Code/dbscript.lsdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/Resources/AboutDocument: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/domino/nsfsrc/nsf.socialenabler/XPagesSBT/Resources/UsingDocument: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/domino/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/domino/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/.project -------------------------------------------------------------------------------- /samples/j2ee/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /samples/j2ee/acme/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/.project -------------------------------------------------------------------------------- /samples/j2ee/acme/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.sample.webapp/.checkstyle -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.sample.webapp/.classpath -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.sample.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.sample.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.sample.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.dataapp/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.dataapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.dataapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.dataapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.dataapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.dataapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.social.sample.dataapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.dataapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.ear/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.social.sample.ear/.project -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.ear/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.ear/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.ear/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.social.sample.ear/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.social.sample.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/acme.social.sample.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/acme/acme.social.sample.webapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /samples/j2ee/acme/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/acme/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/readme.txt -------------------------------------------------------------------------------- /samples/j2ee/snippets/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/snippets/.project -------------------------------------------------------------------------------- /samples/j2ee/snippets/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.automation.core/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.automation.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.automation.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/snippets/com.ibm.sbt.landing/.classpath -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/snippets/com.ibm.sbt.landing/.project -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/snippets/com.ibm.sbt.landing/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.landing/src/main/webapp/WEB-INF/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.ear/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.ear/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.ear/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Implementation-Version: 1.1.7-SNAPSHOT -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.ear/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/snippets/com.ibm.sbt.sample.ear/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated 2 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/snippets/com.ibm.sbt.sample.web/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/java/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/gadgets/connections/activity-streams/post/gadget.properties: -------------------------------------------------------------------------------- 1 | runtimes=connectionsOA2 -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/gadgets/smartcloud/oauth10a/gadget.properties: -------------------------------------------------------------------------------- 1 | runtimes=smartcloudOA -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Authentication/Basic Connections/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Authentication/OAuth1 SmartCloud/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Authentication/OAuth2 Connections/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Dropbox/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=dropbox -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Activities/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/ActivityStreams/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Blogs/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Communities/Get Bookmarks.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Communities/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Files/Upload Public File.doc.html: -------------------------------------------------------------------------------- 1 | Demonstrates how to upload a public File. -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Files/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Forums/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Profiles SmartCloud/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Profiles/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Social/Search/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/java/Twitter/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=twitter -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Authentication/REST/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections 2 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/SampleApps/AcmeAirlines/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=acmeAir -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/SampleApps/MySocial/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections 2 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/SampleApps/Wordpress/Files View.doc.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/SampleApps/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,acmeAir -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Activities/API/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Activities/Controls/Bootstrap My Activities.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Activities/Controls/My Activities.doc.html: -------------------------------------------------------------------------------- 1 | Demonstrates a grid of my activities. -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Activities/Controls/My Activities.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Activities/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/ActivityStreams/Controls/_global.properties: -------------------------------------------------------------------------------- 1 | jslibs=dojo -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/ActivityStreams/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/All Bookmarks List Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/All Bookmarks Ordered List Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/All Bookmarks.doc.html: -------------------------------------------------------------------------------- 1 | Demonstrates a grid of all bookmarks. -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/All Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/Bootstrap Community Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/Bootstrap My Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/Bootstrap Public Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/Community Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/My Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/Controls/Public Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Bookmarks/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/API/AddMember.mock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/API/DeleteCommunity.mock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Community Folders.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Bootstrap Communities Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Community Action Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Community Delete Action Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Community Members.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Community VCard.html: -------------------------------------------------------------------------------- 1 |
    2 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Member Communities Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/My Communities Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Public Communities Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/Tagged Communities Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/Controls/_global.properties: -------------------------------------------------------------------------------- 1 | jslibs=dojo -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Communities/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/API/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Community Files.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/File Action.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/File Comments.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/File Shares.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Files Shared By Me.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Files Shared With Me.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/My Active Folders.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/My Files Bootstrap.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/My Files.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/My Folders.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Pinned Files.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Pinned Folders.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Public Files.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Public Folders.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/Recycled Files.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Controls/_global.properties: -------------------------------------------------------------------------------- 1 | jslibs=dojo -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Views/Bootstrap Files View.doc.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Views/Bootstrap Files View.properties: -------------------------------------------------------------------------------- 1 | theme=bootstrap -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/Views/FilesView.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Files/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Follow/Start And Stop Following.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Bootstrap Forum Topics.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Bootstrap Forum Topics.properties: -------------------------------------------------------------------------------- 1 | theme=bootstrap -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Bootstrap My Forums.html: -------------------------------------------------------------------------------- 1 | 2 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Bootstrap My Topics.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Bootstrap Public Forums.html: -------------------------------------------------------------------------------- 1 | 2 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Forum Topics.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Forum Topics.properties: -------------------------------------------------------------------------------- 1 | theme=oneui -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/My Forums.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/My Topics.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Controls/Public Forums.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Start A Forum.doc.html: -------------------------------------------------------------------------------- 1 |

    Start Forum

    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/Views/ForumView.properties: -------------------------------------------------------------------------------- 1 | theme=oneui -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Forums/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles SmartCloud/Controls/Colleague Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles SmartCloud/Controls/Colleagues.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles SmartCloud/Controls/Community Members.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles SmartCloud/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Are Colleagues.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Colleagues.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Community Members.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Connections In Common.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Direct Reports.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/My Colleagues Bootstrap.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/My Profile Panel.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Profile Action.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Profile Panel.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Profile Search.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Profile Tag Search.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Profile VCard Email.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Profile VCard Inline.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Profile VCard.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Reporting Chain Bootstrap.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Reporting Chain Bootstrap.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/Reporting Chain.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/Controls/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections 2 | jslibs=dojo -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Profiles/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Activities Public.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search All.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Blogs Public.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Bookmarks.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Communities Public.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Files.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Forums.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Profile Tag Public.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Profiles Public.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Status Updates.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/Search Wikis.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/Controls/_global.properties: -------------------------------------------------------------------------------- 1 | jslibs=dojo 2 | runtimes=connections -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Search/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/Wikis/Start A Wiki.doc.html: -------------------------------------------------------------------------------- 1 |

    Start Forum

    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Social/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Controls/Grid/CommunityRenderer.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Controls/Grid/ConnectionsRenderer.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Controls/Grid/Grid Selection.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Controls/Grid/Grid With Business Card.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Controls/Grid/Grid.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Controls/Grid/TemplatedGridRow.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/DemoSnippet.doc.html: -------------------------------------------------------------------------------- 1 |

    Demonstration snippet.

    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Endpoint.doc.html: -------------------------------------------------------------------------------- 1 |

    Display properties of the Connections endpoint.

    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/RequireEndpoint.doc.html: -------------------------------------------------------------------------------- 1 |

    .

    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Util.doc.html: -------------------------------------------------------------------------------- 1 |

    Shows how to use the util class.

    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Views/ActionBar.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Views/BaseView.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Views/Section.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Views/ShowMessageView.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Views/TabBar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/js/Toolkit/Views/_global.properties: -------------------------------------------------------------------------------- 1 | jslibs=dojo 2 | runtimes=connections,smartcloud -------------------------------------------------------------------------------- /samples/j2ee/snippets/com.ibm.sbt.sample.web/src/main/webapp/samples/xpages/_global.properties: -------------------------------------------------------------------------------- 1 | runtimes=connections 2 | -------------------------------------------------------------------------------- /samples/j2ee/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/snippets/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/.project -------------------------------------------------------------------------------- /samples/j2ee/templates/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/demosocial.webapp/.classpath -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/demosocial.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/demosocial.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/demosocial.webapp/src/main/resources/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/grantaccess.webapp/.classpath -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/grantaccess.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/grantaccess.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/grantaccess.webapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/helloworld.webapp/.classpath -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/helloworld.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/helloworld.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/helloworld.webapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/mysocial.webapp/.classpath -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/mysocial.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/mysocial.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /samples/j2ee/templates/mysocial.webapp/src/readme.txt: -------------------------------------------------------------------------------- 1 | Source folder for My Social Web App -------------------------------------------------------------------------------- /samples/j2ee/templates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/smartcloud.webapp/.classpath -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | 3 | !*.prefs -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/smartcloud.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/smartcloud.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/smartcloud.webapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /samples/j2ee/templates/social.helloworld.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/social.helloworld.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/j2ee/templates/social.helloworld.webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/j2ee/templates/social.helloworld.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/social.helloworld.webapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /samples/j2ee/templates/sso.sample.webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/sso.sample.webapp/.classpath -------------------------------------------------------------------------------- /samples/j2ee/templates/sso.sample.webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/sso.sample.webapp/.project -------------------------------------------------------------------------------- /samples/j2ee/templates/sso.sample.webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/sso.sample.webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /samples/j2ee/templates/sso.sample.webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/j2ee/templates/sso.sample.webapp/pom.xml -------------------------------------------------------------------------------- /samples/j2ee/templates/sso.sample.webapp/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /samples/java/bss.provisioning.sample.app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/bss.provisioning.sample.app/.classpath -------------------------------------------------------------------------------- /samples/java/bss.provisioning.sample.app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/bss.provisioning.sample.app/.project -------------------------------------------------------------------------------- /samples/java/bss.provisioning.sample.app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/bss.provisioning.sample.app/pom.xml -------------------------------------------------------------------------------- /samples/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/pom.xml -------------------------------------------------------------------------------- /samples/java/sbt.bss.app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.bss.app/.classpath -------------------------------------------------------------------------------- /samples/java/sbt.bss.app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.bss.app/.project -------------------------------------------------------------------------------- /samples/java/sbt.bss.app/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/java/sbt.bss.app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.bss.app/pom.xml -------------------------------------------------------------------------------- /samples/java/sbt.bss.changepassword.app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.bss.changepassword.app/.classpath -------------------------------------------------------------------------------- /samples/java/sbt.bss.changepassword.app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.bss.changepassword.app/.project -------------------------------------------------------------------------------- /samples/java/sbt.bss.changepassword.app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.bss.changepassword.app/pom.xml -------------------------------------------------------------------------------- /samples/java/sbt.sample.app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.sample.app/.classpath -------------------------------------------------------------------------------- /samples/java/sbt.sample.app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.sample.app/.project -------------------------------------------------------------------------------- /samples/java/sbt.sample.app/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /samples/java/sbt.sample.app/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.sample.app/build.properties -------------------------------------------------------------------------------- /samples/java/sbt.sample.app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.sample.app/pom.xml -------------------------------------------------------------------------------- /samples/java/sbt.sample.app/sbt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/java/sbt.sample.app/sbt.properties -------------------------------------------------------------------------------- /samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/pom.xml -------------------------------------------------------------------------------- /samples/scripts/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/scripts/.project -------------------------------------------------------------------------------- /samples/scripts/createOAuthKeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/scripts/createOAuthKeys.sh -------------------------------------------------------------------------------- /samples/scripts/generateSBTProperties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/scripts/generateSBTProperties.sh -------------------------------------------------------------------------------- /samples/scripts/oauthQSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/scripts/oauthQSI.py -------------------------------------------------------------------------------- /samples/scripts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/samples/scripts/readme.txt -------------------------------------------------------------------------------- /sdk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/.project -------------------------------------------------------------------------------- /sdk/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /sdk/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core.test/.classpath -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /serFile.out 3 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/.pmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core.test/.pmd -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core.test/.project -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core.test/build.properties -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/config/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core.test/config/test.properties -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core.test/pom.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core/.classpath -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core/.factorypath -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/.gitignore: -------------------------------------------------------------------------------- 1 | /.apt_generated 2 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core/.project -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core/build.properties -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core/plugin.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.core/pom.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.core/src/main/resources/META-INF/services/com.ibm.sbt.core.environmentfactory: -------------------------------------------------------------------------------- 1 | com.ibm.sbt.jslibrary.impl.SBTEnvironmentFactoryFromBean 2 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.proxy.web/.classpath -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.proxy.web/.project -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.proxy.web/.settings/.jsdtscope -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | BUNDLE_ROOT_PATH=target/classes 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.proxy.web/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.proxy.web/build.properties -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.proxy.web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.proxy.web/pom.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/.apt_generated/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/.classpath -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/.factorypath -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/.project -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/assembly-jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/assembly-jar.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/assembly-war.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/assembly-war.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/build.properties -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/build.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/pom.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/src/main/webapp/index.html -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/libs/has.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/src/main/webapp/js/libs/has.js -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/_layers/sbt-core-dojo-amd.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/_layers/sbt-core-dojo-amd.js.uncompressed.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/_layers/sbt-extra-controls-dojo-amd.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/_layers/sbt-extra-controls-dojo-amd.js.uncompressed.js: -------------------------------------------------------------------------------- 1 | define([],function(){ 2 | return {}; 3 | }); 4 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/sbt/connections/controls/forums/templates/BootstrapReplyRow.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/sbt/connections/controls/forums/templates/LockTopic.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/sbt/connections/controls/search/templates/tr.html: -------------------------------------------------------------------------------- 1 | ${content} -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/sbt/connections/template/CommunityUpdateTmpl.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/sbt/controls/grid/templates/Grid.html: -------------------------------------------------------------------------------- 1 |
    2 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/sbt/controls/view/templates/NavTree.html: -------------------------------------------------------------------------------- 1 |
      -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/sdk/sbt/controls/view/templates/TabbedBaseView.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/js/yuidoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/src/main/webapp/js/yuidoc.json -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/src/main/webapp/loginForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/src/main/webapp/loginForm.html -------------------------------------------------------------------------------- /sdk/com.ibm.sbt.web/tools.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/com.ibm.sbt.web/tools.properties -------------------------------------------------------------------------------- /sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/pom.xml -------------------------------------------------------------------------------- /sdk/sbt.sso.webapp-archetype/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/sbt.sso.webapp-archetype/.project -------------------------------------------------------------------------------- /sdk/sbt.sso.webapp-archetype/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /sdk/sbt.sso.webapp-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/sdk/sbt.sso.webapp-archetype/pom.xml -------------------------------------------------------------------------------- /sdk/sbt.sso.webapp-archetype/src/main/resources/archetype-resources/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /sdk/sbt.sso.webapp-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /team/j2ee-projectset.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/team/j2ee-projectset.psf -------------------------------------------------------------------------------- /team/j2ee-samples-projectset.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/team/j2ee-samples-projectset.psf -------------------------------------------------------------------------------- /team/java-projectset.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/team/java-projectset.psf -------------------------------------------------------------------------------- /team/mysocial-projectset.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/team/mysocial-projectset.psf -------------------------------------------------------------------------------- /test-whitespaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNTF/SocialSDK/HEAD/test-whitespaces.sh --------------------------------------------------------------------------------