[Zope-CVS] CVS: Packages/Moztop/moztop/skin - moztop.css:1.11

Stephan Richter srichter@cbu.edu
Sat, 15 Mar 2003 17:24:46 -0500


Update of /cvs-repository/Packages/Moztop/moztop/skin
In directory cvs.zope.org:/tmp/cvs-serv22749/moztop/skin

Modified Files:
	moztop.css 
Log Message:
Fixed openSelectedResource code and removed all of the hacked in hardwired
code, so that we should be able to to open every thing generically now.

Also, you cannot open a resource twice anymore.

In order to make it work for all content types we need to get a more 
complete resource type RDF graph.


=== Packages/Moztop/moztop/skin/moztop.css 1.10 => 1.11 ===
--- Packages/Moztop/moztop/skin/moztop.css:1.10	Thu Feb 20 12:06:39 2003
+++ Packages/Moztop/moztop/skin/moztop.css	Sat Mar 15 17:24:45 2003
@@ -1,3 +1,21 @@
+/*****************************************************************************
+*
+* Copyright (c) 2002, 2003 Zope Corporation and Contributors.
+* All Rights Reserved.
+*
+* This software is subject to the provisions of the Zope Public License,
+* Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+* WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+* WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+* FOR A PARTICULAR PURPOSE.
+*
+******************************************************************************
+Main Moztop style sheet
+
+$Id$
+
+******************************************************************************/
 
 #explorertree {margin:0}
 
@@ -58,34 +76,55 @@
 
 
 commontabpanel {
-  -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#commontabpanel');
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#commontabpanel");
 }
 
 sitetabpanel {
-  -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#sitetabpanel');
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#sitetabpanel");
 }
 
 contentpanel {
-  -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#contentpanel');
+  -moz-binding: url(
+     "chrome://moztop/content/Content/ContentBindings.xml#contentpanel");
 }
 
 previewpanel {
-  -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#previewpanel');
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#previewpanel");
 }
 
 propertiespanel {
-  -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#propertiespanel');
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#propertiespanel");
 }
 
 managepanel {
-  -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#managepanel');
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#managepanel");
 }
 
 
+/* Hooking up Folder Bindings */
 folderviewer {
-    -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#folderviewerbinding');
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#folderviewerbinding");
 }
 
 foldercontentspanel {
-    -moz-binding: url('chrome://moztop/content/Content/ContentBindings.xml#foldercontentspanelbinding');
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#foldercontentspanelbinding");
+}
+
+
+/* Hooking up Site Bindings */
+siteviewer {
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#folderviewerbinding");
+}
+
+sitecontentspanel {
+  -moz-binding: url(
+    "chrome://moztop/content/Content/ContentBindings.xml#foldercontentspanelbinding");
 }