added license text to source files
Project: http://git-wip-us.apache.org/repos/asf/ode-console/repo Commit: http://git-wip-us.apache.org/repos/asf/ode-console/commit/6279e8dc Tree: http://git-wip-us.apache.org/repos/asf/ode-console/tree/6279e8dc Diff: http://git-wip-us.apache.org/repos/asf/ode-console/diff/6279e8dc Branch: refs/heads/master Commit: 6279e8dce5b7a5515bf8e4d669933502ff02c515 Parents: 1c3875a Author: sathwik <[email protected]> Authored: Wed Aug 31 15:00:53 2016 +0530 Committer: sathwik <[email protected]> Committed: Wed Aug 31 15:00:53 2016 +0530 ---------------------------------------------------------------------- gulp/build.js | 18 ++++++++++++++++++ gulp/e2e-tests.js | 18 ++++++++++++++++++ gulp/maven.js | 19 +++++++++++++++++++ gulp/proxy.js | 19 +++++++++++++++++++ gulp/server.js | 18 ++++++++++++++++++ gulp/unit-tests.js | 18 ++++++++++++++++++ gulp/watch.js | 18 ++++++++++++++++++ gulp/wiredep.js | 18 ++++++++++++++++++ gulpfile.js | 18 ++++++++++++++++++ karma.conf.js | 18 ++++++++++++++++++ protractor.conf.js | 18 ++++++++++++++++++ src/index.html | 4 ++-- 12 files changed, 202 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/build.js ---------------------------------------------------------------------- diff --git a/gulp/build.js b/gulp/build.js index e257770..def575c 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; var gulp = require('gulp'); http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/e2e-tests.js ---------------------------------------------------------------------- diff --git a/gulp/e2e-tests.js b/gulp/e2e-tests.js index c248188..e4e5d03 100644 --- a/gulp/e2e-tests.js +++ b/gulp/e2e-tests.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; var gulp = require('gulp'); http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/maven.js ---------------------------------------------------------------------- diff --git a/gulp/maven.js b/gulp/maven.js index b185a1b..1083f3e 100644 --- a/gulp/maven.js +++ b/gulp/maven.js @@ -1,3 +1,22 @@ +/* + * 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. + */ + 'use strict'; var gulp = require('gulp'), http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/proxy.js ---------------------------------------------------------------------- diff --git a/gulp/proxy.js b/gulp/proxy.js index 2fcd734..b76c38e 100644 --- a/gulp/proxy.js +++ b/gulp/proxy.js @@ -1,3 +1,22 @@ +/* + * 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. + */ + /*jshint unused:false */ /*************** http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/server.js ---------------------------------------------------------------------- diff --git a/gulp/server.js b/gulp/server.js index 76ed368..4f68afd 100644 --- a/gulp/server.js +++ b/gulp/server.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; var gulp = require('gulp'); http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/unit-tests.js ---------------------------------------------------------------------- diff --git a/gulp/unit-tests.js b/gulp/unit-tests.js index 719aad4..5bf5bc2 100644 --- a/gulp/unit-tests.js +++ b/gulp/unit-tests.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; var gulp = require('gulp'); http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/watch.js ---------------------------------------------------------------------- diff --git a/gulp/watch.js b/gulp/watch.js index c7459e8..6bdafea 100644 --- a/gulp/watch.js +++ b/gulp/watch.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; var gulp = require('gulp'); http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulp/wiredep.js ---------------------------------------------------------------------- diff --git a/gulp/wiredep.js b/gulp/wiredep.js index 7695787..bab2830 100644 --- a/gulp/wiredep.js +++ b/gulp/wiredep.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; var gulp = require('gulp'); http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/gulpfile.js ---------------------------------------------------------------------- diff --git a/gulpfile.js b/gulpfile.js index 9670cf3..397c8a7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; var gulp = require('gulp'); http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/karma.conf.js ---------------------------------------------------------------------- diff --git a/karma.conf.js b/karma.conf.js index a5beaa4..0588381 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -1,3 +1,21 @@ +/* + * 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. + */ 'use strict'; module.exports = function(config) { http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/protractor.conf.js ---------------------------------------------------------------------- diff --git a/protractor.conf.js b/protractor.conf.js index b283f72..5e3b84c 100644 --- a/protractor.conf.js +++ b/protractor.conf.js @@ -1,3 +1,21 @@ +/* + * 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. + */ // An example configuration file. exports.config = { // The address of a running selenium server. http://git-wip-us.apache.org/repos/asf/ode-console/blob/6279e8dc/src/index.html ---------------------------------------------------------------------- diff --git a/src/index.html b/src/index.html index cb94fe2..5e17e9b 100644 --- a/src/index.html +++ b/src/index.html @@ -61,12 +61,12 @@ <!-- build:js({.tmp,src}) scripts/app.js --> <!-- inject:js --> - <script src="vendor/jquery.xpath.js"></script> - <script src="vendor/vkbeautify.js"></script> <script src="app/index.js"></script> <script src="app/really.directive.js"></script> <script src="app/soap.service.js"></script> <script src="app/st-select.directive.js"></script> + <script src="vendor/jquery.xpath.js"></script> + <script src="vendor/vkbeautify.js"></script> <script src="components/navbar/navbar.controller.js"></script> <script src="app/dashboard/dashboard.controller.js"></script> <script src="app/instance/instance.controller.js"></script>
