You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2006/02/06 13:31:19 UTC

svn commit: r375264 - in /forrest/trunk/tools/forrestbar/xpi: chrome/content/forrestbarOverlay.xul install.rdf

Author: rgardler
Date: Mon Feb  6 04:31:16 2006
New Revision: 375264

URL: http://svn.apache.org/viewcvs?rev=375264&view=rev
Log:
make compatible with any version up to 2.0 (not inclusive) - be careful with this though, if we add anything more complicated than a push button and page redirect we should consider using 1.5.* instead (any 1.5 version) - thanks to Cyriaque for finding the docs on this

Modified:
    forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul
    forrest/trunk/tools/forrestbar/xpi/install.rdf

Modified: forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul?rev=375264&r1=375263&r2=375264&view=diff
==============================================================================
--- forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul (original)
+++ forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul Mon Feb  6 04:31:16 2006
@@ -108,6 +108,14 @@
              <menuitem label="prepare-contract" onclick="contract('prepare.contract.html.','forrestbar-input');"/>
           </menupopup>
         </toolbarbutton>
+        
+        <toolbarbutton label="Publishing" hidden="false" type="menu">
+          <menupopup>
+             <menuitem label="Save Page" onclick="navigate('http:/localhost:8888/devTools/do/save.html?URI=' + gBrowser.currentURI.spec + '&amp;file=src/documentation/content/xdocs/index/xml');"/>
+             <menuitem label="Build Site" onclick="navigate('http:/localhost:8888/devTools/do/siteBuild.html');"/>
+             <menuitem label="Deploy Site" onclick="navigate('http:/localhost:8888/devTools/do/stagedDeploy.html');"/>
+          </menupopup>
+        </toolbarbutton>
       </toolbaritem>
 
     </toolbar>

Modified: forrest/trunk/tools/forrestbar/xpi/install.rdf
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/forrestbar/xpi/install.rdf?rev=375264&r1=375263&r2=375264&view=diff
==============================================================================
--- forrest/trunk/tools/forrestbar/xpi/install.rdf (original)
+++ forrest/trunk/tools/forrestbar/xpi/install.rdf Mon Feb  6 04:31:16 2006
@@ -31,7 +31,7 @@
       <Description>
         <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
         <em:minVersion>0.9</em:minVersion>
-        <em:maxVersion>1.5.0.1</em:maxVersion>
+        <em:maxVersion>1.5+</em:maxVersion>
       </Description>
     </em:targetApplication>
 



Re: svn commit: r375264 - in /forrest/trunk/tools/forrestbar/xpi: chrome/content/forrestbarOverlay.xul install.rdf

Posted by Ross Gardler <rg...@apache.org>.
rgardler@apache.org wrote:
> Author: rgardler
> Date: Mon Feb  6 04:31:16 2006
> New Revision: 375264
> 
> URL: http://svn.apache.org/viewcvs?rev=375264&view=rev
> Log:
> make compatible with any version up to 2.0 (not inclusive) - be careful with this though, if we add anything more complicated than a push button and page redirect we should consider using 1.5.* instead (any 1.5 version) - thanks to Cyriaque for finding the docs on this
> 
> Modified:
>     forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul
>     forrest/trunk/tools/forrestbar/xpi/install.rdf
> 
> Modified: forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul
> URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul?rev=375264&r1=375263&r2=375264&view=diff
> ==============================================================================
> --- forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul (original)
> +++ forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul Mon Feb  6 04:31:16 2006
> @@ -108,6 +108,14 @@
>               <menuitem label="prepare-contract" onclick="contract('prepare.contract.html.','forrestbar-input');"/>
>            </menupopup>
>          </toolbarbutton>
> +        
> +        <toolbarbutton label="Publishing" hidden="false" type="menu">
> +          <menupopup>
> +             <menuitem label="Save Page" onclick="navigate('http:/localhost:8888/devTools/do/save.html?URI=' + gBrowser.currentURI.spec + '&amp;file=src/documentation/content/xdocs/index/xml');"/>
> +             <menuitem label="Build Site" onclick="navigate('http:/localhost:8888/devTools/do/siteBuild.html');"/>
> +             <menuitem label="Deploy Site" onclick="navigate('http:/localhost:8888/devTools/do/stagedDeploy.html');"/>
> +          </menupopup>
> +        </toolbarbutton>
>        </toolbaritem>
>  
>      </toolbar>

Oooops, sorry, I inadvertenly committed this change here, will remove 
for now as it might give the worng impression to users, we shouldn't use 
this until the plugin has more error checking and reporting.

Ross