├── .gitignore ├── .project ├── .travis.yml ├── ATTENSION.md ├── Arguments.png ├── CONTRIBUTING.md ├── Nodeclipse_logo_light.png ├── README.md ├── changelog.md ├── chromedevtools ├── LICENSE ├── README.md ├── builder │ ├── build-main │ │ ├── LICENSE │ │ └── releng.builder │ │ │ ├── allElements.xml │ │ │ ├── build.properties │ │ │ ├── customAssembly.xml │ │ │ └── customTargets.xml │ ├── build-wipbackend │ │ ├── LICENSE │ │ ├── backendIterator.xml │ │ ├── main-plugins │ │ │ └── PUT_PLUGINS_HERE │ │ └── releng.builder │ │ │ ├── allElements.xml │ │ │ ├── build.properties │ │ │ ├── customAssembly.xml │ │ │ └── customTargets.xml │ ├── build.properties │ ├── build.xml │ ├── buildVersionExtractor.py │ ├── repack │ │ ├── category.xml │ │ └── merge_repositories_script │ ├── sdkTargets.xml │ └── uploadToDownloads.py ├── features │ ├── org.chromium.debug.jsdtbridge │ │ ├── .project │ │ ├── LICENSE │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── license.html │ │ ├── sourceTemplateFeature │ │ │ ├── LICENSE │ │ │ └── feature.properties │ │ └── sourceTemplatePlugin │ │ │ ├── LICENSE │ │ │ ├── build.properties │ │ │ └── plugin.properties │ ├── org.chromium.debug │ │ ├── .project │ │ ├── LICENSE │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── license.html │ │ ├── pom.xml │ │ ├── sourceTemplateFeature │ │ │ ├── LICENSE │ │ │ └── feature.properties │ │ └── sourceTemplatePlugin │ │ │ ├── LICENSE │ │ │ ├── build.properties │ │ │ └── plugin.properties │ ├── org.chromium.sdk.wip.source │ │ ├── .project │ │ ├── LICENSE │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── license.html │ ├── org.chromium.sdk.wipbackends │ │ ├── .project │ │ ├── LICENSE │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── license.html │ │ ├── sourceTemplateFeature │ │ │ ├── LICENSE │ │ │ └── feature.properties │ │ └── sourceTemplatePlugin │ │ │ ├── LICENSE │ │ │ ├── build.properties │ │ │ └── plugin.properties │ ├── org.chromium.sdk │ │ ├── .project │ │ ├── LICENSE │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── license.html │ │ ├── pom.xml │ │ ├── sourceTemplateFeature │ │ │ ├── LICENSE │ │ │ └── feature.properties │ │ └── sourceTemplatePlugin │ │ │ ├── LICENSE │ │ │ ├── build.properties │ │ │ └── plugin.properties │ └── org.chromium.source │ │ ├── .project │ │ ├── LICENSE │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── license.html ├── plugins │ ├── org.chromium.debug.core.tests │ │ ├── .classpath │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── debug │ │ │ └── core │ │ │ └── sourcemap │ │ │ ├── PositionMapBuilderImplTest.java │ │ │ └── TextSectionMappingImplTest.java │ ├── org.chromium.debug.core │ │ ├── .classpath │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── LICENSE │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── debug │ │ │ └── core │ │ │ ├── ChromiumDebugPlugin.java │ │ │ ├── ChromiumSourceComputer.java │ │ │ ├── ChromiumSourceDirector.java │ │ │ ├── FilePropertyTester.java │ │ │ ├── Messages.java │ │ │ ├── ReverseSourceLookup.java │ │ │ ├── ScriptNameManipulator.java │ │ │ ├── SourceNameMapperContainer.java │ │ │ ├── VProjectSourceContainer.java │ │ │ ├── efs │ │ │ ├── ChromiumScriptFileStore.java │ │ │ ├── ChromiumScriptFileSystem.java │ │ │ └── ChromiumScriptStorage.java │ │ │ ├── messages.properties │ │ │ ├── model │ │ │ ├── ArrayValue.java │ │ │ ├── BreakpointAdapterFactory.java │ │ │ ├── BreakpointInTargetMap.java │ │ │ ├── BreakpointSynchronizer.java │ │ │ ├── ChromiumBreakpointAdapter.java │ │ │ ├── ChromiumBreakpointWBAFactory.java │ │ │ ├── ChromiumExceptionBreakpoint.java │ │ │ ├── ChromiumLineBreakpoint.java │ │ │ ├── ConnectedTargetData.java │ │ │ ├── ConnectionLoggerImpl.java │ │ │ ├── ConsolePseudoProcess.java │ │ │ ├── DebugElementImpl.java │ │ │ ├── DebugTargetImpl.java │ │ │ ├── EvaluateContext.java │ │ │ ├── HardcodedSourceWrapProvider.java │ │ │ ├── IPredefinedSourceWrapProvider.java │ │ │ ├── IgnoreCountData.java │ │ │ ├── JavaScriptFormatter.java │ │ │ ├── JavascriptThread.java │ │ │ ├── JavascriptVmEmbedder.java │ │ │ ├── JavascriptVmEmbedderFactory.java │ │ │ ├── LaunchInitializationProcedure.java │ │ │ ├── LaunchParams.java │ │ │ ├── LineBreakpointAdapter.java │ │ │ ├── Messages.java │ │ │ ├── MockUpResourceWriter.java │ │ │ ├── NamedConnectionLoggerFactory.java │ │ │ ├── PushChangesPlan.java │ │ │ ├── ResourceManager.java │ │ │ ├── SourceWrapSupport.java │ │ │ ├── StackFrame.java │ │ │ ├── StackFrameBase.java │ │ │ ├── StringMappingData.java │ │ │ ├── TabSelector.java │ │ │ ├── TargetInitializeState.java │ │ │ ├── VProjectWorkspaceBridge.java │ │ │ ├── Value.java │ │ │ ├── ValueBase.java │ │ │ ├── Variable.java │ │ │ ├── VmResource.java │ │ │ ├── VmResourceId.java │ │ │ ├── VmResourceIdMap.java │ │ │ ├── VmResourceRef.java │ │ │ ├── WipTabSelector.java │ │ │ ├── WorkspaceBridge.java │ │ │ └── messages.properties │ │ │ ├── sourcemap │ │ │ ├── PositionMapBuilderImpl.java │ │ │ ├── SourcePosition.java │ │ │ ├── SourcePositionMap.java │ │ │ ├── SourcePositionMapBuilder.java │ │ │ ├── TextSectionMapping.java │ │ │ └── TextSectionMappingImpl.java │ │ │ └── util │ │ │ ├── AccuratenessProperty.java │ │ │ ├── ChromiumDebugPluginUtil.java │ │ │ ├── JavaScriptRegExpSupport.java │ │ │ ├── JsValueStringifier.java │ │ │ ├── MementoFormat.java │ │ │ ├── ProgressUtil.java │ │ │ ├── RangeBinarySearch.java │ │ │ ├── ScriptTargetMapping.java │ │ │ └── UniqueKeyGenerator.java │ ├── org.chromium.debug.jsdtbridge │ │ ├── .classpath │ │ ├── .project │ │ ├── LICENSE │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── debug │ │ │ └── jsdtbridge │ │ │ ├── AdHocFormatter.java │ │ │ ├── JsdtFormatterBridge.java │ │ │ ├── Messages.java │ │ │ └── messages.properties │ ├── org.chromium.debug.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── LICENSE │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── res │ │ │ ├── chromium_16.png │ │ │ ├── nature_decorator_16.png │ │ │ └── standalone_v8_16.png │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── debug │ │ │ └── ui │ │ │ ├── ChromiumDebugUIPlugin.java │ │ │ ├── ChromiumJavascriptDecorator.java │ │ │ ├── ChromiumTabSelectionDialog.java │ │ │ ├── ChromiumToggleBreakpointTargetFactory.java │ │ │ ├── DialogBasedTabSelector.java │ │ │ ├── DialogUtils.java │ │ │ ├── JsDebugModelPresentation.java │ │ │ ├── JsWatchExpressionDelegate.java │ │ │ ├── Messages.java │ │ │ ├── PluginUtil.java │ │ │ ├── TableUtils.java │ │ │ ├── WizardUtils.java │ │ │ ├── actions │ │ │ ├── AddExceptionBreakpointAction.java │ │ │ ├── ChooseVmControl.java │ │ │ ├── FileBasedAction.java │ │ │ ├── JsBreakpointPropertiesAction.java │ │ │ ├── JsBreakpointPropertiesRulerAction.java │ │ │ ├── JsInspectExpression.java │ │ │ ├── JsInspectSnippetAction.java │ │ │ ├── LiveEditWizardAction.java │ │ │ ├── LoadFullValueAction.java │ │ │ ├── Messages.java │ │ │ ├── OpenFunctionAction.java │ │ │ ├── PushChangesAction.java │ │ │ ├── SelectionBasedAction.java │ │ │ ├── SynchronizeBreakpoints.java │ │ │ ├── TemporarilyFormatSourceAction.java │ │ │ ├── V8ScriptAction.java │ │ │ ├── VariableBasedAction.java │ │ │ ├── WatchPropertyDescriptor.java │ │ │ ├── messages.properties │ │ │ └── pinpoint │ │ │ │ ├── DialogImpl.java │ │ │ │ ├── DialogLogic.java │ │ │ │ ├── Messages.java │ │ │ │ ├── PinPointValueAction.java │ │ │ │ └── messages.properties │ │ │ ├── editors │ │ │ ├── EditorColors.java │ │ │ ├── JavascriptUtil.java │ │ │ ├── JsCodeScanner.java │ │ │ ├── JsDebugTextHover.java │ │ │ ├── JsDocumentProvider.java │ │ │ ├── JsEditor.java │ │ │ ├── JsPartitionScanner.java │ │ │ └── JsSourceViewerConfiguration.java │ │ │ ├── launcher │ │ │ ├── ChromiumLaunchType.java │ │ │ ├── ChromiumRemoteTab.java │ │ │ ├── DevToolsProtocolDeprecationTab.java │ │ │ ├── LaunchTabGroup.java │ │ │ ├── LaunchTypeBase.java │ │ │ ├── Messages.java │ │ │ ├── PluginVariablesUtil.java │ │ │ ├── ScriptMappingTab.java │ │ │ ├── StandaloneV8LaunchType.java │ │ │ ├── TabBase.java │ │ │ ├── WipLaunchType.java │ │ │ ├── WipRemoteTab.java │ │ │ └── messages.properties │ │ │ ├── liveedit │ │ │ ├── LiveEditDiffViewer.java │ │ │ ├── LiveEditResultDialog.java │ │ │ ├── Messages.java │ │ │ ├── PreviewLoader.java │ │ │ ├── PushChangesWizard.java │ │ │ ├── PushResultParser.java │ │ │ ├── WizardLogicBuilder.java │ │ │ └── messages.properties │ │ │ ├── messages.properties │ │ │ ├── preferences │ │ │ ├── PreferenceConstants.java │ │ │ ├── PreferenceInitializer.java │ │ │ └── PreferencePage.java │ │ │ ├── propertypages │ │ │ ├── AccuratenessControl.java │ │ │ ├── BreakpointTechnicalInfoPage.java │ │ │ ├── FileEditorInputPropertyTester.java │ │ │ ├── JsExceptionBreakpointPage.java │ │ │ ├── JsLineBreakpointPage.java │ │ │ ├── Messages.java │ │ │ ├── ScriptFilePage.java │ │ │ └── messages.properties │ │ │ └── source │ │ │ ├── Messages.java │ │ │ ├── SourceNameMapperContainerDialog.java │ │ │ ├── SourceNameMapperContainerDialogLogic.java │ │ │ ├── SourceNameMapperContainerPresentation.java │ │ │ └── messages.properties │ ├── org.chromium.debug │ │ ├── .project │ │ ├── LICENSE │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.ini │ │ ├── about.properties │ │ ├── build.properties │ │ ├── chromium_32.png │ │ ├── plugin.properties │ │ └── pom.xml │ ├── org.chromium.sdk.wip.eclipse │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── LICENSE │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ └── wip │ │ │ └── eclipse │ │ │ ├── BackendRegistry.java │ │ │ └── WipBackExtensionPoint.java │ ├── org.chromium.sdk.wipbackend.dev │ │ ├── .classpath │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── src-dynamic-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ ├── generateWipProtocol_dev.launch │ │ │ ├── generate_static_parser_wip_dev.launch │ │ │ └── parser │ │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ ├── protocol │ │ │ │ ├── WipDynamicParser.java │ │ │ │ └── WipParserGenerator.java │ │ │ │ └── tools │ │ │ │ └── protocolgenerator │ │ │ │ ├── Generator.java │ │ │ │ ├── JavaFileUpdater.java │ │ │ │ ├── StreamUtil.java │ │ │ │ ├── WipMetamodel.java │ │ │ │ ├── WipMetamodelParser.java │ │ │ │ └── WipProtocolGeneratorMain.java │ │ ├── src-static-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ └── generated │ │ │ │ └── .placeholder │ │ ├── src-wip-generated │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ └── protocol │ │ │ │ ├── common │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointIdTypedef.java │ │ │ │ │ ├── CallFrameIdTypedef.java │ │ │ │ │ └── ScriptIdTypedef.java │ │ │ │ ├── dom │ │ │ │ │ └── NodeIdTypedef.java │ │ │ │ ├── network │ │ │ │ │ ├── FrameIdTypedef.java │ │ │ │ │ ├── LoaderIdTypedef.java │ │ │ │ │ ├── RequestIdTypedef.java │ │ │ │ │ └── TimestampTypedef.java │ │ │ │ ├── page │ │ │ │ │ └── ScriptIdentifierTypedef.java │ │ │ │ └── runtime │ │ │ │ │ ├── ExecutionContextIdTypedef.java │ │ │ │ │ └── RemoteObjectIdTypedef.java │ │ │ │ ├── input │ │ │ │ ├── GeneratedParserInterfaceList.java │ │ │ │ ├── WipGeneratedParserRoot.java │ │ │ │ ├── console │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── ConsoleMessageValue.java │ │ │ │ │ ├── MessageAddedEventData.java │ │ │ │ │ ├── MessageRepeatCountUpdatedEventData.java │ │ │ │ │ ├── MessagesClearedEventData.java │ │ │ │ │ └── StackTraceTypedef.java │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointResolvedEventData.java │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── CanSetScriptSourceData.java │ │ │ │ │ ├── CausesRecompilationData.java │ │ │ │ │ ├── CompileScriptData.java │ │ │ │ │ ├── EvaluateOnCallFrameData.java │ │ │ │ │ ├── FunctionDetailsValue.java │ │ │ │ │ ├── GetFunctionDetailsData.java │ │ │ │ │ ├── GetScriptSourceData.java │ │ │ │ │ ├── GlobalObjectClearedEventData.java │ │ │ │ │ ├── LocationValue.java │ │ │ │ │ ├── PausedEventData.java │ │ │ │ │ ├── RestartFrameData.java │ │ │ │ │ ├── ResumedEventData.java │ │ │ │ │ ├── RunScriptData.java │ │ │ │ │ ├── ScopeValue.java │ │ │ │ │ ├── ScriptFailedToParseEventData.java │ │ │ │ │ ├── ScriptParsedEventData.java │ │ │ │ │ ├── SearchInContentData.java │ │ │ │ │ ├── SetBreakpointByUrlData.java │ │ │ │ │ ├── SetBreakpointData.java │ │ │ │ │ ├── SetScriptSourceData.java │ │ │ │ │ └── SupportsSeparateScriptCompilationAndExecutionData.java │ │ │ │ ├── dom │ │ │ │ │ ├── AttributeModifiedEventData.java │ │ │ │ │ ├── AttributeRemovedEventData.java │ │ │ │ │ ├── CharacterDataModifiedEventData.java │ │ │ │ │ ├── ChildNodeCountUpdatedEventData.java │ │ │ │ │ ├── ChildNodeInsertedEventData.java │ │ │ │ │ ├── ChildNodeRemovedEventData.java │ │ │ │ │ ├── DocumentUpdatedEventData.java │ │ │ │ │ ├── EventListenerValue.java │ │ │ │ │ ├── GetAttributesData.java │ │ │ │ │ ├── GetDocumentData.java │ │ │ │ │ ├── GetEventListenersForNodeData.java │ │ │ │ │ ├── GetOuterHTMLData.java │ │ │ │ │ ├── GetSearchResultsData.java │ │ │ │ │ ├── InlineStyleInvalidatedEventData.java │ │ │ │ │ ├── MoveToData.java │ │ │ │ │ ├── NodeValue.java │ │ │ │ │ ├── PerformSearchData.java │ │ │ │ │ ├── PushNodeByPathToFrontendData.java │ │ │ │ │ ├── QuerySelectorAllData.java │ │ │ │ │ ├── QuerySelectorData.java │ │ │ │ │ ├── RequestNodeData.java │ │ │ │ │ ├── ResolveNodeData.java │ │ │ │ │ ├── SetChildNodesEventData.java │ │ │ │ │ ├── SetNodeNameData.java │ │ │ │ │ ├── ShadowRootPoppedEventData.java │ │ │ │ │ └── ShadowRootPushedEventData.java │ │ │ │ ├── network │ │ │ │ │ ├── CachedResourceValue.java │ │ │ │ │ ├── CanClearBrowserCacheData.java │ │ │ │ │ ├── CanClearBrowserCookiesData.java │ │ │ │ │ ├── DataReceivedEventData.java │ │ │ │ │ ├── GetResponseBodyData.java │ │ │ │ │ ├── HeadersValue.java │ │ │ │ │ ├── InitiatorValue.java │ │ │ │ │ ├── LoadingFailedEventData.java │ │ │ │ │ ├── LoadingFinishedEventData.java │ │ │ │ │ ├── RequestServedFromCacheEventData.java │ │ │ │ │ ├── RequestServedFromMemoryCacheEventData.java │ │ │ │ │ ├── RequestValue.java │ │ │ │ │ ├── RequestWillBeSentEventData.java │ │ │ │ │ ├── ResourceTimingValue.java │ │ │ │ │ ├── ResponseReceivedEventData.java │ │ │ │ │ ├── ResponseValue.java │ │ │ │ │ ├── WebSocketClosedEventData.java │ │ │ │ │ ├── WebSocketCreatedEventData.java │ │ │ │ │ ├── WebSocketFrameErrorEventData.java │ │ │ │ │ ├── WebSocketFrameReceivedEventData.java │ │ │ │ │ ├── WebSocketFrameSentEventData.java │ │ │ │ │ ├── WebSocketFrameValue.java │ │ │ │ │ ├── WebSocketHandshakeResponseReceivedEventData.java │ │ │ │ │ ├── WebSocketRequestValue.java │ │ │ │ │ ├── WebSocketResponseValue.java │ │ │ │ │ └── WebSocketWillSendHandshakeRequestEventData.java │ │ │ │ ├── page │ │ │ │ │ ├── AddScriptToEvaluateOnLoadData.java │ │ │ │ │ ├── CanOverrideDeviceMetricsData.java │ │ │ │ │ ├── CanOverrideDeviceOrientationData.java │ │ │ │ │ ├── CanOverrideGeolocationData.java │ │ │ │ │ ├── CookieValue.java │ │ │ │ │ ├── DomContentEventFiredEventData.java │ │ │ │ │ ├── FrameDetachedEventData.java │ │ │ │ │ ├── FrameNavigatedEventData.java │ │ │ │ │ ├── FrameResourceTreeValue.java │ │ │ │ │ ├── FrameValue.java │ │ │ │ │ ├── GetCookiesData.java │ │ │ │ │ ├── GetResourceContentData.java │ │ │ │ │ ├── GetResourceTreeData.java │ │ │ │ │ ├── GetScriptExecutionStatusData.java │ │ │ │ │ ├── LoadEventFiredEventData.java │ │ │ │ │ ├── ResourceTypeEnum.java │ │ │ │ │ ├── SearchInResourceData.java │ │ │ │ │ ├── SearchInResourcesData.java │ │ │ │ │ ├── SearchMatchValue.java │ │ │ │ │ └── SearchResultValue.java │ │ │ │ └── runtime │ │ │ │ │ ├── CallFunctionOnData.java │ │ │ │ │ ├── EvaluateData.java │ │ │ │ │ ├── ExecutionContextCreatedEventData.java │ │ │ │ │ ├── ExecutionContextDescriptionValue.java │ │ │ │ │ ├── GetPropertiesData.java │ │ │ │ │ ├── InternalPropertyDescriptorValue.java │ │ │ │ │ ├── ObjectPreviewValue.java │ │ │ │ │ ├── PropertyDescriptorValue.java │ │ │ │ │ ├── PropertyPreviewValue.java │ │ │ │ │ └── RemoteObjectValue.java │ │ │ │ └── output │ │ │ │ ├── console │ │ │ │ ├── AddInspectedHeapObjectParams.java │ │ │ │ ├── AddInspectedNodeParams.java │ │ │ │ ├── ClearMessagesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ └── SetMonitoringXHREnabledParams.java │ │ │ │ ├── debugger │ │ │ │ ├── CanSetScriptSourceParams.java │ │ │ │ ├── CausesRecompilationParams.java │ │ │ │ ├── CompileScriptParams.java │ │ │ │ ├── ContinueToLocationParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── EvaluateOnCallFrameParams.java │ │ │ │ ├── GetFunctionDetailsParams.java │ │ │ │ ├── GetScriptSourceParams.java │ │ │ │ ├── LocationParam.java │ │ │ │ ├── PauseParams.java │ │ │ │ ├── RemoveBreakpointParams.java │ │ │ │ ├── RestartFrameParams.java │ │ │ │ ├── ResumeParams.java │ │ │ │ ├── RunScriptParams.java │ │ │ │ ├── SearchInContentParams.java │ │ │ │ ├── SetBreakpointByUrlParams.java │ │ │ │ ├── SetBreakpointParams.java │ │ │ │ ├── SetBreakpointsActiveParams.java │ │ │ │ ├── SetOverlayMessageParams.java │ │ │ │ ├── SetPauseOnExceptionsParams.java │ │ │ │ ├── SetScriptSourceParams.java │ │ │ │ ├── StepIntoParams.java │ │ │ │ ├── StepOutParams.java │ │ │ │ ├── StepOverParams.java │ │ │ │ └── SupportsSeparateScriptCompilationAndExecutionParams.java │ │ │ │ ├── dom │ │ │ │ ├── DiscardSearchResultsParams.java │ │ │ │ ├── GetAttributesParams.java │ │ │ │ ├── GetDocumentParams.java │ │ │ │ ├── GetEventListenersForNodeParams.java │ │ │ │ ├── GetOuterHTMLParams.java │ │ │ │ ├── GetSearchResultsParams.java │ │ │ │ ├── HideHighlightParams.java │ │ │ │ ├── HighlightConfigParam.java │ │ │ │ ├── HighlightFrameParams.java │ │ │ │ ├── HighlightNodeParams.java │ │ │ │ ├── HighlightRectParams.java │ │ │ │ ├── MarkUndoableStateParams.java │ │ │ │ ├── MoveToParams.java │ │ │ │ ├── PerformSearchParams.java │ │ │ │ ├── PushNodeByPathToFrontendParams.java │ │ │ │ ├── QuerySelectorAllParams.java │ │ │ │ ├── QuerySelectorParams.java │ │ │ │ ├── RGBAParam.java │ │ │ │ ├── RedoParams.java │ │ │ │ ├── RemoveAttributeParams.java │ │ │ │ ├── RemoveNodeParams.java │ │ │ │ ├── RequestChildNodesParams.java │ │ │ │ ├── RequestNodeParams.java │ │ │ │ ├── ResolveNodeParams.java │ │ │ │ ├── SetAttributeValueParams.java │ │ │ │ ├── SetAttributesAsTextParams.java │ │ │ │ ├── SetInspectModeEnabledParams.java │ │ │ │ ├── SetNodeNameParams.java │ │ │ │ ├── SetNodeValueParams.java │ │ │ │ ├── SetOuterHTMLParams.java │ │ │ │ └── UndoParams.java │ │ │ │ ├── network │ │ │ │ ├── CanClearBrowserCacheParams.java │ │ │ │ ├── CanClearBrowserCookiesParams.java │ │ │ │ ├── ClearBrowserCacheParams.java │ │ │ │ ├── ClearBrowserCookiesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetResponseBodyParams.java │ │ │ │ ├── HeadersParam.java │ │ │ │ ├── ReplayXHRParams.java │ │ │ │ ├── SetCacheDisabledParams.java │ │ │ │ ├── SetExtraHTTPHeadersParams.java │ │ │ │ └── SetUserAgentOverrideParams.java │ │ │ │ ├── page │ │ │ │ ├── AddScriptToEvaluateOnLoadParams.java │ │ │ │ ├── CanOverrideDeviceMetricsParams.java │ │ │ │ ├── CanOverrideDeviceOrientationParams.java │ │ │ │ ├── CanOverrideGeolocationParams.java │ │ │ │ ├── ClearDeviceOrientationOverrideParams.java │ │ │ │ ├── ClearGeolocationOverrideParams.java │ │ │ │ ├── DeleteCookieParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetCookiesParams.java │ │ │ │ ├── GetResourceContentParams.java │ │ │ │ ├── GetResourceTreeParams.java │ │ │ │ ├── GetScriptExecutionStatusParams.java │ │ │ │ ├── NavigateParams.java │ │ │ │ ├── ReloadParams.java │ │ │ │ ├── RemoveScriptToEvaluateOnLoadParams.java │ │ │ │ ├── SearchInResourceParams.java │ │ │ │ ├── SearchInResourcesParams.java │ │ │ │ ├── SetDeviceMetricsOverrideParams.java │ │ │ │ ├── SetDeviceOrientationOverrideParams.java │ │ │ │ ├── SetDocumentContentParams.java │ │ │ │ ├── SetGeolocationOverrideParams.java │ │ │ │ ├── SetScriptExecutionDisabledParams.java │ │ │ │ ├── SetShowPaintRectsParams.java │ │ │ │ └── SetTouchEmulationEnabledParams.java │ │ │ │ └── runtime │ │ │ │ ├── CallArgumentParam.java │ │ │ │ ├── CallFunctionOnParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── EvaluateParams.java │ │ │ │ ├── GetPropertiesParams.java │ │ │ │ ├── ReleaseObjectGroupParams.java │ │ │ │ ├── ReleaseObjectParams.java │ │ │ │ └── RunParams.java │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ ├── internal │ │ │ ├── websocket │ │ │ │ ├── AbstractWsConnection.java │ │ │ │ ├── HandshakeUtil.java │ │ │ │ ├── Hybi00Handshake.java │ │ │ │ ├── Hybi00WsConnection.java │ │ │ │ ├── Hybi17Handshake.java │ │ │ │ ├── Hybi17WsConnection.java │ │ │ │ ├── ManualLoggingSocketWrapper.java │ │ │ │ └── WsConnection.java │ │ │ └── wip │ │ │ │ ├── EvaluateHack.java │ │ │ │ ├── PermanentRemoteValueMappingImpl.java │ │ │ │ ├── WipBackendImpl.java │ │ │ │ ├── WipBreakpointImpl.java │ │ │ │ ├── WipBreakpointManager.java │ │ │ │ ├── WipCommandCallback.java │ │ │ │ ├── WipCommandProcessor.java │ │ │ │ ├── WipContextBuilder.java │ │ │ │ ├── WipEvaluateContextBase.java │ │ │ │ ├── WipExpressionBuilder.java │ │ │ │ ├── WipFrameManager.java │ │ │ │ ├── WipRelayRunner.java │ │ │ │ ├── WipScriptImpl.java │ │ │ │ ├── WipScriptManager.java │ │ │ │ ├── WipTabImpl.java │ │ │ │ ├── WipValueBuilder.java │ │ │ │ ├── WipValueLoader.java │ │ │ │ └── protocol │ │ │ │ ├── BasicConstants.java │ │ │ │ ├── WipProtocol.java │ │ │ │ ├── input │ │ │ │ ├── WipCommandResponse.java │ │ │ │ ├── WipEvent.java │ │ │ │ ├── WipEventType.java │ │ │ │ ├── WipProtocolParser.java │ │ │ │ └── WipTabList.java │ │ │ │ └── output │ │ │ │ ├── WipParams.java │ │ │ │ ├── WipParamsWithResponse.java │ │ │ │ └── WipRequest.java │ │ │ └── wip │ │ │ └── WipBackendFactory.java │ ├── org.chromium.sdk.wipbackend.protocol_1_0 │ │ ├── .classpath │ │ ├── .project │ │ ├── Inspector-1.0.json.r107603.manual_fix │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── src-dynamic-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ ├── generateWipProtocol_protocol_1_0.launch │ │ │ ├── generate_static_parser_wip_protocol_1_0.launch │ │ │ └── parser │ │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ ├── protocol │ │ │ │ ├── WipDynamicParser.java │ │ │ │ └── WipParserGenerator.java │ │ │ │ └── tools │ │ │ │ └── protocolgenerator │ │ │ │ ├── Generator.java │ │ │ │ ├── JavaFileUpdater.java │ │ │ │ ├── StreamUtil.java │ │ │ │ ├── WipMetamodel.java │ │ │ │ ├── WipMetamodelParser.java │ │ │ │ └── WipProtocolGeneratorMain.java │ │ ├── src-static-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ └── generated │ │ │ │ └── .placeholder │ │ ├── src-wip-generated │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ └── protocol │ │ │ │ ├── common │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointIdTypedef.java │ │ │ │ │ ├── CallFrameIdTypedef.java │ │ │ │ │ └── ScriptIdTypedef.java │ │ │ │ ├── dom │ │ │ │ │ └── NodeIdTypedef.java │ │ │ │ ├── network │ │ │ │ │ ├── FrameIdTypedef.java │ │ │ │ │ ├── LoaderIdTypedef.java │ │ │ │ │ ├── RequestIdTypedef.java │ │ │ │ │ └── TimestampTypedef.java │ │ │ │ ├── page │ │ │ │ │ └── ScriptIdentifierTypedef.java │ │ │ │ └── runtime │ │ │ │ │ └── RemoteObjectIdTypedef.java │ │ │ │ ├── input │ │ │ │ ├── GeneratedParserInterfaceList.java │ │ │ │ ├── WipGeneratedParserRoot.java │ │ │ │ ├── console │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── ConsoleMessageValue.java │ │ │ │ │ ├── MessageAddedEventData.java │ │ │ │ │ ├── MessageRepeatCountUpdatedEventData.java │ │ │ │ │ ├── MessagesClearedEventData.java │ │ │ │ │ └── StackTraceTypedef.java │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointResolvedEventData.java │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── CanSetScriptSourceData.java │ │ │ │ │ ├── CausesRecompilationData.java │ │ │ │ │ ├── EvaluateOnCallFrameData.java │ │ │ │ │ ├── FunctionDetailsValue.java │ │ │ │ │ ├── GetFunctionDetailsData.java │ │ │ │ │ ├── GetScriptSourceData.java │ │ │ │ │ ├── GlobalObjectClearedEventData.java │ │ │ │ │ ├── LocationValue.java │ │ │ │ │ ├── PausedEventData.java │ │ │ │ │ ├── ResumedEventData.java │ │ │ │ │ ├── ScopeValue.java │ │ │ │ │ ├── ScriptFailedToParseEventData.java │ │ │ │ │ ├── ScriptParsedEventData.java │ │ │ │ │ ├── SearchInContentData.java │ │ │ │ │ ├── SetBreakpointByUrlData.java │ │ │ │ │ ├── SetBreakpointData.java │ │ │ │ │ ├── SetScriptSourceData.java │ │ │ │ │ └── SupportsNativeBreakpointsData.java │ │ │ │ ├── dom │ │ │ │ │ ├── AttributeModifiedEventData.java │ │ │ │ │ ├── AttributeRemovedEventData.java │ │ │ │ │ ├── CharacterDataModifiedEventData.java │ │ │ │ │ ├── ChildNodeCountUpdatedEventData.java │ │ │ │ │ ├── ChildNodeInsertedEventData.java │ │ │ │ │ ├── ChildNodeRemovedEventData.java │ │ │ │ │ ├── DocumentUpdatedEventData.java │ │ │ │ │ ├── EventListenerValue.java │ │ │ │ │ ├── GetAttributesData.java │ │ │ │ │ ├── GetDocumentData.java │ │ │ │ │ ├── GetEventListenersForNodeData.java │ │ │ │ │ ├── GetOuterHTMLData.java │ │ │ │ │ ├── GetSearchResultsData.java │ │ │ │ │ ├── InlineStyleInvalidatedEventData.java │ │ │ │ │ ├── MoveToData.java │ │ │ │ │ ├── NodeValue.java │ │ │ │ │ ├── PerformSearchData.java │ │ │ │ │ ├── PushNodeByPathToFrontendData.java │ │ │ │ │ ├── QuerySelectorAllData.java │ │ │ │ │ ├── QuerySelectorData.java │ │ │ │ │ ├── RequestNodeData.java │ │ │ │ │ ├── ResolveNodeData.java │ │ │ │ │ ├── SetChildNodesEventData.java │ │ │ │ │ └── SetNodeNameData.java │ │ │ │ ├── network │ │ │ │ │ ├── CachedResourceValue.java │ │ │ │ │ ├── CanClearBrowserCacheData.java │ │ │ │ │ ├── CanClearBrowserCookiesData.java │ │ │ │ │ ├── DataReceivedEventData.java │ │ │ │ │ ├── GetResponseBodyData.java │ │ │ │ │ ├── HeadersValue.java │ │ │ │ │ ├── InitiatorValue.java │ │ │ │ │ ├── LoadingFailedEventData.java │ │ │ │ │ ├── LoadingFinishedEventData.java │ │ │ │ │ ├── RequestServedFromCacheEventData.java │ │ │ │ │ ├── RequestServedFromMemoryCacheEventData.java │ │ │ │ │ ├── RequestValue.java │ │ │ │ │ ├── RequestWillBeSentEventData.java │ │ │ │ │ ├── ResourceTimingValue.java │ │ │ │ │ ├── ResponseReceivedEventData.java │ │ │ │ │ ├── ResponseValue.java │ │ │ │ │ ├── WebSocketClosedEventData.java │ │ │ │ │ ├── WebSocketCreatedEventData.java │ │ │ │ │ ├── WebSocketHandshakeResponseReceivedEventData.java │ │ │ │ │ ├── WebSocketRequestValue.java │ │ │ │ │ ├── WebSocketResponseValue.java │ │ │ │ │ └── WebSocketWillSendHandshakeRequestEventData.java │ │ │ │ ├── page │ │ │ │ │ ├── AddScriptToEvaluateOnLoadData.java │ │ │ │ │ ├── CookieValue.java │ │ │ │ │ ├── DomContentEventFiredEventData.java │ │ │ │ │ ├── FrameDetachedEventData.java │ │ │ │ │ ├── FrameNavigatedEventData.java │ │ │ │ │ ├── FrameResourceTreeValue.java │ │ │ │ │ ├── FrameValue.java │ │ │ │ │ ├── GetCookiesData.java │ │ │ │ │ ├── GetResourceContentData.java │ │ │ │ │ ├── GetResourceTreeData.java │ │ │ │ │ ├── LoadEventFiredEventData.java │ │ │ │ │ ├── ResourceTypeEnum.java │ │ │ │ │ ├── SearchInResourceData.java │ │ │ │ │ ├── SearchInResourcesData.java │ │ │ │ │ ├── SearchMatchValue.java │ │ │ │ │ └── SearchResultValue.java │ │ │ │ └── runtime │ │ │ │ │ ├── CallFunctionOnData.java │ │ │ │ │ ├── EvaluateData.java │ │ │ │ │ ├── GetPropertiesData.java │ │ │ │ │ ├── PropertyDescriptorValue.java │ │ │ │ │ └── RemoteObjectValue.java │ │ │ │ └── output │ │ │ │ ├── console │ │ │ │ ├── AddInspectedNodeParams.java │ │ │ │ ├── ClearMessagesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ └── SetMonitoringXHREnabledParams.java │ │ │ │ ├── debugger │ │ │ │ ├── CanSetScriptSourceParams.java │ │ │ │ ├── CausesRecompilationParams.java │ │ │ │ ├── ContinueToLocationParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── EvaluateOnCallFrameParams.java │ │ │ │ ├── GetFunctionDetailsParams.java │ │ │ │ ├── GetScriptSourceParams.java │ │ │ │ ├── LocationParam.java │ │ │ │ ├── PauseParams.java │ │ │ │ ├── RemoveBreakpointParams.java │ │ │ │ ├── ResumeParams.java │ │ │ │ ├── SearchInContentParams.java │ │ │ │ ├── SetBreakpointByUrlParams.java │ │ │ │ ├── SetBreakpointParams.java │ │ │ │ ├── SetBreakpointsActiveParams.java │ │ │ │ ├── SetPauseOnExceptionsParams.java │ │ │ │ ├── SetScriptSourceParams.java │ │ │ │ ├── StepIntoParams.java │ │ │ │ ├── StepOutParams.java │ │ │ │ ├── StepOverParams.java │ │ │ │ └── SupportsNativeBreakpointsParams.java │ │ │ │ ├── dom │ │ │ │ ├── DiscardSearchResultsParams.java │ │ │ │ ├── GetAttributesParams.java │ │ │ │ ├── GetDocumentParams.java │ │ │ │ ├── GetEventListenersForNodeParams.java │ │ │ │ ├── GetOuterHTMLParams.java │ │ │ │ ├── GetSearchResultsParams.java │ │ │ │ ├── HideHighlightParams.java │ │ │ │ ├── HighlightConfigParam.java │ │ │ │ ├── HighlightFrameParams.java │ │ │ │ ├── HighlightNodeParams.java │ │ │ │ ├── HighlightRectParams.java │ │ │ │ ├── MoveToParams.java │ │ │ │ ├── PerformSearchParams.java │ │ │ │ ├── PushNodeByPathToFrontendParams.java │ │ │ │ ├── QuerySelectorAllParams.java │ │ │ │ ├── QuerySelectorParams.java │ │ │ │ ├── RGBAParam.java │ │ │ │ ├── RemoveAttributeParams.java │ │ │ │ ├── RemoveNodeParams.java │ │ │ │ ├── RequestChildNodesParams.java │ │ │ │ ├── RequestNodeParams.java │ │ │ │ ├── ResolveNodeParams.java │ │ │ │ ├── SetAttributeValueParams.java │ │ │ │ ├── SetAttributesAsTextParams.java │ │ │ │ ├── SetInspectModeEnabledParams.java │ │ │ │ ├── SetNodeNameParams.java │ │ │ │ ├── SetNodeValueParams.java │ │ │ │ └── SetOuterHTMLParams.java │ │ │ │ ├── network │ │ │ │ ├── CanClearBrowserCacheParams.java │ │ │ │ ├── CanClearBrowserCookiesParams.java │ │ │ │ ├── ClearBrowserCacheParams.java │ │ │ │ ├── ClearBrowserCookiesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetResponseBodyParams.java │ │ │ │ ├── HeadersParam.java │ │ │ │ ├── SetCacheDisabledParams.java │ │ │ │ ├── SetExtraHTTPHeadersParams.java │ │ │ │ └── SetUserAgentOverrideParams.java │ │ │ │ ├── page │ │ │ │ ├── AddScriptToEvaluateOnLoadParams.java │ │ │ │ ├── DeleteCookieParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetCookiesParams.java │ │ │ │ ├── GetResourceContentParams.java │ │ │ │ ├── GetResourceTreeParams.java │ │ │ │ ├── NavigateParams.java │ │ │ │ ├── ReloadParams.java │ │ │ │ ├── RemoveScriptToEvaluateOnLoadParams.java │ │ │ │ ├── SearchInResourceParams.java │ │ │ │ ├── SearchInResourcesParams.java │ │ │ │ ├── SetDocumentContentParams.java │ │ │ │ └── SetScreenSizeOverrideParams.java │ │ │ │ └── runtime │ │ │ │ ├── CallArgumentParam.java │ │ │ │ ├── CallFunctionOnParams.java │ │ │ │ ├── EvaluateParams.java │ │ │ │ ├── GetPropertiesParams.java │ │ │ │ ├── ReleaseObjectGroupParams.java │ │ │ │ ├── ReleaseObjectParams.java │ │ │ │ └── RunParams.java │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ ├── internal │ │ │ ├── websocket │ │ │ │ ├── AbstractWsConnection.java │ │ │ │ ├── HandshakeUtil.java │ │ │ │ ├── Hybi00Handshake.java │ │ │ │ ├── Hybi00WsConnection.java │ │ │ │ ├── Hybi17Handshake.java │ │ │ │ ├── Hybi17WsConnection.java │ │ │ │ ├── ManualLoggingSocketWrapper.java │ │ │ │ └── WsConnection.java │ │ │ └── wip │ │ │ │ ├── EvaluateHack.java │ │ │ │ ├── PermanentRemoteValueMappingImpl.java │ │ │ │ ├── WipBackendImpl.java │ │ │ │ ├── WipBreakpointImpl.java │ │ │ │ ├── WipBreakpointManager.java │ │ │ │ ├── WipCommandCallback.java │ │ │ │ ├── WipCommandProcessor.java │ │ │ │ ├── WipContextBuilder.java │ │ │ │ ├── WipEvaluateContextBase.java │ │ │ │ ├── WipExpressionBuilder.java │ │ │ │ ├── WipFrameManager.java │ │ │ │ ├── WipRelayRunner.java │ │ │ │ ├── WipScriptImpl.java │ │ │ │ ├── WipScriptManager.java │ │ │ │ ├── WipTabImpl.java │ │ │ │ ├── WipValueBuilder.java │ │ │ │ ├── WipValueLoader.java │ │ │ │ └── protocol │ │ │ │ ├── BasicConstants.java │ │ │ │ ├── WipProtocol.java │ │ │ │ ├── input │ │ │ │ ├── WipCommandResponse.java │ │ │ │ ├── WipEvent.java │ │ │ │ ├── WipEventType.java │ │ │ │ ├── WipProtocolParser.java │ │ │ │ └── WipTabList.java │ │ │ │ └── output │ │ │ │ ├── WipParams.java │ │ │ │ ├── WipParamsWithResponse.java │ │ │ │ └── WipRequest.java │ │ │ └── wip │ │ │ └── WipBackendFactory.java │ ├── org.chromium.sdk.wipbackend.wk118685 │ │ ├── .classpath │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── src-dynamic-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ ├── generateWipProtocol_wk118685.launch │ │ │ ├── generate_static_parser_wip_wk118685.launch │ │ │ └── parser │ │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ ├── protocol │ │ │ │ ├── WipDynamicParser.java │ │ │ │ └── WipParserGenerator.java │ │ │ │ └── tools │ │ │ │ └── protocolgenerator │ │ │ │ ├── Generator.java │ │ │ │ ├── JavaFileUpdater.java │ │ │ │ ├── StreamUtil.java │ │ │ │ ├── WipMetamodel.java │ │ │ │ ├── WipMetamodelParser.java │ │ │ │ └── WipProtocolGeneratorMain.java │ │ ├── src-static-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ └── generated │ │ │ │ └── .placeholder │ │ ├── src-wip-generated │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ └── protocol │ │ │ │ ├── common │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointIdTypedef.java │ │ │ │ │ ├── CallFrameIdTypedef.java │ │ │ │ │ └── ScriptIdTypedef.java │ │ │ │ ├── dom │ │ │ │ │ └── NodeIdTypedef.java │ │ │ │ ├── network │ │ │ │ │ ├── FrameIdTypedef.java │ │ │ │ │ ├── LoaderIdTypedef.java │ │ │ │ │ ├── RequestIdTypedef.java │ │ │ │ │ └── TimestampTypedef.java │ │ │ │ ├── page │ │ │ │ │ └── ScriptIdentifierTypedef.java │ │ │ │ └── runtime │ │ │ │ │ ├── ExecutionContextIdTypedef.java │ │ │ │ │ └── RemoteObjectIdTypedef.java │ │ │ │ ├── input │ │ │ │ ├── GeneratedParserInterfaceList.java │ │ │ │ ├── WipGeneratedParserRoot.java │ │ │ │ ├── console │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── ConsoleMessageValue.java │ │ │ │ │ ├── MessageAddedEventData.java │ │ │ │ │ ├── MessageRepeatCountUpdatedEventData.java │ │ │ │ │ ├── MessagesClearedEventData.java │ │ │ │ │ └── StackTraceTypedef.java │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointResolvedEventData.java │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── CanSetScriptSourceData.java │ │ │ │ │ ├── CausesRecompilationData.java │ │ │ │ │ ├── EvaluateOnCallFrameData.java │ │ │ │ │ ├── FunctionDetailsValue.java │ │ │ │ │ ├── GetFunctionDetailsData.java │ │ │ │ │ ├── GetScriptSourceData.java │ │ │ │ │ ├── GlobalObjectClearedEventData.java │ │ │ │ │ ├── LocationValue.java │ │ │ │ │ ├── PausedEventData.java │ │ │ │ │ ├── ResumedEventData.java │ │ │ │ │ ├── ScopeValue.java │ │ │ │ │ ├── ScriptFailedToParseEventData.java │ │ │ │ │ ├── ScriptParsedEventData.java │ │ │ │ │ ├── SearchInContentData.java │ │ │ │ │ ├── SetBreakpointByUrlData.java │ │ │ │ │ ├── SetBreakpointData.java │ │ │ │ │ ├── SetScriptSourceData.java │ │ │ │ │ └── SupportsNativeBreakpointsData.java │ │ │ │ ├── dom │ │ │ │ │ ├── AttributeModifiedEventData.java │ │ │ │ │ ├── AttributeRemovedEventData.java │ │ │ │ │ ├── CharacterDataModifiedEventData.java │ │ │ │ │ ├── ChildNodeCountUpdatedEventData.java │ │ │ │ │ ├── ChildNodeInsertedEventData.java │ │ │ │ │ ├── ChildNodeRemovedEventData.java │ │ │ │ │ ├── DocumentUpdatedEventData.java │ │ │ │ │ ├── EventListenerValue.java │ │ │ │ │ ├── GetAttributesData.java │ │ │ │ │ ├── GetDocumentData.java │ │ │ │ │ ├── GetEventListenersForNodeData.java │ │ │ │ │ ├── GetOuterHTMLData.java │ │ │ │ │ ├── GetSearchResultsData.java │ │ │ │ │ ├── InlineStyleInvalidatedEventData.java │ │ │ │ │ ├── MoveToData.java │ │ │ │ │ ├── NodeValue.java │ │ │ │ │ ├── PerformSearchData.java │ │ │ │ │ ├── PushNodeByPathToFrontendData.java │ │ │ │ │ ├── QuerySelectorAllData.java │ │ │ │ │ ├── QuerySelectorData.java │ │ │ │ │ ├── RequestNodeData.java │ │ │ │ │ ├── ResolveNodeData.java │ │ │ │ │ ├── SetChildNodesEventData.java │ │ │ │ │ ├── SetNodeNameData.java │ │ │ │ │ ├── ShadowRootPoppedEventData.java │ │ │ │ │ └── ShadowRootPushedEventData.java │ │ │ │ ├── network │ │ │ │ │ ├── CachedResourceValue.java │ │ │ │ │ ├── CanClearBrowserCacheData.java │ │ │ │ │ ├── CanClearBrowserCookiesData.java │ │ │ │ │ ├── DataReceivedEventData.java │ │ │ │ │ ├── GetResponseBodyData.java │ │ │ │ │ ├── HeadersValue.java │ │ │ │ │ ├── InitiatorValue.java │ │ │ │ │ ├── LoadingFailedEventData.java │ │ │ │ │ ├── LoadingFinishedEventData.java │ │ │ │ │ ├── RequestServedFromCacheEventData.java │ │ │ │ │ ├── RequestServedFromMemoryCacheEventData.java │ │ │ │ │ ├── RequestValue.java │ │ │ │ │ ├── RequestWillBeSentEventData.java │ │ │ │ │ ├── ResourceTimingValue.java │ │ │ │ │ ├── ResponseReceivedEventData.java │ │ │ │ │ ├── ResponseValue.java │ │ │ │ │ ├── WebSocketClosedEventData.java │ │ │ │ │ ├── WebSocketCreatedEventData.java │ │ │ │ │ ├── WebSocketFrameErrorEventData.java │ │ │ │ │ ├── WebSocketFrameReceivedEventData.java │ │ │ │ │ ├── WebSocketFrameSentEventData.java │ │ │ │ │ ├── WebSocketFrameValue.java │ │ │ │ │ ├── WebSocketHandshakeResponseReceivedEventData.java │ │ │ │ │ ├── WebSocketRequestValue.java │ │ │ │ │ ├── WebSocketResponseValue.java │ │ │ │ │ └── WebSocketWillSendHandshakeRequestEventData.java │ │ │ │ ├── page │ │ │ │ │ ├── AddScriptToEvaluateOnLoadData.java │ │ │ │ │ ├── CanOverrideDeviceMetricsData.java │ │ │ │ │ ├── CookieValue.java │ │ │ │ │ ├── DomContentEventFiredEventData.java │ │ │ │ │ ├── FrameDetachedEventData.java │ │ │ │ │ ├── FrameNavigatedEventData.java │ │ │ │ │ ├── FrameResourceTreeValue.java │ │ │ │ │ ├── FrameValue.java │ │ │ │ │ ├── GetCookiesData.java │ │ │ │ │ ├── GetResourceContentData.java │ │ │ │ │ ├── GetResourceTreeData.java │ │ │ │ │ ├── GetScriptExecutionStatusData.java │ │ │ │ │ ├── LoadEventFiredEventData.java │ │ │ │ │ ├── ResourceTypeEnum.java │ │ │ │ │ ├── SearchInResourceData.java │ │ │ │ │ ├── SearchInResourcesData.java │ │ │ │ │ ├── SearchMatchValue.java │ │ │ │ │ └── SearchResultValue.java │ │ │ │ └── runtime │ │ │ │ │ ├── CallFunctionOnData.java │ │ │ │ │ ├── EvaluateData.java │ │ │ │ │ ├── ExecutionContextDescriptionValue.java │ │ │ │ │ ├── GetPropertiesData.java │ │ │ │ │ ├── IsolatedContextCreatedEventData.java │ │ │ │ │ ├── PropertyDescriptorValue.java │ │ │ │ │ └── RemoteObjectValue.java │ │ │ │ └── output │ │ │ │ ├── console │ │ │ │ ├── AddInspectedHeapObjectParams.java │ │ │ │ ├── AddInspectedNodeParams.java │ │ │ │ ├── ClearMessagesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ └── SetMonitoringXHREnabledParams.java │ │ │ │ ├── debugger │ │ │ │ ├── CanSetScriptSourceParams.java │ │ │ │ ├── CausesRecompilationParams.java │ │ │ │ ├── ContinueToLocationParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── EvaluateOnCallFrameParams.java │ │ │ │ ├── GetFunctionDetailsParams.java │ │ │ │ ├── GetScriptSourceParams.java │ │ │ │ ├── LocationParam.java │ │ │ │ ├── PauseParams.java │ │ │ │ ├── RemoveBreakpointParams.java │ │ │ │ ├── ResumeParams.java │ │ │ │ ├── SearchInContentParams.java │ │ │ │ ├── SetBreakpointByUrlParams.java │ │ │ │ ├── SetBreakpointParams.java │ │ │ │ ├── SetBreakpointsActiveParams.java │ │ │ │ ├── SetPauseOnExceptionsParams.java │ │ │ │ ├── SetScriptSourceParams.java │ │ │ │ ├── StepIntoParams.java │ │ │ │ ├── StepOutParams.java │ │ │ │ ├── StepOverParams.java │ │ │ │ └── SupportsNativeBreakpointsParams.java │ │ │ │ ├── dom │ │ │ │ ├── DiscardSearchResultsParams.java │ │ │ │ ├── GetAttributesParams.java │ │ │ │ ├── GetDocumentParams.java │ │ │ │ ├── GetEventListenersForNodeParams.java │ │ │ │ ├── GetOuterHTMLParams.java │ │ │ │ ├── GetSearchResultsParams.java │ │ │ │ ├── HideHighlightParams.java │ │ │ │ ├── HighlightConfigParam.java │ │ │ │ ├── HighlightFrameParams.java │ │ │ │ ├── HighlightNodeParams.java │ │ │ │ ├── HighlightRectParams.java │ │ │ │ ├── MarkUndoableStateParams.java │ │ │ │ ├── MoveToParams.java │ │ │ │ ├── PerformSearchParams.java │ │ │ │ ├── PushNodeByPathToFrontendParams.java │ │ │ │ ├── QuerySelectorAllParams.java │ │ │ │ ├── QuerySelectorParams.java │ │ │ │ ├── RGBAParam.java │ │ │ │ ├── RedoParams.java │ │ │ │ ├── RemoveAttributeParams.java │ │ │ │ ├── RemoveNodeParams.java │ │ │ │ ├── RequestChildNodesParams.java │ │ │ │ ├── RequestNodeParams.java │ │ │ │ ├── ResolveNodeParams.java │ │ │ │ ├── SetAttributeValueParams.java │ │ │ │ ├── SetAttributesAsTextParams.java │ │ │ │ ├── SetInspectModeEnabledParams.java │ │ │ │ ├── SetNodeNameParams.java │ │ │ │ ├── SetNodeValueParams.java │ │ │ │ ├── SetOuterHTMLParams.java │ │ │ │ ├── SetTouchEmulationEnabledParams.java │ │ │ │ └── UndoParams.java │ │ │ │ ├── network │ │ │ │ ├── CanClearBrowserCacheParams.java │ │ │ │ ├── CanClearBrowserCookiesParams.java │ │ │ │ ├── ClearBrowserCacheParams.java │ │ │ │ ├── ClearBrowserCookiesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetResponseBodyParams.java │ │ │ │ ├── HeadersParam.java │ │ │ │ ├── SetCacheDisabledParams.java │ │ │ │ ├── SetExtraHTTPHeadersParams.java │ │ │ │ └── SetUserAgentOverrideParams.java │ │ │ │ ├── page │ │ │ │ ├── AddScriptToEvaluateOnLoadParams.java │ │ │ │ ├── CanOverrideDeviceMetricsParams.java │ │ │ │ ├── DeleteCookieParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetCookiesParams.java │ │ │ │ ├── GetResourceContentParams.java │ │ │ │ ├── GetResourceTreeParams.java │ │ │ │ ├── GetScriptExecutionStatusParams.java │ │ │ │ ├── NavigateParams.java │ │ │ │ ├── ReloadParams.java │ │ │ │ ├── RemoveScriptToEvaluateOnLoadParams.java │ │ │ │ ├── SearchInResourceParams.java │ │ │ │ ├── SearchInResourcesParams.java │ │ │ │ ├── SetDeviceMetricsOverrideParams.java │ │ │ │ ├── SetDocumentContentParams.java │ │ │ │ ├── SetScriptExecutionDisabledParams.java │ │ │ │ └── SetShowPaintRectsParams.java │ │ │ │ └── runtime │ │ │ │ ├── CallArgumentParam.java │ │ │ │ ├── CallFunctionOnParams.java │ │ │ │ ├── EvaluateParams.java │ │ │ │ ├── GetPropertiesParams.java │ │ │ │ ├── ReleaseObjectGroupParams.java │ │ │ │ ├── ReleaseObjectParams.java │ │ │ │ ├── RunParams.java │ │ │ │ └── SetReportExecutionContextCreationParams.java │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ ├── internal │ │ │ ├── websocket │ │ │ │ ├── AbstractWsConnection.java │ │ │ │ ├── HandshakeUtil.java │ │ │ │ ├── Hybi00Handshake.java │ │ │ │ ├── Hybi00WsConnection.java │ │ │ │ ├── Hybi17Handshake.java │ │ │ │ ├── Hybi17WsConnection.java │ │ │ │ ├── ManualLoggingSocketWrapper.java │ │ │ │ └── WsConnection.java │ │ │ └── wip │ │ │ │ ├── EvaluateHack.java │ │ │ │ ├── PermanentRemoteValueMappingImpl.java │ │ │ │ ├── WipBackendImpl.java │ │ │ │ ├── WipBreakpointImpl.java │ │ │ │ ├── WipBreakpointManager.java │ │ │ │ ├── WipCommandCallback.java │ │ │ │ ├── WipCommandProcessor.java │ │ │ │ ├── WipContextBuilder.java │ │ │ │ ├── WipEvaluateContextBase.java │ │ │ │ ├── WipExpressionBuilder.java │ │ │ │ ├── WipFrameManager.java │ │ │ │ ├── WipRelayRunner.java │ │ │ │ ├── WipScriptImpl.java │ │ │ │ ├── WipScriptManager.java │ │ │ │ ├── WipTabImpl.java │ │ │ │ ├── WipValueBuilder.java │ │ │ │ ├── WipValueLoader.java │ │ │ │ └── protocol │ │ │ │ ├── BasicConstants.java │ │ │ │ ├── WipProtocol.java │ │ │ │ ├── input │ │ │ │ ├── WipCommandResponse.java │ │ │ │ ├── WipEvent.java │ │ │ │ ├── WipEventType.java │ │ │ │ ├── WipProtocolParser.java │ │ │ │ └── WipTabList.java │ │ │ │ └── output │ │ │ │ ├── WipParams.java │ │ │ │ ├── WipParamsWithResponse.java │ │ │ │ └── WipRequest.java │ │ │ └── wip │ │ │ └── WipBackendFactory.java │ ├── org.chromium.sdk.wipbackend.wk120709 │ │ ├── .classpath │ │ ├── .project │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── src-dynamic-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ ├── generateWipProtocol_wk120709.launch │ │ │ ├── generate_static_parser_wip_wk120709.launch │ │ │ └── parser │ │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ ├── protocol │ │ │ │ ├── WipDynamicParser.java │ │ │ │ └── WipParserGenerator.java │ │ │ │ └── tools │ │ │ │ └── protocolgenerator │ │ │ │ ├── Generator.java │ │ │ │ ├── JavaFileUpdater.java │ │ │ │ ├── StreamUtil.java │ │ │ │ ├── WipMetamodel.java │ │ │ │ ├── WipMetamodelParser.java │ │ │ │ └── WipProtocolGeneratorMain.java │ │ ├── src-static-impl │ │ │ ├── bridge │ │ │ │ └── org │ │ │ │ │ └── chromium │ │ │ │ │ └── sdk │ │ │ │ │ └── internal │ │ │ │ │ └── wip │ │ │ │ │ └── protocol │ │ │ │ │ └── WipParserAccess.java │ │ │ └── generated │ │ │ │ └── .placeholder │ │ ├── src-wip-generated │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ └── wip │ │ │ │ └── protocol │ │ │ │ ├── common │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointIdTypedef.java │ │ │ │ │ ├── CallFrameIdTypedef.java │ │ │ │ │ └── ScriptIdTypedef.java │ │ │ │ ├── dom │ │ │ │ │ └── NodeIdTypedef.java │ │ │ │ ├── network │ │ │ │ │ ├── FrameIdTypedef.java │ │ │ │ │ ├── LoaderIdTypedef.java │ │ │ │ │ ├── RequestIdTypedef.java │ │ │ │ │ └── TimestampTypedef.java │ │ │ │ ├── page │ │ │ │ │ └── ScriptIdentifierTypedef.java │ │ │ │ └── runtime │ │ │ │ │ ├── ExecutionContextIdTypedef.java │ │ │ │ │ └── RemoteObjectIdTypedef.java │ │ │ │ ├── input │ │ │ │ ├── GeneratedParserInterfaceList.java │ │ │ │ ├── WipGeneratedParserRoot.java │ │ │ │ ├── console │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── ConsoleMessageValue.java │ │ │ │ │ ├── MessageAddedEventData.java │ │ │ │ │ ├── MessageRepeatCountUpdatedEventData.java │ │ │ │ │ ├── MessagesClearedEventData.java │ │ │ │ │ └── StackTraceTypedef.java │ │ │ │ ├── debugger │ │ │ │ │ ├── BreakpointResolvedEventData.java │ │ │ │ │ ├── CallFrameValue.java │ │ │ │ │ ├── CanSetScriptSourceData.java │ │ │ │ │ ├── CausesRecompilationData.java │ │ │ │ │ ├── CompileScriptData.java │ │ │ │ │ ├── EvaluateOnCallFrameData.java │ │ │ │ │ ├── FunctionDetailsValue.java │ │ │ │ │ ├── GetFunctionDetailsData.java │ │ │ │ │ ├── GetScriptSourceData.java │ │ │ │ │ ├── GlobalObjectClearedEventData.java │ │ │ │ │ ├── LocationValue.java │ │ │ │ │ ├── PausedEventData.java │ │ │ │ │ ├── RestartFrameData.java │ │ │ │ │ ├── ResumedEventData.java │ │ │ │ │ ├── RunScriptData.java │ │ │ │ │ ├── ScopeValue.java │ │ │ │ │ ├── ScriptFailedToParseEventData.java │ │ │ │ │ ├── ScriptParsedEventData.java │ │ │ │ │ ├── SearchInContentData.java │ │ │ │ │ ├── SetBreakpointByUrlData.java │ │ │ │ │ ├── SetBreakpointData.java │ │ │ │ │ ├── SetScriptSourceData.java │ │ │ │ │ └── SupportsSeparateScriptCompilationAndExecutionData.java │ │ │ │ ├── dom │ │ │ │ │ ├── AttributeModifiedEventData.java │ │ │ │ │ ├── AttributeRemovedEventData.java │ │ │ │ │ ├── CharacterDataModifiedEventData.java │ │ │ │ │ ├── ChildNodeCountUpdatedEventData.java │ │ │ │ │ ├── ChildNodeInsertedEventData.java │ │ │ │ │ ├── ChildNodeRemovedEventData.java │ │ │ │ │ ├── DocumentUpdatedEventData.java │ │ │ │ │ ├── EventListenerValue.java │ │ │ │ │ ├── GetAttributesData.java │ │ │ │ │ ├── GetDocumentData.java │ │ │ │ │ ├── GetEventListenersForNodeData.java │ │ │ │ │ ├── GetOuterHTMLData.java │ │ │ │ │ ├── GetSearchResultsData.java │ │ │ │ │ ├── InlineStyleInvalidatedEventData.java │ │ │ │ │ ├── MoveToData.java │ │ │ │ │ ├── NodeValue.java │ │ │ │ │ ├── PerformSearchData.java │ │ │ │ │ ├── PushNodeByPathToFrontendData.java │ │ │ │ │ ├── QuerySelectorAllData.java │ │ │ │ │ ├── QuerySelectorData.java │ │ │ │ │ ├── RequestNodeData.java │ │ │ │ │ ├── ResolveNodeData.java │ │ │ │ │ ├── SetChildNodesEventData.java │ │ │ │ │ ├── SetNodeNameData.java │ │ │ │ │ ├── ShadowRootPoppedEventData.java │ │ │ │ │ └── ShadowRootPushedEventData.java │ │ │ │ ├── network │ │ │ │ │ ├── CachedResourceValue.java │ │ │ │ │ ├── CanClearBrowserCacheData.java │ │ │ │ │ ├── CanClearBrowserCookiesData.java │ │ │ │ │ ├── DataReceivedEventData.java │ │ │ │ │ ├── GetResponseBodyData.java │ │ │ │ │ ├── HeadersValue.java │ │ │ │ │ ├── InitiatorValue.java │ │ │ │ │ ├── LoadingFailedEventData.java │ │ │ │ │ ├── LoadingFinishedEventData.java │ │ │ │ │ ├── RequestServedFromCacheEventData.java │ │ │ │ │ ├── RequestServedFromMemoryCacheEventData.java │ │ │ │ │ ├── RequestValue.java │ │ │ │ │ ├── RequestWillBeSentEventData.java │ │ │ │ │ ├── ResourceTimingValue.java │ │ │ │ │ ├── ResponseReceivedEventData.java │ │ │ │ │ ├── ResponseValue.java │ │ │ │ │ ├── WebSocketClosedEventData.java │ │ │ │ │ ├── WebSocketCreatedEventData.java │ │ │ │ │ ├── WebSocketFrameErrorEventData.java │ │ │ │ │ ├── WebSocketFrameReceivedEventData.java │ │ │ │ │ ├── WebSocketFrameSentEventData.java │ │ │ │ │ ├── WebSocketFrameValue.java │ │ │ │ │ ├── WebSocketHandshakeResponseReceivedEventData.java │ │ │ │ │ ├── WebSocketRequestValue.java │ │ │ │ │ ├── WebSocketResponseValue.java │ │ │ │ │ └── WebSocketWillSendHandshakeRequestEventData.java │ │ │ │ ├── page │ │ │ │ │ ├── AddScriptToEvaluateOnLoadData.java │ │ │ │ │ ├── CanOverrideDeviceMetricsData.java │ │ │ │ │ ├── CookieValue.java │ │ │ │ │ ├── DomContentEventFiredEventData.java │ │ │ │ │ ├── FrameDetachedEventData.java │ │ │ │ │ ├── FrameNavigatedEventData.java │ │ │ │ │ ├── FrameResourceTreeValue.java │ │ │ │ │ ├── FrameValue.java │ │ │ │ │ ├── GetCookiesData.java │ │ │ │ │ ├── GetResourceContentData.java │ │ │ │ │ ├── GetResourceTreeData.java │ │ │ │ │ ├── GetScriptExecutionStatusData.java │ │ │ │ │ ├── LoadEventFiredEventData.java │ │ │ │ │ ├── ResourceTypeEnum.java │ │ │ │ │ ├── SearchInResourceData.java │ │ │ │ │ ├── SearchInResourcesData.java │ │ │ │ │ ├── SearchMatchValue.java │ │ │ │ │ └── SearchResultValue.java │ │ │ │ └── runtime │ │ │ │ │ ├── CallFunctionOnData.java │ │ │ │ │ ├── EvaluateData.java │ │ │ │ │ ├── ExecutionContextDescriptionValue.java │ │ │ │ │ ├── GetPropertiesData.java │ │ │ │ │ ├── IsolatedContextCreatedEventData.java │ │ │ │ │ ├── PropertyDescriptorValue.java │ │ │ │ │ └── RemoteObjectValue.java │ │ │ │ └── output │ │ │ │ ├── console │ │ │ │ ├── AddInspectedHeapObjectParams.java │ │ │ │ ├── AddInspectedNodeParams.java │ │ │ │ ├── ClearMessagesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ └── SetMonitoringXHREnabledParams.java │ │ │ │ ├── debugger │ │ │ │ ├── CanSetScriptSourceParams.java │ │ │ │ ├── CausesRecompilationParams.java │ │ │ │ ├── CompileScriptParams.java │ │ │ │ ├── ContinueToLocationParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── EvaluateOnCallFrameParams.java │ │ │ │ ├── GetFunctionDetailsParams.java │ │ │ │ ├── GetScriptSourceParams.java │ │ │ │ ├── LocationParam.java │ │ │ │ ├── PauseParams.java │ │ │ │ ├── RemoveBreakpointParams.java │ │ │ │ ├── RestartFrameParams.java │ │ │ │ ├── ResumeParams.java │ │ │ │ ├── RunScriptParams.java │ │ │ │ ├── SearchInContentParams.java │ │ │ │ ├── SetBreakpointByUrlParams.java │ │ │ │ ├── SetBreakpointParams.java │ │ │ │ ├── SetBreakpointsActiveParams.java │ │ │ │ ├── SetPauseOnExceptionsParams.java │ │ │ │ ├── SetScriptSourceParams.java │ │ │ │ ├── StepIntoParams.java │ │ │ │ ├── StepOutParams.java │ │ │ │ ├── StepOverParams.java │ │ │ │ └── SupportsSeparateScriptCompilationAndExecutionParams.java │ │ │ │ ├── dom │ │ │ │ ├── DiscardSearchResultsParams.java │ │ │ │ ├── GetAttributesParams.java │ │ │ │ ├── GetDocumentParams.java │ │ │ │ ├── GetEventListenersForNodeParams.java │ │ │ │ ├── GetOuterHTMLParams.java │ │ │ │ ├── GetSearchResultsParams.java │ │ │ │ ├── HideHighlightParams.java │ │ │ │ ├── HighlightConfigParam.java │ │ │ │ ├── HighlightFrameParams.java │ │ │ │ ├── HighlightNodeParams.java │ │ │ │ ├── HighlightRectParams.java │ │ │ │ ├── MarkUndoableStateParams.java │ │ │ │ ├── MoveToParams.java │ │ │ │ ├── PerformSearchParams.java │ │ │ │ ├── PushNodeByPathToFrontendParams.java │ │ │ │ ├── QuerySelectorAllParams.java │ │ │ │ ├── QuerySelectorParams.java │ │ │ │ ├── RGBAParam.java │ │ │ │ ├── RedoParams.java │ │ │ │ ├── RemoveAttributeParams.java │ │ │ │ ├── RemoveNodeParams.java │ │ │ │ ├── RequestChildNodesParams.java │ │ │ │ ├── RequestNodeParams.java │ │ │ │ ├── ResolveNodeParams.java │ │ │ │ ├── SetAttributeValueParams.java │ │ │ │ ├── SetAttributesAsTextParams.java │ │ │ │ ├── SetInspectModeEnabledParams.java │ │ │ │ ├── SetNodeNameParams.java │ │ │ │ ├── SetNodeValueParams.java │ │ │ │ ├── SetOuterHTMLParams.java │ │ │ │ ├── SetTouchEmulationEnabledParams.java │ │ │ │ └── UndoParams.java │ │ │ │ ├── network │ │ │ │ ├── CanClearBrowserCacheParams.java │ │ │ │ ├── CanClearBrowserCookiesParams.java │ │ │ │ ├── ClearBrowserCacheParams.java │ │ │ │ ├── ClearBrowserCookiesParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetResponseBodyParams.java │ │ │ │ ├── HeadersParam.java │ │ │ │ ├── SetCacheDisabledParams.java │ │ │ │ ├── SetExtraHTTPHeadersParams.java │ │ │ │ └── SetUserAgentOverrideParams.java │ │ │ │ ├── page │ │ │ │ ├── AddScriptToEvaluateOnLoadParams.java │ │ │ │ ├── CanOverrideDeviceMetricsParams.java │ │ │ │ ├── DeleteCookieParams.java │ │ │ │ ├── DisableParams.java │ │ │ │ ├── EnableParams.java │ │ │ │ ├── GetCookiesParams.java │ │ │ │ ├── GetResourceContentParams.java │ │ │ │ ├── GetResourceTreeParams.java │ │ │ │ ├── GetScriptExecutionStatusParams.java │ │ │ │ ├── NavigateParams.java │ │ │ │ ├── ReloadParams.java │ │ │ │ ├── RemoveScriptToEvaluateOnLoadParams.java │ │ │ │ ├── SearchInResourceParams.java │ │ │ │ ├── SearchInResourcesParams.java │ │ │ │ ├── SetDeviceMetricsOverrideParams.java │ │ │ │ ├── SetDocumentContentParams.java │ │ │ │ ├── SetScriptExecutionDisabledParams.java │ │ │ │ └── SetShowPaintRectsParams.java │ │ │ │ └── runtime │ │ │ │ ├── CallArgumentParam.java │ │ │ │ ├── CallFunctionOnParams.java │ │ │ │ ├── EvaluateParams.java │ │ │ │ ├── GetPropertiesParams.java │ │ │ │ ├── ReleaseObjectGroupParams.java │ │ │ │ ├── ReleaseObjectParams.java │ │ │ │ ├── RunParams.java │ │ │ │ └── SetReportExecutionContextCreationParams.java │ │ └── src │ │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ ├── internal │ │ │ ├── websocket │ │ │ │ ├── AbstractWsConnection.java │ │ │ │ ├── HandshakeUtil.java │ │ │ │ ├── Hybi00Handshake.java │ │ │ │ ├── Hybi00WsConnection.java │ │ │ │ ├── Hybi17Handshake.java │ │ │ │ ├── Hybi17WsConnection.java │ │ │ │ ├── ManualLoggingSocketWrapper.java │ │ │ │ └── WsConnection.java │ │ │ └── wip │ │ │ │ ├── EvaluateHack.java │ │ │ │ ├── PermanentRemoteValueMappingImpl.java │ │ │ │ ├── WipBackendImpl.java │ │ │ │ ├── WipBreakpointImpl.java │ │ │ │ ├── WipBreakpointManager.java │ │ │ │ ├── WipCommandCallback.java │ │ │ │ ├── WipCommandProcessor.java │ │ │ │ ├── WipContextBuilder.java │ │ │ │ ├── WipEvaluateContextBase.java │ │ │ │ ├── WipExpressionBuilder.java │ │ │ │ ├── WipFrameManager.java │ │ │ │ ├── WipRelayRunner.java │ │ │ │ ├── WipScriptImpl.java │ │ │ │ ├── WipScriptManager.java │ │ │ │ ├── WipTabImpl.java │ │ │ │ ├── WipValueBuilder.java │ │ │ │ ├── WipValueLoader.java │ │ │ │ └── protocol │ │ │ │ ├── BasicConstants.java │ │ │ │ ├── WipProtocol.java │ │ │ │ ├── input │ │ │ │ ├── WipCommandResponse.java │ │ │ │ ├── WipEvent.java │ │ │ │ ├── WipEventType.java │ │ │ │ ├── WipProtocolParser.java │ │ │ │ └── WipTabList.java │ │ │ │ └── output │ │ │ │ ├── WipParams.java │ │ │ │ ├── WipParamsWithResponse.java │ │ │ │ └── WipRequest.java │ │ │ └── wip │ │ │ └── WipBackendFactory.java │ └── org.chromium.sdk │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── LICENSE │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build-output │ │ └── lib.build_backend_jar.launch.jar │ │ ├── build.properties │ │ ├── build_backend_jar.launch │ │ ├── build_sdk_jar.launch │ │ ├── javadocs │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-files │ │ │ ├── index-1.html │ │ │ ├── index-10.html │ │ │ ├── index-11.html │ │ │ ├── index-12.html │ │ │ ├── index-13.html │ │ │ ├── index-14.html │ │ │ ├── index-15.html │ │ │ ├── index-16.html │ │ │ ├── index-17.html │ │ │ ├── index-18.html │ │ │ ├── index-19.html │ │ │ ├── index-2.html │ │ │ ├── index-20.html │ │ │ ├── index-21.html │ │ │ ├── index-3.html │ │ │ ├── index-4.html │ │ │ ├── index-5.html │ │ │ ├── index-6.html │ │ │ ├── index-7.html │ │ │ ├── index-8.html │ │ │ └── index-9.html │ │ ├── index.html │ │ ├── org │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ ├── Breakpoint.Target.ScriptId.html │ │ │ │ ├── Breakpoint.Target.ScriptName.html │ │ │ │ ├── Breakpoint.Target.Visitor.html │ │ │ │ ├── Breakpoint.Target.html │ │ │ │ ├── Breakpoint.html │ │ │ │ ├── BreakpointTypeExtension.FunctionSupport.Visitor.html │ │ │ │ ├── BreakpointTypeExtension.FunctionSupport.html │ │ │ │ ├── BreakpointTypeExtension.ScriptRegExpSupport.Visitor.html │ │ │ │ ├── BreakpointTypeExtension.ScriptRegExpSupport.html │ │ │ │ ├── BreakpointTypeExtension.html │ │ │ │ ├── Browser.TabConnector.html │ │ │ │ ├── Browser.TabFetcher.html │ │ │ │ ├── Browser.html │ │ │ │ ├── BrowserFactory.html │ │ │ │ ├── BrowserTab.html │ │ │ │ ├── CallFrame.html │ │ │ │ ├── CallbackSemaphore.html │ │ │ │ ├── ConnectionLogger.ConnectionCloser.html │ │ │ │ ├── ConnectionLogger.Factory.html │ │ │ │ ├── ConnectionLogger.StreamListener.html │ │ │ │ ├── ConnectionLogger.html │ │ │ │ ├── DebugContext.ContinueCallback.html │ │ │ │ ├── DebugContext.State.html │ │ │ │ ├── DebugContext.StepAction.html │ │ │ │ ├── DebugContext.html │ │ │ │ ├── DebugEventListener.VmStatusListener.html │ │ │ │ ├── DebugEventListener.html │ │ │ │ ├── ExceptionData.html │ │ │ │ ├── FunctionScopeExtension.html │ │ │ │ ├── IgnoreCountBreakpointExtension.html │ │ │ │ ├── InvalidContextException.html │ │ │ │ ├── JavascriptVm.BreakpointCallback.html │ │ │ │ ├── JavascriptVm.ExceptionCatchMode.html │ │ │ │ ├── JavascriptVm.ListBreakpointsCallback.html │ │ │ │ ├── JavascriptVm.ScriptsCallback.html │ │ │ │ ├── JavascriptVm.SuspendCallback.html │ │ │ │ ├── JavascriptVm.html │ │ │ │ ├── JsArray.html │ │ │ │ ├── JsEvaluateContext.EvaluateCallback.html │ │ │ │ ├── JsEvaluateContext.html │ │ │ │ ├── JsFunction.html │ │ │ │ ├── JsObject.html │ │ │ │ ├── JsObjectProperty.html │ │ │ │ ├── JsScope.Type.html │ │ │ │ ├── JsScope.WithScope.html │ │ │ │ ├── JsScope.html │ │ │ │ ├── JsValue.ReloadBiggerCallback.html │ │ │ │ ├── JsValue.Type.html │ │ │ │ ├── JsValue.html │ │ │ │ ├── JsVariable.SetValueCallback.html │ │ │ │ ├── JsVariable.html │ │ │ │ ├── RelayOk.html │ │ │ │ ├── RemoteValueMapping.html │ │ │ │ ├── RestartFrameExtension.html │ │ │ │ ├── Script.Type.html │ │ │ │ ├── Script.html │ │ │ │ ├── StandaloneVm.html │ │ │ │ ├── SyncCallback.html │ │ │ │ ├── TabDebugEventListener.html │ │ │ │ ├── TextStreamPosition.html │ │ │ │ ├── UnsupportedVersionException.html │ │ │ │ ├── UpdatableScript.ChangeDescription.html │ │ │ │ ├── UpdatableScript.ChangeStatus.html │ │ │ │ ├── UpdatableScript.FunctionNode.html │ │ │ │ ├── UpdatableScript.FunctionPositions.html │ │ │ │ ├── UpdatableScript.NewFunctionNode.html │ │ │ │ ├── UpdatableScript.OldFunctionNode.html │ │ │ │ ├── UpdatableScript.TextualDiff.html │ │ │ │ ├── UpdatableScript.UpdateCallback.html │ │ │ │ ├── UpdatableScript.html │ │ │ │ ├── Version.html │ │ │ │ ├── class-use │ │ │ │ ├── Breakpoint.Target.ScriptId.html │ │ │ │ ├── Breakpoint.Target.ScriptName.html │ │ │ │ ├── Breakpoint.Target.Visitor.html │ │ │ │ ├── Breakpoint.Target.html │ │ │ │ ├── Breakpoint.html │ │ │ │ ├── BreakpointTypeExtension.FunctionSupport.Visitor.html │ │ │ │ ├── BreakpointTypeExtension.FunctionSupport.html │ │ │ │ ├── BreakpointTypeExtension.ScriptRegExpSupport.Visitor.html │ │ │ │ ├── BreakpointTypeExtension.ScriptRegExpSupport.html │ │ │ │ ├── BreakpointTypeExtension.html │ │ │ │ ├── Browser.TabConnector.html │ │ │ │ ├── Browser.TabFetcher.html │ │ │ │ ├── Browser.html │ │ │ │ ├── BrowserFactory.html │ │ │ │ ├── BrowserTab.html │ │ │ │ ├── CallFrame.html │ │ │ │ ├── CallbackSemaphore.html │ │ │ │ ├── ConnectionLogger.ConnectionCloser.html │ │ │ │ ├── ConnectionLogger.Factory.html │ │ │ │ ├── ConnectionLogger.StreamListener.html │ │ │ │ ├── ConnectionLogger.html │ │ │ │ ├── DebugContext.ContinueCallback.html │ │ │ │ ├── DebugContext.State.html │ │ │ │ ├── DebugContext.StepAction.html │ │ │ │ ├── DebugContext.html │ │ │ │ ├── DebugEventListener.VmStatusListener.html │ │ │ │ ├── DebugEventListener.html │ │ │ │ ├── ExceptionData.html │ │ │ │ ├── FunctionScopeExtension.html │ │ │ │ ├── IgnoreCountBreakpointExtension.html │ │ │ │ ├── InvalidContextException.html │ │ │ │ ├── JavascriptVm.BreakpointCallback.html │ │ │ │ ├── JavascriptVm.ExceptionCatchMode.html │ │ │ │ ├── JavascriptVm.ListBreakpointsCallback.html │ │ │ │ ├── JavascriptVm.ScriptsCallback.html │ │ │ │ ├── JavascriptVm.SuspendCallback.html │ │ │ │ ├── JavascriptVm.html │ │ │ │ ├── JsArray.html │ │ │ │ ├── JsEvaluateContext.EvaluateCallback.html │ │ │ │ ├── JsEvaluateContext.html │ │ │ │ ├── JsFunction.html │ │ │ │ ├── JsObject.html │ │ │ │ ├── JsObjectProperty.html │ │ │ │ ├── JsScope.Type.html │ │ │ │ ├── JsScope.WithScope.html │ │ │ │ ├── JsScope.html │ │ │ │ ├── JsValue.ReloadBiggerCallback.html │ │ │ │ ├── JsValue.Type.html │ │ │ │ ├── JsValue.html │ │ │ │ ├── JsVariable.SetValueCallback.html │ │ │ │ ├── JsVariable.html │ │ │ │ ├── RelayOk.html │ │ │ │ ├── RemoteValueMapping.html │ │ │ │ ├── RestartFrameExtension.html │ │ │ │ ├── Script.Type.html │ │ │ │ ├── Script.html │ │ │ │ ├── StandaloneVm.html │ │ │ │ ├── SyncCallback.html │ │ │ │ ├── TabDebugEventListener.html │ │ │ │ ├── TextStreamPosition.html │ │ │ │ ├── UnsupportedVersionException.html │ │ │ │ ├── UpdatableScript.ChangeDescription.html │ │ │ │ ├── UpdatableScript.ChangeStatus.html │ │ │ │ ├── UpdatableScript.FunctionNode.html │ │ │ │ ├── UpdatableScript.FunctionPositions.html │ │ │ │ ├── UpdatableScript.NewFunctionNode.html │ │ │ │ ├── UpdatableScript.OldFunctionNode.html │ │ │ │ ├── UpdatableScript.TextualDiff.html │ │ │ │ ├── UpdatableScript.UpdateCallback.html │ │ │ │ ├── UpdatableScript.html │ │ │ │ └── Version.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ ├── util │ │ │ │ ├── AsyncFuture.Callback.html │ │ │ │ ├── AsyncFuture.Operation.html │ │ │ │ ├── AsyncFuture.SyncOperation.html │ │ │ │ ├── AsyncFuture.html │ │ │ │ ├── AsyncFutureMerger.html │ │ │ │ ├── AsyncFutureRef.html │ │ │ │ ├── BasicUtil.html │ │ │ │ ├── ByteToCharConverter.html │ │ │ │ ├── Destructable.html │ │ │ │ ├── DestructingGuard.html │ │ │ │ ├── GenericCallback.html │ │ │ │ ├── LazyConstructable.Factory.html │ │ │ │ ├── LazyConstructable.html │ │ │ │ ├── MethodIsBlockingException.html │ │ │ │ ├── RelaySyncCallback.Guard.html │ │ │ │ ├── RelaySyncCallback.html │ │ │ │ ├── SignalRelay.AlreadySignalledException.html │ │ │ │ ├── SignalRelay.Callback.html │ │ │ │ ├── SignalRelay.SignalConverter.html │ │ │ │ ├── SignalRelay.html │ │ │ │ ├── class-use │ │ │ │ │ ├── AsyncFuture.Callback.html │ │ │ │ │ ├── AsyncFuture.Operation.html │ │ │ │ │ ├── AsyncFuture.SyncOperation.html │ │ │ │ │ ├── AsyncFuture.html │ │ │ │ │ ├── AsyncFutureMerger.html │ │ │ │ │ ├── AsyncFutureRef.html │ │ │ │ │ ├── BasicUtil.html │ │ │ │ │ ├── ByteToCharConverter.html │ │ │ │ │ ├── Destructable.html │ │ │ │ │ ├── DestructingGuard.html │ │ │ │ │ ├── GenericCallback.html │ │ │ │ │ ├── LazyConstructable.Factory.html │ │ │ │ │ ├── LazyConstructable.html │ │ │ │ │ ├── MethodIsBlockingException.html │ │ │ │ │ ├── RelaySyncCallback.Guard.html │ │ │ │ │ ├── RelaySyncCallback.html │ │ │ │ │ ├── SignalRelay.AlreadySignalledException.html │ │ │ │ │ ├── SignalRelay.Callback.html │ │ │ │ │ ├── SignalRelay.SignalConverter.html │ │ │ │ │ └── SignalRelay.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ │ └── wip │ │ │ │ ├── EvaluateToMappingExtension.html │ │ │ │ ├── PermanentRemoteValueMapping.html │ │ │ │ ├── WipBackend.Factory.html │ │ │ │ ├── WipBackend.html │ │ │ │ ├── WipBrowser.WipTabConnector.html │ │ │ │ ├── WipBrowser.html │ │ │ │ ├── WipBrowserFactory.LoggerFactory.html │ │ │ │ ├── WipBrowserFactory.html │ │ │ │ ├── WipBrowserTab.html │ │ │ │ ├── WipJavascriptVm.html │ │ │ │ ├── class-use │ │ │ │ ├── EvaluateToMappingExtension.html │ │ │ │ ├── PermanentRemoteValueMapping.html │ │ │ │ ├── WipBackend.Factory.html │ │ │ │ ├── WipBackend.html │ │ │ │ ├── WipBrowser.WipTabConnector.html │ │ │ │ ├── WipBrowser.html │ │ │ │ ├── WipBrowserFactory.LoggerFactory.html │ │ │ │ ├── WipBrowserFactory.html │ │ │ │ ├── WipBrowserTab.html │ │ │ │ └── WipJavascriptVm.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── resources │ │ │ └── inherit.gif │ │ ├── serialized-form.html │ │ └── stylesheet.css │ │ ├── lib │ │ └── json_simple │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.Chromium │ │ │ ├── README.txt │ │ │ └── json_simple-1.1.jar │ │ ├── pom.xml │ │ ├── src-dynamic-impl │ │ ├── bridge │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ ├── liveeditprotocol │ │ │ │ └── LiveEditProtocolParserAccess.java │ │ │ │ ├── shellprotocol │ │ │ │ └── tools │ │ │ │ │ └── protocol │ │ │ │ │ └── input │ │ │ │ │ └── ToolsProtocolParserAccess.java │ │ │ │ └── v8native │ │ │ │ └── protocol │ │ │ │ └── input │ │ │ │ └── V8ProtocolParserAccess.java │ │ ├── generate_all_static_parsers.launch │ │ ├── generate_static_parser_liveedit.launch │ │ ├── generate_static_parser_v8.launch │ │ └── parser │ │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ └── internal │ │ │ ├── AllProtocolParsersGenerator.java │ │ │ ├── liveeditprotocol │ │ │ ├── LiveEditDynamicParser.java │ │ │ └── LiveEditParserGenerator.java │ │ │ ├── protocolparser │ │ │ └── dynamicimpl │ │ │ │ ├── BaseHandlersLibrary.java │ │ │ │ ├── DynamicParserImpl.java │ │ │ │ ├── EnumParser.java │ │ │ │ ├── FieldCondition.java │ │ │ │ ├── FieldConditionLogic.java │ │ │ │ ├── FieldLoadedFinisher.java │ │ │ │ ├── FieldLoader.java │ │ │ │ ├── FieldTypeInfo.java │ │ │ │ ├── GeneratedCodeMap.java │ │ │ │ ├── JavaCodeGenerator.java │ │ │ │ ├── JsonInvocationHandler.java │ │ │ │ ├── JsonTypeParser.java │ │ │ │ ├── MethodHandler.java │ │ │ │ ├── ObjectData.java │ │ │ │ ├── ParserGeneratorBase.java │ │ │ │ ├── ParserRootImpl.java │ │ │ │ ├── QuickParser.java │ │ │ │ ├── RefToType.java │ │ │ │ ├── SlowParser.java │ │ │ │ ├── SubtypeCaster.java │ │ │ │ └── TypeHandler.java │ │ │ ├── shellprotocol │ │ │ └── tools │ │ │ │ └── protocol │ │ │ │ └── input │ │ │ │ ├── DynamicToolsProtocolParser.java │ │ │ │ └── ToolsProtocolParserGenerator.java │ │ │ └── v8native │ │ │ └── protocol │ │ │ └── input │ │ │ ├── V8DynamicParser.java │ │ │ └── V8ParserGenerator.java │ │ ├── src-static-impl │ │ ├── bridge │ │ │ └── org │ │ │ │ └── chromium │ │ │ │ └── sdk │ │ │ │ └── internal │ │ │ │ ├── liveeditprotocol │ │ │ │ └── LiveEditProtocolParserAccess.java │ │ │ │ ├── shellprotocol │ │ │ │ └── tools │ │ │ │ │ └── protocol │ │ │ │ │ └── input │ │ │ │ │ └── ToolsProtocolParserAccess.java │ │ │ │ └── v8native │ │ │ │ └── protocol │ │ │ │ └── input │ │ │ │ └── V8ProtocolParserAccess.java │ │ └── generated │ │ │ ├── .placeholder │ │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ └── internal │ │ │ ├── liveeditprotocol │ │ │ └── GeneratedLiveEditProtocolParser.java │ │ │ ├── shellprotocol │ │ │ └── tools │ │ │ │ └── protocol │ │ │ │ └── input │ │ │ │ └── GeneratedToolsProtocolParser.java │ │ │ └── v8native │ │ │ └── protocol │ │ │ └── input │ │ │ └── GeneratedV8ProtocolParser.java │ │ ├── src-wip │ │ └── org │ │ │ └── chromium │ │ │ └── sdk │ │ │ ├── internal │ │ │ └── wip │ │ │ │ ├── WipBackendBase.java │ │ │ │ ├── WipBrowserFactoryImpl.java │ │ │ │ └── WipBrowserImpl.java │ │ │ └── wip │ │ │ ├── EvaluateToMappingExtension.java │ │ │ ├── PermanentRemoteValueMapping.java │ │ │ ├── WipBackend.java │ │ │ ├── WipBrowser.java │ │ │ ├── WipBrowserFactory.java │ │ │ ├── WipBrowserTab.java │ │ │ ├── WipJavascriptVm.java │ │ │ └── package-info.java │ │ └── src │ │ └── org │ │ └── chromium │ │ └── sdk │ │ ├── Breakpoint.java │ │ ├── BreakpointTypeExtension.java │ │ ├── Browser.java │ │ ├── BrowserFactory.java │ │ ├── BrowserTab.java │ │ ├── CallFrame.java │ │ ├── CallbackSemaphore.java │ │ ├── ConnectionLogger.java │ │ ├── DebugContext.java │ │ ├── DebugEventListener.java │ │ ├── ExceptionData.java │ │ ├── FunctionScopeExtension.java │ │ ├── IgnoreCountBreakpointExtension.java │ │ ├── InvalidContextException.java │ │ ├── JavascriptVm.java │ │ ├── JsArray.java │ │ ├── JsEvaluateContext.java │ │ ├── JsFunction.java │ │ ├── JsObject.java │ │ ├── JsObjectProperty.java │ │ ├── JsScope.java │ │ ├── JsValue.java │ │ ├── JsVariable.java │ │ ├── RelayOk.java │ │ ├── RemoteValueMapping.java │ │ ├── RestartFrameExtension.java │ │ ├── Script.java │ │ ├── StandaloneVm.java │ │ ├── SyncCallback.java │ │ ├── TabDebugEventListener.java │ │ ├── TextStreamPosition.java │ │ ├── UnsupportedVersionException.java │ │ ├── UpdatableScript.java │ │ ├── Version.java │ │ ├── internal │ │ ├── BaseCommandProcessor.java │ │ ├── BrowserFactoryImpl.java │ │ ├── CloseableMap.java │ │ ├── JsEvaluateContextBase.java │ │ ├── JsonException.java │ │ ├── JsonUtil.java │ │ ├── ScriptBase.java │ │ ├── ScriptRegExpBreakpointTarget.java │ │ ├── liveeditprotocol │ │ │ ├── LiveEditProtocolParser.java │ │ │ └── LiveEditResult.java │ │ ├── protocolparser │ │ │ ├── AnyObjectBased.java │ │ │ ├── EnumValueCondition.java │ │ │ ├── FieldLoadStrategy.java │ │ │ ├── JsonField.java │ │ │ ├── JsonNullable.java │ │ │ ├── JsonObjectBased.java │ │ │ ├── JsonOptionalField.java │ │ │ ├── JsonOverrideField.java │ │ │ ├── JsonParseMethod.java │ │ │ ├── JsonParserRoot.java │ │ │ ├── JsonProtocolModelParseException.java │ │ │ ├── JsonProtocolParseException.java │ │ │ ├── JsonSubtype.java │ │ │ ├── JsonSubtypeCasting.java │ │ │ ├── JsonSubtypeCondition.java │ │ │ ├── JsonSubtypeConditionBoolValue.java │ │ │ ├── JsonSubtypeConditionCustom.java │ │ │ ├── JsonType.java │ │ │ ├── JsonValueCondition.java │ │ │ ├── dynamicimpl │ │ │ │ └── .placeholder │ │ │ └── implutil │ │ │ │ ├── CommonImpl.java │ │ │ │ └── GeneratedCodeLibrary.java │ │ ├── shellprotocol │ │ │ ├── BrowserImpl.java │ │ │ ├── BrowserTabImpl.java │ │ │ ├── ConnectionFactory.java │ │ │ ├── SessionManager.java │ │ │ ├── SocketConnectionFactory.java │ │ │ └── tools │ │ │ │ ├── ToolHandler.java │ │ │ │ ├── ToolName.java │ │ │ │ ├── ToolOutput.java │ │ │ │ ├── devtools │ │ │ │ └── DevToolsServiceHandler.java │ │ │ │ ├── protocol │ │ │ │ ├── DevToolsServiceCommand.java │ │ │ │ ├── input │ │ │ │ │ ├── Result.java │ │ │ │ │ ├── ToolsMessage.java │ │ │ │ │ └── ToolsProtocolParser.java │ │ │ │ └── output │ │ │ │ │ └── MessageFactory.java │ │ │ │ └── v8debugger │ │ │ │ ├── ChromeDevToolSessionManager.java │ │ │ │ └── DebuggerToolCommand.java │ │ ├── standalonev8 │ │ │ └── StandaloneVmImpl.java │ │ ├── transport │ │ │ ├── AbstractSocketWrapper.java │ │ │ ├── Connection.java │ │ │ ├── Handshaker.java │ │ │ ├── LineReader.java │ │ │ ├── Message.java │ │ │ ├── SocketConnection.java │ │ │ └── SocketWrapper.java │ │ └── v8native │ │ │ ├── BreakpointImpl.java │ │ │ ├── BreakpointManager.java │ │ │ ├── CallFrameImpl.java │ │ │ ├── ContextBuilder.java │ │ │ ├── DebugSession.java │ │ │ ├── DebugSessionManager.java │ │ │ ├── DebuggerCommand.java │ │ │ ├── DefaultResponseHandler.java │ │ │ ├── InternalContext.java │ │ │ ├── JavascriptVmImpl.java │ │ │ ├── JsEvaluateContextImpl.java │ │ │ ├── ScriptImpl.java │ │ │ ├── ScriptManager.java │ │ │ ├── V8BlockingCallback.java │ │ │ ├── V8CommandCallbackBase.java │ │ │ ├── V8CommandOutput.java │ │ │ ├── V8CommandProcessor.java │ │ │ ├── V8CommandSender.java │ │ │ ├── V8ContextFilter.java │ │ │ ├── V8Helper.java │ │ │ ├── V8VersionFeatures.java │ │ │ ├── processor │ │ │ ├── AfterCompileProcessor.java │ │ │ ├── BacktraceProcessor.java │ │ │ ├── BreakpointProcessor.java │ │ │ ├── ScriptCollectedProcessor.java │ │ │ └── V8EventProcessor.java │ │ │ ├── protocol │ │ │ ├── V8Protocol.java │ │ │ ├── V8ProtocolUtil.java │ │ │ ├── input │ │ │ │ ├── AfterCompileBody.java │ │ │ │ ├── BacktraceCommandBody.java │ │ │ │ ├── BreakEventBody.java │ │ │ │ ├── BreakpointBody.java │ │ │ │ ├── ChangeLiveBody.java │ │ │ │ ├── CommandResponse.java │ │ │ │ ├── CommandResponseBody.java │ │ │ │ ├── EventNotification.java │ │ │ │ ├── EventNotificationBody.java │ │ │ │ ├── FailedCommandResponse.java │ │ │ │ ├── FlagsBody.java │ │ │ │ ├── FrameObject.java │ │ │ │ ├── IncomingMessage.java │ │ │ │ ├── ListBreakpointsBody.java │ │ │ │ ├── MessageType.java │ │ │ │ ├── RestartFrameBody.java │ │ │ │ ├── ScopeBody.java │ │ │ │ ├── ScopeRef.java │ │ │ │ ├── ScriptCollectedBody.java │ │ │ │ ├── SuccessCommandResponse.java │ │ │ │ ├── V8NativeProtocolParser.java │ │ │ │ ├── V8NativeProtocolParserTestAccess.java │ │ │ │ ├── VersionBody.java │ │ │ │ └── data │ │ │ │ │ ├── BreakpointInfo.java │ │ │ │ │ ├── ContextData.java │ │ │ │ │ ├── ContextHandle.java │ │ │ │ │ ├── FunctionValueHandle.java │ │ │ │ │ ├── ObjectValueHandle.java │ │ │ │ │ ├── PropertyObject.java │ │ │ │ │ ├── PropertyWithRef.java │ │ │ │ │ ├── PropertyWithValue.java │ │ │ │ │ ├── RefWithDisplayData.java │ │ │ │ │ ├── ScriptHandle.java │ │ │ │ │ ├── ScriptWithId.java │ │ │ │ │ ├── SomeHandle.java │ │ │ │ │ ├── SomeRef.java │ │ │ │ │ ├── SomeSerialized.java │ │ │ │ │ └── ValueHandle.java │ │ │ └── output │ │ │ │ ├── BacktraceMessage.java │ │ │ │ ├── ChangeBreakpointMessage.java │ │ │ │ ├── ChangeLiveMessage.java │ │ │ │ ├── ClearBreakpointMessage.java │ │ │ │ ├── ContextlessDebuggerMessage.java │ │ │ │ ├── ContinueMessage.java │ │ │ │ ├── DebuggerMessage.java │ │ │ │ ├── DebuggerMessageFactory.java │ │ │ │ ├── EvaluateMessage.java │ │ │ │ ├── FlagsMessage.java │ │ │ │ ├── FrameMessage.java │ │ │ │ ├── ListBreakpointsMessage.java │ │ │ │ ├── LookupMessage.java │ │ │ │ ├── RestartFrameMessage.java │ │ │ │ ├── ScopeMessage.java │ │ │ │ ├── ScriptsMessage.java │ │ │ │ ├── SeqGenerator.java │ │ │ │ ├── SetBreakpointMessage.java │ │ │ │ ├── SourceMessage.java │ │ │ │ ├── SuspendMessage.java │ │ │ │ ├── V8MessageType.java │ │ │ │ └── VersionMessage.java │ │ │ └── value │ │ │ ├── DataWithRef.java │ │ │ ├── ExceptionDataImpl.java │ │ │ ├── HandleManager.java │ │ │ ├── JsArrayImpl.java │ │ │ ├── JsDataTypeUtil.java │ │ │ ├── JsFunctionImpl.java │ │ │ ├── JsObjectBase.java │ │ │ ├── JsScopeImpl.java │ │ │ ├── JsValueBase.java │ │ │ ├── JsVariableImpl.java │ │ │ ├── LoadableString.java │ │ │ ├── PropertyReference.java │ │ │ ├── PropertyType.java │ │ │ ├── SubpropertiesMirror.java │ │ │ ├── ValueLoadException.java │ │ │ ├── ValueLoader.java │ │ │ ├── ValueLoaderImpl.java │ │ │ └── ValueMirror.java │ │ ├── package-info.java │ │ └── util │ │ ├── AsyncFuture.java │ │ ├── AsyncFutureMerger.java │ │ ├── AsyncFutureRef.java │ │ ├── BasicUtil.java │ │ ├── ByteToCharConverter.java │ │ ├── Destructable.java │ │ ├── DestructingGuard.java │ │ ├── GenericCallback.java │ │ ├── LazyConstructable.java │ │ ├── MethodIsBlockingException.java │ │ ├── RelaySyncCallback.java │ │ └── SignalRelay.java ├── pom.xml ├── used-modules.PNG └── utils │ ├── org.chromium.sdk.tests.system.runner │ ├── .classpath │ ├── .project │ └── src │ │ └── org │ │ └── chromium │ │ └── sdk │ │ └── tests │ │ └── system │ │ └── runner │ │ ├── BuildLoader.java │ │ ├── Custom.java │ │ ├── DomUtils.java │ │ ├── GoogleStorage.java │ │ ├── ICustom.java │ │ ├── ProcessRunner.java │ │ └── Runner.java │ └── org.chromium.sdk.tests.system │ ├── .classpath │ ├── .project │ ├── build.xml │ ├── build_system_tests.launch │ ├── src │ └── org │ │ └── chromium │ │ └── sdk │ │ └── tests │ │ └── system │ │ ├── EventVisitor.java │ │ ├── Main.java │ │ ├── SmokeException.java │ │ └── StateManager.java │ └── testwebsite │ ├── main.html │ └── script1.js ├── features ├── org.nodeclipse.bundle.coffee.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.bundle.express.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.enide.editors.gradle.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.enide.editors.jade.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.enide.gradle.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.enide.maven.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.enide.nodejs.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.enide.studio.included.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.jjs.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.mongodb.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.phantomjs.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.nodeclipse.pluginslist.feature │ ├── build.properties │ ├── feature.xml │ └── pom.xml └── org.nodeclipse.vertx.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── markdown ├── README.md └── pom.xml ├── nodeclipse-logo-rough.png ├── org.nodeclipse.android ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── iconbank │ ├── android.png │ ├── run.png │ └── run_half_size.png ├── icons │ └── android_bottom_right_corner_run_half_size.png ├── plugin.xml └── pom.xml ├── org.nodeclipse.bundle.coffee ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── bin │ └── org │ │ └── nodeclipse │ │ └── bundle │ │ └── coffee │ │ ├── Activator.class │ │ └── BundlePath.class ├── build.properties ├── coffee-script │ ├── .npmignore │ ├── CNAME │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README │ ├── Rakefile │ ├── bin │ │ ├── cake │ │ └── coffee │ ├── lib │ │ └── coffee-script │ │ │ ├── browser.js │ │ │ ├── cake.js │ │ │ ├── coffee-script.js │ │ │ ├── command.js │ │ │ ├── grammar.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── lexer.js │ │ │ ├── nodes.js │ │ │ ├── optparse.js │ │ │ ├── parser.js │ │ │ ├── repl.js │ │ │ ├── rewriter.js │ │ │ ├── scope.js │ │ │ └── sourcemap.js │ └── package.json ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── bundle │ └── coffee │ ├── Activator.java │ └── BundlePath.java ├── org.nodeclipse.bundle.express ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── bin │ └── org │ │ └── nodeclipse │ │ └── bundle │ │ └── express │ │ ├── Activator.class │ │ └── BundlePath.class ├── build.properties ├── express │ ├── .npmignore │ ├── .travis.yml │ ├── History.md │ ├── LICENSE │ ├── Makefile │ ├── Readme.md │ ├── bin │ │ └── express │ ├── index.js │ ├── lib │ │ ├── application.js │ │ ├── express.js │ │ ├── middleware.js │ │ ├── request.js │ │ ├── response.js │ │ ├── router │ │ │ ├── index.js │ │ │ └── route.js │ │ ├── utils.js │ │ └── view.js │ ├── node_modules │ │ ├── buffer-crc32 │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ └── crc.test.js │ │ ├── commander │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── commander.js │ │ │ └── package.json │ │ ├── connect │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── cache.js │ │ │ │ ├── connect.js │ │ │ │ ├── index.js │ │ │ │ ├── middleware │ │ │ │ │ ├── basicAuth.js │ │ │ │ │ ├── bodyParser.js │ │ │ │ │ ├── compress.js │ │ │ │ │ ├── cookieParser.js │ │ │ │ │ ├── cookieSession.js │ │ │ │ │ ├── csrf.js │ │ │ │ │ ├── directory.js │ │ │ │ │ ├── errorHandler.js │ │ │ │ │ ├── favicon.js │ │ │ │ │ ├── json.js │ │ │ │ │ ├── limit.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── methodOverride.js │ │ │ │ │ ├── multipart.js │ │ │ │ │ ├── query.js │ │ │ │ │ ├── responseTime.js │ │ │ │ │ ├── session.js │ │ │ │ │ ├── session │ │ │ │ │ │ ├── cookie.js │ │ │ │ │ │ ├── memory.js │ │ │ │ │ │ ├── session.js │ │ │ │ │ │ └── store.js │ │ │ │ │ ├── static.js │ │ │ │ │ ├── staticCache.js │ │ │ │ │ ├── timeout.js │ │ │ │ │ ├── urlencoded.js │ │ │ │ │ └── vhost.js │ │ │ │ ├── patch.js │ │ │ │ ├── proto.js │ │ │ │ ├── public │ │ │ │ │ ├── directory.html │ │ │ │ │ ├── error.html │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── page.png │ │ │ │ │ │ ├── page_add.png │ │ │ │ │ │ ├── page_attach.png │ │ │ │ │ │ ├── page_code.png │ │ │ │ │ │ ├── page_copy.png │ │ │ │ │ │ ├── page_delete.png │ │ │ │ │ │ ├── page_edit.png │ │ │ │ │ │ ├── page_error.png │ │ │ │ │ │ ├── page_excel.png │ │ │ │ │ │ ├── page_find.png │ │ │ │ │ │ ├── page_gear.png │ │ │ │ │ │ ├── page_go.png │ │ │ │ │ │ ├── page_green.png │ │ │ │ │ │ ├── page_key.png │ │ │ │ │ │ ├── page_lightning.png │ │ │ │ │ │ ├── page_link.png │ │ │ │ │ │ ├── page_paintbrush.png │ │ │ │ │ │ ├── page_paste.png │ │ │ │ │ │ ├── page_red.png │ │ │ │ │ │ ├── page_refresh.png │ │ │ │ │ │ ├── page_save.png │ │ │ │ │ │ ├── page_white.png │ │ │ │ │ │ ├── page_white_acrobat.png │ │ │ │ │ │ ├── page_white_actionscript.png │ │ │ │ │ │ ├── page_white_add.png │ │ │ │ │ │ ├── page_white_c.png │ │ │ │ │ │ ├── page_white_camera.png │ │ │ │ │ │ ├── page_white_cd.png │ │ │ │ │ │ ├── page_white_code.png │ │ │ │ │ │ ├── page_white_code_red.png │ │ │ │ │ │ ├── page_white_coldfusion.png │ │ │ │ │ │ ├── page_white_compressed.png │ │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ │ ├── page_white_cplusplus.png │ │ │ │ │ │ ├── page_white_csharp.png │ │ │ │ │ │ ├── page_white_cup.png │ │ │ │ │ │ ├── page_white_database.png │ │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ │ ├── page_white_dvd.png │ │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ │ ├── page_white_error.png │ │ │ │ │ │ ├── page_white_excel.png │ │ │ │ │ │ ├── page_white_find.png │ │ │ │ │ │ ├── page_white_flash.png │ │ │ │ │ │ ├── page_white_freehand.png │ │ │ │ │ │ ├── page_white_gear.png │ │ │ │ │ │ ├── page_white_get.png │ │ │ │ │ │ ├── page_white_go.png │ │ │ │ │ │ ├── page_white_h.png │ │ │ │ │ │ ├── page_white_horizontal.png │ │ │ │ │ │ ├── page_white_key.png │ │ │ │ │ │ ├── page_white_lightning.png │ │ │ │ │ │ ├── page_white_link.png │ │ │ │ │ │ ├── page_white_magnify.png │ │ │ │ │ │ ├── page_white_medal.png │ │ │ │ │ │ ├── page_white_office.png │ │ │ │ │ │ ├── page_white_paint.png │ │ │ │ │ │ ├── page_white_paintbrush.png │ │ │ │ │ │ ├── page_white_paste.png │ │ │ │ │ │ ├── page_white_php.png │ │ │ │ │ │ ├── page_white_picture.png │ │ │ │ │ │ ├── page_white_powerpoint.png │ │ │ │ │ │ ├── page_white_put.png │ │ │ │ │ │ ├── page_white_ruby.png │ │ │ │ │ │ ├── page_white_stack.png │ │ │ │ │ │ ├── page_white_star.png │ │ │ │ │ │ ├── page_white_swoosh.png │ │ │ │ │ │ ├── page_white_text.png │ │ │ │ │ │ ├── page_white_text_width.png │ │ │ │ │ │ ├── page_white_tux.png │ │ │ │ │ │ ├── page_white_vector.png │ │ │ │ │ │ ├── page_white_visualstudio.png │ │ │ │ │ │ ├── page_white_width.png │ │ │ │ │ │ ├── page_white_word.png │ │ │ │ │ │ ├── page_white_world.png │ │ │ │ │ │ ├── page_white_wrench.png │ │ │ │ │ │ ├── page_white_zip.png │ │ │ │ │ │ ├── page_word.png │ │ │ │ │ │ └── page_world.png │ │ │ │ │ └── style.css │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ ├── bytes │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── cookie │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── mocha.opts │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ └── serialize.js │ │ │ │ ├── formidable │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── benchmark │ │ │ │ │ │ └── bench-multipart-parser.js │ │ │ │ │ ├── example │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ ├── post.js │ │ │ │ │ │ └── upload.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ ├── incoming_form.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── json_parser.js │ │ │ │ │ │ ├── multipart_parser.js │ │ │ │ │ │ ├── octet_parser.js │ │ │ │ │ │ └── querystring_parser.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── fixture │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── beta-sticker-1.png │ │ │ │ │ │ │ │ ├── binaryfile.tar.gz │ │ │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ │ │ ├── funkyfilename.txt │ │ │ │ │ │ │ │ ├── menu_separator.png │ │ │ │ │ │ │ │ └── plain.txt │ │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ │ └── special-chars-in-filename │ │ │ │ │ │ │ │ │ └── info.md │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ │ ├── encoding.js │ │ │ │ │ │ │ │ ├── misc.js │ │ │ │ │ │ │ │ ├── no-filename.js │ │ │ │ │ │ │ │ ├── preamble.js │ │ │ │ │ │ │ │ ├── special-chars-in-filename.js │ │ │ │ │ │ │ │ └── workarounds.js │ │ │ │ │ │ │ └── multipart.js │ │ │ │ │ │ ├── integration │ │ │ │ │ │ │ ├── test-fixtures.js │ │ │ │ │ │ │ ├── test-json.js │ │ │ │ │ │ │ └── test-octet-stream.js │ │ │ │ │ │ ├── legacy │ │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ │ ├── integration │ │ │ │ │ │ │ │ └── test-multipart-parser.js │ │ │ │ │ │ │ ├── simple │ │ │ │ │ │ │ │ ├── test-file.js │ │ │ │ │ │ │ │ ├── test-incoming-form.js │ │ │ │ │ │ │ │ ├── test-multipart-parser.js │ │ │ │ │ │ │ │ └── test-querystring-parser.js │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ │ └── test-multi-video-upload.js │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ ├── standalone │ │ │ │ │ │ │ ├── test-connection-aborted.js │ │ │ │ │ │ │ ├── test-content-transfer-encoding.js │ │ │ │ │ │ │ └── test-issue-46.js │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ └── base64.html │ │ │ │ │ │ └── unit │ │ │ │ │ │ │ ├── test-file.js │ │ │ │ │ │ │ └── test-incoming-form.js │ │ │ │ │ └── tool │ │ │ │ │ │ └── record.js │ │ │ │ ├── pause │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── qs │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── send │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── send.js │ │ │ │ │ └── utils.js │ │ │ │ │ ├── node_modules │ │ │ │ │ └── mime │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── mime.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── mime.types │ │ │ │ │ │ └── node.types │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── mocha.opts │ │ │ │ ├── parse.js │ │ │ │ └── serialize.js │ │ ├── debug │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── component.json │ │ │ ├── debug.js │ │ │ ├── example │ │ │ │ ├── app.js │ │ │ │ ├── browser.html │ │ │ │ ├── wildcards.js │ │ │ │ └── worker.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── debug.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── .npmignore │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mkdirp │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── examples │ │ │ │ └── pow.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── chmod.js │ │ │ │ ├── clobber.js │ │ │ │ ├── mkdirp.js │ │ │ │ ├── perm.js │ │ │ │ ├── perm_sync.js │ │ │ │ ├── race.js │ │ │ │ ├── rel.js │ │ │ │ ├── return.js │ │ │ │ ├── return_sync.js │ │ │ │ ├── root.js │ │ │ │ ├── sync.js │ │ │ │ ├── umask.js │ │ │ │ └── umask_sync.js │ │ ├── range-parser │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── send │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── send.js │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ └── mime │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── mime.js │ │ │ │ ├── package.json │ │ │ │ ├── test.js │ │ │ │ └── types │ │ │ │ ├── mime.types │ │ │ │ └── node.types │ │ │ └── package.json │ ├── package.json │ └── test.js ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── bundle │ └── express │ ├── Activator.java │ └── BundlePath.java ├── org.nodeclipse.common ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── common │ ├── Activator.java │ ├── preferences │ ├── CommonConstants.java │ └── CommonDialogs.java │ └── ui │ └── CommonConsole.java ├── org.nodeclipse.debug ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── icons │ ├── coffee.png │ ├── coffee_bottom_right_corner_run_half_size.png │ ├── coffee_compile.png │ ├── node.png │ ├── node_bottom_right_corner_run_half_size.png │ ├── node_debug.png │ ├── node_unit.png │ └── node_with_monitor.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── debug │ ├── Activator.java │ ├── launch │ ├── ExternalToolsLaunchConfigurationMessages.java │ ├── ExternalToolsLaunchConfigurationMessages.properties │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationEnvironmentTab.java │ ├── LaunchConfigurationMainTab.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchShortcut.java │ ├── LaunchShortcutCoffeeCompile.java │ ├── LaunchShortcutTypescriptCompiler.java │ ├── LaunchShortcutWithMonitor.java │ ├── NodeArgumentsTab.java │ └── StandaloneV8LaunchTypeWrapper.java │ ├── model │ ├── BreakpointAdapterFactory.java │ ├── DebugTarget.java │ ├── LaunchInitializationProcedure.java │ ├── NodeBreakpointAdapter.java │ ├── NodeDebugElement.java │ ├── ResourceManager.java │ ├── StackFrame.java │ ├── Thread.java │ ├── VProjectWorkspaceBridge.java │ ├── Value.java │ └── Variable.java │ └── util │ ├── Constants.java │ ├── LogUtil.java │ ├── NodeDebugUtil.java │ ├── NodeResourceUtil.java │ └── VariablesUtil.java ├── org.nodeclipse.enide.editors.gradle ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── docs │ ├── .gitignore │ ├── android │ │ ├── EditBox-plugin-gradle-example.PNG │ │ ├── build.gradle │ │ └── multi-module │ │ │ ├── README.md │ │ │ ├── app │ │ │ └── build.gradle │ │ │ ├── build.gradle │ │ │ ├── module │ │ │ └── build.gradle │ │ │ ├── parent │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ │ └── settings.gradle │ └── java │ │ ├── basic │ │ ├── build-gradle-with-editbox-theme.PNG │ │ ├── build.gradle │ │ └── overview.PNG │ │ ├── classic │ │ └── build.gradle │ │ └── examples │ │ ├── build.gradle │ │ └── initSourceFolders.gradle ├── iconbank │ ├── gradle.png │ └── gradle_256.png ├── icons │ └── gradle-icon-16x16.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── enide │ └── editors │ └── gradle │ ├── Activator.java │ ├── editors │ ├── GradleEditor.java │ ├── GradleOutline.java │ ├── GradlePage.java │ ├── GradlePageTest.java │ ├── NodeDocumentProvider.java │ └── NodeSourceViewerConfiguration.java │ ├── highlight │ ├── EditorColors.java │ ├── GradleCodeScanner.java │ ├── GradlePartitionScanner.java │ ├── MultilineCommentScanner.java │ └── Words.java │ └── preferences │ ├── GradleEditorConstants.java │ ├── GradleEditorPreferenceInitializer.java │ └── GradleEditorPreferencePage.java ├── org.nodeclipse.enide.editors.jade ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── icons │ └── run.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── enide │ └── editors │ └── jade │ ├── Activator.java │ ├── JadeEditorConstants.java │ ├── editors │ ├── JadeEditor.java │ ├── NodeDocumentProvider.java │ └── NodeSourceViewerConfiguration.java │ ├── highlight │ ├── EditorColors.java │ ├── JadeCodeScanner.java │ ├── JadePartitionScanner.java │ ├── MultilineCommentScanner.java │ └── Words.java │ └── preferences │ ├── JadePreferenceInitializer.java │ └── JadePreferencePage.java ├── org.nodeclipse.enide.editors.notxml ├── .classpath ├── .project ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── icons │ └── run.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── enide │ └── editors │ └── notxml │ ├── Activator.java │ ├── NotXmlConstants.java │ ├── editors │ ├── NodeDocumentProvider.java │ ├── NodeSourceViewerConfiguration.java │ └── NotXmlEditor.java │ └── highlight │ ├── EditorColors.java │ ├── GradleCodeScanner.java │ ├── GradlePartitionScanner.java │ ├── MultilineCommentScanner.java │ └── Words.java ├── org.nodeclipse.enide.gradle ├── .README.md.html ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── HelpToc.xml ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── docs │ ├── Preferences.png │ ├── add-gradle-daemon-as-external-tool-1.PNG │ ├── add-gradle-daemon-as-external-tool-2.PNG │ └── from-getting-started.PNG ├── gradle-help.txt ├── iconbank │ ├── gradle-icon-16x16_bottom_right_corner_java_8x8.png │ ├── java_16x16.png │ ├── java_16x16_0.75_size.png │ ├── java_16x16_on_white.png │ ├── java_16x16_on_white_0.75_size.png │ └── java_8x8.png ├── icons │ ├── gradle-icon-16x16-gradle-gui-launch.png │ ├── gradle-icon-16x16.png │ └── gradle-icon-16x16_bottom_right_corner_run_half_size.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── enide │ └── gradle │ ├── Activator.java │ ├── launch │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ ├── LaunchShortcut.java │ ├── android │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── daemon │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── jetty │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── jettyeclipse │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── run │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── task1 │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ └── task2 │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── launchgui │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java │ ├── preferences │ ├── GradleConstants.java │ ├── GradlePreferenceInitializer.java │ └── GradlePreferencePage.java │ └── util │ ├── NodeclipseLogger.java │ └── VariablesUtil.java ├── org.nodeclipse.enide.maven ├── .README.md.html ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── HelpToc.xml ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── docs │ ├── MediocreExecMaven.java │ ├── create-my-webapp-2.PNG │ ├── create.md │ ├── enide-maven-run-as-mvn-package-results-in-console.png │ ├── enide-maven-run-as-mvn-package.png │ ├── javascript-m2e.PNG │ ├── javascript.md │ └── run-maven-build.png ├── iconbank │ ├── apache.ico │ ├── maven-feather.png │ └── maven-mini-logo.png ├── icons │ ├── feather-ma.png │ ├── feather-ma16.png │ ├── feather-ma16_bottom_right_corner_run_half_size.png │ └── feather-ma32.png ├── maven-help.txt ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── enide │ ├── jdt │ └── CompilationUnitToFileAdapter.java │ └── maven │ ├── Activator.java │ ├── launch │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ ├── LaunchShortcut.java │ ├── goal1 │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── goal2 │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ └── LaunchShortcut.java │ ├── jetty │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ ├── LaunchShortcut.java │ │ └── package-info.java │ └── tomcat │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── LaunchConfigurationType.java │ │ ├── LaunchShortcut.java │ │ └── package-info.java │ ├── launchexec │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java │ ├── preferences │ ├── MavenConstants.java │ ├── MavenPreferenceInitializer.java │ └── MavenPreferencePage.java │ └── util │ ├── NodeclipseLogger.java │ └── VariablesUtil.java ├── org.nodeclipse.help ├── .classpath ├── .gitignore ├── .project ├── HelpToc.xml ├── LinkedToc.xml ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── contents │ ├── .FAQ.md.html │ ├── .coffeescript.md.html │ ├── .configuration.md.html │ ├── .debug.md.html │ ├── .express.md.html │ ├── .external-tools.md.html │ ├── .github-flavored-markdown.md.html │ ├── .import.md.html │ ├── .index.md.html │ ├── .javascript.md.html │ ├── .markdown.md.html │ ├── .monitor.md.html │ ├── .nashorn.md.html │ ├── .node_redis.md.html │ ├── .nodejs.md.html │ ├── .phantomjs.md.html │ ├── .plugins.md.html │ ├── .run.md.html │ ├── .tutorials.md.html │ ├── .typescript.md.html │ ├── FAQ.md │ ├── README.md │ ├── coffeescript.md │ ├── configuration.md │ ├── debug.md │ ├── express.md │ ├── external-tools.md │ ├── github-flavored-markdown.md │ ├── images │ │ ├── Connection-to-V8-timed-out.png │ │ ├── External-Tool-Configuration.png │ │ ├── External-Tool-Launch-Are-Seen-In-Debug-View.png │ │ ├── External-Tool-Launch.png │ │ ├── Nodeclipse_logo_light.png │ │ ├── Redis-project.PNG │ │ ├── ResetPerspective.png │ │ ├── installbutton.png │ │ ├── nodejs-sources-lib.PNG │ │ └── try-git-74x71.png │ ├── import.md │ ├── index.md │ ├── javascript.md │ ├── markdown.md │ ├── monitor.md │ ├── nashorn.md │ ├── node_redis.md │ ├── nodejs.md │ ├── package.json │ ├── phantomjs.md │ ├── phonegap.md │ ├── plugins.md │ ├── run.md │ ├── toc.html │ ├── tutorials.md │ └── typescript.md ├── html │ ├── maintopic.html │ ├── subtopic.html │ └── toc.html ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── help │ └── Activator.java ├── org.nodeclipse.java.avatarjs ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── icons │ ├── java_16x16.png │ ├── java_16x16_bottom_right_corner_run_half_size.png │ ├── nashorn_16x16.png │ ├── nashorn_16x16_bottom_right_corner_run_half_size.png │ └── nashorn_16x16_top_right_corner_new.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── java │ └── avatarjs │ ├── Activator.java │ ├── launch │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java │ └── preferences │ ├── AvatarjsConstants.java │ ├── AvatarjsPreferencePage.java │ └── GradlePreferenceInitializer.java ├── org.nodeclipse.jjs ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── HelpToc.xml ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── help │ ├── .index.md.html │ ├── fxhelloworld.js │ ├── fxinit.js │ ├── index.md │ └── javaextend.js ├── iconbank │ └── java_16x16_on_white.png ├── icons │ ├── java_16x16.png │ ├── java_21x21.png │ ├── nashorn_16x16.png │ ├── nashorn_16x16_bottom_right_corner_run_half_size.png │ └── nashorn_16x16_top_right_corner_new.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── jjs │ ├── Activator.java │ ├── launch │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java │ ├── nature │ └── NashornNature.java │ ├── preferences │ ├── JJSConstants.java │ └── JJSPreferencePage.java │ └── wizards │ ├── AbstractNashornProjectWizard.java │ └── NashornProjectWizard.java ├── org.nodeclipse.mongodb ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── HelpToc.xml ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── help │ ├── .mongo.md.html │ └── mongo.md ├── icons │ ├── mongodb.ico │ ├── mongodb.png │ ├── mongodb_bottom_right_corner_run_half_size.png │ └── mongodb_top_right_corner_new.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── mongodb │ ├── Activator.java │ ├── launch │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java │ └── preferences │ ├── MongoDBConstants.java │ └── MongodbPreferencePage.java ├── org.nodeclipse.phantomjs ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── icons │ ├── phantomjs.ico │ ├── phantomjs.png │ ├── phantomjs_bottom_right_corner_run_half_size.png │ ├── phantomjs_half_size.png │ └── phantomjs_top_right_corner_new.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── phantomjs │ ├── Activator.java │ ├── editors │ └── PhantomjsEditor.java │ ├── launch │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java │ ├── nature │ └── PhantomjsNature.java │ ├── preferences │ ├── PhantomjsConstants.java │ ├── PhantomjsPreferenceInitializer.java │ └── PhantomjsPreferencePage.java │ └── wizards │ ├── AbstractPhantomjsProjectWizard.java │ └── PhantomjsProjectWizard.java ├── org.nodeclipse.pluginslist.core ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── iconbank │ ├── github-cat_yellow_bottom_right_corner_node_favicon_16x16_half_size.png │ ├── stackoverflow.ico │ ├── stackoverflow16_green.png │ └── tennis_ball.png ├── icons │ ├── github-cat_green.png │ ├── green.png │ ├── stackoverflow16.png │ └── tennis_ball_16x16_bottom_right_corner_green_half_size.png ├── plugin.xml ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── nodeclipse │ └── pluginslist │ └── core │ ├── Activator.java │ ├── Constants.java │ ├── GithubAction.java │ ├── PluginsListAction.java │ └── StackoverflowAction.java ├── org.nodeclipse.redis ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── HelpToc.xml ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── help │ └── redis-logo.png ├── icons │ ├── redis-ico-16x16.png │ └── redis-ico.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── redis │ ├── Activator.java │ └── launch │ ├── ConstantsRedis.java │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java ├── org.nodeclipse.site.quick ├── README.md ├── category.xml ├── pom.xml └── src │ └── main │ └── resources │ └── index.html ├── org.nodeclipse.site.test ├── category.xml └── pom.xml ├── org.nodeclipse.site ├── category.xml └── pom.xml ├── org.nodeclipse.ui ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── docs │ ├── HippieProposalProcessor.java │ └── JSDTContentAssistProcessor.java ├── iconbank │ ├── bower.ico │ ├── coffee.ico │ ├── e.PNG │ ├── e_16x16.png │ ├── eclipse.ico │ ├── git.ico │ ├── jshint-blue.png │ ├── jshint-dark.png │ ├── node.ico │ ├── node_favicon.ico │ ├── node_half_size.png │ ├── npm.ico │ ├── typescript.ico │ └── typescript_16.png ├── icons │ ├── bower16.png │ ├── coffee.png │ ├── coffee_top_right_corner_new.png │ ├── contentassist │ │ ├── method.gif │ │ ├── method_blue.png │ │ └── property.gif │ ├── e_16x16_top_right_corner_new.png │ ├── jsh_16.png │ ├── node-nature.png │ ├── node.png │ ├── node_blue.png │ ├── node_red.png │ ├── node_top_right_corner_file.png │ ├── node_top_right_corner_file_top_right_corner_new.png │ ├── node_top_right_corner_new.png │ ├── npm │ │ ├── npm.png │ │ ├── npm_bottom_right_corner_run_half_size.png │ │ └── npm_gray.png │ ├── ovr16 │ │ ├── CreateChild.gif │ │ ├── file.gif │ │ └── new.gif │ ├── run.png │ ├── run_half_size.png │ ├── tern.png │ └── typescript_16_top_right_corner_new.png ├── plugin.xml ├── pom.xml ├── src │ └── org │ │ ├── json │ │ ├── JSONArray.java │ │ ├── JSONException.java │ │ ├── JSONObject.java │ │ ├── JSONString.java │ │ ├── JSONStringer.java │ │ ├── JSONTokener.java │ │ └── JSONWriter.java │ │ └── nodeclipse │ │ └── ui │ │ ├── Activator.java │ │ ├── contentassist │ │ ├── ContentFromCompletionsJson.java │ │ ├── ContentFromDefinitelyTyped.java │ │ ├── ContentFromOrionIndexFiles.java │ │ ├── ContentFromProject.java │ │ ├── ContentFromSources.java │ │ ├── ContentFromSourcesTest.java │ │ ├── DefinitelyTyped │ │ │ ├── README.md │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.d.ts │ │ │ └── jquery │ │ │ │ └── jquery.d.ts │ │ ├── Entry.java │ │ ├── EntryProcessor.java │ │ ├── EntryType.java │ │ ├── IModelFiller.java │ │ ├── IRepo.java │ │ ├── JSDTProposalComputer.java │ │ ├── Model.java │ │ ├── Module.java │ │ ├── NodeContentAssistant.java │ │ ├── README.md │ │ ├── all.json │ │ ├── completions.json │ │ ├── completionsProcessor.njs │ │ ├── http.json │ │ └── indexFiles │ │ │ ├── README.md │ │ │ ├── amqpIndex.js │ │ │ ├── browserIndex.js │ │ │ ├── ecma5Index.js │ │ │ ├── express.json │ │ │ ├── expressIndex.js │ │ │ ├── mongodbIndex.js │ │ │ ├── mongodb_example.json │ │ │ ├── mysqlIndex.js │ │ │ ├── nodeIndex.js │ │ │ ├── postgresIndex.js │ │ │ └── redisIndex.js │ │ ├── editors │ │ ├── NodeDocumentProvider.java │ │ ├── NodeEditor.java │ │ ├── NodeSourceViewerConfiguration.java │ │ └── NodeclipseNodejsEditor.java │ │ ├── highlight │ │ ├── EditorColors.java │ │ ├── MultilineCommentScanner.java │ │ ├── NodeCodeScanner.java │ │ ├── NodePartitionScanner.java │ │ └── Words.java │ │ ├── nature │ │ ├── CoffeeNature.java │ │ └── NodeNature.java │ │ ├── npm │ │ ├── CoffeeLaunchShortcut.java │ │ ├── IGoal.java │ │ ├── InstallLaunchShortcut.java │ │ ├── LaunchConfigurationDelegate.java │ │ ├── LaunchConfigurationMainTab.java │ │ ├── LaunchConfigurationTabGroup.java │ │ └── LaunchShortcut.java │ │ ├── perspectives │ │ └── NodePerspective.java │ │ ├── preferences │ │ ├── Dialogs.java │ │ ├── NodePreferencePage.java │ │ ├── PreferenceConstants.java │ │ └── PreferenceInitializer.java │ │ ├── util │ │ ├── Constants.java │ │ ├── LogUtil.java │ │ ├── NodeclipseConsole.java │ │ ├── OSUtils.java │ │ ├── ProcessUtils.java │ │ └── VersionUtil.java │ │ └── wizards │ │ ├── AbstractNodeProjectWizard.java │ │ ├── CoffeeFileWizard.java │ │ ├── CoffeeFileWizardPage.java │ │ ├── ExpressProjectWizard.java │ │ ├── ExpressProjectWizardPage.java │ │ ├── NodeFileWizard.java │ │ ├── NodeFileWizardPage.java │ │ ├── NodeProjectWizard.java │ │ ├── NodeProjectWizardPage.java │ │ ├── RelativityFileSystemStructureProvider.java │ │ ├── TypeScriptFileWizard.java │ │ └── TypeScriptFileWizardPage.java └── templates │ ├── .gitignore │ ├── .jshintrc │ ├── .npmignore │ ├── .project │ ├── .settings │ ├── .jsdtscope │ ├── com.eclipsesource.jshint.ui.prefs │ ├── org.eclipse.wst.jsdt.core.prefs │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── .sublime-project │ ├── .tern-project │ ├── README.md │ ├── android-application │ ├── .classpath │ ├── .gitignore │ ├── .project │ └── project.properties │ ├── android-library │ ├── .classpath │ ├── .project │ └── project.properties │ ├── bin │ ├── epm.js │ ├── nci.js │ └── nodeclipse.js │ ├── common-templates │ ├── .gitignore │ ├── .jshintrc │ ├── .settings │ │ ├── .jsdtscope │ │ ├── com.eclipsesource.jshint.ui.prefs │ │ ├── org.eclipse.wst.jsdt.core.prefs │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ └── README.md │ ├── copier.js │ ├── eclipse-project-general │ └── .project │ ├── eclipse │ └── .project │ ├── hello-angularjs │ ├── .bowerrc │ ├── bower.json │ ├── hello-from-nodejs-server.js │ ├── package.json │ └── public │ │ ├── app.js │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── json.json │ │ └── maincontroller.js │ ├── hello-coffee │ └── hello-world-server.coffee │ ├── hello-html │ ├── README.md │ ├── index.html │ └── index.js │ ├── hello-koa │ └── koa-app.njs │ ├── hello-nashorn │ ├── fxhelloworld.js │ └── fxinit.js │ ├── hello-typescript │ └── hello-world-server.ts │ ├── hello-vertx │ ├── README.md │ ├── hello-vertx.js │ ├── hello-vorld.js │ └── index.html │ ├── hello-world │ ├── build.gradle │ ├── hello-world-server.js │ └── package.json │ ├── nodeclipse-install.js │ ├── package.json │ ├── spawning.js │ ├── template-gradle-java │ ├── .classpath │ ├── .project │ └── build.gradle │ ├── template-maven-java │ ├── .classpath │ ├── .project │ └── pom.xml │ └── tern-node │ └── .tern-project ├── org.nodeclipse.vertx ├── .classpath ├── .project ├── META-INF │ └── MANIFEST.MF ├── README.md ├── build.properties ├── docs │ └── vertx-help.txt ├── iconbank │ ├── dot-x.png │ ├── logo-white-big.png │ ├── vert-x-140.jpeg │ ├── vert-x-140.png │ ├── vert-x-16.png │ └── vert-x-16_half_size.png ├── icons │ ├── dot-x-16.png │ ├── dot-x-16_bottom_right_corner_run_half_size.png │ ├── dot-x-16_half_size.png │ └── dot-x-16_top_right_corner_new.png ├── plugin.xml ├── pom.xml └── src │ └── org │ └── nodeclipse │ └── vertx │ ├── Activator.java │ ├── VertxConstants.java │ ├── launch │ ├── LaunchConfigurationDelegate.java │ ├── LaunchConfigurationTabGroup.java │ ├── LaunchConfigurationType.java │ └── LaunchShortcut.java │ ├── nature │ └── VertxNature.java │ ├── preferences │ ├── VertxPreferenceInitializer.java │ └── VertxPreferencePage.java │ └── wizards │ ├── AbstractVertxProjectWizard.java │ └── VertxProjectWizard.java ├── pom.xml └── src └── site ├── README.md ├── markdown ├── ImportProjects-Selected.png ├── ImportProjects.png ├── README.md ├── RunOrDebug.png ├── build.md ├── developing.md ├── git-remove-submodules.md ├── markdown.md ├── maven.md ├── org.nodeclipse.debug-dependencies.png ├── org.nodeclipse.ui-dependants.png ├── release-helper.md └── tips.md ├── resources ├── header3.png ├── import-from-git-with-submodules-result.png └── import-from-git-with-submodules.png └── site.xml /.gitignore: -------------------------------------------------------------------------------- 1 | # output folders 2 | target/ 3 | bin/ 4 | 5 | .metadata 6 | /.*.md.html 7 | #*.settings/ 8 | /*.error 9 | 10 | # MacOS 11 | *.DS_Store 12 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | nodeclipse-1 4 | https://github.com/Nodeclipse/nodeclipse-1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: java 3 | script: mvn clean package -Pfull && mvn -pl org.nodeclipse.site com.github.github:site-maven-plugin:site -Pfull 4 | 5 | notifications: 6 | email: false -------------------------------------------------------------------------------- /ATTENSION.md: -------------------------------------------------------------------------------- 1 | # ATTENSION 2 | Moved from https://github.com/tomotaro1065/nodeclipse to https://github.com/Nodeclipse/nodeclipse-1 . 3 | 4 | -------------------------------------------------------------------------------- /Arguments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/Arguments.png -------------------------------------------------------------------------------- /Nodeclipse_logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/Nodeclipse_logo_light.png -------------------------------------------------------------------------------- /chromedevtools/builder/build-wipbackend/main-plugins/PUT_PLUGINS_HERE: -------------------------------------------------------------------------------- 1 | Plugin 'org.chromium.sdk' should be put here (plus any additional dependencies if any), 2 | 'org.chromium.sdk' must be unjarred (perhaps manully), or json-simple library won't be resolved. 3 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug.jsdtbridge/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.debug.jsdtbridge.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug.jsdtbridge/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties,\ 3 | LICENSE,\ 4 | license.html 5 | src.includes = LICENSE 6 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug.jsdtbridge/sourceTemplatePlugin/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = plugin.properties, plugin.xml, LICENSE, src/**, META-INF/ 2 | sourcePlugin=true -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug.jsdtbridge/sourceTemplatePlugin/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | pluginName=Chromium JavaScript Debugger Bridge to JSDT (Source Code) 6 | 7 | providerName=The Chromium Authors -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.debug.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties,\ 3 | LICENSE,\ 4 | license.html 5 | src.includes = LICENSE 6 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug/sourceTemplatePlugin/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = plugin.properties, plugin.xml, LICENSE, src/**, META-INF/ 2 | sourcePlugin=true -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.debug/sourceTemplatePlugin/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | pluginName=Chromium JavaScript Remote Debugger (Source Code) 6 | 7 | providerName=The Chromium Authors -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk.wip.source/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.sdk.wip.source 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk.wip.source/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties,\ 3 | LICENSE,\ 4 | license.html 5 | 6 | generate.feature@org.chromium.sdk.wipbackends.source=org.chromium.sdk.wipbackends 7 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk.wipbackends/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.sdk.wipbackends.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk.wipbackends/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties,\ 3 | LICENSE,\ 4 | license.html 5 | src.includes = LICENSE 6 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk.wipbackends/sourceTemplatePlugin/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = plugin.properties, plugin.xml, LICENSE, src/**, META-INF/ 2 | sourcePlugin=true -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk.wipbackends/sourceTemplatePlugin/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | pluginName=ChromeDevTools SDK WIP Backends (Source Code) 6 | 7 | providerName=The Chromium Authors -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.sdk.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties,\ 3 | LICENSE,\ 4 | license.html 5 | src.includes = LICENSE 6 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk/sourceTemplatePlugin/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = plugin.properties, plugin.xml, LICENSE, src/**, META-INF/ 2 | sourcePlugin=true -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.sdk/sourceTemplatePlugin/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | pluginName=ChromeDevTools SDK (Source Code) 6 | 7 | providerName=The Chromium Authors -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.source/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.source 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chromedevtools/features/org.chromium.source/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties,\ 3 | LICENSE,\ 4 | license.html 5 | 6 | generate.feature@org.chromium.sdk.source=org.chromium.sdk 7 | generate.feature@org.chromium.debug.source=org.chromium.debug 8 | generate.feature@org.chromium.debug.jsdtbridge.source=org.chromium.debug.jsdtbridge 9 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.core.tests/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.core.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Chromium JavaScript Remote Debugger Core Tests 4 | Bundle-SymbolicName: org.chromium.debug.core.tests 5 | Bundle-Version: 0.3.9.0 6 | Fragment-Host: org.chromium.debug.core;bundle-version="0.1.0.0" 7 | Require-Bundle: org.eclipse.core.runtime, 8 | org.chromium.debug.core;bundle-version="0.3.9", 9 | org.junit4;bundle-version="4.8.1" 10 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.core.tests/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.core/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.core/.options: -------------------------------------------------------------------------------- 1 | org.chromium.debug.core/debug=true 2 | org.chromium.debug.core/debug/transport=true 3 | org.chromium.debug.core/debug/v8DebuggerTool=true -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.core/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | plugin.xml,\ 3 | .,\ 4 | LICENSE,\ 5 | plugin.properties 6 | source.. = src/ 7 | output.. = bin/ 8 | src.includes = LICENSE 9 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.core/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | providerName = The Chromium Authors 6 | 7 | pluginName = Chromium JavaScript Remote Debugger Core 8 | 9 | SourceNameMapperContainer.name = JavaScript Source Name Mapper 10 | SourceNameMapperContainer.description = Transforms name of source and delegates lookup to another source container. -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.jsdtbridge/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.jsdtbridge/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | LICENSE,\ 6 | plugin.properties,\ 7 | plugin.xml 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.jsdtbridge/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | providerName = The Chromium Authors 6 | 7 | pluginName = Chromium JavaScript Debugger Bridge to JSDT 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.jsdtbridge/src/org/chromium/debug/jsdtbridge/messages.properties: -------------------------------------------------------------------------------- 1 | JsdtFormatterBridge_FALLBACK_COMMENT=/*\n\ 2 | \ \ Failed to use a regular JavaScript formatter on this source.\n\ 3 | \ \ Ad-hoc formatter was used instead. The source may have become uncompilable.\n*/\n\n 4 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.ui/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.ui/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | plugin.xml,\ 3 | res/,\ 4 | .,\ 5 | LICENSE,\ 6 | plugin.properties 7 | source.. = src/ 8 | output.. = bin/ 9 | src.includes = LICENSE 10 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.ui/res/chromium_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.debug.ui/res/chromium_16.png -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.ui/res/nature_decorator_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.debug.ui/res/nature_decorator_16.png -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug.ui/res/standalone_v8_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.debug.ui/res/standalone_v8_16.png -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %pluginName 4 | Bundle-SymbolicName: org.chromium.debug; singleton:=true 5 | Bundle-Version: 0.3.9.qualifier 6 | Bundle-Vendor: %providerName 7 | Bundle-Localization: plugin 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug/about.ini: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | aboutText=%blurb 6 | 7 | featureImage=chromium_32.png 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug/about.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | blurb=Chromium JavaScript Remote Debugger\n\ 6 | \n\ 7 | Version: {featureVersion}\n\ 8 | \n\ 9 | Copyright (c) 2009 The Chromium Authors. All rights reserved.\n\ 10 | Visit http://code.google.com/p/chromedevtools for more info. 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes =\ 2 | META-INF/,\ 3 | about.ini,\ 4 | about.properties,\ 5 | chromium_32.png,\ 6 | LICENSE,\ 7 | plugin.properties 8 | 9 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug/chromium_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.debug/chromium_32.png -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.debug/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | pluginName=Chromium JavaScript Remote Debugger 6 | 7 | providerName=The Chromium Authors 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wip.eclipse/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wip.eclipse/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %pluginName 4 | Bundle-SymbolicName: org.chromium.sdk.wip.eclipse;singleton:=true 5 | Bundle-Version: 0.3.9.qualifier 6 | Bundle-Vendor: %providerName 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | Require-Bundle: org.chromium.sdk;bundle-version="0.3.9" 9 | Import-Package: org.eclipse.core.runtime 10 | Export-Package: org.chromium.sdk.wip.eclipse 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wip.eclipse/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | plugin.properties 7 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wip.eclipse/plugin.properties: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style license that can be 3 | # found in the LICENSE file. 4 | 5 | providerName = The Chromium Authors 6 | 7 | pluginName = Google Chrome Developer Tools SDK WIP Backend registry 8 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wip.eclipse/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.dev/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Google Chrome Developer Tools SDK WIP backend (current development) 4 | Bundle-Vendor: The Chromium Authors 5 | Bundle-SymbolicName: org.chromium.sdk.wipbackend.dev;singleton:=true 6 | Bundle-Version: 0.3.9.qualifier 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | Require-Bundle: org.chromium.sdk;bundle-version="0.3.9" 9 | Export-Package: org.chromium.sdk.internal.wip.protocol 10 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.dev/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | src-wip-generated/,\ 3 | src-static-impl/bridge/,\ 4 | src-static-impl/generated/ 5 | output.. = bin/ 6 | bin.includes = META-INF/,\ 7 | c,\ 8 | plugin.xml 9 | src.includes = plugin.xml 10 | 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.dev/src-static-impl/generated/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk.wipbackend.dev/src-static-impl/generated/.placeholder -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.protocol_1_0/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Google Chrome Developer Tools SDK WIP backend Protocol v. 1.0 4 | Bundle-Vendor: The Chromium Authors 5 | Bundle-SymbolicName: org.chromium.sdk.wipbackend.protocol_1_0;singleton:=true 6 | Bundle-Version: 0.3.9.qualifier 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | Require-Bundle: org.chromium.sdk;bundle-version="0.3.9" 9 | Export-Package: org.chromium.sdk.internal.wip.protocol 10 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.protocol_1_0/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | src-wip-generated/,\ 3 | src-static-impl/bridge/,\ 4 | src-static-impl/generated/ 5 | output.. = bin/ 6 | bin.includes = META-INF/,\ 7 | c,\ 8 | plugin.xml 9 | src.includes = plugin.xml 10 | 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.protocol_1_0/src-static-impl/generated/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk.wipbackend.protocol_1_0/src-static-impl/generated/.placeholder -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.wk118685/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Google Chrome Developer Tools SDK WIP backend WK118685 4 | Bundle-Vendor: The Chromium Authors 5 | Bundle-SymbolicName: org.chromium.sdk.wipbackend.wk118685;singleton:=true 6 | Bundle-Version: 0.3.9.qualifier 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | Require-Bundle: org.chromium.sdk;bundle-version="0.3.9" 9 | Export-Package: org.chromium.sdk.internal.wip.protocol 10 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.wk118685/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | src-wip-generated/,\ 3 | src-static-impl/bridge/,\ 4 | src-static-impl/generated/ 5 | output.. = bin/ 6 | bin.includes = META-INF/,\ 7 | c,\ 8 | plugin.xml 9 | src.includes = plugin.xml 10 | 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.wk118685/src-static-impl/generated/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk.wipbackend.wk118685/src-static-impl/generated/.placeholder -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.wk120709/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Google Chrome Developer Tools SDK WIP backend WK120709 4 | Bundle-Vendor: The Chromium Authors 5 | Bundle-SymbolicName: org.chromium.sdk.wipbackend.wk120709;singleton:=true 6 | Bundle-Version: 0.3.9.qualifier 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | Require-Bundle: org.chromium.sdk;bundle-version="0.3.9" 9 | Export-Package: org.chromium.sdk.internal.wip.protocol 10 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.wk120709/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | src-wip-generated/,\ 3 | src-static-impl/bridge/,\ 4 | src-static-impl/generated/ 5 | output.. = bin/ 6 | bin.includes = META-INF/,\ 7 | c,\ 8 | plugin.xml 9 | src.includes = plugin.xml 10 | 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk.wipbackend.wk120709/src-static-impl/generated/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk.wipbackend.wk120709/src-static-impl/generated/.placeholder -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/build-output/lib.build_backend_jar.launch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk/build-output/lib.build_backend_jar.launch.jar -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | .,\ 3 | lib/,\ 4 | LICENSE 5 | jars.compile.order = . 6 | source.. = src/,\ 7 | src-wip/,\ 8 | src-static-impl/bridge/,\ 9 | src-static-impl/generated/ 10 | output.. = bin/ 11 | src.includes = LICENSE 12 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/javadocs/package-list: -------------------------------------------------------------------------------- 1 | org.chromium.sdk 2 | org.chromium.sdk.util 3 | org.chromium.sdk.wip 4 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/javadocs/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk/javadocs/resources/inherit.gif -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/lib/json_simple/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Fang Yidong -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/lib/json_simple/README.Chromium: -------------------------------------------------------------------------------- 1 | Project home: http://code.google.com/p/json-simple 2 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/lib/json_simple/json_simple-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk/lib/json_simple/json_simple-1.1.jar -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src-static-impl/generated/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/plugins/org.chromium.sdk/src-static-impl/generated/.placeholder -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src-wip/org/chromium/sdk/wip/package-info.java: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | /** 6 | * Contains all WIP-specific interfaces. WIP implementation is currently experimental. 7 | * These interfaces are subject to change. 8 | */ 9 | package org.chromium.sdk.wip; 10 | 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/protocolparser/dynamicimpl/.placeholder: -------------------------------------------------------------------------------- 1 | We always need this package because META-INF references it. -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/MessageType.java: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | package org.chromium.sdk.internal.v8native.protocol.input; 6 | 7 | public enum MessageType { 8 | RESPONSE, EVENT 9 | } 10 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/ScopeRef.java: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | package org.chromium.sdk.internal.v8native.protocol.input; 6 | 7 | import org.chromium.sdk.internal.protocolparser.JsonType; 8 | 9 | @JsonType 10 | public interface ScopeRef { 11 | long index(); 12 | long type(); 13 | } 14 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/ScriptCollectedBody.java: -------------------------------------------------------------------------------- 1 | package org.chromium.sdk.internal.v8native.protocol.input; 2 | 3 | import org.chromium.sdk.internal.protocolparser.JsonSubtype; 4 | import org.chromium.sdk.internal.protocolparser.JsonType; 5 | import org.chromium.sdk.internal.v8native.protocol.input.data.ScriptWithId; 6 | 7 | @JsonType 8 | public interface ScriptCollectedBody extends JsonSubtype { 9 | ScriptWithId script(); 10 | } 11 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/data/ContextData.java: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | package org.chromium.sdk.internal.v8native.protocol.input.data; 6 | 7 | import org.chromium.sdk.internal.protocolparser.JsonType; 8 | 9 | @JsonType 10 | public interface ContextData { 11 | long value(); 12 | String type(); 13 | } 14 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/data/ScriptWithId.java: -------------------------------------------------------------------------------- 1 | package org.chromium.sdk.internal.v8native.protocol.input.data; 2 | 3 | import org.chromium.sdk.internal.protocolparser.JsonType; 4 | 5 | @JsonType 6 | public interface ScriptWithId { 7 | long id(); 8 | } 9 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/output/ContextlessDebuggerMessage.java: -------------------------------------------------------------------------------- 1 | package org.chromium.sdk.internal.v8native.protocol.output; 2 | 3 | 4 | public class ContextlessDebuggerMessage extends DebuggerMessage { 5 | public ContextlessDebuggerMessage(String command) { 6 | super(command); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /chromedevtools/plugins/org.chromium.sdk/src/org/chromium/sdk/package-info.java: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | /** 6 | * Main package of ChromDevTools SDK API. 7 | * See Tutorial at http://code.google.com/p/chromedevtools/wiki/SdkTutorial 8 | */ 9 | package org.chromium.sdk; 10 | -------------------------------------------------------------------------------- /chromedevtools/used-modules.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/chromedevtools/used-modules.PNG -------------------------------------------------------------------------------- /chromedevtools/utils/org.chromium.sdk.tests.system.runner/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /chromedevtools/utils/org.chromium.sdk.tests.system.runner/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.sdk.tests.system.runner 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chromedevtools/utils/org.chromium.sdk.tests.system/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /chromedevtools/utils/org.chromium.sdk.tests.system/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.chromium.sdk.tests.system 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.bundle.coffee.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.bundle.coffee.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.bundle.coffee.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.bundle.express.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.bundle.express.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.bundle.express.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.editors.gradle.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.enide.editors.gradle.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.editors.gradle.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.editors.jade.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.enide.editors.gradle.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.editors.jade.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.gradle.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.enide.gradle.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.gradle.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.maven.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.enide.maven.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.maven.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.nodejs.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.enide.nodejs.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.nodejs.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.studio.included.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.enide.studio.included.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.enide.studio.included.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.jjs.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.jjs.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.jjs.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.mongodb.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.mongodb.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.mongodb.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.phantomjs.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.phantomjs.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.phantomjs.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.pluginslist.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.nodeclipse.vertx.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.nodeclipse.vertx.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /features/org.nodeclipse.vertx.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /nodeclipse-logo-rough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/nodeclipse-logo-rough.png -------------------------------------------------------------------------------- /org.nodeclipse.android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.android/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | icons/ -------------------------------------------------------------------------------- /org.nodeclipse.android/iconbank/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.android/iconbank/android.png -------------------------------------------------------------------------------- /org.nodeclipse.android/iconbank/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.android/iconbank/run.png -------------------------------------------------------------------------------- /org.nodeclipse.android/iconbank/run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.android/iconbank/run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.android/icons/android_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.android/icons/android_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.5 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Coffee 4 | Bundle-SymbolicName: org.nodeclipse.bundle.coffee 5 | Bundle-Version: 1.6.3 6 | Bundle-Activator: org.nodeclipse.bundle.coffee.Activator 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime 9 | Bundle-ActivationPolicy: lazy 10 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 11 | Export-Package: org.nodeclipse.bundle.coffee 12 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/bin/org/nodeclipse/bundle/coffee/Activator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.coffee/bin/org/nodeclipse/bundle/coffee/Activator.class -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/bin/org/nodeclipse/bundle/coffee/BundlePath.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.coffee/bin/org/nodeclipse/bundle/coffee/BundlePath.class -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | coffee-script/ 6 | 7 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/coffee-script/.npmignore: -------------------------------------------------------------------------------- 1 | *.coffee 2 | *.html 3 | .DS_Store 4 | .git* 5 | Cakefile 6 | documentation/ 7 | examples/ 8 | extras/coffee-script.js 9 | raw/ 10 | src/ 11 | test/ 12 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/coffee-script/CNAME: -------------------------------------------------------------------------------- 1 | coffeescript.org -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/coffee-script/bin/cake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var path = require('path'); 4 | var fs = require('fs'); 5 | var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib'); 6 | 7 | require(lib + '/coffee-script/cake').run(); 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/coffee-script/bin/coffee: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var path = require('path'); 4 | var fs = require('fs'); 5 | var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib'); 6 | 7 | require(lib + '/coffee-script/command').run(); 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.coffee/coffee-script/lib/coffee-script/index.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.6.3 2 | (function() { 3 | var key, val, _ref; 4 | 5 | _ref = require('./coffee-script'); 6 | for (key in _ref) { 7 | val = _ref[key]; 8 | exports[key] = val; 9 | } 10 | 11 | }).call(this); 12 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.5 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Nodeclipse-Express 4 | Bundle-SymbolicName: org.nodeclipse.bundle.express 5 | Bundle-Version: 3.2.5 6 | Bundle-Activator: org.nodeclipse.bundle.express.Activator 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime 9 | Bundle-ActivationPolicy: lazy 10 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 11 | Export-Package: org.nodeclipse.bundle.express 12 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/bin/org/nodeclipse/bundle/express/Activator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/bin/org/nodeclipse/bundle/express/Activator.class -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/bin/org/nodeclipse/bundle/express/BundlePath.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/bin/org/nodeclipse/bundle/express/BundlePath.class -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | express/ 6 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | docs/ 3 | examples/ 4 | support/ 5 | test/ 6 | testing.js 7 | .DS_Store 8 | coverage.html 9 | lib-cov 10 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = process.env.EXPRESS_COV 3 | ? require('./lib-cov/express') 4 | : require('./lib/express'); -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/buffer-crc32/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | notifications: 6 | email: 7 | recipients: 8 | - brianloveswords@gmail.com -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/commander/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/commander/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/commander/Makefile: -------------------------------------------------------------------------------- 1 | 2 | TESTS = $(shell find test/test.*.js) 3 | 4 | test: 5 | @./test/run $(TESTS) 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/commander/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/commander'); -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/.npmignore: -------------------------------------------------------------------------------- 1 | *.markdown 2 | *.md 3 | .git* 4 | Makefile 5 | benchmarks/ 6 | docs/ 7 | examples/ 8 | install.sh 9 | support/ 10 | test/ 11 | .DS_Store 12 | coverage.html 13 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = process.env.CONNECT_COV 3 | ? require('./lib-cov/connect') 4 | : require('./lib/connect'); -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {error} 5 | 6 | 7 | 8 |
9 |

{title}

10 |

{statusCode} {error}

11 |
    {stack}
12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/favicon.ico -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_add.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_attach.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_code.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_copy.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_delete.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_edit.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_error.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_excel.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_find.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_gear.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_go.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_green.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_key.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_lightning.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_link.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_paintbrush.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_paste.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_red.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_refresh.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_save.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_acrobat.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_actionscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_actionscript.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_add.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_c.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_camera.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_cd.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_code.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_code_red.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_coldfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_coldfusion.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_compressed.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_copy.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_cplusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_cplusplus.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_csharp.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_cup.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_database.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_delete.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_dvd.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_edit.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_error.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_excel.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_find.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_flash.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_freehand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_freehand.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_gear.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_get.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_go.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_h.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_horizontal.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_key.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_lightning.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_link.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_magnify.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_medal.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_office.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_paint.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_paintbrush.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_paste.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_php.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_picture.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_powerpoint.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_put.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_ruby.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_stack.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_star.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_swoosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_swoosh.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_text.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_text_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_text_width.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_tux.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_vector.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_visualstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_visualstudio.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_width.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_word.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_world.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_wrench.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_white_zip.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_word.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/lib/public/icons/page_world.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/bytes/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.2.0 / 2012-10-28 3 | ================== 4 | 5 | * bytes(200).should.eql('200b') 6 | 7 | 0.1.0 / 2012-07-04 8 | ================== 9 | 10 | * add bytes to string conversion [yields] 11 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/bytes/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/bytes/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bytes", 3 | "description": "byte size string parser / serializer", 4 | "keywords": ["bytes", "utility"], 5 | "version": "0.1.0", 6 | "scripts": ["index.js"] 7 | } 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/cookie/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/cookie/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/.npmignore: -------------------------------------------------------------------------------- 1 | /test/tmp/ 2 | *.upload 3 | *.un~ 4 | *.http 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/lib/index.js: -------------------------------------------------------------------------------- 1 | var IncomingForm = require('./incoming_form').IncomingForm; 2 | IncomingForm.IncomingForm = IncomingForm; 3 | module.exports = IncomingForm; 4 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/beta-sticker-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/beta-sticker-1.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/binaryfile.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/binaryfile.tar.gz -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/blank.gif -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/funkyfilename.txt: -------------------------------------------------------------------------------- 1 | I am a text file with a funky name! 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/menu_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/menu_separator.png -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/file/plain.txt: -------------------------------------------------------------------------------- 1 | I am a plain text file 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/http/special-chars-in-filename/info.md: -------------------------------------------------------------------------------- 1 | * Opera does not allow submitting this file, it shows a warning to the 2 | user that the file could not be found instead. Tested in 9.8, 11.51 on OSX. 3 | Reported to Opera on 08.09.2011 (tracking email DSK-346009@bugs.opera.com). 4 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/js/misc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'empty.http': [], 3 | 'empty-urlencoded.http': [], 4 | 'empty-multipart.http': [], 5 | 'minimal.http': [], 6 | }; 7 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/js/no-filename.js: -------------------------------------------------------------------------------- 1 | module.exports['generic.http'] = [ 2 | {type: 'file', name: 'upload', filename: '', fixture: 'plain.txt', 3 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'}, 4 | ]; 5 | 6 | module.exports['filename-name.http'] = [ 7 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt', 8 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'}, 9 | ]; 10 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/js/preamble.js: -------------------------------------------------------------------------------- 1 | module.exports['crlf.http'] = [ 2 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt', 3 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'}, 4 | ]; 5 | 6 | module.exports['preamble.http'] = [ 7 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt', 8 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'}, 9 | ]; 10 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/fixture/js/workarounds.js: -------------------------------------------------------------------------------- 1 | module.exports['missing-hyphens1.http'] = [ 2 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt', 3 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'}, 4 | ]; 5 | module.exports['missing-hyphens2.http'] = [ 6 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt', 7 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'}, 8 | ]; 9 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/formidable/test/run.js: -------------------------------------------------------------------------------- 1 | require('urun')(__dirname) 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/pause/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.1 / 2010-01-03 3 | ================== 4 | 5 | * Initial release 6 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/pause/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/qs/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | [submodule "support/should"] 5 | path = support/should 6 | url = git://github.com/visionmedia/should.js.git 7 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | benchmark.js 4 | component.json 5 | examples.js 6 | History.md 7 | Makefile 8 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/send/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/connect/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/cookie-signature/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.1 / 2013-04-15 3 | ================== 4 | 5 | * Revert "Changed underlying HMAC algo. to sha512." 6 | * Revert "Fix for timing attacks on MAC verification." 7 | 8 | 0.0.1 / 2010-01-03 9 | ================== 10 | 11 | * Initial release 12 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/cookie-signature/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/cookie/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.6" 4 | - "0.8" 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/cookie/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/debug/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "debug", 3 | "repo": "visionmedia/debug", 4 | "description": "small debugging utility", 5 | "version": "0.7.2", 6 | "keywords": ["debug", "log", "debugger"], 7 | "scripts": ["index.js", "debug.js"], 8 | "dependencies": {} 9 | } 10 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/debug/example/app.js: -------------------------------------------------------------------------------- 1 | 2 | var debug = require('../')('http') 3 | , http = require('http') 4 | , name = 'My App'; 5 | 6 | // fake app 7 | 8 | debug('booting %s', name); 9 | 10 | http.createServer(function(req, res){ 11 | debug(req.method + ' ' + req.url); 12 | res.end('hello\n'); 13 | }).listen(3000, function(){ 14 | debug('listening'); 15 | }); 16 | 17 | // fake worker of some kind 18 | 19 | require('./worker'); -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/debug/example/wildcards.js: -------------------------------------------------------------------------------- 1 | 2 | var debug = { 3 | foo: require('../')('test:foo'), 4 | bar: require('../')('test:bar'), 5 | baz: require('../')('test:baz') 6 | }; 7 | 8 | debug.foo('foo') 9 | debug.bar('bar') 10 | debug.baz('baz') -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/debug/index.js: -------------------------------------------------------------------------------- 1 | if ('undefined' == typeof window) { 2 | module.exports = require('./lib/debug'); 3 | } else { 4 | module.exports = require('./debug'); 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/fresh/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/methods/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = [ 3 | 'get' 4 | , 'post' 5 | , 'put' 6 | , 'head' 7 | , 'delete' 8 | , 'options' 9 | , 'trace' 10 | , 'copy' 11 | , 'lock' 12 | , 'mkcol' 13 | , 'move' 14 | , 'propfind' 15 | , 'proppatch' 16 | , 'unlock' 17 | , 'report' 18 | , 'mkactivity' 19 | , 'checkout' 20 | , 'merge' 21 | , 'm-search' 22 | , 'notify' 23 | , 'subscribe' 24 | , 'unsubscribe' 25 | , 'patch' 26 | ]; -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/mkdirp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/range-parser/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.4 / 2012-06-17 3 | ================== 4 | 5 | * changed: ret -1 for unsatisfiable and -2 when invalid 6 | 7 | 0.0.3 / 2012-06-17 8 | ================== 9 | 10 | * fix last-byte-pos default to len - 1 11 | 12 | 0.0.2 / 2012-06-14 13 | ================== 14 | 15 | * add `.type` 16 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/range-parser/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/send/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /org.nodeclipse.bundle.express/express/test.js: -------------------------------------------------------------------------------- 1 | var express = require('./'); 2 | var app = express(); 3 | 4 | express.request.toJSON = function(){ 5 | return { 6 | method: this.method, 7 | url: this.url, 8 | header: this.headers 9 | } 10 | }; 11 | 12 | app.get('*', function(req, res){ 13 | console.log(JSON.stringify(req)); 14 | res.send(200); 15 | }); 16 | 17 | app.listen(4000) 18 | -------------------------------------------------------------------------------- /org.nodeclipse.common/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.common/README.md: -------------------------------------------------------------------------------- 1 | 2 | Wow: Ctrl+V with some code in clipboard on java package will create new class and add that code into main() method -------------------------------------------------------------------------------- /org.nodeclipse.common/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | . 6 | -------------------------------------------------------------------------------- /org.nodeclipse.common/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /org.nodeclipse.common/src/org/nodeclipse/common/preferences/CommonConstants.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.common.preferences; 2 | 3 | public class CommonConstants { 4 | 5 | public static final String PLUGIN_ID = "org.nodeclipse.common"; //$NON-NLS-1$ 6 | 7 | } 8 | -------------------------------------------------------------------------------- /org.nodeclipse.debug/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.debug/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/coffee.png -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/coffee_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/coffee_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/coffee_compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/coffee_compile.png -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/node.png -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/node_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/node_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/node_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/node_debug.png -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/node_unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/node_unit.png -------------------------------------------------------------------------------- /org.nodeclipse.debug/icons/node_with_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.debug/icons/node_with_monitor.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/.gitignore: -------------------------------------------------------------------------------- 1 | /android-gradle-plugin-dsl/ 2 | /android-gradle-plugin-dsl.zip 3 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/docs/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | build 3 | .* 4 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/docs/android/EditBox-plugin-gradle-example.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.gradle/docs/android/EditBox-plugin-gradle-example.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/docs/android/multi-module/parent/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | mavenCentral() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:0.10.+' 9 | } 10 | } 11 | 12 | /* 13 | allprojects { 14 | repositories { 15 | mavenCentral() 16 | } 17 | } 18 | */ 19 | 20 | /* 21 | subprojects { 22 | 23 | } 24 | */ 25 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/docs/android/multi-module/parent/settings.gradle: -------------------------------------------------------------------------------- 1 | includeFlat 'app' 2 | includeFlat 'module' 3 | 4 | // see also settings.gradle in the root folder for hierarchical project layout 5 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/docs/android/multi-module/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':module' 3 | 4 | // see also settings.gradle in `parent` folder for flat project layout 5 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/docs/java/basic/build-gradle-with-editbox-theme.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.gradle/docs/java/basic/build-gradle-with-editbox-theme.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/docs/java/basic/overview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.gradle/docs/java/basic/overview.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/iconbank/gradle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.gradle/iconbank/gradle.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/iconbank/gradle_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.gradle/iconbank/gradle_256.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.gradle/icons/gradle-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.gradle/icons/gradle-icon-16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.jade/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.jade/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.jade/icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.jade/icons/run.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.notxml/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.notxml/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.notxml/icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.editors.notxml/icons/run.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.editors.notxml/src/org/nodeclipse/enide/editors/notxml/NotXmlConstants.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.editors.notxml; 2 | 3 | public class NotXmlConstants { 4 | 5 | public static final String PLUGIN_ID = "org.nodeclipse.enide.editors.notxml"; 6 | 7 | } 8 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/HelpToc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/,\ 7 | HelpToc.xml,\ 8 | .README.md.html,\ 9 | gradle-help.txt 10 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/docs/Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/docs/Preferences.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/docs/add-gradle-daemon-as-external-tool-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/docs/add-gradle-daemon-as-external-tool-1.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/docs/add-gradle-daemon-as-external-tool-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/docs/add-gradle-daemon-as-external-tool-2.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/docs/from-getting-started.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/docs/from-getting-started.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/iconbank/gradle-icon-16x16_bottom_right_corner_java_8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/iconbank/gradle-icon-16x16_bottom_right_corner_java_8x8.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/iconbank/java_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/iconbank/java_16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/iconbank/java_16x16_0.75_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/iconbank/java_16x16_0.75_size.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/iconbank/java_16x16_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/iconbank/java_16x16_on_white.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/iconbank/java_16x16_on_white_0.75_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/iconbank/java_16x16_on_white_0.75_size.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/iconbank/java_8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/iconbank/java_8x8.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/icons/gradle-icon-16x16-gradle-gui-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/icons/gradle-icon-16x16-gradle-gui-launch.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/icons/gradle-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/icons/gradle-icon-16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/icons/gradle-icon-16x16_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.gradle/icons/gradle-icon-16x16_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/android/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch.android; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/daemon/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch.daemon; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/jetty/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch.jetty; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/jettyeclipse/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch.jettyeclipse; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/run/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch.run; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/task1/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch.task1; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launch/task2/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launch.task2; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/launchgui/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.launchgui; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/util/NodeclipseLogger.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.gradle.util; 2 | 3 | import org.nodeclipse.common.ui.CommonConsole; 4 | 5 | /** 6 | * Allow to use any logger 7 | * @author pverest 8 | * @since 0.10 9 | */ 10 | public class NodeclipseLogger { 11 | 12 | public static void log(String message){ 13 | System.out.print(message); 14 | CommonConsole.write(message); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/HelpToc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/,\ 7 | HelpToc.xml,\ 8 | .README.md.html,\ 9 | maven-help.txt 10 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/docs/create-my-webapp-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/docs/create-my-webapp-2.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/docs/enide-maven-run-as-mvn-package-results-in-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/docs/enide-maven-run-as-mvn-package-results-in-console.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/docs/enide-maven-run-as-mvn-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/docs/enide-maven-run-as-mvn-package.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/docs/javascript-m2e.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/docs/javascript-m2e.PNG -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/docs/run-maven-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/docs/run-maven-build.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/iconbank/apache.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/iconbank/apache.ico -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/iconbank/maven-feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/iconbank/maven-feather.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/iconbank/maven-mini-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/iconbank/maven-mini-logo.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/icons/feather-ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/icons/feather-ma.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/icons/feather-ma16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/icons/feather-ma16.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/icons/feather-ma16_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/icons/feather-ma16_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/icons/feather-ma32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.enide.maven/icons/feather-ma32.png -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.maven.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launch/goal1/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.maven.launch.goal1; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launch/goal2/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.maven.launch.goal2; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launch/jetty/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.maven.launch.jetty; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launch/jetty/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html 3 | * @author pverest 4 | * 5 | */ 6 | package org.nodeclipse.enide.maven.launch.jetty; -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launch/tomcat/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.maven.launch.tomcat; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launch/tomcat/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | http://tomcat.apache.org/maven-plugin.html 3 | * @author pverest 4 | * 5 | */ 6 | package org.nodeclipse.enide.maven.launch.tomcat; -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/launchexec/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.maven.launchexec; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/util/NodeclipseLogger.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.enide.maven.util; 2 | 3 | import org.nodeclipse.common.ui.CommonConsole; 4 | 5 | /** 6 | * Allow to use any logger 7 | * @author pverest 8 | * @since 0.10 9 | */ 10 | public class NodeclipseLogger { 11 | 12 | public static void log(String message){ 13 | System.out.print(message); 14 | CommonConsole.write(message); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /org.nodeclipse.help/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.help/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /.*.md.html 3 | /.settings 4 | -------------------------------------------------------------------------------- /org.nodeclipse.help/LinkedToc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /org.nodeclipse.help/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Nodeclipse Help 4 | Bundle-SymbolicName: org.nodeclipse.help;singleton:=true 5 | Bundle-Version: 1.0.2.qualifier 6 | Bundle-Activator: org.nodeclipse.help.Activator 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime 9 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 10 | -------------------------------------------------------------------------------- /org.nodeclipse.help/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | html/,\ 7 | *.xml,\ 8 | contents/ 9 | -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/Connection-to-V8-timed-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/Connection-to-V8-timed-out.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/External-Tool-Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/External-Tool-Configuration.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/External-Tool-Launch-Are-Seen-In-Debug-View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/External-Tool-Launch-Are-Seen-In-Debug-View.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/External-Tool-Launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/External-Tool-Launch.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/Nodeclipse_logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/Nodeclipse_logo_light.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/Redis-project.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/Redis-project.PNG -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/ResetPerspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/ResetPerspective.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/installbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/installbutton.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/nodejs-sources-lib.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/nodejs-sources-lib.PNG -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/images/try-git-74x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.help/contents/images/try-git-74x71.png -------------------------------------------------------------------------------- /org.nodeclipse.help/contents/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "contents", 3 | "version": "0.0.0", 4 | "description": "If trying with Node.js marked could be used", 5 | "main": "index.js", 6 | "dependencies": { 7 | "marked": "~0.2.9" 8 | }, 9 | "devDependencies": {}, 10 | "scripts": { 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "repository": "", 14 | "author": "", 15 | "license": "BSD" 16 | } 17 | -------------------------------------------------------------------------------- /org.nodeclipse.help/html/maintopic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Main Topic 7 | 8 | 9 | 10 |

