You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@shindig.apache.org by "Bastian Hofmann (JIRA)" <ji...@apache.org> on 2010/07/28 15:59:20 UTC

[jira] Created: (SHINDIG-1400) Move tabs and minimessage from JavaScript files to container.js configuration file

Move tabs and minimessage from JavaScript files to container.js configuration file
----------------------------------------------------------------------------------

                 Key: SHINDIG-1400
                 URL: https://issues.apache.org/jira/browse/SHINDIG-1400
             Project: Shindig
          Issue Type: Improvement
          Components: Javascript 
            Reporter: Bastian Hofmann


--- -   2010-07-28 15:50:45.000000000 +0200
+++ features/src/main/javascript/features/tabs/tabs.js  2010-07-28 15:03:15.000000000 +0200
@@ -123,56 +123,13 @@
   this.mainContainer_ = this.createMainContainer_(opt_container);
   this.tabTable_ = this.createTabTable_();
   this.displayTabs(false);
-  gadgets.TabSet.addCSS_([
-    '.tablib_table {',
-      'width: 100%;',
-      'border-collapse: separate;',
-      'border-spacing: 0px;',
-      'empty-cells: show;',
-      'font-size: 11px;',
-      'text-align: center;',
-    '}',
-    '.tablib_emptyTab {',
-      'border-bottom: 1px solid #676767;',
-      'padding: 0px 1px;',
-    '}',
-    '.tablib_spacerTab {',
-      'border-bottom: 1px solid #676767;',
-      'padding: 0px 1px;',
-      'width: 1px;',
-    '}',
-    '.tablib_selected {',
-      'padding: 2px;',
-      'background-color: #ffffff;',
-      'border: 1px solid #676767;',
-      'border-bottom-width: 0px;',
-      'color: #3366cc;',
-      'font-weight: bold;',
-      'width: 80px;',
-      'cursor: default;',
-    '}',
-    '.tablib_unselected {',
-      'padding: 2px;',
-      'background-color: #dddddd;',
-      'border: 1px solid #aaaaaa;',
-      'border-bottom-color: #676767;',
-      'color: #000000;',
-      'width: 80px;',
-      'cursor: pointer;',
-    '}',
-    '.tablib_navContainer {',
-      'width: 10px;',
-      'vertical-align: middle;',
-    '}',
-    '.tablib_navContainer a:link, ',
-    '.tablib_navContainer a:visited, ',
-    '.tablib_navContainer a:hover {',
-      'color: #3366aa;',
-      'text-decoration: none;',
-    '}'
-  ].join(''));
 };

