#!/bin/sh # # 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 . # URI_ENCODE=$(dirname "$0")/uri-encode FOPTS="" sd_platform=$(uname -s) # linux file utility needs -L option to resolve symlinks if [ "$sd_platform" = "Linux" ] ; then FOPTS="-L" fi # do not confuse the system mail clients with OOo and Java libraries case $sd_platform in AIX) unset LIBPATH ;; *) unset LD_LIBRARY_PATH ;; esac # tries to locate the executable specified # as first parameter in the user's path. which() { if [ ! -z "$1" ]; then for i in $(echo "$PATH" | sed -e 's/^:/.:/g' -e 's/:$/:./g' -e 's/::/:.:/g' -e 's/:/ /g'); do if [ -x "$i/$1" -a ! -d "$i/$1" ]; then echo "$i/$1" break; fi done fi } # checks for the original mozilla start script(s) # and restrict the "-remote" semantics to those. run_mozilla() { # find mozilla script in PATH if necessary if [ "$(basename "$1")" = "$1" ]; then moz=$(which "$1") else moz=$1 fi if file $FOPTS "$moz" | grep "script" > /dev/null && grep "[NM]PL" "$moz" > /dev/null; then "$moz" -remote 'ping()' 2>/dev/null >/dev/null if [ $? -eq 2 ]; then "$1" -compose "$2" & else "$1" -remote "xfeDoCommand(composeMessage,$2)" & fi else "$1" -compose "$2" & fi } if [ "$1" = "--mailclient" ]; then shift MAILER=$1 shift fi case `basename "$MAILER"` in sensible-lomua) if [ -x /usr/bin/xdg-email ] ; then MAILER=/usr/bin/xdg-email elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kde-open ] \ || [ -x /usr/bin/gnome-open ] \ || [ -x /usr/bin/xdg-open ]; then # use an undefined mailer, to trigger the default handling MAILER=undefined elif [ -n "$GNOME_DESKTOP_SESSION_ID" -a -x /usr/bin/evolution ]; then MAILER=/usr/bin/evolution elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kmail ]; then MAILER=/usr/bin/kmail elif [ -x /usr/bin/evolution ]; then # default MAILER=/usr/bin/evolution elif [ -x /usr/bin/icedove ]; then # fallback MAILER=/usr/bin/icedove elif [ -x /usr/bin/thunderbird ]; then # fallback MAILER=/usr/bin/thunderbird fi ;; esac # autodetect mail client from executable name case $(basename "$MAILER" | sed 's/-.*$//') in iceape | mozilla | netscape | seamonkey | icedove | thunderbird) while [ "$1" != "" ]; do case $1 in --to) TO=${TO:-}${TO:+,}$2 shift ;; --cc) CC=${CC:-}${CC:+,}$2 shift ;; --bcc) BCC=${BCC:-}${BCC:+,}$2 shift ;; --subject) SUBJECT=$2 shift ;; --body) BODY=$2 shift ;; --attach) ATTACH=${ATTACH:-}${ATTACH:+,}$(echo "file://$2" | "${URI_ENCODE}") shift ;; *) ;; esac shift; done if [ "$TO" != "" ]; then COMMAND=${COMMAND:-}${COMMAND:+,}to=\'${TO}\' fi if [ "$CC" != "" ]; then COMMAND=${COMMAND:-}${COMMAND:+,}cc=\'${CC}\' fi if [ "$BCC" != "" ]; then COMMAND=${COMMAND:-}${COMMAND:+,}bcc=\'${BCC}\' fi if [ "$SUBJECT" != "" ]; then COMMAND=${COMMAND:-}${COMMAND:+,}subject=\'${SUBJECT}\' fi if [ "$BODY" != "" ]; then COMMAND=${COMMAND:-}${COMMAND:+,}body=\'${BODY}\' fi if [ "$ATTACH" != "" ]; then COMMAND=${COMMAND:-}${COMMAND:+,}attachment=\'${ATTACH}\' fi run_mozilla "$MAILER" "$COMMAND" ;; kmail) while [ "$1" != "" ]; do case $1 in --to) TO="${TO:-}${TO:+,}$2" shift ;; --cc) CC="${CC:-}${CC:+,}$2" shift ;; --bcc) BCC="${BCC:-}${BCC:+,}$2" shift ;; --subject) SUBJECT="$2" shift ;; --body) BODY="$2" shift ;; --from) FROM="$2" shift ;; --attach) ATTACH="${ATTACH:-}${ATTACH:+ }--attach "$(echo "file://$2" | "${URI_ENCODE}") shift ;; *) ;; esac shift; done ${MAILER} --composer \ ${CC:+--cc} ${CC:+"${CC}"} \ ${BCC:+--bcc} ${BCC:+"${BCC}"} \ ${SUBJECT:+--subject} ${SUBJECT:+"${SUBJECT}"} \ ${BODY:+--body} ${BODY:+"${BODY}"} \ ${FROM:+--header} ${FROM:+"From: ${FROM}"} \ ${ATTACH:+${ATTACH}} \ ${TO:+"${TO}"} ;; mutt) while [ "$1" != "" ]; do case $1 in --from) FROM="$2" shift ;; --to) TO="${TO:-}${TO:+,}$2" shift ;; --cc) CC="${CC:-}${CC:+,}$2" shift ;; --bcc) BCC="${BCC:-}${BCC:+,}$2" shift ;; --subject) SUBJECT="$2" shift ;; --body) TEMPLATE="$(basename "$0").mutt.XXXXXXXX" BODY=$(mktemp -q -t "${TEMPLATE}") echo "$2" > "$BODY" shift ;; --attach) ATTACH="$2" shift ;; *) ;; esac shift; done x-terminal-emulator -e ${MAILER} \ ${FROM:+-e} ${FROM:+"set from=\"${FROM}\""} \ ${CC:+-c} ${CC:+"${CC}"} \ ${BCC:+-b} ${BCC:+"${BCC}"} \ ${SUBJECT:+-s} ${SUBJECT:+"${SUBJECT}"} \ ${BODY:+-i} ${BODY:+"${BODY}"} \ ${ATTACH:+-a} ${ATTACH:+"${ATTACH}"} \ ${TO:+"${TO}"} & rm -f "$BODY" ;; evolution | gnome | xdg) # NB. shortened from the dash on while [ "$1" != "" ]; do case $1 in --to) if [ "${TO}" != "" ]; then MAILTO="${MAILTO:-}${MAILTO:+&}to=$2" else TO="$2" fi shift ;; --cc) MAILTO="${MAILTO:-}${MAILTO:+&}cc="$(echo "$2" | "${URI_ENCODE}") shift ;; --bcc) MAILTO="${MAILTO:-}${MAILTO:+&}bcc="$(echo "$2" | "${URI_ENCODE}") shift ;; --subject) MAILTO="${MAILTO:-}${MAILTO:+&}subject"=$(echo "$2" | "${URI_ENCODE}") shift ;; --body) MAILTO="${MAILTO:-}${MAILTO:+&}body="$(echo "$2" | "${URI_ENCODE}") shift ;; --attach) MAILTO="${MAILTO:-}${MAILTO:+&}attach="$(echo "file://$2" | "${URI_ENCODE}") shift ;; *) ;; esac shift; done MAILTO="mailto:${TO}?${MAILTO}" ${MAILER} "${MAILTO}" & ;; groupwise) while [ "$1" != "" ]; do case $1 in --to) if [ "${TO}" != "" ]; then MAILTO="${MAILTO:-}${MAILTO:+&}to=$2" else TO="$2" fi shift ;; --cc) MAILTO="${MAILTO:-}${MAILTO:+&}cc="$(echo "$2" | "${URI_ENCODE}") shift ;; --bcc) MAILTO="${MAILTO:-}${MAILTO:+&}bcc="$(echo "$2" | "${URI_ENCODE}") shift ;; --subject) MAILTO="${MAILTO:-}${MAILTO:+&}subject"=$(echo "$2" | "${URI_ENCODE}") shift ;; --body) MAILTO="${MAILTO:-}${MAILTO:+&}body="$(echo "$2" | "${URI_ENCODE}") shift ;; --attach) MAILTO="${MAILTO:-}${MAILTO:+&}attachment="$(echo "file://$2" | "${URI_ENCODE}") shift ;; *) ;; esac shift; done MAILTO="mailto:${TO}?${MAILTO}" ${MAILER} "${MAILTO}" & ;; dtmail) while [ "$1" != "" ]; do case $1 in --to) TO=${TO:-}${TO:+,}$2 shift ;; --attach) ATTACH="$2" shift ;; *) ;; esac shift; done ${MAILER} ${TO:+-T} ${TO:-} ${ATTACH:+-a} ${ATTACH:+"${ATTACH}"} ;; sylpheed | claws) while [ "$1" != "" ]; do case $1 in --to) TO=${TO:-}${TO:+,}$2 shift ;; --attach) ATTACH=${ATTACH:-}${ATTACH:+,}$(echo "file://$2" | "${URI_ENCODE}") shift ;; *) ;; esac shift; done ${MAILER} ${TO:+--compose} ${TO:-} ${ATTACH:+--attach} ${ATTACH:-} ;; Mail | Thunderbird | *.app ) while [ "$1" != "" ]; do case $1 in --attach) #i95688# fix filenames containing accented chars, whatever alien ATTACH="${ATTACH:-}${ATTACH:+ }"$(echo "file://$2" | "${URI_ENCODE}") shift ;; *) ;; esac shift; done /usr/bin/open -a "${MAILER}" ${ATTACH} ;; *) # LO is configured to use something we do not recognize, or is not configured. # Try to be smart, and send the mail anyway, if we have the # possibility to do so. if [ -x /usr/bin/xdg-email ] ; then MAILER=/usr/bin/xdg-email elif [ -n "$DESKTOP_LAUNCH" ]; then # http://lists.freedesktop.org/pipermail/xdg/2004-August/002873.html MAILER=${DESKTOP_LAUNCH} elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kde-open ] ; then MAILER=/usr/bin/kde-open elif [ -x /usr/bin/xdg-open ] ; then MAILER=/usr/bin/xdg-open else echo "Unsupported mail client: $(basename $MAILER | sed 's/-.*^//')" exit 2 fi while [ "$1" != "" ]; do case $1 in --to) if [ "${TO}" != "" ]; then MAILTO="${MAILTO:-}${MAILTO:+&}to=$2" else TO="$2" fi shift ;; --cc) MAILTO="${MAILTO:-}${MAILTO:+&}cc="$(echo "$2" | "${URI_ENCODE}") shift ;; --bcc) MAILTO="${MAILTO:-}${MAILTO:+&}bcc="$(echo "$2" | "${URI_ENCODE}") shift ;; --subject) MAILTO="${MAILTO:-}${MAILTO:+&}subject"=$(echo "$2" | "${URI_ENCODE}") shift ;; --body) MAILTO="${MAILTO:-}${MAILTO:+&}body="$(echo "$2" | "${URI_ENCODE}") shift ;; --attach) if [ "$MAILER" = "/usr/bin/xdg-email" ]; then MAILTO="${MAILTO:-}${MAILTO:+&}attach="$(echo "file://$2" | "${URI_ENCODE}") else MAILTO="${MAILTO:-}${MAILTO:+&}attachment="$(echo "file://$2" | "${URI_ENCODE}") fi shift ;; *) ;; esac shift; done MAILTO="mailto:${TO}?${MAILTO}" ${MAILER} "${MAILTO}" & ;; esac
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
classes | Folder | 0755 |
|
|
opencl | Folder | 0755 |
|
|
opengl | Folder | 0755 |
|
|
services | Folder | 0755 |
|
|
shell | Folder | 0755 |
|
|
types | Folder | 0755 |
|
|
wizards | Folder | 0755 |
|
|
JREProperties.class | File | 1.65 KB | 0644 |
|
bootstraprc | File | 111 B | 0644 |
|
flat_logo.svg | File | 67.33 KB | 0644 |
|
fundamentalrc | File | 2.29 KB | 0644 |
|
gdbtrace | File | 334 B | 0644 |
|
intro-highres.png | File | 47.55 KB | 0644 |
|
intro.png | File | 29.98 KB | 0644 |
|
java-set-classpath | File | 1.98 KB | 0755 |
|
javaldx | File | 18.24 KB | 0755 |
|
javavendors.xml | File | 1.79 KB | 0644 |
|
jvmfwk3rc | File | 247 B | 0644 |
|
libOGLTranslo.so | File | 247.25 KB | 0644 |
|
libPresentationMinimizerlo.so | File | 391.5 KB | 0644 |
|
libPresenterScreenlo.so | File | 1.01 MB | 0644 |
|
libacclo.so | File | 1.37 MB | 0644 |
|
libaffine_uno_uno.so | File | 18.46 KB | 0644 |
|
libanalysislo.so | File | 375.59 KB | 0644 |
|
libanimcorelo.so | File | 146.88 KB | 0644 |
|
libavmediagst.so | File | 87.84 KB | 0644 |
|
libbasctllo.so | File | 1.66 MB | 0644 |
|
libbasprovlo.so | File | 131.58 KB | 0644 |
|
libbiblo.so | File | 521.05 KB | 0644 |
|
libbinaryurplo.so | File | 171.55 KB | 0644 |
|
libbootstraplo.so | File | 488.91 KB | 0644 |
|
libcached1.so | File | 263.41 KB | 0644 |
|
libcairocanvaslo.so | File | 689.75 KB | 0644 |
|
libcanvasfactorylo.so | File | 62.83 KB | 0644 |
|
libchartcontrollerlo.so | File | 2.76 MB | 0644 |
|
libchartcorelo.so | File | 3.26 MB | 0644 |
|
libclewlo.so | File | 26.2 KB | 0644 |
|
libcmdmaillo.so | File | 67.02 KB | 0644 |
|
libcollator_data.so | File | 1.31 MB | 0644 |
|
libctllo.so | File | 223.06 KB | 0644 |
|
libcuilo.so | File | 3.34 MB | 0644 |
|
libdatelo.so | File | 83.41 KB | 0644 |
|
libdbahsqllo.so | File | 159.1 KB | 0644 |
|
libdbalo.so | File | 2.65 MB | 0644 |
|
libdeploymentgui.so | File | 393.03 KB | 0644 |
|
libdict_ja.so | File | 1.01 MB | 0644 |
|
libdict_zh.so | File | 2.17 MB | 0644 |
|
libdlgprovlo.so | File | 171.45 KB | 0644 |
|
libembobj.so | File | 387.88 KB | 0644 |
|
libemboleobj.so | File | 239.41 KB | 0644 |
|
libemfiolo.so | File | 180.76 KB | 0644 |
|
libevtattlo.so | File | 87.02 KB | 0644 |
|
libexpwraplo.so | File | 204.11 KB | 0644 |
|
libfilelo.so | File | 729.99 KB | 0644 |
|
libflashlo.so | File | 208.53 KB | 0644 |
|
libforlo.so | File | 303.16 KB | 0644 |
|
libforuilo.so | File | 122.93 KB | 0644 |
|
libfps_officelo.so | File | 469.17 KB | 0644 |
|
libfrmlo.so | File | 2.98 MB | 0644 |
|
libfwllo.so | File | 357.03 KB | 0644 |
|
libfwmlo.so | File | 171.47 KB | 0644 |
|
libgcc3_uno.so | File | 70.95 KB | 0644 |
|
libgielo.so | File | 349.13 KB | 0644 |
|
libgraphicfilterlo.so | File | 59.08 KB | 0644 |
|
libguesslanglo.so | File | 46.88 KB | 0644 |
|
libhwplo.so | File | 555.76 KB | 0644 |
|
libhyphenlo.so | File | 79.45 KB | 0644 |
|
libi18nlangtag.so | File | 135.01 KB | 0644 |
|
libi18nsearchlo.so | File | 78.98 KB | 0644 |
|
libicglo.so | File | 130.97 KB | 0644 |
|
libindex_data.so | File | 530.42 KB | 0644 |
|
libintrospectionlo.so | File | 179.33 KB | 0644 |
|
libinvocadaptlo.so | File | 50.9 KB | 0644 |
|
libinvocationlo.so | File | 114.89 KB | 0644 |
|
libiolo.so | File | 280.91 KB | 0644 |
|
libjava_uno.so | File | 123.03 KB | 0644 |
|
libjavaloaderlo.so | File | 50.8 KB | 0644 |
|
libjavavmlo.so | File | 143.52 KB | 0644 |
|
libjpipe.so | File | 14.19 KB | 0644 |
|
libjuh.so | File | 14.23 KB | 0644 |
|
libjuhx.so | File | 62.84 KB | 0644 |
|
libjvmaccesslo.so | File | 34.59 KB | 0644 |
|
libjvmfwklo.so | File | 152.07 KB | 0644 |
|
libldapbe2lo.so | File | 67.05 KB | 0644 |
|
liblnthlo.so | File | 83.44 KB | 0644 |
|
liblocaledata_en.so | File | 323.16 KB | 0644 |
|
liblocaledata_es.so | File | 298.69 KB | 0644 |
|
liblocaledata_euro.so | File | 2.31 MB | 0644 |
|
liblocaledata_others.so | File | 3.37 MB | 0644 |
|
liblog_uno_uno.so | File | 18.41 KB | 0644 |
|
libloglo.so | File | 139.75 KB | 0644 |
|
liblosessioninstalllo.so | File | 50.95 KB | 0644 |
|
liblwpftlo.so | File | 1.06 MB | 0644 |
|
libmergedlo.so | File | 62.99 MB | 0644 |
|
libmigrationoo2lo.so | File | 67.13 KB | 0644 |
|
libmigrationoo3lo.so | File | 63 KB | 0644 |
|
libmorklo.so | File | 445.63 KB | 0644 |
|
libmozbootstraplo.so | File | 51.02 KB | 0644 |
|
libmsformslo.so | File | 520.92 KB | 0644 |
|
libmswordlo.so | File | 2.27 MB | 0644 |
|
libmtfrendererlo.so | File | 46.88 KB | 0644 |
|
libnamingservicelo.so | File | 30.7 KB | 0644 |
|
libnumbertextlo.so | File | 369.59 KB | 0644 |
|
libodfflatxmllo.so | File | 42.78 KB | 0644 |
|
liboffacclo.so | File | 50.98 KB | 0644 |
|
liboglcanvaslo.so | File | 372.27 KB | 0644 |
|
libooxlo.so | File | 4.7 MB | 0644 |
|
libpasswordcontainerlo.so | File | 127.33 KB | 0644 |
|
libpcrlo.so | File | 1.56 MB | 0644 |
|
libpdffilterlo.so | File | 248.58 KB | 0644 |
|
libpdfimportlo.so | File | 476.81 KB | 0644 |
|
libpdfiumlo.so | File | 4.23 MB | 0644 |
|
libpricinglo.so | File | 99.62 KB | 0644 |
|
libprotocolhandlerlo.so | File | 59 KB | 0644 |
|
libproxyfaclo.so | File | 34.86 KB | 0644 |
|
libpythonloaderlo.so | File | 30.91 KB | 0644 |
|
libpyuno.so | File | 264.02 KB | 0644 |
|
libreflectionlo.so | File | 163.24 KB | 0644 |
|
libreglo.so | File | 115.19 KB | 0644 |
|
libsal_textenclo.so | File | 1.62 MB | 0644 |
|
libscdlo.so | File | 38.92 KB | 0644 |
|
libscfiltlo.so | File | 4.71 MB | 0644 |
|
libsclo.so | File | 16.9 MB | 0644 |
|
libscnlo.so | File | 140.02 KB | 0644 |
|
libscriptframe.so | File | 215.67 KB | 0644 |
|
libscuilo.so | File | 662.52 KB | 0644 |
|
libsdbtlo.so | File | 115.28 KB | 0644 |
|
libsddlo.so | File | 34.98 KB | 0644 |
|
libsdfiltlo.so | File | 658.74 KB | 0644 |
|
libsdlo.so | File | 7.53 MB | 0644 |
|
libsduilo.so | File | 526.84 KB | 0644 |
|
libsimplecanvaslo.so | File | 66.9 KB | 0644 |
|
libslideshowlo.so | File | 1.81 MB | 0644 |
|
libsmdlo.so | File | 34.86 KB | 0644 |
|
libsmlo.so | File | 1.33 MB | 0644 |
|
libsolverlo.so | File | 107.19 KB | 0644 |
|
libspelllo.so | File | 75.42 KB | 0644 |
|
libsrtrs1.so | File | 171.46 KB | 0644 |
|
libstaroffice-0.0-lo.so.0 | File | 2.46 MB | 0644 |
|
libstocserviceslo.so | File | 139.59 KB | 0644 |
|
libstoragefdlo.so | File | 50.92 KB | 0644 |
|
libstorelo.so | File | 114.7 KB | 0644 |
|
libstringresourcelo.so | File | 179.34 KB | 0644 |
|
libsvgfilterlo.so | File | 789.23 KB | 0644 |
|
libsvgiolo.so | File | 364.2 KB | 0644 |
|
libswdlo.so | File | 34.85 KB | 0644 |
|
libswlo.so | File | 17.46 MB | 0644 |
|
libswuilo.so | File | 2.18 MB | 0644 |
|
libsysshlo.so | File | 38.84 KB | 0644 |
|
libt602filterlo.so | File | 123.08 KB | 0644 |
|
libtextconv_dict.so | File | 285.95 KB | 0644 |
|
libtextconversiondlgslo.so | File | 83.02 KB | 0644 |
|
libtextfdlo.so | File | 42.99 KB | 0644 |
|
libucpchelp1.so | File | 412.28 KB | 0644 |
|
libucpcmis1lo.so | File | 327.91 KB | 0644 |
|
libucpdav1.so | File | 440.66 KB | 0644 |
|
libucpextlo.so | File | 107.31 KB | 0644 |
|
libucpftp1.so | File | 231.8 KB | 0644 |
|
libucpgio1lo.so | File | 168.03 KB | 0644 |
|
libucphier1.so | File | 259.64 KB | 0644 |
|
libucpimagelo.so | File | 38.84 KB | 0644 |
|
libucppkg1.so | File | 223.53 KB | 0644 |
|
libucptdoc1lo.so | File | 328.29 KB | 0644 |
|
libuno_cppu.so.3 | File | 227.18 KB | 0644 |
|
libuno_cppuhelpergcc3.so.3 | File | 942.09 KB | 0644 |
|
libuno_purpenvhelpergcc3.so.3 | File | 30.51 KB | 0644 |
|
libuno_sal.so.3 | File | 360.88 KB | 0644 |
|
libuno_salhelpergcc3.so.3 | File | 34.67 KB | 0644 |
|
libunoidllo.so | File | 471.16 KB | 0644 |
|
libunopkgapp.so | File | 123.42 KB | 0644 |
|
libunordflo.so | File | 228.1 KB | 0644 |
|
libunsafe_uno_uno.so | File | 14.34 KB | 0644 |
|
libupdatefeedlo.so | File | 91.13 KB | 0644 |
|
libuuresolverlo.so | File | 38.75 KB | 0644 |
|
libvbaeventslo.so | File | 123.43 KB | 0644 |
|
libvbahelperlo.so | File | 841.67 KB | 0644 |
|
libvbaobjlo.so | File | 2.38 MB | 0644 |
|
libvbaswobjlo.so | File | 1.9 MB | 0644 |
|
libvclcanvaslo.so | File | 662 KB | 0644 |
|
libvclplug_genlo.so | File | 619.84 KB | 0644 |
|
libvclplug_gtk3lo.so | File | 2.11 MB | 0644 |
|
libwpftcalclo.so | File | 95.5 KB | 0644 |
|
libwpftdrawlo.so | File | 703.99 KB | 0644 |
|
libwpftimpresslo.so | File | 79.25 KB | 0644 |
|
libwpftwriterlo.so | File | 356.84 KB | 0644 |
|
libwriterfilterlo.so | File | 2.48 MB | 0644 |
|
libwriterlo.so | File | 200 KB | 0644 |
|
libwriterperfectlo.so | File | 70.98 KB | 0644 |
|
libxmlfalo.so | File | 62.98 KB | 0644 |
|
libxmlfdlo.so | File | 42.88 KB | 0644 |
|
libxmlreaderlo.so | File | 50.57 KB | 0644 |
|
libxmlsecurity.so | File | 633.3 KB | 0644 |
|
libxoflo.so | File | 337.75 KB | 0644 |
|
libxsec_xmlsec.so | File | 326.02 KB | 0644 |
|
libxsltdlglo.so | File | 239.77 KB | 0644 |
|
libxsltfilterlo.so | File | 135.73 KB | 0644 |
|
lounorc | File | 1.03 KB | 0644 |
|
mailmerge.py | File | 17.65 KB | 0644 |
|
msgbox.py | File | 8.34 KB | 0644 |
|
officehelper.py | File | 3.21 KB | 0644 |
|
oosplash | File | 42.23 KB | 0755 |
|
opencltest | File | 14.23 KB | 0755 |
|
pagein-calc | File | 24 B | 0644 |
|
pagein-common | File | 256 B | 0644 |
|
pagein-draw | File | 24 B | 0644 |
|
pagein-impress | File | 24 B | 0644 |
|
pagein-writer | File | 24 B | 0644 |
|
pythonloader.py | File | 6.7 KB | 0644 |
|
pythonloader.unorc | File | 181 B | 0644 |
|
pyuno.so | File | 14.18 KB | 0644 |
|
redirectrc | File | 50 B | 0644 |
|
regmerge | File | 26.32 KB | 0755 |
|
regview | File | 14.24 KB | 0755 |
|
scalc | File | 63 B | 0755 |
|
sdraw | File | 63 B | 0755 |
|
senddoc | File | 13.84 KB | 0755 |
|
services.rdb | File | 8.54 KB | 0644 |
|
setuprc | File | 32 B | 0644 |
|
simpress | File | 66 B | 0755 |
|
smath | File | 63 B | 0755 |
|
soffice | File | 6.58 KB | 0755 |
|
soffice.bin | File | 14.15 KB | 0755 |
|
sofficerc | File | 1.26 KB | 0644 |
|
swriter | File | 65 B | 0755 |
|
types.rdb | File | 56.1 KB | 0644 |
|
uno | File | 1.48 KB | 0755 |
|
uno.bin | File | 74.46 KB | 0755 |
|
unoinfo | File | 1.36 KB | 0755 |
|
unopkg | File | 3.12 KB | 0755 |
|
unopkg.bin | File | 14.15 KB | 0755 |
|
unorc | File | 239 B | 0644 |
|
uri-encode | File | 14.15 KB | 0755 |
|
versionrc | File | 1.01 KB | 0644 |
|
xpdfimport | File | 54.35 KB | 0755 |
|