mirror of https://github.com/apache/jmeter.git
				
				
				
			Bug 41903 - ViewResultsFullVisualizer : status column looks bad when you do copy and paste
git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/branches/rel-2-2@520560 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
		
							parent
							
								
									088d6a83d5
								
							
						
					
					
						commit
						b538b19ccd
					
				| 
						 | 
					@ -63,10 +63,12 @@ public class TableVisualizer extends AbstractVisualizer implements Clearable {
 | 
				
			||||||
	private static final Logger log = LoggingManager.getLoggerForClass();
 | 
						private static final Logger log = LoggingManager.getLoggerForClass();
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	private static final ImageIcon imageSuccess = JMeterUtils.getImage(
 | 
						private static final ImageIcon imageSuccess = JMeterUtils.getImage(
 | 
				
			||||||
	        JMeterUtils.getPropDefault("viewResultsTree.success", "icon_success_sml.gif"));
 | 
					            JMeterUtils.getPropDefault("viewResultsTree.success", "icon_success_sml.gif"),
 | 
				
			||||||
 | 
					            JMeterUtils.getResString("table_visualizer_success"));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private static final ImageIcon imageFailure = JMeterUtils.getImage(
 | 
						private static final ImageIcon imageFailure = JMeterUtils.getImage(
 | 
				
			||||||
			JMeterUtils.getPropDefault("viewResultsTree.failure", "icon_warning_sml.gif"));
 | 
					            JMeterUtils.getPropDefault("viewResultsTree.failure", "icon_warning_sml.gif"),
 | 
				
			||||||
 | 
					            JMeterUtils.getResString("table_visualizer_warning"));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private final String[] COLUMNS = new String[] {
 | 
						private final String[] COLUMNS = new String[] {
 | 
				
			||||||
            JMeterUtils.getResString("table_visualizer_sample_num"), // $NON-NLS-1$
 | 
					            JMeterUtils.getResString("table_visualizer_sample_num"), // $NON-NLS-1$
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -694,7 +694,9 @@ table_visualizer_sample_num=Sample #
 | 
				
			||||||
table_visualizer_sample_time=Sample Time(ms)
 | 
					table_visualizer_sample_time=Sample Time(ms)
 | 
				
			||||||
table_visualizer_start_time=Start Time
 | 
					table_visualizer_start_time=Start Time
 | 
				
			||||||
table_visualizer_status=Status
 | 
					table_visualizer_status=Status
 | 
				
			||||||
 | 
					table_visualizer_success=Success
 | 
				
			||||||
table_visualizer_thread_name=Thread Name
 | 
					table_visualizer_thread_name=Thread Name
 | 
				
			||||||
 | 
					table_visualizer_warning=Warning
 | 
				
			||||||
tcp_config_title=TCP Sampler Config
 | 
					tcp_config_title=TCP Sampler Config
 | 
				
			||||||
tcp_nodelay=Set NoDelay
 | 
					tcp_nodelay=Set NoDelay
 | 
				
			||||||
tcp_port=Port Number\:
 | 
					tcp_port=Port Number\:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -439,6 +439,26 @@ public class JMeterUtils implements UnitTestManager {
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * This looks for the requested image in the classpath under
 | 
				
			||||||
 | 
					     * org.apache.jmeter.images. <name>, and also sets the description
 | 
				
			||||||
 | 
					     * of the image, which is useful if the icon is going to be placed 
 | 
				
			||||||
 | 
					     * on the clipboard.
 | 
				
			||||||
 | 
					     * 
 | 
				
			||||||
 | 
					     * @param name
 | 
				
			||||||
 | 
					     *            the name of the image
 | 
				
			||||||
 | 
					     * @param description
 | 
				
			||||||
 | 
					     *            the description of the image
 | 
				
			||||||
 | 
					     * @return The Image value
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    public static ImageIcon getImage(String name, String description) {
 | 
				
			||||||
 | 
					        ImageIcon icon = getImage(name);
 | 
				
			||||||
 | 
					        if(icon != null) {
 | 
				
			||||||
 | 
					            icon.setDescription(description);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        return icon;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	public static String getResourceFileAsText(String name) {
 | 
						public static String getResourceFileAsText(String name) {
 | 
				
			||||||
		BufferedReader fileReader = null;
 | 
							BufferedReader fileReader = null;
 | 
				
			||||||
		try {
 | 
							try {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -190,6 +190,7 @@ Removed deprecated method JMeterUtils.split() - use JOrphanUtils version instead
 | 
				
			||||||
<li>Bug 40371 - response assertion "pattern to test" scrollbar problem</li>
 | 
					<li>Bug 40371 - response assertion "pattern to test" scrollbar problem</li>
 | 
				
			||||||
<li>Bug 40589 - Unescape XML entities in embedded URLs</li>
 | 
					<li>Bug 40589 - Unescape XML entities in embedded URLs</li>
 | 
				
			||||||
<li>Bug 41902 - NPE in HTTPSampler when responseCode = -1</li>
 | 
					<li>Bug 41902 - NPE in HTTPSampler when responseCode = -1</li>
 | 
				
			||||||
 | 
					<li>Bug 41903 - ViewResultsFullVisualizer : status column looks bad when you do copy and paste</li>
 | 
				
			||||||
</ul>
 | 
					</ul>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<h3>Version 2.2</h3>
 | 
					<h3>Version 2.2</h3>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue