sebb        2003/10/08 11:49:13

  Modified:    src/core/org/apache/jmeter/functions/gui FunctionHelper.java
               src/core/org/apache/jmeter/gui/action Help.java
  Log:
  Moved function descriptions into functions page
  
  Revision  Changes    Path
  1.10      +2 -2      
jakarta-jmeter/src/core/org/apache/jmeter/functions/gui/FunctionHelper.java
  
  Index: FunctionHelper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/functions/gui/FunctionHelper.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- FunctionHelper.java       8 Oct 2003 01:00:37 -0000       1.9
  +++ FunctionHelper.java       8 Oct 2003 18:49:13 -0000       1.10
  @@ -182,7 +182,7 @@
           public void actionPerformed(ActionEvent e)
           {
               String[] source =
  -                new String[] { Help.HELP_PAGE,
  +                new String[] { Help.HELP_FUNCTIONS,
                       functionList.getText()};
               ActionEvent helpEvent = new ActionEvent(source, e.getID(), "help");
               ActionRouter.getInstance().actionPerformed(helpEvent);
  
  
  
  1.17      +8 -2      jakarta-jmeter/src/core/org/apache/jmeter/gui/action/Help.java
  
  Index: Help.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/gui/action/Help.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Help.java 8 Oct 2003 01:04:00 -0000       1.16
  +++ Help.java 8 Oct 2003 18:49:13 -0000       1.17
  @@ -23,10 +23,16 @@
       public final static String HELP = "help";
       private static Set commands = new HashSet();
   
  -    public static final String HELP_PAGE =
  +    public static final String HELP_DOCS =
           "file:///"
               + JMeterUtils.getJMeterHome()
  -            + "/printable_docs/usermanual/component_reference.html";
  +            + "/printable_docs/usermanual/";
  +
  +     public static final String HELP_PAGE =
  +             HELP_DOCS + "component_reference.html";
  +
  +     public static final String HELP_FUNCTIONS =
  +             HELP_DOCS + "functions.html";
   
       private static JDialog helpWindow;
       private static HtmlPane helpDoc;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to