+gadgets.config.register("tabset", {}, function (configuration) {
+    // Injects the default stylesheet for tabs
+    gadgets.TabSet.addCSS_( configuration.tabs.css.join(''));
+});
+
 /**
  * Adds a new tab based on the name-value pairs specified in opt_params.
  * @param {string} tabName Label of the tab to create.

--- -   2010-07-28 15:46:58.000000000 +0200
+++ features/src/main/javascript/features/minimessage/minimessage.js    2010-07-28 15:08:56.000000000 +0200
@@ -210,22 +210,10 @@
 };

 // Injects the default stylesheet for mini-messages.
-gadgets.MiniMessage.addCSS_([
-  '.mmlib_table {',
-    'width: 100%;',
-    'font: bold 9px arial,sans-serif;',
-    'background-color: #fff4c2;',
-    'border-collapse: separate;',
-    'border-spacing: 0px;',
-    'padding: 1px 0px;',
-  '}',
-  '.mmlib_xlink {',
-    'font: normal 1.1em arial,sans-serif;',
-    'font-weight: bold;',
-    'color: #0000cc;',
-    'cursor: pointer;',
-  '}'
-].join(''));
+gadgets.config.register("minimessage", {}, function (configuration) {
+    // Injects the default stylesheet for mini-messages
+    gadgets.MiniMessage.addCSS_( configuration.minimessage.css.join(''));
+});

 // Alias for legacy code


--- -   2010-07-28 15:23:39.000000000 +0200
+++ config/container.js 2010-07-28 15:10:38.000000000 +0200
@@ -149,6 +149,74 @@
       "aliases" : ["FULL_PAGE"]
     }
   },
+  "tabs" : {
+    "css": [
+        ".tablib_table {",
+          "width: 100%;",
+          "border-collapse: separate;",
+          "border-spacing: 0px;",
+          "empty-cells: show;",
+          "font-size: 11px;",
+          "text-align: center;",
+        "}",
+        ".tablib_emptyTab {",
+          "border-bottom: 1px solid #676767;",
+          "padding: 0px 1px;",
+        "}",
+        ".tablib_spacerTab {",
+          "border-bottom: 1px solid #676767;",
+          "padding: 0px 1px;",
+          "width: 1px;",
+        "}",
+        ".tablib_selected {",
+          "padding: 2px;",
+          "background-color: #ffffff;",
+          "border: 1px solid #676767;",
+          "border-bottom-width: 0px;",
+          "color: #3366cc;",
+          "font-weight: bold;",
+          "width: 80px;",
+          "cursor: default;",
+        "}",
+        ".tablib_unselected {",
+          "padding: 2px;",
+          "background-color: #dddddd;",
+          "border: 1px solid #aaaaaa;",
+          "border-bottom-color: #676767;",
+          "color: #000000;",
+          "width: 80px;",
+          "cursor: pointer;",
+        "}",
+        ".tablib_navContainer {",
+          "width: 10px;",
+          "vertical-align: middle;",
+        "}",
+        ".tablib_navContainer a:link, ",
+        ".tablib_navContainer a:visited, ",
+        ".tablib_navContainer a:hover {",
+          "color: #3366aa;",
+          "text-decoration: none;",
+        "}"
+    ]
+  },
+  "minimessage" : {
+    "css" : [
+      ".mmlib_table {",
+        "width: 100%;",
+        "font: bold 9px arial,sans-serif;",
+        "background-color: #fff4c2;",
+        "border-collapse: separate;",
+        "border-spacing: 0px;",
+        "padding: 1px 0px;",
+      "}",
+      ".mmlib_xlink {",
+        "font: normal 1.1em arial,sans-serif;",
+        "font-weight: bold;",
+        "color: #0000cc;",
+        "cursor: pointer;",
+      "}"
+    ]
+  },
   "rpc" : {
     // Path to the relay file. Automatically appended to the parent
     // parameter if it passes input validation and is not null.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (SHINDIG-1400) Move tabs and minimessage from JavaScript files to container.js configuration file

Posted by "Bastian Hofmann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SHINDIG-1400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bastian Hofmann reopened SHINDIG-1400:
--------------------------------------


for the php json parser it is important that all strings in the container.js are surrounded with a double quote instead of a single quote. could you change this before the rc2 release?

> Move tabs and minimessage from JavaScript files to container.js configuration file
> ----------------------------------------------------------------------------------
>
>                 Key: SHINDIG-1400
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-1400
>             Project: Shindig
>          Issue Type: Improvement
>          Components: Javascript 
>            Reporter: Bastian Hofmann
>             Fix For: 2.0.0-RC1
>
>
> --- -   2010-07-28 15:50:45.000000000 +0200
> +++ features/src/main/javascript/features/tabs/tabs.js  2010-07-28 15:03:15.000000000 +0200
> @@ -123,56 +123,13 @@
>    this.mainContainer_ = this.createMainContainer_(opt_container);
>    this.tabTable_ = this.createTabTable_();
>    this.displayTabs(false);
> -  gadgets.TabSet.addCSS_([
> -    '.tablib_table {',
> -      'width: 100%;',
> -      'border-collapse: separate;',
> -      'border-spacing: 0px;',
> -      'empty-cells: show;',
> -      'font-size: 11px;',
> -      'text-align: center;',
> -    '}',
> -    '.tablib_emptyTab {',
> -      'border-bottom: 1px solid #676767;',
> -      'padding: 0px 1px;',
> -    '}',
> -    '.tablib_spacerTab {',
> -      'border-bottom: 1px solid #676767;',
> -      'padding: 0px 1px;',
> -      'width: 1px;',
> -    '}',
> -    '.tablib_selected {',
> -      'padding: 2px;',
> -      'background-color: #ffffff;',
> -      'border: 1px solid #676767;',
> -      'border-bottom-width: 0px;',
> -      'color: #3366cc;',
> -      'font-weight: bold;',
> -      'width: 80px;',
> -      'cursor: default;',
> -    '}',
> -    '.tablib_unselected {',
> -      'padding: 2px;',
> -      'background-color: #dddddd;',
> -      'border: 1px solid #aaaaaa;',
> -      'border-bottom-color: #676767;',
> -      'color: #000000;',
> -      'width: 80px;',
> -      'cursor: pointer;',
> -    '}',
> -    '.tablib_navContainer {',
> -      'width: 10px;',
> -      'vertical-align: middle;',
> -    '}',
> -    '.tablib_navContainer a:link, ',
> -    '.tablib_navContainer a:visited, ',
> -    '.tablib_navContainer a:hover {',
> -      'color: #3366aa;',
> -      'text-decoration: none;',
> -    '}'
> -  ].join(''));
>  };
> +gadgets.config.register("tabset", {}, function (configuration) {
> +    // Injects the default stylesheet for tabs
> +    gadgets.TabSet.addCSS_( configuration.tabs.css.join(''));
> +});
> +
>  /**
>   * Adds a new tab based on the name-value pairs specified in opt_params.
>   * @param {string} tabName Label of the tab to create.
> --- -   2010-07-28 15:46:58.000000000 +0200
> +++ features/src/main/javascript/features/minimessage/minimessage.js    2010-07-28 15:08:56.000000000 +0200
> @@ -210,22 +210,10 @@
>  };
>  // Injects the default stylesheet for mini-messages.
> -gadgets.MiniMessage.addCSS_([
> -  '.mmlib_table {',
> -    'width: 100%;',
> -    'font: bold 9px arial,sans-serif;',
> -    'background-color: #fff4c2;',
> -    'border-collapse: separate;',
> -    'border-spacing: 0px;',
> -    'padding: 1px 0px;',
> -  '}',
> -  '.mmlib_xlink {',
> -    'font: normal 1.1em arial,sans-serif;',
> -    'font-weight: bold;',
> -    'color: #0000cc;',
> -    'cursor: pointer;',
> -  '}'
> -].join(''));
> +gadgets.config.register("minimessage", {}, function (configuration) {
> +    // Injects the default stylesheet for mini-messages
> +    gadgets.MiniMessage.addCSS_( configuration.minimessage.css.join(''));
> +});
>  // Alias for legacy code
> --- -   2010-07-28 15:23:39.000000000 +0200
> +++ config/container.js 2010-07-28 15:10:38.000000000 +0200
> @@ -149,6 +149,74 @@
>        "aliases" : ["FULL_PAGE"]
>      }
>    },
> +  "tabs" : {
> +    "css": [
> +        ".tablib_table {",
> +          "width: 100%;",
> +          "border-collapse: separate;",
> +          "border-spacing: 0px;",
> +          "empty-cells: show;",
> +          "font-size: 11px;",
> +          "text-align: center;",
> +        "}",
> +        ".tablib_emptyTab {",
> +          "border-bottom: 1px solid #676767;",
> +          "padding: 0px 1px;",
> +        "}",
> +        ".tablib_spacerTab {",
> +          "border-bottom: 1px solid #676767;",
> +          "padding: 0px 1px;",
> +          "width: 1px;",
> +        "}",
> +        ".tablib_selected {",
> +          "padding: 2px;",
> +          "background-color: #ffffff;",
> +          "border: 1px solid #676767;",
> +          "border-bottom-width: 0px;",
> +          "color: #3366cc;",
> +          "font-weight: bold;",
> +          "width: 80px;",
> +          "cursor: default;",
> +        "}",
> +        ".tablib_unselected {",
> +          "padding: 2px;",
> +          "background-color: #dddddd;",
> +          "border: 1px solid #aaaaaa;",
> +          "border-bottom-color: #676767;",
> +          "color: #000000;",
> +          "width: 80px;",
> +          "cursor: pointer;",
> +        "}",
> +        ".tablib_navContainer {",
> +          "width: 10px;",
> +          "vertical-align: middle;",
> +        "}",
> +        ".tablib_navContainer a:link, ",
> +        ".tablib_navContainer a:visited, ",
> +        ".tablib_navContainer a:hover {",
> +          "color: #3366aa;",
> +          "text-decoration: none;",
> +        "}"
> +    ]
> +  },
> +  "minimessage" : {
> +    "css" : [
> +      ".mmlib_table {",
> +        "width: 100%;",
> +        "font: bold 9px arial,sans-serif;",
> +        "background-color: #fff4c2;",
> +        "border-collapse: separate;",
> +        "border-spacing: 0px;",
> +        "padding: 1px 0px;",
> +      "}",
> +      ".mmlib_xlink {",
> +        "font: normal 1.1em arial,sans-serif;",
> +        "font-weight: bold;",
> +        "color: #0000cc;",
> +        "cursor: pointer;",
> +      "}"
> +    ]
> +  },
>    "rpc" : {
>      // Path to the relay file. Automatically appended to the parent
>      // parameter if it passes input validation and is not null.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (SHINDIG-1400) Move tabs and minimessage from JavaScript files to container.js configuration file

Posted by "Paul Lindner (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SHINDIG-1400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Lindner resolved SHINDIG-1400.
-----------------------------------

    Resolution: Fixed

refix

> Move tabs and minimessage from JavaScript files to container.js configuration file
> ----------------------------------------------------------------------------------
>
>                 Key: SHINDIG-1400
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-1400
>             Project: Shindig
>          Issue Type: Improvement
>          Components: Javascript 
>            Reporter: Bastian Hofmann
>             Fix For: 2.0.0-RC1
>
>
> --- -   2010-07-28 15:50:45.000000000 +0200
> +++ features/src/main/javascript/features/tabs/tabs.js  2010-07-28 15:03:15.000000000 +0200
> @@ -123,56 +123,13 @@
>    this.mainContainer_ = this.createMainContainer_(opt_container);
>    this.tabTable_ = this.createTabTable_();
>    this.displayTabs(false);
> -  gadgets.TabSet.addCSS_([
> -    '.tablib_table {',
> -      'width: 100%;',
> -      'border-collapse: separate;',
> -      'border-spacing: 0px;',
> -      'empty-cells: show;',
> -      'font-size: 11px;',
> -      'text-align: center;',
> -    '}',
> -    '.tablib_emptyTab {',
> -      'border-bottom: 1px solid #676767;',
> -      'padding: 0px 1px;',
> -    '}',
> -    '.tablib_spacerTab {',
> -      'border-bottom: 1px solid #676767;',
> -      'padding: 0px 1px;',
> -      'width: 1px;',
> -    '}',
> -    '.tablib_selected {',
> -      'padding: 2px;',
> -      'background-color: #ffffff;',
> -      'border: 1px solid #676767;',
> -      'border-bottom-width: 0px;',
> -      'color: #3366cc;',
> -      'font-weight: bold;',
> -      'width: 80px;',
> -      'cursor: default;',
> -    '}',
> -    '.tablib_unselected {',
> -      'padding: 2px;',
> -      'background-color: #dddddd;',
> -      'border: 1px solid #aaaaaa;',
> -      'border-bottom-color: #676767;',
> -      'color: #000000;',
> -      'width: 80px;',
> -      'cursor: pointer;',
> -    '}',
> -    '.tablib_navContainer {',
> -      'width: 10px;',
> -      'vertical-align: middle;',
> -    '}',
> -    '.tablib_navContainer a:link, ',
> -    '.tablib_navContainer a:visited, ',
> -    '.tablib_navContainer a:hover {',
> -      'color: #3366aa;',
> -      'text-decoration: none;',
> -    '}'
> -  ].join(''));
>  };
> +gadgets.config.register("tabset", {}, function (configuration) {
> +    // Injects the default stylesheet for tabs
> +    gadgets.TabSet.addCSS_( configuration.tabs.css.join(''));
> +});
> +
>  /**
>   * Adds a new tab based on the name-value pairs specified in opt_params.
>   * @param {string} tabName Label of the tab to create.
> --- -   2010-07-28 15:46:58.000000000 +0200
> +++ features/src/main/javascript/features/minimessage/minimessage.js    2010-07-28 15:08:56.000000000 +0200
> @@ -210,22 +210,10 @@
>  };
>  // Injects the default stylesheet for mini-messages.
> -gadgets.MiniMessage.addCSS_([
> -  '.mmlib_table {',
> -    'width: 100%;',
> -    'font: bold 9px arial,sans-serif;',
> -    'background-color: #fff4c2;',
> -    'border-collapse: separate;',
> -    'border-spacing: 0px;',
> -    'padding: 1px 0px;',
> -  '}',
> -  '.mmlib_xlink {',
> -    'font: normal 1.1em arial,sans-serif;',
> -    'font-weight: bold;',
> -    'color: #0000cc;',
> -    'cursor: pointer;',
> -  '}'
> -].join(''));
> +gadgets.config.register("minimessage", {}, function (configuration) {
> +    // Injects the default stylesheet for mini-messages
> +    gadgets.MiniMessage.addCSS_( configuration.minimessage.css.join(''));
> +});
>  // Alias for legacy code
> --- -   2010-07-28 15:23:39.000000000 +0200
> +++ config/container.js 2010-07-28 15:10:38.000000000 +0200
> @@ -149,6 +149,74 @@
>        "aliases" : ["FULL_PAGE"]
>      }
>    },
> +  "tabs" : {
> +    "css": [
> +        ".tablib_table {",
> +          "width: 100%;",
> +          "border-collapse: separate;",
> +          "border-spacing: 0px;",
> +          "empty-cells: show;",
> +          "font-size: 11px;",
> +          "text-align: center;",
> +        "}",
> +        ".tablib_emptyTab {",
> +          "border-bottom: 1px solid #676767;",
> +          "padding: 0px 1px;",
> +        "}",
> +        ".tablib_spacerTab {",
> +          "border-bottom: 1px solid #676767;",
> +          "padding: 0px 1px;",
> +          "width: 1px;",
> +        "}",
> +        ".tablib_selected {",
> +          "padding: 2px;",
> +          "background-color: #ffffff;",
> +          "border: 1px solid #676767;",
> +          "border-bottom-width: 0px;",
> +          "color: #3366cc;",
> +          "font-weight: bold;",
> +          "width: 80px;",
> +          "cursor: default;",
> +        "}",
> +        ".tablib_unselected {",
> +          "padding: 2px;",
> +          "background-color: #dddddd;",
> +          "border: 1px solid #aaaaaa;",
> +          "border-bottom-color: #676767;",
> +          "color: #000000;",
> +          "width: 80px;",
> +          "cursor: pointer;",
> +        "}",
> +        ".tablib_navContainer {",
> +          "width: 10px;",
> +          "vertical-align: middle;",
> +        "}",
> +        ".tablib_navContainer a:link, ",
> +        ".tablib_navContainer a:visited, ",
> +        ".tablib_navContainer a:hover {",
> +          "color: #3366aa;",
> +          "text-decoration: none;",
> +        "}"
> +    ]
> +  },
> +  "minimessage" : {
> +    "css" : [
> +      ".mmlib_table {",
> +        "width: 100%;",
> +        "font: bold 9px arial,sans-serif;",
> +        "background-color: #fff4c2;",
> +        "border-collapse: separate;",
> +        "border-spacing: 0px;",
> +        "padding: 1px 0px;",
> +      "}",
> +      ".mmlib_xlink {",
> +        "font: normal 1.1em arial,sans-serif;",
> +        "font-weight: bold;",
> +        "color: #0000cc;",
> +        "cursor: pointer;",
> +      "}"
> +    ]
> +  },
>    "rpc" : {
>      // Path to the relay file. Automatically appended to the parent
>      // parameter if it passes input validation and is not null.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (SHINDIG-1400) Move tabs and minimessage from JavaScript files to container.js configuration file

Posted by "Paul Lindner (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SHINDIG-1400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Lindner resolved SHINDIG-1400.
-----------------------------------

    Fix Version/s: 2.0.0-RC1
       Resolution: Fixed

patch applied

> Move tabs and minimessage from JavaScript files to container.js configuration file
> ----------------------------------------------------------------------------------
>
>                 Key: SHINDIG-1400
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-1400
>             Project: Shindig
>          Issue Type: Improvement
>          Components: Javascript 
>            Reporter: Bastian Hofmann
>             Fix For: 2.0.0-RC1
>
>
> --- -   2010-07-28 15:50:45.000000000 +0200
> +++ features/src/main/javascript/features/tabs/tabs.js  2010-07-28 15:03:15.000000000 +0200
> @@ -123,56 +123,13 @@
>    this.mainContainer_ = this.createMainContainer_(opt_container);
>    this.tabTable_ = this.createTabTable_();
>    this.displayTabs(false);
> -  gadgets.TabSet.addCSS_([
> -    '.tablib_table {',
> -      'width: 100%;',
> -      'border-collapse: separate;',
> -      'border-spacing: 0px;',
> -      'empty-cells: show;',
> -      'font-size: 11px;',
> -      'text-align: center;',
> -    '}',
> -    '.tablib_emptyTab {',
> -      'border-bottom: 1px solid #676767;',
> -      'padding: 0px 1px;',
> -    '}',
> -    '.tablib_spacerTab {',
> -      'border-bottom: 1px solid #676767;',
> -      'padding: 0px 1px;',
> -      'width: 1px;',
> -    '}',
> -    '.tablib_selected {',
> -      'padding: 2px;',
> -      'background-color: #ffffff;',
> -      'border: 1px solid #676767;',
> -      'border-bottom-width: 0px;',
> -      'color: #3366cc;',
> -      'font-weight: bold;',
> -      'width: 80px;',
> -      'cursor: default;',
> -    '}',
> -    '.tablib_unselected {',
> -      'padding: 2px;',
> -      'background-color: #dddddd;',
> -      'border: 1px solid #aaaaaa;',
> -      'border-bottom-color: #676767;',
> -      'color: #000000;',
> -      'width: 80px;',
> -      'cursor: pointer;',
> -    '}',
> -    '.tablib_navContainer {',
> -      'width: 10px;',
> -      'vertical-align: middle;',
> -    '}',
> -    '.tablib_navContainer a:link, ',
> -    '.tablib_navContainer a:visited, ',
> -    '.tablib_navContainer a:hover {',
> -      'color: #3366aa;',
> -      'text-decoration: none;',
> -    '}'
> -  ].join(''));
>  };
> +gadgets.config.register("tabset", {}, function (configuration) {
> +    // Injects the default stylesheet for tabs
> +    gadgets.TabSet.addCSS_( configuration.tabs.css.join(''));
> +});
> +
>  /**
>   * Adds a new tab based on the name-value pairs specified in opt_params.
>   * @param {string} tabName Label of the tab to create.
> --- -   2010-07-28 15:46:58.000000000 +0200
> +++ features/src/main/javascript/features/minimessage/minimessage.js    2010-07-28 15:08:56.000000000 +0200
> @@ -210,22 +210,10 @@
>  };
>  // Injects the default stylesheet for mini-messages.
> -gadgets.MiniMessage.addCSS_([
> -  '.mmlib_table {',
> -    'width: 100%;',
> -    'font: bold 9px arial,sans-serif;',
> -    'background-color: #fff4c2;',
> -    'border-collapse: separate;',
> -    'border-spacing: 0px;',
> -    'padding: 1px 0px;',
> -  '}',
> -  '.mmlib_xlink {',
> -    'font: normal 1.1em arial,sans-serif;',
> -    'font-weight: bold;',
> -    'color: #0000cc;',
> -    'cursor: pointer;',
> -  '}'
> -].join(''));
> +gadgets.config.register("minimessage", {}, function (configuration) {
> +    // Injects the default stylesheet for mini-messages
> +    gadgets.MiniMessage.addCSS_( configuration.minimessage.css.join(''));
> +});
>  // Alias for legacy code
> --- -   2010-07-28 15:23:39.000000000 +0200
> +++ config/container.js 2010-07-28 15:10:38.000000000 +0200
> @@ -149,6 +149,74 @@
>        "aliases" : ["FULL_PAGE"]
>      }
>    },
> +  "tabs" : {
> +    "css": [
> +        ".tablib_table {",
> +          "width: 100%;",
> +          "border-collapse: separate;",
> +          "border-spacing: 0px;",
> +          "empty-cells: show;",
> +          "font-size: 11px;",
> +          "text-align: center;",
> +        "}",
> +        ".tablib_emptyTab {",
> +          "border-bottom: 1px solid #676767;",
> +          "padding: 0px 1px;",
> +        "}",
> +        ".tablib_spacerTab {",
> +          "border-bottom: 1px solid #676767;",
> +          "padding: 0px 1px;",
> +          "width: 1px;",
> +        "}",
> +        ".tablib_selected {",
> +          "padding: 2px;",
> +          "background-color: #ffffff;",
> +          "border: 1px solid #676767;",
> +          "border-bottom-width: 0px;",
> +          "color: #3366cc;",
> +          "font-weight: bold;",
> +          "width: 80px;",
> +          "cursor: default;",
> +        "}",
> +        ".tablib_unselected {",
> +          "padding: 2px;",
> +          "background-color: #dddddd;",
> +          "border: 1px solid #aaaaaa;",
> +          "border-bottom-color: #676767;",
> +          "color: #000000;",
> +          "width: 80px;",
> +          "cursor: pointer;",
> +        "}",
> +        ".tablib_navContainer {",
> +          "width: 10px;",
> +          "vertical-align: middle;",
> +        "}",
> +        ".tablib_navContainer a:link, ",
> +        ".tablib_navContainer a:visited, ",
> +        ".tablib_navContainer a:hover {",
> +          "color: #3366aa;",
> +          "text-decoration: none;",
> +        "}"
> +    ]
> +  },
> +  "minimessage" : {
> +    "css" : [
> +      ".mmlib_table {",
> +        "width: 100%;",
> +        "font: bold 9px arial,sans-serif;",
> +        "background-color: #fff4c2;",
> +        "border-collapse: separate;",
> +        "border-spacing: 0px;",
> +        "padding: 1px 0px;",
> +      "}",
> +      ".mmlib_xlink {",
> +        "font: normal 1.1em arial,sans-serif;",
> +        "font-weight: bold;",
> +        "color: #0000cc;",
> +        "cursor: pointer;",
> +      "}"
> +    ]
> +  },
>    "rpc" : {
>      // Path to the relay file. Automatically appended to the parent
>      // parameter if it passes input validation and is not null.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.