You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:45:44 UTC

[36/51] [abbrv] [partial] brooklyn-docs git commit: move subdir from incubator up a level as it is promoted to its own repo (first non-incubator commit!)

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_blueprint_tour.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_blueprint_tour.scss b/brooklyn-docs/style/css/_blueprint_tour.scss
deleted file mode 100644
index 5fe50fe..0000000
--- a/brooklyn-docs/style/css/_blueprint_tour.scss
+++ /dev/null
@@ -1,181 +0,0 @@
-/* YAML EXPLAINED
-   ----------------------------------------------------------------------- */
-
-$explained_code_bg_color: $gray_66;
-$explained_code_fg_color: $white_dd;
-$explained_code_highlight_bg_color: $vibrant_bg_green; 
-$explained_code_highlight_fg_color: $white_fa;
-$explained_text_highlight_fg_color: $text_color;
-$explained_text_highlight_bg_color: $white_fa;
-
-$code_width: 57%;
-$annotation_width: 41%;
-
-div.annotated_blueprint {
-  margin-top: 60px;
-  div.code_scroller {
-    background-color: $code_bg_color;
-    border: 0.4em solid $explained_code_bg_color;
-    border-left: 0;
-    border-right: 0;
-    border-radius: 3px;
-    width: $code_width;
-    margin-right: 0px;
-    margin-left: auto;
-    background-color: $explained_code_bg_color;
-    color: $explained_code_fg_color;
-    overflow-x: scroll;
-    div { 
-      overflow-x: visible !important; 
-      overflow-y: visible !important; 
-    }  
-    div.code_viewer {
-      width: auto;
-      height: 100%;
-      div.block {
-        @include flex();
-        -webkit-align-items: center;
-        align-items: center;
-        z-index: -10;
-      }
-      div.block > div:last-child {
-          @include pre();
-          border: 0;
-          border-radius: 0;
-          padding: 0px 0.6em;
-          background-color: $explained_code_bg_color;
-          color: $explained_code_fg_color;
-          min-width: 100%;
-          margin-top: 3px;
-          margin-bottom: 3px;
-      }
-      div.block > div.annotations_wrapper1 {
-        font-family: $fonts;
-        div.annotations_wrapper2 {
-          // seems we have to use abs positioning because other techniques
-          // (translation, negative margins, etc) don't show up outside the scroll-x
-          position: absolute;
-          @include transform('translateX(-100%) translateY(-50%)');
-          width: $annotation_width;
-          
-          @include flex();
-          -webkit-align-items: center;
-          align-items: center;
-          div.annotations {
-            // positioning and sizing
-            height: auto;
-            width: 100%;
-            padding: 8px 8px;
-            padding-bottom: 11px;
-            color: $explained_text_highlight_fg_color;
-
-            div.short {
-              font-size: 125%;
-              text-align: right;
-            }
-            div.long {
-              display: none;
-              
-              font-size: 85%;
-              p { margin: 8px 0 8px 0; }
-              p:first-child { margin-top: 0; }
-              p:last-child { margin-bottom: 0; }
-            }
-          }
-          div.connector {
-            height: 7px;
-            width: 48px;
-          }
-        }
-      }
-      div.block:hover > div:last-child {
-          background-color: $explained_code_highlight_bg_color;
-          color: $explained_code_highlight_fg_color;
-          // TODO the bg color doesn't apply to regions which are only visible after a scroll-right :(
-          // to fix this i think we can us JS to set width of div.block to the width of this, the code last-child
-      }
-      div.block:hover {
-        z-index: 30 !important;
-        div.annotations_wrapper1 {
-          z-index: 30 !important;
-        }
-        div.annotations {
-          background-color: $explained_text_highlight_bg_color;
-          border: 4px solid $explained_code_highlight_bg_color;
-          border-radius: 8px;
-          text-align: center; 
-          box-shadow: 2px 10px 20px $gray_aa;
-          div.short {
-            font-size: 100% !important;
-            text-align: center !important;
-            color: $text_color;
-            margin-bottom: 8px;
-            font-weight: normal; 
-            z-index: 10;
-          }
-          div.long { display: inherit !important; }
-        }
-        div.connector {
-          border-style: solid;
-          width: 16px !important;
-          border-width: 5px 0px 5px 6px;
-          border-style: solid;
-          border-color: transparent transparent transparent $explained_code_highlight_bg_color;
-        }
-      }
-      // highlighting of key code segments
-      div.block > div:last-child .ann_highlight { 
-        font-weight: bold; 
-        color: #e8f0e0; 
-      }
-      div.block:hover > div:last-child .ann_highlight { 
-        color: #f8fff8; 
-      }
-    }
-  }
-  div.code_viewer:hover {
-    div.annotations div.short {
-      color: $gray_aa;
-    }
-  }
-  
-  // have an initial notice
-  div.code_scroller {
-    div.initial_notice {
-      height: 0;
-      width: 0;
-      overflow-x: visible;
-      overflow-y: visible;
-    }
-    div.initial_notice > div {
-      z-index: 10;
-      background-color: transparentize($gray_aa, 0.1);
-      position: relative;
-      width: 0;
-      height: 0;
-      @include flex();
-      -webkit-align-items: top;
-      align-items: top;
-    }
-    div.initial_notice > div > div {
-      padding-top: 24px;
-      font-size: 125%;
-      font-weight: bold;
-      text-align: center;
-      width: 100%;
-      .ann_light {
-        padding-top: 12px;
-        font-weight: 300;
-      }
-      .ann_play {
-        display: block;
-        padding-top: 24px;
-        padding-bottom: 24px;
-        font-size: 600%;
-      }
-    }
-  }
-  div.code_scroller:hover div.initial_notice {
-    display: none;
-  }
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_code_blocks.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_code_blocks.scss b/brooklyn-docs/style/css/_code_blocks.scss
deleted file mode 100644
index dd39dd8..0000000
--- a/brooklyn-docs/style/css/_code_blocks.scss
+++ /dev/null
@@ -1,98 +0,0 @@
-/* CODE RENDERING
-   ----------------------------------------------------------------------- */
-@mixin nowrap() {
-    white-space: pre;
-    word-wrap: normal;
-    overflow-y: scroll;
-}
-
-@mixin code() {
-    font-family: Consolas, Lucida Console, Monaco, monospace;
-    @include nowrap();
-    font-size: 14px;
-    /* override color and bg-color on 'code' from bootstrap, and a touch more padding on top since font-size is smaller */
-    color: $text_color;
-    background-color: $code_bg_color;
-}
-
-@mixin pre() {
-    @include code();
-    padding: 0.4em 0.8em;
-    overflow-x: scroll;
-    /* override border and line-height on 'pre' from bootstrap */
-    border: none;
-    border-radius: 2px;
-    line-height: 1.4;
-    font-size: 13px;
-}
-
-pre {
-    @include pre();
-    code {
-        /* override settings on 'pre code' from bootstrap */
-        @include pre();
-        line-height: 1;
-        /** and no padding since pre already has some */ 
-        padding: 0px; 
-    }
-}
-code {
-    @include code();
-    padding: 4px 4px 2px 4px;
-    border-radius: 3px;
-}
-a code {
-  color: inherit;
-}
-
-.nowrap { @include nowrap(); }
-
-.highlight { background-color:$code_bg_color; } /* clipboard icon should have the same background color as the code */
-
-.highlight .clipboard_button { display: none; }
-.highlight:hover .clipboard_button { display: inherit; }
-.clipboard_button.zeroclipboard-is-hover { display: inherit; }
-
-.clipboard_container { float: right; padding: 8px; }
-.clipboard_button:before {
-  // fa-copy
-  content: "\f0c5";
-}
-.clipboard_button {
-  font-size: 18px;
-  color: $vibrant_fg_green;
-  @include transform('translateY(-2px)');
-}
-.clipboard_button:hover, .clipboard_button.zeroclipboard-is-hover {
-  color: $a_hover_color;
-  cursor: pointer; cursor: hand;
-}
-.clipboard_button.zeroclipboard-is-active .on-active {
-  display: inherit;
-}
-.clipboard_button .on-active {
-  // z-index often doesn't help here (diff stacking context to the side menu)... but it shouldn't hurt!
-  z-index: 10;
-  font-family: $fonts;
-  display: none;
-  margin-top: -20px;
-  height: 0;
-  width: 0;
-  overflow-x: visible;
-  overflow-y: visible;
-  position: relative;
-  top: -30px;
-}
-.clipboard_button .on-active > div {
-  background-color: $white_dd;
-  border: 1px solid $gray_aa;
-  font-size: 75%;
-  font-weight: normal;
-  left: -50%;
-  color: $blackish;
-  width: auto;
-  display: inline-block;
-  @include nowrap();
-  padding: 3px 7px;
-  @include transform('translateX(-50%)');
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_feature_list.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_feature_list.scss b/brooklyn-docs/style/css/_feature_list.scss
deleted file mode 100644
index 32d3913..0000000
--- a/brooklyn-docs/style/css/_feature_list.scss
+++ /dev/null
@@ -1,60 +0,0 @@
-
-#content_container .feature-list {
-  h3 {
-    border: 1px solid $white_dd;
-    margin-top: 48px;
-    padding: 20px 12px 12px 12px;
-    margin-bottom: 0;
-    background-color: $white_f5;
-    border-top-right-radius: 5px;
-    border-top-left-radius: 5px;
-
-// from bootstrap for panel
-background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
-background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
-background-repeat: repeat-x;    
-  }
-}
-
-#content_container .feature-item {
-  padding-bottom: 24px;
-  margin-bottom: 12px;
-  font-size: 90%;
-  p {
-    margin-top: 6px;
-    margin-bottom: 0;
-  }
-  p:first-child {
-    margin-top: 0px;
-  }
-  img {
-    max-width: 200px;
-    border: 1px solid $white_dd;
-    border-radius: 2px;
-  }
-  div.feature-title {
-    width: 27%;
-    float: left;
-    font-weight: 500;
-  }
-  div.feature-body {
-    width: 70%;
-    margin-left: 30%;
-  }
-  div.feature-image {
-    text-align: center;
-    margin-top: 8px;
-    margin-bottom: 8px;
-  }
-  
-  
-  border: 1px solid $white_dd;
-  margin-top: -1px;
-  margin-bottom: 0;
-  font-size: 90%;
-  padding: 12px;
-  padding-top: 8px;
-  background-color: $white_fa;
-  
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_footer.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_footer.scss b/brooklyn-docs/style/css/_footer.scss
deleted file mode 100644
index 4034de4..0000000
--- a/brooklyn-docs/style/css/_footer.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-/* FOOTER
-   ----------------------------------------------------------------------- */
-
-/* sticky footer */
-html {
-    position: relative;
-    min-height: 100%;
-}
-
-@media (min-width: 1200px) {
-    .slightlyNarrowContainer {
-        width: 970px;
-    }
-}
-
-div#footer {
-    position: absolute;
-    bottom: 0;
-    width: 100%;
-    padding-top: 1em;
-    padding-bottom: 1em;
-    background-color: $white_f5;
-    text-align: center;
-    font-size: 80%;
-}
-.octicon-footer {
-    color: $footer_icon_gray;
-    font-size: 130%;
-    position: relative;
-    top: 2px;
-    padding-left: 6px;
-}
-a:hover .octicon-footer {
-    color: $brooklyn_green;
-}
-

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_landing.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_landing.scss b/brooklyn-docs/style/css/_landing.scss
deleted file mode 100644
index baeff39..0000000
--- a/brooklyn-docs/style/css/_landing.scss
+++ /dev/null
@@ -1,26 +0,0 @@
-
-/* LANDING PAGE
-   ----------------------------------------------------------------------- */
-
-.jumbotron {
-    margin-top: 18px;
-}
-
-#apachebrooklynbanner {
-    background-image: url("../img/apache-brooklyn-logo-817px-wide.png");
-    background-repeat: no-repeat;
-    background-position: center;
-    width: 817px;
-    height: 99px;
-    margin-bottom: 50px;
-}
-
-div.feather.landing {
-    overflow: visible;
-    max-height: 10px;
-    img {
-        width: 200px;
-        margin-left: 40px;
-        margin-top: 0px;
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_main_container.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_main_container.scss b/brooklyn-docs/style/css/_main_container.scss
deleted file mode 100644
index 0ce2fcc..0000000
--- a/brooklyn-docs/style/css/_main_container.scss
+++ /dev/null
@@ -1,84 +0,0 @@
-
-#content_container {
-  padding-bottom: 48px;
-  img {
-    max-width: 100%;
-  }
-}
-
-
-/* HEADER LINKS 
-   ----------------------------------------------------------------------- */
-
-#content_container h1 {
-  max-width: 95%;
-  font-variant: normal;
-  margin-top: -16px;
-  padding-bottom: 6px;
-  margin-top: 64px;
-  margin-bottom: 24px;
-  border-bottom: 1px dotted $gray_aa;
-  font-weight: 300;
-  font-size: 36px;
-  text-transform: uppercase;
-}
-h4, h5, h6 {
-  margin-top: 20px;
-  margin-bottom: 8px;
-}
-h5 {
-  font-size: 18px;
-  font-weight: 300;
-}
-h6 {
-  font-size: 16px;
-}
-
-/* headings get a tooltip showing the permalink URL, a la github jekyll */
-/* install subset of font-awesome */
-@font-face {
-  font-family: 'FontAwesome';
-  src: url('#{$style_dir}/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.eot');
-  src: url('#{$style_dir}/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('#{$style_dir}/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('#{$style_dir}/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('#{$style_dir}/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
-  font-weight: normal;
-  font-style: normal;
-}
-.fa {
-  display: inline-block;
-  font-family: FontAwesome;
-  font-style: normal;
-  font-weight: normal;
-  line-height: 1;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-}
-.fa-link:before {
-  content: "\f0c1";
-}
-.fa-play-circle-o:before {
-  content: "\f01d";
-}
-/*
- * This code is courtesy Ben Balter, modified by Parker Moore for jekyllrb.com
- * http://ben.balter.com/2014/03/13/pages-anchor-links/
- */
-.header-link {
-  position: relative;
-  left: 0.5em;
-  opacity: 0;
-  font-size: 0.8em;
-
-/* not using -- but this is cool!
-  -webkit-transition: opacity 0.2s ease-in-out 0.1s;
-  -moz-transition: opacity 0.2s ease-in-out 0.1s;
-  -ms-transition: opacity 0.2s ease-in-out 0.1s;
-*/
-}
-h2:hover .header-link,
-h3:hover .header-link,
-h4:hover .header-link,
-h5:hover .header-link,
-h6:hover .header-link {
-  opacity: 1;
-}
-a.header-literal-anchor { display: inline !important; }

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_menu.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_menu.scss b/brooklyn-docs/style/css/_menu.scss
deleted file mode 100644
index b63386e..0000000
--- a/brooklyn-docs/style/css/_menu.scss
+++ /dev/null
@@ -1,201 +0,0 @@
-/* WEBSITE MENUS
-   ----------------------------------------------------------------------- */
-
-/* top menu bar */
-.navbar-brand {
-    margin-top: -4px;
-    margin-left: -30px !important;
-}
-
-@mixin icon($name) {
-  .icon-#{$name} {
-    width: 32px;
-    height: 32px;
-    background: url('#{$style_dir}/img/'+$name+'-256-black.png');
-    background-size: 32px 32px;
-  }
-  .icon-#{$name}:hover {
-    background: url('#{$style_dir}/img/'+$name+'-256-green.png');
-    background-size: 32px 32px;
-  }
-}
-
-.navbar {
-    @include icon('github');
-    @include icon('twitter');
-    @include icon('irc');
-}
-
-.navbar .tooltip .tooltip-inner {
-    position: relative;
-    right: 40%;
-    // include calc for those browsers which support it
-    right: calc(50% - 25px);
-    max-width: 300px;
-}
-
-/* special container with sidebar where if sidebar is squeezed
-   (under "responsiveness") the text keeps at least its "auto" size,
-   squashing the main container instead */
-.container-and-sidebars {
-    width: 100%;
-    @include flex();
-}
-.container-between-sidebars {
-    -webkit-box-flex: 1 100%;
-    -webkit-flex: 1 100%;
-    -webkit-flex-flex: 1 100%;
-    flex: 1 100%;
-    flex: 10 1 100%;
-    display: inline-block;
-    width: auto;
-    margin-left: auto;
-    margin-right: auto;
-}
-.container-sidebar {
-    -webkit-box-flex: 0 auto;
-    -webkit-flex: 0 auto;
-    -webkit-flex-flex: 0 auto;
-    flex: 0 auto;
-    flex: 0 0 auto;
-}
-.container-sidebar-right { 
-    @extend .container-sidebar; 
-    text-align: left;
-    padding-right: 10px;
-} 
-.container-sidebar-left {
-    @extend .container-sidebar;
-    text-align: right;
-    padding-left: 10px;
-}
-
-@media (min-width: 768px) {
-  .container-sidebar { min-width: calc((100% - 750px)/2); }
-}
-@media (min-width: 992px) {
-  .container-sidebar { min-width: calc((100% - 970px)/2); }
-}
-@media (min-width: 1200px) {
-  .container-sidebar { min-width: calc((100% - 1170px)/2); }
-}
-
-
-.navbar-feather {
-  padding-top: 12px; 
-  margin-right: -6px;
-}
-.navbar-sidebar-right-icons {
-    padding-top: 10px;
-    margin-left: -6px;
-    white-space: nowrap;
-    a {
-      display: inline-block;
-      width: 32px;
-      height: 32px;
-    }
-}
-.navbar-icon-shift { margin-right: -2px; }
-
-.navbar div.dropdown_section_header hr {
-  margin: 4px 12px;
-  border-color: $white_dd;
-}
-
-.navbar div.dropdown_new_section hr {
-  margin: 6px 0px;
-  border-color: $white_dd;
-}
-
-/* pop-up top-menu */
-.navbar-default .navbar-nav > li > a:hover,
-.navbar-default .navbar-nav > li > a:focus,
-.navbar-default .navbar-nav > .active > a:hover,
-.navbar-default .navbar-nav > .active > a:focus {
-  background-color: $white_f5;
-  color: $brooklyn_green;
-}
-.top-menu {
-  font-size: 14px;
-  font-weight: 400;
-  .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
-    background-color: $white_f5;
-    background-image: none;
-    color: $brooklyn_green;
-  }
-  ul.nav li.dropdown:hover > ul.dropdown-menu {
-    display: block;
-  }
-}
-
-/* side menu */
-.side-menu {
-  font-family: Avenir, $fonts;
-  font-size: 14px;
-  font-weight: 400;
-  position: fixed;
-  h4.with_following {
-    margin-bottom: 0;
-  }
-  h4.with_preceding {
-    margin-top: 0;
-  }
-  h4.with_following a {
-    border-bottom-right-radius: 0 !important ;
-    border-bottom-left-radius: 0 !important ;
-    border-bottom: 0;
-  }
-  h4.with_preceding a {
-    border-top-right-radius: 0;
-    border-top-left-radius: 0;
-    border-top: 0;
-  }
-  a, a.breadcrumb.breadcrumb0 { padding-left: 15px; padding-top: 8px; padding-bottom: 6px; }
-  a.breadcrumb.breadcrumb1 { padding-left: 30px; }
-  a.breadcrumb.breadcrumb2 { padding-left: 45px; }
-  a.breadcrumb.breadcrumb3 { padding-left: 60px; }
-  /* further crumbs all get the same */
-  a.breadcrumb { padding-left: 70px; }
-  
-  div.sub-item {
-    background-color: $bootstrap_theme_green_gradient_lower;
-    border-left: 1px solid $bootstrap_blue_border;
-  } 
-  div.sub-item:last-child {
-    border-bottom: 1px solid $white_dd;
-    border-bottom-left-radius: 4px;
-    border-bottom-right-radius: 4px;
-  }
-  div.sub-item:last-child a.sub-item:last-child {
-    border-bottom-right-radius: 4px !important;
-  }
-  a.with-sub-item {
-    /* border-bottom: 1px solid $white_dd; */
-    border-bottom: 0;
-  }
-  a.sub-item { 
-    border-radius: 0 !important;
-    border-bottom: 0;
-    margin-left: 12px;
-    padding-left: 10px; 
-    padding-top: 8px; 
-    padding-bottom: 8px; 
-  }
-  a.sub-item.list-group-item.active {
-    background-color: $white_f5;
-    // the below is needed to achieve the above, since bg-image is already set
-    background-image: -webkit-linear-gradient(top, $white_f5 0%, $white_f5 100%);
-    background-image: linear-gradient(to bottom, $white_f5 0%, $white_f5 100%);
-    
-    border-color: $white_dd;
-    color: $text_color;
-    text-shadow: none;
-    // not sure why the bottom border is visible at all, and stays on hover, but vanishes on 'active';
-    // but this sorts it out (taking 1 away from padding)
-    margin-bottom: 0;
-    padding-bottom: 7px;
-  }
-  a.sub-item.list-group-item.active:hover {
-    color: $a_hover_color;
-  }
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_search.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_search.scss b/brooklyn-docs/style/css/_search.scss
deleted file mode 100644
index 21ef97f..0000000
--- a/brooklyn-docs/style/css/_search.scss
+++ /dev/null
@@ -1,29 +0,0 @@
-/* SEARCH
-   ----------------------------------------------------------------------- */
-
-div.search_right {
-  float: right;
-  @include transform('translateY(-12px)');
-  padding-right: 5%; 
-  padding-bottom: 18px;
-  font-size: 75%;
-  .searchform {
-    width: 240px; 
-    margin: 0; 
-    padding: 5px 5px 0 0; 
-    overflow: hidden; 
-    text-align: right;
-  }
-  .searchinput {
-    width: 227px; 
-    background: #ffffff; 
-    border: 1px solid #b1b7c2; 
-    -moz-border-radius: 2px; 
-    border-radius: 2px; 
-    color: #c8ccd5; 
-    padding: 3px;
-  }
-  .searchinput:focus {
-    color: $blackish;
-  }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_tooltips.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_tooltips.scss b/brooklyn-docs/style/css/_tooltips.scss
deleted file mode 100644
index 11dee6a..0000000
--- a/brooklyn-docs/style/css/_tooltips.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-/* TOOLTIPS
-   ----------------------------------------------------------------------- */
-   
-.tooltip .tooltip-inner {
-    color: $text_color;
-    background-color: $white_dd;
-    font-weight: 500;
-}
-.tooltip.top .tooltip-arrow { 
-    border-top-color: $white_dd;
-}
-.tooltip.bottom .tooltip-arrow { 
-    border-bottom-color: $white_dd;
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/_util.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/_util.scss b/brooklyn-docs/style/css/_util.scss
deleted file mode 100644
index b6d4b44..0000000
--- a/brooklyn-docs/style/css/_util.scss
+++ /dev/null
@@ -1,27 +0,0 @@
-/* GENERAL UTILS
-   ----------------------------------------------------------------------- */
-
-@mixin flex() {
-  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
-  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
-  display: -ms-flexbox;      /* TWEENER - IE 10 */
-  display: -webkit-flex;     /* NEW - Chrome */
-  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
-}
-
-@mixin transform($tfn) {
-  -webkit-transform: #{$tfn};
-  -moz-transform: #{$tfn};
-  -o-transform: #{$tfn};
-  transform: #{$tfn};
-}
-   
-@mixin flip() {
-  filter: FlipH;
-  @include transform('scaleX(-1)');
-  -ms-filter: "FlipH";
-}
-
-.flip {
-  @include flip;
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/catalog_items.css
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/catalog_items.css b/brooklyn-docs/style/css/catalog_items.css
deleted file mode 100644
index d16e478..0000000
--- a/brooklyn-docs/style/css/catalog_items.css
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
-*/
-/* landing page */
-body {
-  margin: 0px;
-  padding: 10px 0px 20px 0px;
-  font-family: arial, helvetica, sans-serif;
-  background-color: #ffffff;
-  color: #393939;
-  font-size: 15px;
-}
-
-.nav-tabs {
-  clear: both;
-  font-weight: bold;
-  font-size: 12pt;
-}
-.nav-tabs a {
-  color: #4d9d3a;
-}
-.nav-tabs a:hover {
-  color: #4d9d3a;
-}
-
-.tab-content {
-  padding: 20px;
-  padding-bottom: 10px;
-  border: 1px solid #ddd;
-  border-top: none;
-}
-
-a:hover > .card {
-  background-color: #f4f4f4;
-  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
-}
-.card {
-  position: relative;
-  padding: 12px;
-  background-color: #f8f8f8;
-  color: #333;
-  border: 1px solid #E1E1E8;
-  border-radius: 6px;
-  font-size: 11pt;
-}
-.card,
-.filter {
-    margin-bottom: 10px;
-}
-a .glyphicon {
-  display: block;
-  position: absolute;
-  right: 0;
-  top: 0;
-  padding: 8px;
-  font-size: 16pt;
-  color: #aaa;
-}
-a:hover .glyphicon {
-  color: #888;
-}
-a.plain {
-  text-decoration: none !important;
-}
-.name {
-  font-size: 12pt;
-  font-weight: bold;
-}
-.type {
-  font-family: monospace;
-  color: #888;
-  margin-top: 2px;
-}
-#summary .description {
-  margin: 15px 0 25px 0;
-}
-.card .description {
-  margin: 10px 40px 0 20px;
-}
-
-#summary {
-  clear: both;
-  margin: 10px 0 20px 0;
-}
-.summaryLabel {
-  font-size: 20px;
-  font-weight: bold;
-}
-.summaryType {
-  font-family: monospace;
-  font-size: 12pt;
-  color: #888;
-}
-.java {
-  font-family: monospace;
-}
-
-.card dl {
-  margin-bottom: 0;
-  margin-top: 5px;
-}
-dt {
-  clear: both;
-  float: left;
-  width: 8em;
-  text-align: right;
-  font-weight: normal;
-}
-dd {
-  margin-left: 9em;
-}
-
-#container {
-  width: 980px;
-  padding: 0;
-  margin: 0 auto;
-}
-
-#identity {
-  float: left;
-  margin: 0;
-  padding: 30px 0 15px 10px;
-}
-
-#identity a {
-  text-decoration: none;
-  display: block;
-  margin: 0;
-  color: #4d9d3a;
-  font-size: 2.5em;
-  padding: 0;
-  background: transparent url(images/brooklyn.gif) no-repeat 0 0;
-  width: 206px;
-  height: 44px;
-  text-indent: -1000px;
-  overflow: hidden;
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/code.css
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/code.css b/brooklyn-docs/style/css/code.css
deleted file mode 100644
index 524d873..0000000
--- a/brooklyn-docs/style/css/code.css
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
-*/
-.hll { background-color: #ffffcc }
-.c { color: #60a0b0; font-style: italic } /* Comment */
-.err { border: 1px solid #FF0000 } /* Error */
-.k { color: #007020; font-weight: bold } /* Keyword */
-.o { color: #666666 } /* Operator */
-.cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
-.cp { color: #007020 } /* Comment.Preproc */
-.c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
-.cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
-.gd { color: #A00000 } /* Generic.Deleted */
-.ge { font-style: italic } /* Generic.Emph */
-.gr { color: #FF0000 } /* Generic.Error */
-.gh { color: #000080; font-weight: bold } /* Generic.Heading */
-.gi { color: #00A000 } /* Generic.Inserted */
-.go { color: #808080 } /* Generic.Output */
-.gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
-.gs { font-weight: bold } /* Generic.Strong */
-.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
-.gt { color: #0040D0 } /* Generic.Traceback */
-.kc { color: #007020; font-weight: bold } /* Keyword.Constant */
-.kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
-.kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
-.kp { color: #007020 } /* Keyword.Pseudo */
-.kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
-.kt { color: #902000 } /* Keyword.Type */
-.m { color: #40a070 } /* Literal.Number */
-.s { color: #4070a0 } /* Literal.String */
-.na { color: #4070a0 } /* Name.Attribute */
-.nb { color: #007020 } /* Name.Builtin */
-.nc { color: #0e84b5; font-weight: bold } /* Name.Class */
-.no { color: #60add5 } /* Name.Constant */
-.nd { color: #555555; font-weight: bold } /* Name.Decorator */
-.ni { color: #d55537; font-weight: bold } /* Name.Entity */
-.ne { color: #007020 } /* Name.Exception */
-.nf { color: #06287e } /* Name.Function */
-.nl { color: #002070; font-weight: bold } /* Name.Label */
-.nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
-.nt { color: #062873; font-weight: bold } /* Name.Tag */
-.nv { color: #bb60d5 } /* Name.Variable */
-.ow { color: #007020; font-weight: bold } /* Operator.Word */
-.w { color: #bbbbbb } /* Text.Whitespace */
-.mf { color: #40a070 } /* Literal.Number.Float */
-.mh { color: #40a070 } /* Literal.Number.Hex */
-.mi { color: #40a070 } /* Literal.Number.Integer */
-.mo { color: #40a070 } /* Literal.Number.Oct */
-.sb { color: #4070a0 } /* Literal.String.Backtick */
-.sc { color: #4070a0 } /* Literal.String.Char */
-.sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
-.s2 { color: #4070a0 } /* Literal.String.Double */
-.se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
-.sh { color: #4070a0 } /* Literal.String.Heredoc */
-.si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
-.sx { color: #c65d09 } /* Literal.String.Other */
-.sr { color: #235388 } /* Literal.String.Regex */
-.s1 { color: #4070a0 } /* Literal.String.Single */
-.ss { color: #517918 } /* Literal.String.Symbol */
-.bp { color: #007020 } /* Name.Builtin.Pseudo */
-.vc { color: #bb60d5 } /* Name.Variable.Class */
-.vg { color: #bb60d5 } /* Name.Variable.Global */
-.vi { color: #bb60d5 } /* Name.Variable.Instance */
-.il { color: #40a070 } /* Literal.Number.Integer.Long */
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/javadoc.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/javadoc.scss b/brooklyn-docs/style/css/javadoc.scss
deleted file mode 100644
index a9ca9be..0000000
--- a/brooklyn-docs/style/css/javadoc.scss
+++ /dev/null
@@ -1,119 +0,0 @@
----
----
-
-{% include base-scss.scss %}
-
-@import 'util';
-@import 'basic';
-@import 'tooltips';
-@import 'code_blocks';
-
-body {
-  padding: 0;
-  font-size: 100%;
-}
-
-.title { color: $blackish; }
-
-a, a:link, a:visited { color: $a_color; }
-a:hover, a:link:hover, a:visited:hover { color: $a_hover_color; }
-
-.indexContainer, td {
-  a, a:link, a:visited { color: darken($a_color, 20%); }
-}
-
-
-.topNav, .bottomNav, .bar {
-  background-image: -webkit-linear-gradient(top, darken($bootstrap_theme_green_gradient_upper, 10%) 0%, darken($bootstrap_theme_green_gradient_lower, 10%) 100%);
-  background-image: linear-gradient(to bottom, darken($bootstrap_theme_green_gradient_upper, 10%) 0%, darken($bootstrap_theme_green_gradient_lower, 10%) 100%);
-  a:hover, a:link:hover, a:visited:hover { color: lighten($a_hover_color, 10%); }
-}
-
-.topNav {
-  height: inherit;
-  padding-bottom: 6px;
-}
-.topNav .aboutLanguage .brooklyn-header {
-  font-family: $header_fonts;
-  font-weight: bold;
-  font-size: 140%;
-  img { margin-top: 8px; }
-}
-.bar .brooklyn-header .img {
-  display: none;
-}
-.brooklyn-header .img {
-  background-image: url('feather.png');
-  background-size: contain;
-  width: 50px; 
-  height: 15px;
-  margin-left: 8px;
-  margin-top: 8px;
-  display: inline-block;
-} 
-
-.bottomNav .aboutLanguage {
-  margin-top: 0;
-}
-
-.subNav div {
-  padding: 0;
-}
-
-// sub-nav items seem to need extra indent
-ul.subNavList li:first-child {
-  padding-left: 6px;
-}
-ul.subNavList li {
-  padding-top: 1px;
-  padding-bottom: 1px;
-}
-
-// there is so much code we don't want special treatment for it
-code {
-  font-size: 100%;
-  background-color: inherit;
-  padding: 0;
-  word-wrap: normal;
-  whitespace: inherit;
-}
-
-// tabs
-.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span {
-  padding-top: 5px;
-  padding-bottom: 3px;
-}
-.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd {
-  width: 0;
-}
-
-// package
-.subTitle {
-  margin-bottom: -6px;
-  font-family: $header_fonts;
-  font-weight: normal;
-  font-style: italic;
-  font-size: 125%;
-}
-.subTitle .block {
-  margin-top: 6px;
-  margin-bottom: 24px;
-  font-style: normal;
-  
-  p {
-    font-family: $fonts; 
-    font-style: normal;
-    font-weight: 300;
-    font-size: 90%;
-  }
-}
-.footer .subTitle .block {
-  margin-top: 18px;
-  font-weight: bold;
-  p {
-    font-weight: 300;
-  }
-}
-.header .subTitle .block {
-  font-weight: 300;
-}

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/css/website.scss
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/css/website.scss b/brooklyn-docs/style/css/website.scss
deleted file mode 100644
index c653fee..0000000
--- a/brooklyn-docs/style/css/website.scss
+++ /dev/null
@@ -1,20 +0,0 @@
----
----
-
-{% include base-scss.scss %}
-
-$style_dir: "{{ site.path.style }}";
-
-@import 'util';
-@import 'basic';
-@import 'tooltips';
-@import 'code_blocks';
-@import 'menu';
-@import 'search';
-@import 'footer';
-@import 'main_container';
-
-@import 'archive_warning';
-@import 'landing';
-@import 'blueprint_tour';
-@import 'feature_list';

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/deps/README.md
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/deps/README.md b/brooklyn-docs/style/deps/README.md
deleted file mode 100644
index 997e1ad..0000000
--- a/brooklyn-docs/style/deps/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-
-This directory contains third-party dependencies.  Originals are downloaded from the locations described in /_config.yml.
-

http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/6e86cb02/brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.eot
----------------------------------------------------------------------
diff --git a/brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.eot b/brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.eot
deleted file mode 100644
index 4a4ca86..0000000
Binary files a/brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.eot and /dev/null differ