apache / jmeter

Apache JMeter open-source load testing tool for analyzing and measuring the performance of a variety of services
https://jmeter.apache.org/
Apache License 2.0
8.26k stars 2.09k forks source link

WebTesting: Http Authorization; Save dialog has wrong title #754

Closed asfimport closed 21 years ago

asfimport commented 23 years ago

khammond25 (Bug 3629): The WebTesting: Http Authorization "Save" dialog has the wrong title. The title is currently "Open", and of course, it should be "Save".

Severity: normal OS: All

asfimport commented 23 years ago

khammond25 (migrated from Bugzilla): Also, the accept button is labeled "Open" instead of "Save".

asfimport commented 23 years ago

khammond25 (migrated from Bugzilla): Created attachment patch.AuthPanel.diff: Patch for AuthPanel.java; file contains the diff

patch.AuthPanel.diff ````diff --- \jakarta-jmeter-cvs\jakarta-jmeter\src\org\apache\jmeter\protocol\http\gui\AuthPanel.java Thu Jul 26 00:34:48 2001 +++ \jakarta-jmeter-nightly\2001.09.15\jakarta-jmeter\src\org\apache\jmeter\protocol\http\gui\AuthPanel.java Wed Sep 19 05:45:16 2001 @@ -399,7 +399,7 @@ { try { - File tmp = FileDialoger.promptToOpenFile() + File tmp = FileDialoger.promptToSaveFile(null) .getSelectedFile(); if (tmp != null) { ````
asfimport commented 23 years ago

khammond25 (migrated from Bugzilla): Description of my patch:

The SAVE action was calling FileDialoger.promptToLoadFile() instead of FileDialoger.promptToSaveFile(String filename). I set the filename to null since we do not seem to have a default filename. May be handy in the future if we did.

asfimport commented 21 years ago

Jordi Salvat i Alabart (migrated from Bugzilla): Marking all bugs RESOLVED before JMeter 1.8's release date as VERIFIED. Yes, it's pretty poor QA procedure, but there's bugs here lingering since JMeter 1.6, and we need to clean up a little.

asfimport commented 21 years ago

Jordi Salvat i Alabart (migrated from Bugzilla): Bulk-closing all bugs RESOLVED before JMeter 1.8 release date.