Main Topic

11 | Please enter your text here. 12 | 13 | -------------------------------------------------------------------------------- /org.nodeclipse.help/html/subtopic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Sub Topic 7 | 8 | 9 | 10 |

Sub Topic

11 | Please enter your text here. 12 | 13 | -------------------------------------------------------------------------------- /org.nodeclipse.help/html/toc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Table of Contents 7 | 8 | 9 | 10 |

Table of Contents

11 | Please enter your text here. 12 | 13 | -------------------------------------------------------------------------------- /org.nodeclipse.help/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/icons/java_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.java.avatarjs/icons/java_16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/icons/java_16x16_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.java.avatarjs/icons/java_16x16_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/icons/nashorn_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.java.avatarjs/icons/nashorn_16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/icons/nashorn_16x16_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.java.avatarjs/icons/nashorn_16x16_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/icons/nashorn_16x16_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.java.avatarjs/icons/nashorn_16x16_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.java.avatarjs/src/org/nodeclipse/java/avatarjs/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.java.avatarjs.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.jjs/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.jjs/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/,\ 7 | help/,\ 8 | HelpToc.xml 9 | -------------------------------------------------------------------------------- /org.nodeclipse.jjs/help/fxhelloworld.js: -------------------------------------------------------------------------------- 1 | 2 | function start(stage) { 3 | stage.title = "Hello World!"; 4 | var button = new Button(); 5 | button.text = "Say 'Hello World'"; 6 | button.onAction = function() print("Hello World!"); 7 | var root = new StackPane(); 8 | root.children.add(button); 9 | stage.scene = new Scene(root, 300, 250); 10 | stage.show(); 11 | } 12 | load("fxinit.js"); 13 | -------------------------------------------------------------------------------- /org.nodeclipse.jjs/iconbank/java_16x16_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.jjs/iconbank/java_16x16_on_white.png -------------------------------------------------------------------------------- /org.nodeclipse.jjs/icons/java_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.jjs/icons/java_16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.jjs/icons/java_21x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.jjs/icons/java_21x21.png -------------------------------------------------------------------------------- /org.nodeclipse.jjs/icons/nashorn_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.jjs/icons/nashorn_16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.jjs/icons/nashorn_16x16_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.jjs/icons/nashorn_16x16_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.jjs/icons/nashorn_16x16_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.jjs/icons/nashorn_16x16_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.jjs/src/org/nodeclipse/jjs/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.jjs.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/HelpToc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/README.md: -------------------------------------------------------------------------------- 1 | 2 | Run .js files using MongoDB shell 3 | 4 | Depends on `.ui` and `.common` 5 | 6 | See also 7 | and [#155](https://github.com/angelozerr/tern.java/issues/155) 8 | -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/,\ 7 | help/,\ 8 | HelpToc.xml 9 | -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/icons/mongodb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.mongodb/icons/mongodb.ico -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/icons/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.mongodb/icons/mongodb.png -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/icons/mongodb_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.mongodb/icons/mongodb_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/icons/mongodb_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.mongodb/icons/mongodb_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/src/org/nodeclipse/mongodb/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.mongodb.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.mongodb/src/org/nodeclipse/mongodb/preferences/MongoDBConstants.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.mongodb.preferences; 2 | 3 | public class MongoDBConstants { 4 | 5 | public static final String PROCESS_MESSAGE = "MongoDB Shell Process"; 6 | 7 | public static final String PREFERENCES_PAGE = "org.nodeclipse.mongodb.preferences.MongodbPreferencePage"; 8 | public static final String PREFERENCE_PAGE_NAME ="Nodeclipse/MongoDB"; // ! not the same as in plugin.xml 9 | } 10 | -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/README.md: -------------------------------------------------------------------------------- 1 | 2 | ## Usage 3 | 4 | Read at 5 | 6 | Read also built-in F1 7 | and [Online Help](https://github.com/Nodeclipse/nodeclipse-1/tree/master/org.nodeclipse.help/contents#intro) 8 | 9 | ## Developing 10 | 11 | Depends on `.ui` and `.common` -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/icons/phantomjs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.phantomjs/icons/phantomjs.ico -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/icons/phantomjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.phantomjs/icons/phantomjs.png -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/icons/phantomjs_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.phantomjs/icons/phantomjs_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/icons/phantomjs_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.phantomjs/icons/phantomjs_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/icons/phantomjs_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.phantomjs/icons/phantomjs_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/src/org/nodeclipse/phantomjs/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.phantomjs.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.phantomjs/src/org/nodeclipse/phantomjs/preferences/PhantomjsConstants.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.phantomjs.preferences; 2 | 3 | public class PhantomjsConstants { 4 | 5 | public static final String PROCESS_MESSAGE = "PhantomJS Process"; 6 | 7 | public static final String PREFERENCES_PAGE = "org.nodeclipse.phantomjs.preferences.PhantomjsPreferencePage"; 8 | public static final String PREFERENCE_PAGE_NAME ="Nodeclipse/PhantomJS"; // ! not the same as in plugin.xml 9 | } 10 | -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/main/java/ 2 | output.. = target/classes/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/iconbank/github-cat_yellow_bottom_right_corner_node_favicon_16x16_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/iconbank/github-cat_yellow_bottom_right_corner_node_favicon_16x16_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/iconbank/stackoverflow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/iconbank/stackoverflow.ico -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/iconbank/stackoverflow16_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/iconbank/stackoverflow16_green.png -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/iconbank/tennis_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/iconbank/tennis_ball.png -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/icons/github-cat_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/icons/github-cat_green.png -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/icons/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/icons/green.png -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/icons/stackoverflow16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/icons/stackoverflow16.png -------------------------------------------------------------------------------- /org.nodeclipse.pluginslist.core/icons/tennis_ball_16x16_bottom_right_corner_green_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.pluginslist.core/icons/tennis_ball_16x16_bottom_right_corner_green_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.redis/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.redis/HelpToc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /org.nodeclipse.redis/README.md: -------------------------------------------------------------------------------- 1 | 2 | Redis support is under investigation 3 | 4 | -------------------------------------------------------------------------------- /org.nodeclipse.redis/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/,\ 7 | help/,\ 8 | HelpToc.xml 9 | -------------------------------------------------------------------------------- /org.nodeclipse.redis/help/redis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.redis/help/redis-logo.png -------------------------------------------------------------------------------- /org.nodeclipse.redis/icons/redis-ico-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.redis/icons/redis-ico-16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.redis/icons/redis-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.redis/icons/redis-ico.png -------------------------------------------------------------------------------- /org.nodeclipse.redis/src/org/nodeclipse/redis/launch/ConstantsRedis.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.redis.launch; 2 | 3 | public class ConstantsRedis { 4 | 5 | public static final String PROCESS_MESSAGE = "Redis-cli Process"; 6 | 7 | } 8 | -------------------------------------------------------------------------------- /org.nodeclipse.redis/src/org/nodeclipse/redis/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.redis.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.site.quick/README.md: -------------------------------------------------------------------------------- 1 | 2 | Simpler build during dev. Not full. See also `org.nodeclipse.site` module. 3 | 4 | 5 | Idea: 2 stages to include external plugins. (No way known to make include or extend `category.xml` ) 6 | -------------------------------------------------------------------------------- /org.nodeclipse.site.quick/src/main/resources/index.html: -------------------------------------------------------------------------------- 1 | test 2 | https://wiki.eclipse.org/Tycho/Release_Notes/0.22 -------------------------------------------------------------------------------- /org.nodeclipse.ui/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /templates/node_modules 2 | .project_ -------------------------------------------------------------------------------- /org.nodeclipse.ui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | icons/,\ 7 | templates/ 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/bower.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/bower.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/coffee.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/coffee.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/e.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/e.PNG -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/e_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/e_16x16.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/eclipse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/eclipse.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/git.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/git.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/jshint-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/jshint-blue.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/jshint-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/jshint-dark.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/node.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/node.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/node_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/node_favicon.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/node_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/node_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/npm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/npm.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/typescript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/typescript.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/iconbank/typescript_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/iconbank/typescript_16.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/bower16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/bower16.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/coffee.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/coffee_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/coffee_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/contentassist/method.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/contentassist/method.gif -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/contentassist/method_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/contentassist/method_blue.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/contentassist/property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/contentassist/property.gif -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/e_16x16_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/e_16x16_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/jsh_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/jsh_16.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/node-nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/node-nature.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/node.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/node_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/node_blue.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/node_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/node_red.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/node_top_right_corner_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/node_top_right_corner_file.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/node_top_right_corner_file_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/node_top_right_corner_file_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/node_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/node_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/npm/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/npm/npm.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/npm/npm_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/npm/npm_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/npm/npm_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/npm/npm_gray.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/ovr16/CreateChild.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/ovr16/CreateChild.gif -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/ovr16/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/ovr16/file.gif -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/ovr16/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/ovr16/new.gif -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/run.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/tern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/tern.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/icons/typescript_16_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/icons/typescript_16_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/ContentFromProject.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.contentassist; 2 | 3 | /** 4 | * idea: 5 | * - read project's package.json file to get list of used packages 6 | * - read node_modules/~/README.* to get some module description 7 | * 8 | * @author Paul 9 | */ 10 | public class ContentFromProject { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/ContentFromSourcesTest.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.contentassist; 2 | 3 | //import static org.junit.Assert.*; 4 | // 5 | //import org.junit.Test; 6 | // 7 | //public class ContentFromSourcesTest { 8 | // 9 | // @Test 10 | // public void test() { 11 | // fail("Not yet implemented"); 12 | // } 13 | // 14 | //} 15 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/DefinitelyTyped/README.md: -------------------------------------------------------------------------------- 1 | See #24 Improving Code Assist with TypeScript 2 | 3 | github.com/borisyankov/DefinitelyTyped 4 | has accumulated type definitions for a lot of JS frameworks 5 | 6 | 7 | To start with searched for TOP10 web frameworks 8 | 9 | - http://www.sitepoint.com/top-10-front-end-development-frameworks/ 10 | - (not useful) http://www.infoq.com/research/jvm-web-frameworks 11 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/EntryProcessor.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.contentassist; 2 | 3 | public interface EntryProcessor { 4 | 5 | void process(Entry entry); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/EntryType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.contentassist; 2 | 3 | public enum EntryType { 4 | module, method, clazz, property, unknown 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/IModelFiller.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.contentassist; 2 | 3 | public interface IModelFiller { 4 | 5 | void initModel(Model model); 6 | 7 | } -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/IRepo.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.contentassist; 2 | 3 | import java.util.List; 4 | 5 | public interface IRepo { 6 | 7 | void addModule(Module module); 8 | 9 | void addEntry(Entry entry); 10 | 11 | List findMatchingEntries(String input); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/Module.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.contentassist; 2 | 3 | /** 4 | * @author Paul Verest 5 | */ 6 | public class Module { 7 | 8 | private String name; 9 | 10 | public Module(String name){ 11 | this.name=name; 12 | } 13 | 14 | @Override 15 | public String toString(){ 16 | return name; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/contentassist/indexFiles/README.md: -------------------------------------------------------------------------------- 1 | from https://github.com/eclipse/orion.client 2 | 3 | orion.client\bundles\org.eclipse.orion.client.javascript\web\javascript\contentAssist\indexFiles 4 | 5 | source code is available 6 | under the [Eclipse Public License](http://www.eclipse.org/legal/epl-v10.html) 7 | and [Eclipse Distribution License](http://www.eclipse.org/org/documents/edl-v10.php). 8 | 9 | For changes please contribute to the named project. 10 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/highlight/MultilineCommentScanner.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.highlight; 2 | 3 | import org.eclipse.jface.text.TextAttribute; 4 | import org.eclipse.jface.text.rules.BufferedRuleBasedScanner; 5 | import org.eclipse.jface.text.rules.Token; 6 | 7 | public class MultilineCommentScanner extends BufferedRuleBasedScanner { 8 | public MultilineCommentScanner(TextAttribute attr) { 9 | setDefaultReturnToken(new Token(attr)); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/npm/IGoal.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.npm; 2 | 3 | public interface IGoal { 4 | public String getGoal(); 5 | } 6 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/src/org/nodeclipse/ui/npm/InstallLaunchShortcut.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.ui.npm; 2 | 3 | import org.nodeclipse.ui.util.Constants; 4 | 5 | /** 6 | * Using "Run As" --> "npm install" will lead here. 7 | **/ 8 | public class InstallLaunchShortcut extends LaunchShortcut implements IGoal { 9 | public String getGoal() { 10 | return Constants.NPM_INSTALL; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.gitignore: -------------------------------------------------------------------------------- 1 | .*.md.html 2 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.npmignore: -------------------------------------------------------------------------------- 1 | !common-templates/.gitignore 2 | /.settings/ 3 | /.jshintrc 4 | /.project 5 | .*.md.html 6 | mongodb-replicaset 7 | z_snippets 8 | npm-debug.log 9 | *.list 10 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.settings/com.eclipsesource.jshint.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | excluded=//*.json\:bower_components//*\:node_lib//*\:node_modules//* 3 | included=//*.jjs\://*.js\://*.jshintrc\://*.mjs\://*.njs\://*.pjs\://*.vjs 4 | projectSpecificOptions=true 5 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.settings/org.eclipse.wst.jsdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | semanticValidation=disabled 3 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.sublime-project: -------------------------------------------------------------------------------- 1 | { 2 | "folders": 3 | [ 4 | { 5 | "path": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/.tern-project: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "outline": { 4 | 5 | }, 6 | "node": { 7 | 8 | } 9 | }, 10 | "libs": [ 11 | "ecma5", 12 | "ecma6" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/android-application/.gitignore: -------------------------------------------------------------------------------- 1 | /gen/ 2 | /bin/ 3 | /.gradle/ 4 | /build/ 5 | /gradle-app.setting 6 | .*.md.html 7 | .DS_Store 8 | .idea/workspace.xml 9 | /local.properties -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/bin/epm.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // #101; this file should have UNIX style line endings (\n only) when publishing 3 | 4 | /* what module to use? */ 5 | 6 | var path = require('path'); 7 | var fs = require('fs'); 8 | 9 | var installerjs = path.join(path.dirname(fs.realpathSync(__filename)), '../nodeclipse-install.js'); 10 | var c = require(installerjs); 11 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/bin/nci.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // #101; this file should have UNIX style line endings (\n only) when publishing 3 | 4 | /* what module to use? */ 5 | 6 | var path = require('path'); 7 | var fs = require('fs'); 8 | 9 | var installerjs = path.join(path.dirname(fs.realpathSync(__filename)), '../nodeclipse-install.js'); 10 | var c = require(installerjs); 11 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/common-templates/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | */bower_components/ 3 | 4 | .*.md.html 5 | 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/common-templates/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/common-templates/.settings/com.eclipsesource.jshint.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | excluded=//*.json\://bower_components//*\:node_lib//*\:node_modules//* 3 | included=//*.jjs\://*.js\://*.jshintrc\://*.mjs\://*.njs\://*.pjs\://*.vjs 4 | projectSpecificOptions=true 5 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/common-templates/.settings/org.eclipse.wst.jsdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | semanticValidation=disabled 3 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/common-templates/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/common-templates/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/common-templates/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # ${projectname} 4 | 5 | 6 | 7 | ## Usage 8 | 9 | 10 | 11 | ## Developing 12 | 13 | 14 | 15 | ### Tools 16 | 17 | Created with [Nodeclipse](https://github.com/Nodeclipse/nodeclipse-1) 18 | ([Eclipse Marketplace](http://marketplace.eclipse.org/content/nodeclipse), [site](http://www.nodeclipse.org)) 19 | 20 | Nodeclipse is free open-source project that grows with your contributions. 21 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/eclipse-project-general/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | ${projectname} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-angularjs/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "public/bower_components" 3 | } -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-angularjs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NodePlusAngularJS", 3 | "version": "0.0.0", 4 | "authors": [ 5 | "Paul Verest " 6 | ], 7 | "license": "MIT", 8 | "private": true, 9 | "ignore": [ 10 | "**/.*", 11 | "node_modules", 12 | "bower_components", 13 | "test", 14 | "tests" 15 | ], 16 | "dependencies": { 17 | "angular": "~1.3.0" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-angularjs/public/app.js: -------------------------------------------------------------------------------- 1 | 2 | var app = angular.module('MyAngularApp',[]); 3 | 4 | //var app = angular.module('MyAngularApp', [], function($httpProvider) { 5 | // // Use x-www-form-urlencoded Content-Type 6 | // //$httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8'; 7 | //}); 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-angularjs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.ui/templates/hello-angularjs/public/favicon.ico -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-angularjs/public/json.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Paul" 3 | } 4 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-coffee/hello-world-server.coffee: -------------------------------------------------------------------------------- 1 | http = require 'http' 2 | 3 | http.createServer (req, res) -> 4 | res.writeHead 200, {'Content-Type': 'text/plain'} 5 | res.end 'Hello Coffee\n' 6 | .listen 1337, '127.0.0.1' 7 | 8 | console.log 'Server running at http://127.0.0.1:1337/' -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-html/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 2. `npm install http-server -g` to get [simple HTTP file server](https://github.com/nodeapps/http-server), 5 | you may want to use Apache or any other 6 | 3. `http-server . -p 8010` 7 | 4. Open `http://localhost:8010/` to check if you see home page 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-html/index.js: -------------------------------------------------------------------------------- 1 | document.write('Hello HTML'); -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-koa/koa-app.njs: -------------------------------------------------------------------------------- 1 | var koa = require('koa'); 2 | var app = koa(); 3 | 4 | app.use(function *(){ 5 | this.body = 'Hello World'; 6 | }); 7 | 8 | app.listen(3000); 9 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-nashorn/fxhelloworld.js: -------------------------------------------------------------------------------- 1 | 2 | function start(stage) { 3 | stage.title = "Hello World!"; 4 | var button = new Button(); 5 | button.text = "Say 'Hello World'"; 6 | button.onAction = function() print("Hello World!"); 7 | var root = new StackPane(); 8 | root.children.add(button); 9 | stage.scene = new Scene(root, 300, 250); 10 | stage.show(); 11 | } 12 | load("fxinit.js"); 13 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-typescript/hello-world-server.ts: -------------------------------------------------------------------------------- 1 | declare function require(name:string); 2 | var http = require('http'); 3 | http.createServer(function handler(req, res) { 4 | res.writeHead(200, {'Content-Type': 'text/plain'}); 5 | res.end('Hello TypeScript\n'); 6 | }).listen(1337, '127.0.0.1'); 7 | console.log('Server running at http://127.0.0.1:1337/'); -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-vertx/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | By default, vert.x runs Javascript with Rhino. Change this by creating a `langs.properties` file at the root of your project that looks something like this. 4 | 5 | nashorn=io.vertx~lang-nashorn~0.1-SNAPSHOT:org.vertx.java.platform.impl.NashornVerticleFactory.js=nashorn -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-vertx/hello-vertx.js: -------------------------------------------------------------------------------- 1 | var vertx = require('vertx'); 2 | 3 | vertx.createHttpServer().requestHandler(function(req) { 4 | var file = req.path() === '/' ? 'index.html' : req.path(); 5 | req.response.sendFile('/' + file); // 'webroot/' 6 | }).listen(8080) 7 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-vertx/hello-vorld.js: -------------------------------------------------------------------------------- 1 | var vertx = require('vertx'); 2 | 3 | vertx.createHttpServer().requestHandler(function(req) { 4 | req.response.end("Hello World!"); 5 | }).listen(8080, 'localhost'); 6 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-vertx/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hello Vert.x 6 | 7 | 8 | Hello Vert.x 9 | 10 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-world/hello-world-server.js: -------------------------------------------------------------------------------- 1 | var http = require('http'); 2 | http.createServer(function handler(req, res) { 3 | res.writeHead(200, {'Content-Type': 'text/plain'}); 4 | res.end('Hello World\n'); 5 | }).listen(1337, '127.0.0.1'); 6 | console.log('Server running at http://127.0.0.1:1337/'); 7 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/hello-world/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "${projectname}", 3 | "version": "0.1.0", 4 | "description": "${projectname}", 5 | "main": "hello-world-server.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified! Configure in package.json\" && exit 1" 8 | }, 9 | "repository": "", 10 | "keywords": [ 11 | "node.js", 12 | "eclipse", 13 | "nodeclipse" 14 | ], 15 | "author": "", 16 | "license": "MIT", 17 | "readmeFilename": "README.md" 18 | } 19 | -------------------------------------------------------------------------------- /org.nodeclipse.ui/templates/tern-node/.tern-project: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "outline": { 4 | 5 | }, 6 | "node": { 7 | 8 | } 9 | }, 10 | "libs": [ 11 | "ecma5", 12 | "ecma6" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /org.nodeclipse.vertx/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.nodeclipse.vertx/README.md: -------------------------------------------------------------------------------- 1 | 2 | [![InstallLink][1]](http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1512273) 3 | [Vert.x](https://github.com/Nodeclipse/nodeclipse-1/tree/master/org.nodeclipse.vertx) 4 | is initial support for Eclipse vert.x projects. 5 | [mp](http://marketplace.eclipse.org/content/vertx) 6 | 7 | [1]: http://marketplace.eclipse.org/sites/all/modules/custom/marketplace/images/installbutton.png 8 | 9 | ## org.nodeclipse.vertx 10 | 11 | Depends on `.ui` and `.common` 12 | 13 | -------------------------------------------------------------------------------- /org.nodeclipse.vertx/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | icons/ 7 | -------------------------------------------------------------------------------- /org.nodeclipse.vertx/iconbank/dot-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/iconbank/dot-x.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/iconbank/logo-white-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/iconbank/logo-white-big.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/iconbank/vert-x-140.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/iconbank/vert-x-140.jpeg -------------------------------------------------------------------------------- /org.nodeclipse.vertx/iconbank/vert-x-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/iconbank/vert-x-140.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/iconbank/vert-x-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/iconbank/vert-x-16.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/iconbank/vert-x-16_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/iconbank/vert-x-16_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/icons/dot-x-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/icons/dot-x-16.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/icons/dot-x-16_bottom_right_corner_run_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/icons/dot-x-16_bottom_right_corner_run_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/icons/dot-x-16_half_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/icons/dot-x-16_half_size.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/icons/dot-x-16_top_right_corner_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/org.nodeclipse.vertx/icons/dot-x-16_top_right_corner_new.png -------------------------------------------------------------------------------- /org.nodeclipse.vertx/src/org/nodeclipse/vertx/launch/LaunchConfigurationType.java: -------------------------------------------------------------------------------- 1 | package org.nodeclipse.vertx.launch; 2 | 3 | public class LaunchConfigurationType { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/site/README.md: -------------------------------------------------------------------------------- 1 | 2 | check README inside markdown folder. It also goes into published site. 3 | -------------------------------------------------------------------------------- /src/site/markdown/ImportProjects-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/markdown/ImportProjects-Selected.png -------------------------------------------------------------------------------- /src/site/markdown/ImportProjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/markdown/ImportProjects.png -------------------------------------------------------------------------------- /src/site/markdown/RunOrDebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/markdown/RunOrDebug.png -------------------------------------------------------------------------------- /src/site/markdown/maven.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ##### Maven/tycho version update 4 | 5 | ``` 6 | mvn -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=0.7.0-SNAPSHOT 7 | ``` 8 | 9 | -------------------------------------------------------------------------------- /src/site/markdown/org.nodeclipse.debug-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/markdown/org.nodeclipse.debug-dependencies.png -------------------------------------------------------------------------------- /src/site/markdown/org.nodeclipse.ui-dependants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/markdown/org.nodeclipse.ui-dependants.png -------------------------------------------------------------------------------- /src/site/markdown/tips.md: -------------------------------------------------------------------------------- 1 | 2 | > Q: How to determine which eclipse plugins are contributing to menus and toolbars 3 | 4 | Alt + Shift + F2 5 | then click some menu. 6 | You can know contributor and menu URI. 7 | 8 | Alt + Shift + F1 : inspect current active part and selection. 9 | Alt + Shift + F3 : inspector contributor of Widget or item. 10 | 11 | You needs plugin-spy plugin in runtime. -------------------------------------------------------------------------------- /src/site/resources/header3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/resources/header3.png -------------------------------------------------------------------------------- /src/site/resources/import-from-git-with-submodules-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/resources/import-from-git-with-submodules-result.png -------------------------------------------------------------------------------- /src/site/resources/import-from-git-with-submodules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodeclipse/nodeclipse/84474d4f2a43dd024614f46764b830f7b55f7c33/src/site/resources/import-from-git-with-submodules.png --------------------------------------------------------------------------------