├── .idea ├── .gitignore ├── .name ├── codeStyleSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── dictionaries │ └── Sergey.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── modules.xml ├── modules │ └── RegexpTester.test.iml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml └── vcs.xml ├── README ├── RegexpTester ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── ess │ │ │ └── regexutil │ │ │ └── ideaplugin │ │ │ ├── FakeRegexpHost.java │ │ │ ├── FlagPanelAction.java │ │ │ ├── MatchResult.java │ │ │ ├── MatchType.java │ │ │ ├── MatchingProcessor.java │ │ │ ├── MatchingResultPanel.java │ │ │ ├── MyJavaRegExpHost.java │ │ │ ├── RegexHighlighter.java │ │ │ ├── RegexPanelStateService.java │ │ │ ├── RegexpAnalyzer.java │ │ │ ├── RegexpTesterPanel.java │ │ │ ├── RegexpTextField.java │ │ │ ├── RegexpToolWindowFactory.java │ │ │ ├── ReplacementTextField.java │ │ │ ├── State.java │ │ │ └── utils │ │ │ ├── DocumentChangeListener.java │ │ │ ├── HeightLimiter.java │ │ │ ├── HoverEditorListener.java │ │ │ ├── JBLableHyprlink.java │ │ │ └── Utils.java │ └── resources │ │ ├── META-INF │ │ ├── plugin.xml │ │ ├── pluginIcon.svg │ │ └── pluginIcon_dark.svg │ │ └── icons │ │ ├── toolwindow-icon.png │ │ └── toolwindow-icon_dark.png │ └── test │ └── java │ └── com │ └── ess │ └── regexutil │ └── ideaplugin │ ├── MyBasePlatformTestCase.java │ ├── RegexHighlighterTest.java │ ├── RegexPanelStateServiceTest.java │ ├── RegexPanelTestBase.java │ ├── RegexpAnalyzerTest.java │ ├── RegexpTesterPanelTest.java │ ├── ReplacementTextFieldTest.java │ └── ResultPanelTest.java └── web ├── content ├── WEB-INF │ └── web.xml ├── ads.txt ├── applet.html ├── css │ ├── jsRegexPage.css │ ├── regexp.css │ └── style.css ├── description.html ├── eclipsePlugin.html ├── examples.html ├── google6a1c7d32050e7b51.html ├── ideaPlugin.html ├── images │ ├── copyLink.jpg │ ├── error1_a.PNG │ ├── error1_p.PNG │ ├── error2_a.PNG │ ├── error2_p.PNG │ ├── error3_a.PNG │ ├── error3_p.PNG │ ├── error4_a.PNG │ ├── error4_p.PNG │ ├── find_a.PNG │ ├── find_p.PNG │ ├── ideaPlugin.PNG │ ├── ideaPluginLive.PNG │ ├── match1_a.PNG │ ├── match1_p.PNG │ ├── match2_a.PNG │ ├── match2_p.PNG │ ├── matchBrack1_a.PNG │ ├── matchBrack1_p.PNG │ ├── matchBrack2_a.PNG │ ├── matchBrack2_p.PNG │ ├── plugin.PNG │ ├── pluginForPC.PNG │ ├── pluginLive.PNG │ ├── replace_a.PNG │ ├── replace_p.PNG │ ├── select_a.PNG │ ├── select_p.PNG │ ├── split_a.PNG │ ├── split_p.PNG │ ├── tooltip1_a.PNG │ ├── tooltip1_p.PNG │ ├── tooltip2_a.PNG │ ├── tooltip2_p.PNG │ ├── tooltip3_a.PNG │ ├── tooltip3_p.PNG │ ├── tooltip4_a.PNG │ ├── tooltip4_p.PNG │ └── win.PNG ├── index.html ├── javaApplet.html ├── js │ ├── ace │ │ ├── ace.js │ │ ├── ext-chromevox.js │ │ ├── ext-elastic_tabstops_lite.js │ │ ├── ext-emmet.js │ │ ├── ext-error_marker.js │ │ ├── ext-keybinding_menu.js │ │ ├── ext-language_tools.js │ │ ├── ext-modelist.js │ │ ├── ext-old_ie.js │ │ ├── ext-options.js │ │ ├── ext-searchbox.js │ │ ├── ext-settings_menu.js │ │ ├── ext-spellcheck.js │ │ ├── ext-split.js │ │ ├── ext-static_highlight.js │ │ ├── ext-statusbar.js │ │ ├── ext-textarea.js │ │ ├── ext-themelist.js │ │ ├── ext-whitespace.js │ │ ├── keybinding-emacs.js │ │ ├── keybinding-vim.js │ │ ├── mode-text.js │ │ ├── theme-ambiance.js │ │ ├── theme-chrome.js │ │ ├── worker-coffee.js │ │ ├── worker-css.js │ │ ├── worker-html.js │ │ ├── worker-javascript.js │ │ ├── worker-json.js │ │ ├── worker-lua.js │ │ ├── worker-php.js │ │ └── worker-xquery.js │ ├── common.js │ ├── eclipsePluginRegH.js │ ├── examplesRegH.js │ ├── jquery.cookie.js │ ├── jquery.corner.js │ ├── jquery.getUrlParam.js │ ├── jquery.js │ ├── menu.js │ ├── regex.js │ ├── regexp │ │ ├── editorDependencies.js │ │ ├── mode-regexp.js │ │ ├── my_token_iterator.js │ │ ├── regexEditorApi.js │ │ ├── regexp_highlight_rules.js │ │ └── related_elements_marker.js │ └── script.js ├── jsRegexp.html ├── log-viewer-statistic.html ├── log-viewer-statistic │ ├── .htaccess │ └── 1pixel.png ├── regexApplet.jar ├── robots.txt ├── s_regexApplet.jar └── signedJar.html ├── deploy.xml ├── push-content.sh ├── tests ├── regexTokenizerTest.js ├── test.css ├── testUtil.js └── tests.html └── web.iml /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | RegexUtil -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Sergey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/dictionaries/Sergey.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/modules/RegexpTester.test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/modules/RegexpTester.test.iml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | http://myregexp.com/ -------------------------------------------------------------------------------- /RegexpTester/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/.gitignore -------------------------------------------------------------------------------- /RegexpTester/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/build.gradle -------------------------------------------------------------------------------- /RegexpTester/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RegexpTester/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /RegexpTester/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/gradlew -------------------------------------------------------------------------------- /RegexpTester/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/gradlew.bat -------------------------------------------------------------------------------- /RegexpTester/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'RegexpTester' 2 | 3 | -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/FakeRegexpHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/FakeRegexpHost.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/FlagPanelAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/FlagPanelAction.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchResult.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchType.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchingProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchingProcessor.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchingResultPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MatchingResultPanel.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MyJavaRegExpHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/MyJavaRegExpHost.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexHighlighter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexHighlighter.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexPanelStateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexPanelStateService.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpAnalyzer.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpTesterPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpTesterPanel.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpTextField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpTextField.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpToolWindowFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/RegexpToolWindowFactory.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/ReplacementTextField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/ReplacementTextField.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/State.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/State.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/DocumentChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/DocumentChangeListener.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/HeightLimiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/HeightLimiter.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/HoverEditorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/HoverEditorListener.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/JBLableHyprlink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/JBLableHyprlink.java -------------------------------------------------------------------------------- /RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/java/com/ess/regexutil/ideaplugin/utils/Utils.java -------------------------------------------------------------------------------- /RegexpTester/src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /RegexpTester/src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /RegexpTester/src/main/resources/META-INF/pluginIcon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/resources/META-INF/pluginIcon_dark.svg -------------------------------------------------------------------------------- /RegexpTester/src/main/resources/icons/toolwindow-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/resources/icons/toolwindow-icon.png -------------------------------------------------------------------------------- /RegexpTester/src/main/resources/icons/toolwindow-icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/main/resources/icons/toolwindow-icon_dark.png -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/MyBasePlatformTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/MyBasePlatformTestCase.java -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexHighlighterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexHighlighterTest.java -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexPanelStateServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexPanelStateServiceTest.java -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexPanelTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexPanelTestBase.java -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexpAnalyzerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexpAnalyzerTest.java -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexpTesterPanelTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/RegexpTesterPanelTest.java -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/ReplacementTextFieldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/ReplacementTextFieldTest.java -------------------------------------------------------------------------------- /RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/ResultPanelTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/RegexpTester/src/test/java/com/ess/regexutil/ideaplugin/ResultPanelTest.java -------------------------------------------------------------------------------- /web/content/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/WEB-INF/web.xml -------------------------------------------------------------------------------- /web/content/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-9077233705776207, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /web/content/applet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/applet.html -------------------------------------------------------------------------------- /web/content/css/jsRegexPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/css/jsRegexPage.css -------------------------------------------------------------------------------- /web/content/css/regexp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/css/regexp.css -------------------------------------------------------------------------------- /web/content/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/css/style.css -------------------------------------------------------------------------------- /web/content/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/description.html -------------------------------------------------------------------------------- /web/content/eclipsePlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/eclipsePlugin.html -------------------------------------------------------------------------------- /web/content/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/examples.html -------------------------------------------------------------------------------- /web/content/google6a1c7d32050e7b51.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/content/ideaPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/ideaPlugin.html -------------------------------------------------------------------------------- /web/content/images/copyLink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/copyLink.jpg -------------------------------------------------------------------------------- /web/content/images/error1_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error1_a.PNG -------------------------------------------------------------------------------- /web/content/images/error1_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error1_p.PNG -------------------------------------------------------------------------------- /web/content/images/error2_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error2_a.PNG -------------------------------------------------------------------------------- /web/content/images/error2_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error2_p.PNG -------------------------------------------------------------------------------- /web/content/images/error3_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error3_a.PNG -------------------------------------------------------------------------------- /web/content/images/error3_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error3_p.PNG -------------------------------------------------------------------------------- /web/content/images/error4_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error4_a.PNG -------------------------------------------------------------------------------- /web/content/images/error4_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/error4_p.PNG -------------------------------------------------------------------------------- /web/content/images/find_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/find_a.PNG -------------------------------------------------------------------------------- /web/content/images/find_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/find_p.PNG -------------------------------------------------------------------------------- /web/content/images/ideaPlugin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/ideaPlugin.PNG -------------------------------------------------------------------------------- /web/content/images/ideaPluginLive.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/ideaPluginLive.PNG -------------------------------------------------------------------------------- /web/content/images/match1_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/match1_a.PNG -------------------------------------------------------------------------------- /web/content/images/match1_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/match1_p.PNG -------------------------------------------------------------------------------- /web/content/images/match2_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/match2_a.PNG -------------------------------------------------------------------------------- /web/content/images/match2_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/match2_p.PNG -------------------------------------------------------------------------------- /web/content/images/matchBrack1_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/matchBrack1_a.PNG -------------------------------------------------------------------------------- /web/content/images/matchBrack1_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/matchBrack1_p.PNG -------------------------------------------------------------------------------- /web/content/images/matchBrack2_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/matchBrack2_a.PNG -------------------------------------------------------------------------------- /web/content/images/matchBrack2_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/matchBrack2_p.PNG -------------------------------------------------------------------------------- /web/content/images/plugin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/plugin.PNG -------------------------------------------------------------------------------- /web/content/images/pluginForPC.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/pluginForPC.PNG -------------------------------------------------------------------------------- /web/content/images/pluginLive.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/pluginLive.PNG -------------------------------------------------------------------------------- /web/content/images/replace_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/replace_a.PNG -------------------------------------------------------------------------------- /web/content/images/replace_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/replace_p.PNG -------------------------------------------------------------------------------- /web/content/images/select_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/select_a.PNG -------------------------------------------------------------------------------- /web/content/images/select_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/select_p.PNG -------------------------------------------------------------------------------- /web/content/images/split_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/split_a.PNG -------------------------------------------------------------------------------- /web/content/images/split_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/split_p.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip1_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip1_a.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip1_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip1_p.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip2_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip2_a.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip2_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip2_p.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip3_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip3_a.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip3_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip3_p.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip4_a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip4_a.PNG -------------------------------------------------------------------------------- /web/content/images/tooltip4_p.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/tooltip4_p.PNG -------------------------------------------------------------------------------- /web/content/images/win.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/images/win.PNG -------------------------------------------------------------------------------- /web/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/index.html -------------------------------------------------------------------------------- /web/content/javaApplet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/javaApplet.html -------------------------------------------------------------------------------- /web/content/js/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ace.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-chromevox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-chromevox.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-elastic_tabstops_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-elastic_tabstops_lite.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-emmet.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-error_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-error_marker.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-keybinding_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-keybinding_menu.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-language_tools.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-modelist.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-old_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-old_ie.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-options.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-searchbox.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-settings_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-settings_menu.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-spellcheck.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-split.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-static_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-static_highlight.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-statusbar.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-textarea.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-themelist.js -------------------------------------------------------------------------------- /web/content/js/ace/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/ext-whitespace.js -------------------------------------------------------------------------------- /web/content/js/ace/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/keybinding-emacs.js -------------------------------------------------------------------------------- /web/content/js/ace/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/keybinding-vim.js -------------------------------------------------------------------------------- /web/content/js/ace/mode-text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/content/js/ace/theme-ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/theme-ambiance.js -------------------------------------------------------------------------------- /web/content/js/ace/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/theme-chrome.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-coffee.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-css.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-html.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-javascript.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-json.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-lua.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-php.js -------------------------------------------------------------------------------- /web/content/js/ace/worker-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/ace/worker-xquery.js -------------------------------------------------------------------------------- /web/content/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/common.js -------------------------------------------------------------------------------- /web/content/js/eclipsePluginRegH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/eclipsePluginRegH.js -------------------------------------------------------------------------------- /web/content/js/examplesRegH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/examplesRegH.js -------------------------------------------------------------------------------- /web/content/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/jquery.cookie.js -------------------------------------------------------------------------------- /web/content/js/jquery.corner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/jquery.corner.js -------------------------------------------------------------------------------- /web/content/js/jquery.getUrlParam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/jquery.getUrlParam.js -------------------------------------------------------------------------------- /web/content/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/jquery.js -------------------------------------------------------------------------------- /web/content/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/menu.js -------------------------------------------------------------------------------- /web/content/js/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/regex.js -------------------------------------------------------------------------------- /web/content/js/regexp/editorDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/regexp/editorDependencies.js -------------------------------------------------------------------------------- /web/content/js/regexp/mode-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/regexp/mode-regexp.js -------------------------------------------------------------------------------- /web/content/js/regexp/my_token_iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/regexp/my_token_iterator.js -------------------------------------------------------------------------------- /web/content/js/regexp/regexEditorApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/regexp/regexEditorApi.js -------------------------------------------------------------------------------- /web/content/js/regexp/regexp_highlight_rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/regexp/regexp_highlight_rules.js -------------------------------------------------------------------------------- /web/content/js/regexp/related_elements_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/regexp/related_elements_marker.js -------------------------------------------------------------------------------- /web/content/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/js/script.js -------------------------------------------------------------------------------- /web/content/jsRegexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/jsRegexp.html -------------------------------------------------------------------------------- /web/content/log-viewer-statistic.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/content/log-viewer-statistic/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/log-viewer-statistic/.htaccess -------------------------------------------------------------------------------- /web/content/log-viewer-statistic/1pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/log-viewer-statistic/1pixel.png -------------------------------------------------------------------------------- /web/content/regexApplet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/regexApplet.jar -------------------------------------------------------------------------------- /web/content/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Host: myregexp.com -------------------------------------------------------------------------------- /web/content/s_regexApplet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/s_regexApplet.jar -------------------------------------------------------------------------------- /web/content/signedJar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/content/signedJar.html -------------------------------------------------------------------------------- /web/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/deploy.xml -------------------------------------------------------------------------------- /web/push-content.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/push-content.sh -------------------------------------------------------------------------------- /web/tests/regexTokenizerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/tests/regexTokenizerTest.js -------------------------------------------------------------------------------- /web/tests/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/tests/test.css -------------------------------------------------------------------------------- /web/tests/testUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/tests/testUtil.js -------------------------------------------------------------------------------- /web/tests/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/tests/tests.html -------------------------------------------------------------------------------- /web/web.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevdokimov/RegexUtil/HEAD/web/web.iml --------------------------------------------------------------------------------