/jEdit/tags/jedit-4-2-pre4/doclet/Clean_Up_Javadoc.bsh
# · Unknown · 11 lines · 11 code · 0 blank · 0 comment · 0 complexity · 1ca0c74b059c5759ceae3342c5a73209 MD5 · raw file
- fileDialogReturnValue = GUIUtilities.showVFSFileDialog(view,null,
- VFSBrowser.CHOOSE_DIRECTORY_DIALOG,false);
- if(fileDialogReturnValue != null)
- {
- SearchAndReplace.setSearchString("(<SCRIPT>(.|\n)*?</SCRIPT>|onload=\".*\")");
- SearchAndReplace.setReplaceString("");
- SearchAndReplace.setRegexp(true);
- SearchAndReplace.setSearchFileSet(new DirectoryListSet(
- fileDialogReturnValue[0],"*.html",true));
- SearchAndReplace.replaceAll(view);
- }