You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ni...@apache.org on 2002/11/16 16:29:15 UTC

cvs commit: xml-forrest/src/resources/forrestbar/content/forrestbar forrestbarOverlay.js forrestbarOverlay.xul

nicolaken    2002/11/16 07:29:15

  Modified:    src/resources/forrestbar/content/forrestbar
                        forrestbarOverlay.js forrestbarOverlay.xul
  Log:
        <action dev="NKB" type="update" context="docs">
          Added enhancements to status.xml to comply with the needs for a complete status file,
          like other "STATUS" text files at Apache.
          Stylesheets not yet done.
        </action>
        <action dev="NKB" type="update" context="forrestbar">
          Added buttons for nightly Gump runs and local forrest. Corrected and completed
          existing interface. We need icons for the new buttons.
        </action>
  
  Revision  Changes    Path
  1.2       +11 -4     xml-forrest/src/resources/forrestbar/content/forrestbar/forrestbarOverlay.js
  
  Index: forrestbarOverlay.js
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/forrestbar/content/forrestbar/forrestbarOverlay.js,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- forrestbarOverlay.js	20 Jun 2002 10:13:28 -0000	1.1
  +++ forrestbarOverlay.js	16 Nov 2002 15:29:15 -0000	1.2
  @@ -29,23 +29,30 @@
   }
   
   function navNews() {
  -	navigate('http://xml.apache.org/news.html');
  +	navigate('http://www.apache.org/foundation/news.html');
   }
   
   function navDownload() {
  -	navigate('http://xml.apache.org/dist/');
  +	navigate('http://www.apache.org/dyn/closer.cgi');
   }
   
  +function navGumpNightly() {
  +	navigate('http://cvs.apache.org/builds/gump/latest/');
  +}
  +	
   function navCode() {
  -	navigate('http://xml.apache.org/cvs.html');
  +	navigate('http://cvs.apache.org/viewcvs/');
   }
   
   function navTools() {
   	navigate('http://nagoya.apache.org/');
   }
   
  +function navLocalForrest() {
  +	navigate('http://127.0.0.1:8888/');
  +}
  +
   function navAskSam() {
   	navigate('mailto:forrest-user@xml.apache.org');
   }
  -
   
  
  
  
  1.2       +11 -1     xml-forrest/src/resources/forrestbar/content/forrestbar/forrestbarOverlay.xul
  
  Index: forrestbarOverlay.xul
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/forrestbar/content/forrestbar/forrestbarOverlay.xul,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- forrestbarOverlay.xul	20 Jun 2002 10:13:28 -0000	1.1
  +++ forrestbarOverlay.xul	16 Nov 2002 15:29:15 -0000	1.2
  @@ -22,16 +22,26 @@
      <menulist value="Projects"
                id="forrestbar-projects" oncommand="navProject('forrestbar-projects');" hidden="false">
       <menupopup>
  +      <menuitem label="Home" value="http://www.apache.org/" />
  +      <menuitem label="HTTP Server " value="http://httpd.apache.org/" />
  +      <menuitem label="APR" value="http://apr.apache.org/" />
         <menuitem label="Jakarta" value="http://jakarta.apache.org/" />    
  +      <menuitem label="PERL" value="http://perl.apache.org/" />
  +      <menuitem label="PHP" value="http://php.apache.org/" />
  +      <menuitem label="TCL" value="http://tcl.apache.org/" />
         <menuitem label="XML" value="http://xml.apache.org/" />
  -      <menuitem label="others here" value="http://www.apache.org/" />
  +      <menuitem label="Conferences" value="http://www.apache.org/foundation/conferences.html   " />
  +      <menuitem label="Foundation" value="http://www.apache.org/foundation/" />
  +   
       </menupopup>
      </menulist>
          
      <button class="forrestbar" id="forrestbar-news"     label="News" onclick="navNews();" hidden="false"/>
      <button class="forrestbar" id="forrestbar-download" label="Download" onclick="navDownload();" hidden="false"/>
  +   <button class="forrestbar" id="forrestbar-gump-nightly"   label="Gump Nightly"   onclick="navGumpNightly();" hidden="false"/>
      <button class="forrestbar" id="forrestbar-code"     label="Code"  onclick="navCode();" hidden="false"/>
      <button class="forrestbar" id="forrestbar-tools"    label="Tools"  onclick="navTools();" hidden="false"/>
  +   <button class="forrestbar" id="forrestbar-local-forrest"   label="Local Forrest"   onclick="navLocalForrest();" hidden="false"/>
      <button class="forrestbar" id="forrestbar-asksam"   label="AskSam"   onclick="navAskSam();" hidden="false"/>
     
     </toolbar>