summaryrefslogtreecommitdiffstats
path: root/scripting/java/com/sun/star/script/framework/provider/PathUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/java/com/sun/star/script/framework/provider/PathUtils.java')
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/PathUtils.java83
1 files changed, 83 insertions, 0 deletions
diff --git a/scripting/java/com/sun/star/script/framework/provider/PathUtils.java b/scripting/java/com/sun/star/script/framework/provider/PathUtils.java
new file mode 100644
index 000000000..08b859f4e
--- /dev/null
+++ b/scripting/java/com/sun/star/script/framework/provider/PathUtils.java
@@ -0,0 +1,83 @@
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * 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 .
+ */
+
+package com.sun.star.script.framework.provider;
+
+import com.sun.star.frame.XModel;
+import com.sun.star.uno.IQueryInterface;
+
+import java.lang.reflect.Method;
+
+import java.util.StringTokenizer;
+
+public class PathUtils {
+
+ public static String BOOTSTRAP_NAME;
+ private static boolean m_windows = false;
+
+ static {
+ // detect if windows platform
+ if (System.getProperty("os.name").startsWith("Windows"))
+ m_windows = true;
+
+ BOOTSTRAP_NAME = m_windows ? "bootstrap.ini" : "bootstraprc";
+ }
+
+ public static String getOidForModel(XModel xModel) {
+ String oid = "";
+
+ if (xModel != null) {
+ try {
+
+ Method getOid =
+ IQueryInterface.class.getMethod("getOid", (java.lang.Class[])null);
+
+ if (getOid != null) {
+ oid = (String)getOid.invoke(xModel, new Object[0]);
+ }
+
+ } catch (Exception ignore) {
+ }
+ }
+
+ return oid;
+ }
+
+ static public String make_url(String baseUrl, String url) {
+ StringBuilder buff = new StringBuilder(baseUrl.length() + url.length());
+ buff.append(baseUrl);
+ StringTokenizer t = new StringTokenizer(url, "/");
+
+ while (t.hasMoreElements()) {
+ if (buff.charAt(buff.length() - 1) != '/') {
+ buff.append('/');
+ }
+
+ try {
+ buff.append(java.net.URLEncoder.encode((String)t.nextElement(), "UTF-8"));
+ } catch (java.io.UnsupportedEncodingException e) {
+ e.printStackTrace();
+ }
+ }
+
+ return buff.toString();
+ }
+
+ private PathUtils() {
+ }
+} \ No newline at end of file