From dbcebe1def5c355120c61b575390d1d9ac355f67 Mon Sep 17 00:00:00 2001 From: Jinwei Zhao Date: Sat, 19 Dec 2015 22:24:42 +0900 Subject: clear up --- Code/Blocks/syntax/tests/cases/001_basic.html | 42 ---------- Code/Blocks/syntax/tests/cases/002_brushes.html | 50 ----------- Code/Blocks/syntax/tests/cases/003_script_tag.html | 42 ---------- .../Blocks/syntax/tests/cases/004_url_parsing.html | 43 ---------- Code/Blocks/syntax/tests/cases/005_no_gutter.html | 33 -------- .../syntax/tests/cases/006_pad_line_numbers.html | 39 --------- Code/Blocks/syntax/tests/cases/007_collapse.html | 60 ------------- .../tests/cases/007_collapse_interaction.html | 44 ---------- Code/Blocks/syntax/tests/cases/008_first_line.html | 29 ------- Code/Blocks/syntax/tests/cases/009_class_name.html | 32 ------- Code/Blocks/syntax/tests/cases/010_highlight.html | 70 ---------------- Code/Blocks/syntax/tests/cases/011_smart_tabs.html | 98 ---------------------- .../Blocks/syntax/tests/cases/012_server_side.html | 35 -------- .../Blocks/syntax/tests/cases/013_html_script.html | 34 -------- Code/Blocks/syntax/tests/cases/014_legacy.html | 70 ---------------- 15 files changed, 721 deletions(-) delete mode 100644 Code/Blocks/syntax/tests/cases/001_basic.html delete mode 100644 Code/Blocks/syntax/tests/cases/002_brushes.html delete mode 100644 Code/Blocks/syntax/tests/cases/003_script_tag.html delete mode 100644 Code/Blocks/syntax/tests/cases/004_url_parsing.html delete mode 100644 Code/Blocks/syntax/tests/cases/005_no_gutter.html delete mode 100644 Code/Blocks/syntax/tests/cases/006_pad_line_numbers.html delete mode 100644 Code/Blocks/syntax/tests/cases/007_collapse.html delete mode 100644 Code/Blocks/syntax/tests/cases/007_collapse_interaction.html delete mode 100644 Code/Blocks/syntax/tests/cases/008_first_line.html delete mode 100644 Code/Blocks/syntax/tests/cases/009_class_name.html delete mode 100644 Code/Blocks/syntax/tests/cases/010_highlight.html delete mode 100644 Code/Blocks/syntax/tests/cases/011_smart_tabs.html delete mode 100644 Code/Blocks/syntax/tests/cases/012_server_side.html delete mode 100644 Code/Blocks/syntax/tests/cases/013_html_script.html delete mode 100644 Code/Blocks/syntax/tests/cases/014_legacy.html (limited to 'Code/Blocks/syntax/tests/cases') diff --git a/Code/Blocks/syntax/tests/cases/001_basic.html b/Code/Blocks/syntax/tests/cases/001_basic.html deleted file mode 100644 index 1d57334..0000000 --- a/Code/Blocks/syntax/tests/cases/001_basic.html +++ /dev/null @@ -1,42 +0,0 @@ -
-	/**
-	 * multiline comment 
-	 */
-	
-	text
-	
-	// single line comment
-	
-	text
-	
-	"string" text 'string' text "string"
-	"string with \" escape" text 'string with \' escape' text "string with \" escape"
-	
-	var code = '\
-		function helloWorld()\
-		{\
-			// this is great!\
-			for(var i = 0; i <= 1; i++)\
-				alert("yay");\
-		}\
-		';
-
- - diff --git a/Code/Blocks/syntax/tests/cases/002_brushes.html b/Code/Blocks/syntax/tests/cases/002_brushes.html deleted file mode 100644 index e9c64e2..0000000 --- a/Code/Blocks/syntax/tests/cases/002_brushes.html +++ /dev/null @@ -1,50 +0,0 @@ -
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
test
-
- - diff --git a/Code/Blocks/syntax/tests/cases/003_script_tag.html b/Code/Blocks/syntax/tests/cases/003_script_tag.html deleted file mode 100644 index 9b44292..0000000 --- a/Code/Blocks/syntax/tests/cases/003_script_tag.html +++ /dev/null @@ -1,42 +0,0 @@ -
- -
- - diff --git a/Code/Blocks/syntax/tests/cases/004_url_parsing.html b/Code/Blocks/syntax/tests/cases/004_url_parsing.html deleted file mode 100644 index d489a66..0000000 --- a/Code/Blocks/syntax/tests/cases/004_url_parsing.html +++ /dev/null @@ -1,43 +0,0 @@ -
-/**
- * Please see <http://www.alexgorbatchev.come/?test=1&y=2>
- */
-var home = "http://www.alexgorbatchev.come/?test=1&y=2;test/1/2/3;";
-// < http://www.gnu.org/licenses/?test=1&y=2 >.
-
-// Test embedded URLs that terminate at a left angle bracket.
-// See bug #28: http://bitbucket.org/alexg/syntaxhighlighter/issue/28/
-"http://www.example.com/song2.mp3";
-
- - \ No newline at end of file diff --git a/Code/Blocks/syntax/tests/cases/005_no_gutter.html b/Code/Blocks/syntax/tests/cases/005_no_gutter.html deleted file mode 100644 index 6e6b1be..0000000 --- a/Code/Blocks/syntax/tests/cases/005_no_gutter.html +++ /dev/null @@ -1,33 +0,0 @@ -
-			public Image getImage(URL url, String name) {
-				try {
-					/*
-					   Regular multiline comment.
-					*/
-				    return getImage(new URL(url, name));
-				} catch (MalformedURLException e) {
-				    return null;
-				}
-			}
-
- - diff --git a/Code/Blocks/syntax/tests/cases/006_pad_line_numbers.html b/Code/Blocks/syntax/tests/cases/006_pad_line_numbers.html deleted file mode 100644 index 8ebdd55..0000000 --- a/Code/Blocks/syntax/tests/cases/006_pad_line_numbers.html +++ /dev/null @@ -1,39 +0,0 @@ -
-/**
- * Returns an Image object that can then be painted on the screen. 
- * The url argument must specify an absolute {@link URL}. The name
- * argument is a specifier that is relative to the url argument. 
- *
- * @param  url  an absolute URL giving the base location of the image
- * @param  name the location of the image, relative to the url argument
- * @return      the image at the specified URL
- * @see         Image
- */
-
- - diff --git a/Code/Blocks/syntax/tests/cases/007_collapse.html b/Code/Blocks/syntax/tests/cases/007_collapse.html deleted file mode 100644 index 2643bb5..0000000 --- a/Code/Blocks/syntax/tests/cases/007_collapse.html +++ /dev/null @@ -1,60 +0,0 @@ -
-	/**
-	 * Returns an Image object that can then be painted on the screen. 
-	 * The url argument must specify an absolute {@link URL}. The name
-	 * argument is a specifier that is relative to the url argument. 
-	 *
-	 * @param  url  an absolute URL giving the base location of the image
-	 * @param  name the location of the image, relative to the url argument
-	 * @return      the image at the specified URL
-	 * @see         Image
-	 */
-
- -
-	/**
-	 * Returns an Image object that can then be painted on the screen. 
-	 * The url argument must specify an absolute {@link URL}. The name
-	 * argument is a specifier that is relative to the url argument. 
-	 *
-	 * @param  url  an absolute URL giving the base location of the image
-	 * @param  name the location of the image, relative to the url argument
-	 * @return      the image at the specified URL
-	 * @see         Image
-	 */
-
- - diff --git a/Code/Blocks/syntax/tests/cases/007_collapse_interaction.html b/Code/Blocks/syntax/tests/cases/007_collapse_interaction.html deleted file mode 100644 index ea72046..0000000 --- a/Code/Blocks/syntax/tests/cases/007_collapse_interaction.html +++ /dev/null @@ -1,44 +0,0 @@ - diff --git a/Code/Blocks/syntax/tests/cases/008_first_line.html b/Code/Blocks/syntax/tests/cases/008_first_line.html deleted file mode 100644 index 169dc38..0000000 --- a/Code/Blocks/syntax/tests/cases/008_first_line.html +++ /dev/null @@ -1,29 +0,0 @@ -
-	partial class Foo
-	{
-		function test()
-		{
-			yield return;
-		}
-	}
-
- - diff --git a/Code/Blocks/syntax/tests/cases/009_class_name.html b/Code/Blocks/syntax/tests/cases/009_class_name.html deleted file mode 100644 index f2437d5..0000000 --- a/Code/Blocks/syntax/tests/cases/009_class_name.html +++ /dev/null @@ -1,32 +0,0 @@ -
-	public Image getImage(URL url, String name) {
-		try {
-			/*
-			   Regular multiline comment.
-			*/
-		    return getImage(new URL(url, name));
-		} catch (MalformedURLException e) {
-		    return null;
-		}
-	}
-
- - diff --git a/Code/Blocks/syntax/tests/cases/010_highlight.html b/Code/Blocks/syntax/tests/cases/010_highlight.html deleted file mode 100644 index 64b6613..0000000 --- a/Code/Blocks/syntax/tests/cases/010_highlight.html +++ /dev/null @@ -1,70 +0,0 @@ -
-	public function validateStrongPassword(password:String):Boolean
-	{
-		if (password == null || password.length <= 0)
-		{
-			return false;
-		}
-		
-		return STRONG_PASSWORD_PATTERN.test(password);
-	}
-
- - - diff --git a/Code/Blocks/syntax/tests/cases/011_smart_tabs.html b/Code/Blocks/syntax/tests/cases/011_smart_tabs.html deleted file mode 100644 index d6d62fc..0000000 --- a/Code/Blocks/syntax/tests/cases/011_smart_tabs.html +++ /dev/null @@ -1,98 +0,0 @@ -
-	the		words	in		this	paragraph
-	should	look	like	they	are
-	evenly	spaced	between	columns
-
- -
-	the	words	in	this	paragraph
-	should	look	like	they	are
-	evenly	spaced	between	columns
-
- -
-	the		words	in		this	paragraph
-	should	look	out		of		whack
-	because	smart	tabs	are		disabled
-
- - diff --git a/Code/Blocks/syntax/tests/cases/012_server_side.html b/Code/Blocks/syntax/tests/cases/012_server_side.html deleted file mode 100644 index 1bb4217..0000000 --- a/Code/Blocks/syntax/tests/cases/012_server_side.html +++ /dev/null @@ -1,35 +0,0 @@ - - -
-
- - \ No newline at end of file diff --git a/Code/Blocks/syntax/tests/cases/013_html_script.html b/Code/Blocks/syntax/tests/cases/013_html_script.html deleted file mode 100644 index c0a1201..0000000 --- a/Code/Blocks/syntax/tests/cases/013_html_script.html +++ /dev/null @@ -1,34 +0,0 @@ -
-<hello>
-	<%
-		package free.cafekiwi.gotapi;
-	%>
-</hello>
-
-
-<%= print(); %>
-
- - \ No newline at end of file diff --git a/Code/Blocks/syntax/tests/cases/014_legacy.html b/Code/Blocks/syntax/tests/cases/014_legacy.html deleted file mode 100644 index eb4343e..0000000 --- a/Code/Blocks/syntax/tests/cases/014_legacy.html +++ /dev/null @@ -1,70 +0,0 @@ -
basic check
-
no toolbar
-
no gutter
-
collapsed
-
first line
- - -- cgit v1.2.3