| 
					
				 | 
			
			
				@@ -368,12 +368,11 @@ var i : integer; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     fileName, data : String;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     lines : TStringList;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 begin
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  // todo
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   if (Sender is TMenuItem) then begin
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     if (checkDirty()) then begin
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       i := TMenuItem(Sender).Tag;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       filename :=  examples[i-1];
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-      data := DownloadFile('http://wkla.no-ip.biz/down/' + filename);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      data := DownloadFile('http://wkla.no-ip.biz/down/tps_examples/' + filename);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       lines := TStringList.Create;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       lines.Text:= data;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       loadFromList(lines, filename);
 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -405,7 +404,7 @@ begin 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   Examples.Clear;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   try
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    jsonString := DownloadFile('http://wkla.no-ip.biz/down/examples.json');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    jsonString := DownloadFile('http://wkla.no-ip.biz/down/tps_examples/examples.json');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     Data := StringToJSONData(jsonString);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     JArray := GetJSONProp(TJSONObject(Data), 'examples');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     for i := 1 to TJSONArray(JArray).Count do
 
			 |