]> source.dussan.org Git - archiva.git/commitdiff
startup.js is an archiva js so move it to archiva directory
authorOlivier Lamy <olamy@apache.org>
Mon, 2 Apr 2012 10:45:53 +0000 (10:45 +0000)
committerOlivier Lamy <olamy@apache.org>
Mon, 2 Apr 2012 10:45:53 +0000 (10:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1308295 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/index.html
archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/startup.js [new file with mode: 0644]
archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/startup.js [deleted file]

index 0ec062ecb568fca5f8b2027e4ff4ccbae77387a9..35faced7a520e18337e526af9c2f4db753ba87bf 100644 (file)
@@ -80,6 +80,7 @@
                         "jquery": "jquery-1.7.2",
                         "jquery.tmpl": "jquery.tmpl",
                         "utils": "archiva/utils",
+                        "startup": "archiva/startup",
                         "jquery.ui": "jquery-ui-1.8.16.custom.min",
                         "jquery.ui.widget": "jquery.ui.widget-1.8.18",
                         "jquery.cookie": "jquery.cookie.1.0.0",
diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/startup.js b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/startup.js
new file mode 100644 (file)
index 0000000..481d0df
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * 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.
+ */
+
+define("startup",["jquery","utils"],
+function() {
+
+  // define a container object with various datas
+  window.archivaModel = {};
+
+  $.log("devMode:"+window.archivaDevMode);
+
+  // no cache for ajax queries as we get datas from servers so preventing caching !!
+  jQuery.ajaxSetup( {
+    cache: false,//!window.archivaDevMode
+    dataType: 'json'
+  });
+  loadi18n();
+});
\ No newline at end of file
diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/startup.js b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/startup.js
deleted file mode 100644 (file)
index 481d0df..0000000
+++ /dev/null
@@ -1,34 +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.
- */
-
-define("startup",["jquery","utils"],
-function() {
-
-  // define a container object with various datas
-  window.archivaModel = {};
-
-  $.log("devMode:"+window.archivaDevMode);
-
-  // no cache for ajax queries as we get datas from servers so preventing caching !!
-  jQuery.ajaxSetup( {
-    cache: false,//!window.archivaDevMode
-    dataType: 'json'
-  });
-  loadi18n();
-});
\ No newline at end of file