Browse Source

Deleted unused files from Help

Enrico Berti 13 years ago
parent
commit
cb22ac54ab

+ 0 - 31
apps/help/src/help/static/bootstrap.js

@@ -1,31 +0,0 @@
-// Licensed to Cloudera, Inc. under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  Cloudera, Inc. 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.
-Hue.Desktop.register({
-	Help: {
-		name: 'Help',
-		require: ['help/Help'],
-		css: '/help/static/css/dv.css',
-		launch: function(path, options){
-			return new Help(path, options);
-		},
-		menu: {
-			id: 'hue-filebrowser-menu',
-			img: {
-				src: '/help/static/art/help.png'
-			}
-		}
-	}
-});

+ 0 - 64
apps/help/src/help/static/css/dv.css

@@ -1,64 +0,0 @@
-div.hue-help div.jframe_contents .help-logo {
-	float: right;
-	margin: 0px 20px;
-}
-
-div.hue-help h1 {
-	background: lightBlue;
-	margin-bottom: 10px;
-	padding: 5px;
-	border: solid black 3px;
-	-moz-border-radius: 10px;
-	-webkit-border-radius: 10px;
-}
-
-div.hue-help p, {
-	margin-left: 5px;
-}
-
-div.hue-help pre {
-	margin-left: 10px;
-}
-
-div.hue-help .art-splitview-left {
-	background: lightBlue !important;
-}
-
-div.hue-help .art-splitview-right {
-	background: white !important;
-}
-
-div.hue-help .left_col ul {
-	padding-left: 5px;
-	border-left: solid 5px black;
-}
-
-div.hue-help .left_col li {
-	margin: 5px 0px;
-	background-color: white;
-	color: black;
-	padding: 1px 0px 1px 5px;
-	-moz-border-radius: 5px;
-	-webkit-border-radius: 5px;
-	border: solid lightBlue 1px;
-}
-
-div.hue-help .left_col li:hover {
-	background-color: lightBlue;
-	border: solid black 1px;
-	color: white;
-}
-
-div.hue-help .left_col a {
-	color: black;
-	display: block;
-}
-
-div.hue-help .left_col a:hover {
-	text-decoration: none;
-}
-
-div.hue-help .right_col a[name] {
-  position: relative;
-  left: -10px;
-}

+ 0 - 49
apps/help/src/help/static/js/Source/Help/Help.js

@@ -1,49 +0,0 @@
-// Licensed to Cloudera, Inc. under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  Cloudera, Inc. 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.
-/*
----
-description: Help Application
-provides: [Help]
-requires: [JFrame/JFrame.Browser]
-script: Help.js
-...
-*/
-var Help = new Class({
-
-	Extends: Hue.JBrowser,
-
-	options: {
-		className: 'art browser hue-help',
-		historyOptions: {
-			editable: false
-		},
-		windowTitler: function(title) {
-			return "Help - " + title;
-		}
-	},
-
-	initialize: function(path, options) {
-		this.parent(path || '/help/', options);
-
-		this.history.setOptions({
-			pathFilter: function(path) {
-				if (!path) return '';
-				return path.replace('/help/', '');
-			}
-		});
-		if (!Hue.Desktop.helpInstance || Hue.Desktop.helpInstance.isDestroyed()) Hue.Desktop.helpInstance = this;
-	}
-});

+ 0 - 18
apps/help/src/help/static/js/libs.json

@@ -1,18 +0,0 @@
-{
-  "mootools-core": {
-    "scripts": "/static/js/ThirdParty/mootools-core/Source"
-  },
-  "mootools-more": {
-    "scripts": "/static/js/ThirdParty/mootools-more/Source"
-  },
-  "clientcide": {
-    "scripts": "/static/js/ThirdParty/clientcide/Source"
-  },
-  "hue-shared": {
-    "scripts": "/static/js/Source"
-  },
-  "subtletemplates": {
-    "scripts": "/subtletemplates/static/js/Source"
-  }
-}
-

+ 0 - 5
apps/help/src/help/static/js/package.yml

@@ -1,5 +0,0 @@
-copyright: Apache License v2.0
-version: 0.9
-description: Help for Desktop
-name: help
-sources: [Source/Help/Help.js]