#!/bin/sh

linenum=88

UNPACKDIR=/var/tmp/unpack_openofficeorg
diskSpaceRequired=16929
checksum=52117

EXTRACTONLY="no"
if [ "$1" = "-x" ]
then
    EXTRACTONLY=yes
fi

# Determining current platform

platform=`uname -s`

case $platform in
SunOS)
  tail_prog="tail"
  ;;
Linux)
  tail_prog="tail -n"
  ;;
*)
  tail_prog="tail"
  ;;
esac

# Asking for the unpack directory

echo
echo "Select the directory in which to save the unpacked files. [$UNPACKDIR] "
read reply leftover
if [ "x$reply" != "x" ]
then
  UNPACKDIR="$reply"
fi

if [ -d $UNPACKDIR ]; then
    printf "Directory $UNPACKDIR already exists.\n"
    printf "Please select a new directory name.\n"
    exit 1
fi

# Unpacking

mkdir -m 700 $UNPACKDIR

diskSpace=`df -k $UNPACKDIR | $tail_prog -1 | awk '{if ( $4 ~ /%/) { print $3 } else { print $4 } }'`
if [ $diskSpace -lt $diskSpaceRequired ]; then
    printf "The selected drive does not have enough disk space available.\n"
    printf "openofficeorg requires at least %s kByte.\n" $diskSpaceRequired
    exit 1
fi

trap 'rm -rf $UNPACKDIR; exit 1' HUP INT QUIT TERM

if [ -x /usr/bin/sum ] ; then
    echo "File is being checked for errors ..."

	sum=`$tail_prog +$linenum $0 | /usr/bin/sum`
    sum=`echo $sum | awk '{ print $1 }'`
    
    if [ $sum != $checksum ]; then
		echo "The download file appears to be corrupted. Please download openofficeorg again."
		exit 1
	fi
fi

echo "Unpacking ..."

$tail_prog +$linenum $0 | (cd $UNPACKDIR; tar xf -)

echo "All files have been successfully unpacked."

if [ "$EXTRACTONLY" != "yes" ]
then
  if [ -f $UNPACKDIR/setup ]
  then
      chmod 775 $UNPACKDIR/setup
      $UNPACKDIR/setup
  fi
fi

exit 0
packages/                                                                                           0000775 0000000 0000002 00000000000 11057747661 0012466 5                                                                                                    ustar 00root                            bin                             0000444 0200007                                                                                                                                                                        packages/ooobasis30-sdk/                                                                            0000775 0000000 0000002 00000000000 11057747650 0015224 5                                                                                                    ustar 00root                            bin                             0000444 0200007                                                                                                                                                                        packages/ooobasis30-sdk/install/                                                                    0000775 0000000 0000002 00000000000 11057747647 0016700 5                                                                                                    ustar 00root                            bin                             0000444 0200007                                                                                                                                                                        packages/ooobasis30-sdk/install/i.none                                                              0000664 0000000 0000002 00000004624 11057747647 0020017 0                                                                                                    ustar 00root                            bin                             0000444 0200007                                                                                                                                                                        ## $(#) i.template.sh 1.9 01/02/26 SMI













NAME="i.none"
FILELIST=${PKGSAV:?undefined}/filelist
BD=${BASEDIR:-/}
MAXLIST=550
count=0

is_an_archive=0
is_a_filelist=0
list_empty=1
local_install=0
Spcl_init=0
Rm_alt_sav=0
Tmp_xpath=/usr/tmp$$dir

MV_xpath=/usr/bin
MV_cmd=$MV_xpath/mv
CPIO_xpath=/usr/bin
CPIO_cmd=$CPIO_xpath/cpio
UNZIP_xpath=/usr/bin
UNZIP_cmd=$UNZIP_xpath/unzip
BZCAT_xpath=/usr/bin
BZCAT_cmd=$BZCAT_xpath/bzcat
ZCAT_xpath=/usr/bin
ZCAT_cmd=$ZCAT_xpath/zcat
LN_xpath=/usr/bin
LN_cmd=$LN_xpath/ln
NAWK_xpath=/usr/bin
NAWK_cmd=$NAWK_xpath/nawk
RM_xpath=/usr/bin
RM_cmd=$RM_xpath/rm



eval_pkg() {
	read path	# get the package source directory

	if [ ${path:-NULL} != NULL ]; then
		PKGSRC=${path:?undefined}

		

		if [ -r $PKGSRC/archive/none -o \
			-r $PKGSRC/archive/none.Z -o \
			-r $PKGSRC/archive/none.bz2 ]; then
			is_an_archive=1
		fi
	else
		exit 0	# empty pipe, we're done
	fi

}


eval_pkg

if [ "$is_an_archive" -eq 0 ]; then
	echo "ERROR : $NAME cannot find archived files in $PKGSRC/archive."
	exit 1
fi

Reloc_Arch=$PKGSRC/archive/none

if [ ! -d "$PKGSAV" ]; then
	echo "WARNING : $NAME cannot find save directory $PKGSAV."
	PKGSAV=$Tmp_xpath/$PKG.sav

	if [ ! -d "$PKGSAV" ]; then
		/usr/bin/mkdir $PKGSAV
	fi

	if [ $? -eq 0 ]; then
		echo "  Using alternate save directory" $PKGSAV
		FILELIST=$PKGSAV/filelist
		Rm_alt_sav=1
	else
		echo "ERROR : cannot create alternate save directory" $PKGSAV
		exit 1
	fi
fi

if [ -f "$FILELIST" ]; then
	rm $FILELIST
fi

cd $BD

if [ ${PKG_INIT_INSTALL:-null} = null ]; then
        is_a_filelist=1
        while   read path
        do
                count=`expr $count + 1`
if [ "$count" -gt "$MAXLIST" ]; then
        is_a_filelist=0
        break
fi

                echo $path >> $FILELIST
                list_empty=0
        done
fi


if [ ! -x "$BZCAT_cmd" ]; then
	echo "Cannot find required executable $BZCAT_cmd"
	exit 1
fi
if [ "$is_a_filelist" -eq 1 ]; then
	$BZCAT_cmd "$Reloc_Arch".bz2 | $CPIO_cmd -C 512 -idukm -E $FILELIST
	status=$?
	if [ "$status" -ne 0 ]; then
		echo "Unarchiving of $Reloc_Arch failed with error $status"
		exit 1
	fi
else
	$BZCAT_cmd "$Reloc_Arch".bz2 | $CPIO_cmd -C 512 -idukm
	status=$?
	if [ "$status" -ne 0 ]; then
		echo "Unarchiving of $Reloc_Arch failed with error $status"
		exit 1
	fi
fi


if [ -f "$FILELIST" ]; then
        $RM_cmd $FILELIST
fi

if [ "$Rm_alt_sav" -eq 1 ]; then
        $RM_cmd -r $PKGSAV
fi


exit 0
                                                                                                            packages/ooobasis30-sdk/install/copyright                                                           0000775 0000000 0000002 00000000135 10667750206 0020624 0                                                                                                    ustar 00root                            bin                             0000444 0200007                                                                                                                                                                        Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
Use is subject to license terms.
                                                                                                                                                                                                                                                                                                                                                                                                                                   packages/ooobasis30-sdk/install/depend                                                              0000664 0000000 0000002 00000000024 11057747430 0020044 0                                                                                                    ustar 00root                            bin                             0000444 0200007                                                                                                                                                                        P ooobasis30-core01
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            packages/ooobasis30-sdk/pkgmap                                                                      0000664 0000000 0000002 00007164774 11057747650 0016460 0                                                                                                    ustar 00root                            bin                             0000444 0200007                                                                                                                                                                        : 1 159755 15263
1 i copyright 93 8258 1189073030
1 i depend 20 1651 1220529944
1 d none opt/openoffice.org 0755 root bin
1 d none opt/openoffice.org/basis3.0 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/bin 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/bin/autodoc 0775 root bin 2732092 10998 1219948225
1 f none opt/openoffice.org/basis3.0/sdk/bin/cppumaker 0775 root bin 474324 54567 1219948224
1 f none opt/openoffice.org/basis3.0/sdk/bin/idlc 0775 root bin 332132 21463 1219948224
1 f none opt/openoffice.org/basis3.0/sdk/bin/idlcpp 0775 root bin 51568 39783 1219948224
1 f none opt/openoffice.org/basis3.0/sdk/bin/javamaker 0775 root bin 271368 21793 1219948225
1 f none opt/openoffice.org/basis3.0/sdk/bin/regcompare 0775 root bin 99976 14612 1219948224
1 f none opt/openoffice.org/basis3.0/sdk/bin/regmerge 0775 root bin 12252 42506 1219948224
1 f none opt/openoffice.org/basis3.0/sdk/bin/regview 0775 root bin 9420 36865 1219948224
1 f none opt/openoffice.org/basis3.0/sdk/bin/uno-skeletonmaker 0775 root bin 429004 21765 1219948225
1 f none opt/openoffice.org/basis3.0/sdk/bin/unoapploader 0775 root bin 10512 9906 1220529937
1 d none opt/openoffice.org/basis3.0/sdk/classes 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/classes/com 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/classes/com/sun 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader/InstallationFinder$StreamGobbler.class 0664 root bin 739 43775 1219950590
1 f none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader/InstallationFinder.class 0664 root bin 6963 4040 1219950589
1 f none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader/Loader$CustomURLClassLoader.class 0664 root bin 876 50185 1219950589
1 f none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader/Loader$Drain.class 0664 root bin 586 32729 1219950589
1 f none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader/Loader.class 0664 root bin 7156 63582 1219950588
1 f none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader/WinRegKey.class 0664 root bin 3977 12646 1219950591
1 f none opt/openoffice.org/basis3.0/sdk/classes/com/sun/star/lib/loader/WinRegKeyException.class 0664 root bin 323 16239 1219950592
1 d none opt/openoffice.org/basis3.0/sdk/classes/win 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/classes/win/unowinreg.dll 0664 root bin 12288 29499 1219950988
1 f none opt/openoffice.org/basis3.0/sdk/config.guess 0755 root bin 43458 38190 1219948238
1 f none opt/openoffice.org/basis3.0/sdk/config.sub 0755 root bin 31467 28583 1219948239
1 f none opt/openoffice.org/basis3.0/sdk/configure.pl 0755 root bin 22787 62331 1219948239
1 d none opt/openoffice.org/basis3.0/sdk/docs 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/docs/common 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/Autodoc_DiagnosticMessages.txt 0664 root bin 196960 62945 1219950984
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/module-ix.html 0664 root bin 1851 25628 1219950693
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/module-ix.html 0664 root bin 1840 24795 1219950693
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star 0755 root bin
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessBridge-xref.html 0664 root bin 1269 41531 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessBridge.html 0664 root bin 2640 26102 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/Accessible-xref.html 0664 root bin 1685 12711 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/Accessible.html 0664 root bin 2922 51841 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleContext-xref.html 0664 root bin 3983 18424 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleContext.html 0664 root bin 3955 15519 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleEventId.html 0664 root bin 48666 30082 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleEventObject-xref.html 0664 root bin 2412 12392 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleEventObject.html 0664 root bin 4741 6146 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleRelation-xref.html 0664 root bin 2328 4113 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleRelation.html 0664 root bin 4390 45132 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleRelationType.html 0664 root bin 9160 42364 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleRole.html 0664 root bin 54216 52726 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleStateType.html 0664 root bin 22429 40024 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleTableModelChange-xref.html 0664 root bin 1348 48578 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleTableModelChange.html 0664 root bin 6034 52433 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleTableModelChangeType.html 0664 root bin 4945 23640 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/AccessibleTextType.html 0664 root bin 6872 47281 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/IllegalAccessibleComponentStateException-xref.html 0664 root bin 1676 12525 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/IllegalAccessibleComponentStateException.html 0664 root bin 2556 21447 1219950693
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/TextSegment-xref.html 0664 root bin 2348 6905 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/TextSegment.html 0664 root bin 6072 1490 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessible-xref.html 0664 root bin 12378 44707 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessible.html 0664 root bin 5438 14064 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleAction-xref.html 0664 root bin 4087 26618 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleAction.html 0664 root bin 9223 9603 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleComponent-xref.html 0664 root bin 11580 32967 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleComponent.html 0664 root bin 16229 29939 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleContext-xref.html 0664 root bin 12872 21701 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleContext.html 0664 root bin 15246 573 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleEditableText-xref.html 0664 root bin 2629 31315 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleEditableText.html 0664 root bin 16620 52417 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleEventBroadcaster-xref.html 0664 root bin 9923 19432 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleEventBroadcaster.html 0664 root bin 4918 31218 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleEventListener-xref.html 0664 root bin 2750 43823 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleEventListener.html 0664 root bin 4539 61003 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleExtendedComponent-xref.html 0664 root bin 6408 32859 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleExtendedComponent.html 0664 root bin 6942 8544 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleHyperlink-xref.html 0664 root bin 2431 14098 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleHyperlink.html 0664 root bin 10995 33298 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleHypertext-xref.html 0664 root bin 1932 35630 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleHypertext.html 0664 root bin 8222 53896 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleImage-xref.html 0664 root bin 2599 27702 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleImage.html 0664 root bin 5840 40355 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleKeyBinding-xref.html 0664 root bin 2457 15965 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleKeyBinding.html 0664 root bin 6920 9843 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleMultiLineText-xref.html 0664 root bin 1440 57238 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleMultiLineText.html 0664 root bin 10141 23643 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleRelationSet-xref.html 0664 root bin 2308 2484 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleRelationSet.html 0664 root bin 8192 49903 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleSelection-xref.html 0664 root bin 4775 22873 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleSelection.html 0664 root bin 13659 4833 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleStateSet-xref.html 0664 root bin 2281 65166 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleStateSet.html 0664 root bin 7429 43397 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleTable-xref.html 0664 root bin 3441 37756 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleTable.html 0664 root bin 31756 56104 1219950694
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleText-xref.html 0664 root bin 5631 33751 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleText.html 0664 root bin 35082 25105 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleTextAttributes-xref.html 0664 root bin 1834 26095 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleTextAttributes.html 0664 root bin 6551 41399 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleTextMarkup-xref.html 0664 root bin 1428 56074 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleTextMarkup.html 0664 root bin 9457 28556 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleValue-xref.html 0664 root bin 3303 22534 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/XAccessibleValue.html 0664 root bin 7547 58792 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/accessibility/module-ix.html 0664 root bin 12336 42844 1219950693
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationAdditiveMode.html 0664 root bin 4514 45774 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationCalcMode.html 0664 root bin 5928 44152 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationColorSpace.html 0664 root bin 3570 36755 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationEndSync.html 0664 root bin 7173 30548 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationFill.html 0664 root bin 9890 64223 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationNodeType.html 0664 root bin 8614 57515 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationRestart.html 0664 root bin 6222 2152 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationTransformType.html 0664 root bin 4908 15209 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/AnimationValueType.html 0664 root bin 3741 48966 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/Event-xref.html 0664 root bin 1264 40342 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/Event.html 0664 root bin 4896 19468 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/EventTrigger.html 0664 root bin 9323 53721 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/TargetProperties-xref.html 0664 root bin 1308 45022 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/TargetProperties.html 0664 root bin 3610 42756 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/TargetPropertiesCreator.html 0664 root bin 1732 14483 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/TimeFilterPair-xref.html 0664 root bin 1300 43922 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/TimeFilterPair.html 0664 root bin 2966 50081 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/Timing-xref.html 0664 root bin 1241 38177 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/Timing.html 0664 root bin 3311 13232 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/TransitionSubType.html 0664 root bin 49929 27419 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/TransitionType.html 0664 root bin 19435 65504 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/ValuePair-xref.html 0664 root bin 1280 41906 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/ValuePair.html 0664 root bin 2920 45881 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimate-xref.html 0664 root bin 1878 28798 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimate.html 0664 root bin 13953 7269 1219950695
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateColor-xref.html 0664 root bin 1396 52726 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateColor.html 0664 root bin 5534 10873 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateMotion-xref.html 0664 root bin 1400 53202 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateMotion.html 0664 root bin 4934 22441 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateSet-xref.html 0664 root bin 1388 51882 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateSet.html 0664 root bin 3772 55126 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateTransform-xref.html 0664 root bin 1412 54506 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimateTransform.html 0664 root bin 5045 33953 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimationListener-xref.html 0664 root bin 1819 24275 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimationListener.html 0664 root bin 6804 52534 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimationNode-xref.html 0664 root bin 4956 39804 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimationNode.html 0664 root bin 20678 63413 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimationNodeSupplier-xref.html 0664 root bin 1432 56550 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAnimationNodeSupplier.html 0664 root bin 2938 50120 1219950696
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAudio-xref.html 0664 root bin 1368 49862 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XAudio.html 0664 root bin 3838 59851 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XCommand-xref.html 0664 root bin 1376 50682 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XCommand.html 0664 root bin 5072 39135 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XIterateContainer-xref.html 0664 root bin 1412 54466 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XIterateContainer.html 0664 root bin 6310 16382 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XTargetPropertiesCreator-xref.html 0664 root bin 1761 20009 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XTargetPropertiesCreator.html 0664 root bin 4256 38382 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XTimeContainer-xref.html 0664 root bin 1708 13880 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XTimeContainer.html 0664 root bin 10502 45768 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XTransitionFilter-xref.html 0664 root bin 1412 54594 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/XTransitionFilter.html 0664 root bin 8842 38424 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/animations/module-ix.html 0664 root bin 9729 64556 1219950695
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/AuthenticationFailedException-xref.html 0664 root bin 2106 49122 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/AuthenticationFailedException.html 0664 root bin 2063 42837 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidArgumentException-xref.html 0664 root bin 2354 6813 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidArgumentException.html 0664 root bin 2024 38565 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidContextException-xref.html 0664 root bin 1723 15880 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidContextException.html 0664 root bin 2041 40363 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidCredentialException-xref.html 0664 root bin 1987 39540 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidCredentialException.html 0664 root bin 2055 41664 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidPrincipalException-xref.html 0664 root bin 1746 17976 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/InvalidPrincipalException.html 0664 root bin 2021 38554 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/PersistenceFailureException-xref.html 0664 root bin 1877 29884 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/PersistenceFailureException.html 0664 root bin 2043 41022 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/SSOManagerFactory-xref.html 0664 root bin 1289 43487 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/SSOManagerFactory.html 0664 root bin 3794 157 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/SSOPasswordCache-xref.html 0664 root bin 1285 43055 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/SSOPasswordCache.html 0664 root bin 2469 13305 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/UnsupportedException-xref.html 0664 root bin 1726 16184 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/UnsupportedException.html 0664 root bin 2013 38070 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOAcceptorContext-xref.html 0664 root bin 1755 17888 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOAcceptorContext.html 0664 root bin 4714 9778 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOContext-xref.html 0664 root bin 1761 18414 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOContext.html 0664 root bin 5487 5630 1219950697
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOInitiatorContext-xref.html 0664 root bin 1761 18668 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOInitiatorContext.html 0664 root bin 5129 49227 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOManager-xref.html 0664 root bin 1728 14792 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOManager.html 0664 root bin 6401 26275 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOManagerFactory-xref.html 0664 root bin 1725 15617 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOManagerFactory.html 0664 root bin 3255 11551 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOPasswordCache-xref.html 0664 root bin 1719 14969 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/XSSOPasswordCache.html 0664 root bin 6737 52191 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/auth/module-ix.html 0664 root bin 5547 27401 1219950697
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleButton-xref.html 0664 root bin 1285 43367 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleButton.html 0664 root bin 7291 46434 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleCheckBox-xref.html 0664 root bin 1293 43923 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleCheckBox.html 0664 root bin 7269 42818 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleComboBox-xref.html 0664 root bin 1293 43995 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleComboBox.html 0664 root bin 6486 40562 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleDropDownComboBox-xref.html 0664 root bin 1325 47247 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleDropDownComboBox.html 0664 root bin 7172 36544 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleDropDownListBox-xref.html 0664 root bin 1321 46911 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleDropDownListBox.html 0664 root bin 7079 28374 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleEdit-xref.html 0664 root bin 1277 42383 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleEdit.html 0664 root bin 7287 46477 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleFixedText-xref.html 0664 root bin 1297 44491 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleFixedText.html 0664 root bin 6394 33915 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleIconChoiceControl-xref.html 0664 root bin 1329 47691 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleIconChoiceControl.html 0664 root bin 5617 26276 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleIconChoiceControlEntry-xref.html 0664 root bin 1349 49811 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleIconChoiceControlEntry.html 0664 root bin 5406 8454 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleList-xref.html 0664 root bin 1590 3875 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleList.html 0664 root bin 7828 27134 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleListBox-xref.html 0664 root bin 1289 43659 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleListBox.html 0664 root bin 6389 32168 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleListBoxList-xref.html 0664 root bin 1305 45307 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleListBoxList.html 0664 root bin 2690 32469 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleListItem-xref.html 0664 root bin 1293 44067 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleListItem.html 0664 root bin 5235 57168 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenu-xref.html 0664 root bin 1277 42443 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenu.html 0664 root bin 8137 55437 1219950698
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenuBar-xref.html 0664 root bin 1289 43551 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenuBar.html 0664 root bin 6591 51684 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenuItem-xref.html 0664 root bin 1293 44039 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenuItem.html 0664 root bin 7596 7176 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenuSeparator-xref.html 0664 root bin 1313 46223 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleMenuSeparator.html 0664 root bin 6190 16380 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessiblePopupMenu-xref.html 0664 root bin 1297 44571 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessiblePopupMenu.html 0664 root bin 6614 54457 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleRadioButton-xref.html 0664 root bin 1305 45347 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleRadioButton.html 0664 root bin 7445 60096 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleScrollBar-xref.html 0664 root bin 1297 44423 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleScrollBar.html 0664 root bin 7046 25173 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleStatusBar-xref.html 0664 root bin 1297 44507 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleStatusBar.html 0664 root bin 5872 54534 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleStatusBarItem-xref.html 0664 root bin 1313 46103 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleStatusBarItem.html 0664 root bin 6282 25417 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabBar-xref.html 0664 root bin 1285 43047 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabBar.html 0664 root bin 6176 14577 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabBarPage-xref.html 0664 root bin 1301 44571 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabBarPage.html 0664 root bin 6075 5603 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabBarPageList-xref.html 0664 root bin 1317 46219 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabBarPageList.html 0664 root bin 6354 31064 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabControl-xref.html 0664 root bin 1301 44887 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabControl.html 0664 root bin 6418 36344 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabPage-xref.html 0664 root bin 1289 43463 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTabPage.html 0664 root bin 6556 47138 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTextField-xref.html 0664 root bin 1297 44443 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTextField.html 0664 root bin 6943 16027 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleToolBox-xref.html 0664 root bin 1289 43667 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleToolBox.html 0664 root bin 6572 48064 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleToolBoxItem-xref.html 0664 root bin 1305 45263 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleToolBoxItem.html 0664 root bin 8292 2416 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTreeListBox-xref.html 0664 root bin 1305 45259 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTreeListBox.html 0664 root bin 5602 24587 1219950699
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTreeListBoxEntry-xref.html 0664 root bin 1325 47379 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleTreeListBoxEntry.html 0664 root bin 6806 65017 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleWindow-xref.html 0664 root bin 1285 43351 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AccessibleWindow.html 0664 root bin 6608 49066 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ActionEvent-xref.html 0664 root bin 2101 48496 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ActionEvent.html 0664 root bin 3659 49739 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AdjustmentEvent-xref.html 0664 root bin 2053 44313 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AdjustmentEvent.html 0664 root bin 3440 26963 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AdjustmentType-xref.html 0664 root bin 1586 2455 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AdjustmentType.html 0664 root bin 3894 60776 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/AsyncCallback.html 0664 root bin 2092 43781 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/CharSet.html 0664 root bin 8366 31062 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Command.html 0664 root bin 10211 58129 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ContainerWindowProvider.html 0664 root bin 2047 40648 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DeviceCapability.html 0664 root bin 3917 65467 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DeviceInfo-xref.html 0664 root bin 1579 1048 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DeviceInfo.html 0664 root bin 7441 38117 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DialogProvider.html 0664 root bin 2001 35649 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DialogProvider2.html 0664 root bin 2005 35849 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DockingData-xref.html 0664 root bin 1631 6459 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DockingData.html 0664 root bin 3543 35491 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DockingEvent-xref.html 0664 root bin 1782 20659 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/DockingEvent.html 0664 root bin 5154 45559 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/EndDockingEvent-xref.html 0664 root bin 1657 9094 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/EndDockingEvent.html 0664 root bin 4251 30024 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/EndPopupModeEvent-xref.html 0664 root bin 1669 10402 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/EndPopupModeEvent.html 0664 root bin 3997 10355 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/EnhancedMouseEvent-xref.html 0664 root bin 1836 25813 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/EnhancedMouseEvent.html 0664 root bin 3214 6212 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FieldUnit.html 0664 root bin 7845 51420 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FocusChangeReason.html 0664 root bin 5873 27871 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FocusEvent-xref.html 0664 root bin 2056 43040 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FocusEvent.html 0664 root bin 5193 51082 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontDescriptor-xref.html 0664 root bin 6673 6419 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontDescriptor.html 0664 root bin 11941 23895 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontEmphasisMark.html 0664 root bin 5721 15575 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontFamily.html 0664 root bin 5704 14552 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontPitch.html 0664 root bin 3756 50309 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontRelief.html 0664 root bin 3554 31678 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontSlant-xref.html 0664 root bin 3550 47376 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontSlant.html 0664 root bin 5241 40504 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontStrikeout.html 0664 root bin 5787 22949 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontType.html 0664 root bin 4096 10748 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontUnderline.html 0664 root bin 12015 9408 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontWeight.html 0664 root bin 7123 55283 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/FontWidth.html 0664 root bin 7568 24755 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Gradient-xref.html 0664 root bin 3053 65335 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Gradient.html 0664 root bin 7642 54812 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/GradientStyle-xref.html 0664 root bin 1563 65427 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/GradientStyle.html 0664 root bin 4958 15451 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ImageAlign.html 0664 root bin 3929 62672 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ImagePosition.html 0664 root bin 10617 56472 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ImageStatus.html 0664 root bin 4792 5301 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/InputEvent-xref.html 0664 root bin 1673 9992 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/InputEvent.html 0664 root bin 3278 14120 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/InvalidateStyle.html 0664 root bin 5841 25114 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ItemEvent-xref.html 0664 root bin 1615 4920 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ItemEvent.html 0664 root bin 3888 63201 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Key.html 0664 root bin 48639 62848 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/KeyEvent-xref.html 0664 root bin 2584 25694 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/KeyEvent.html 0664 root bin 4263 28851 1219950700
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/KeyFunction.html 0664 root bin 9101 21753 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/KeyGroup.html 0664 root bin 5056 23257 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/KeyModifier.html 0664 root bin 3566 32948 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/KeyStroke-xref.html 0664 root bin 1664 10046 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/KeyStroke.html 0664 root bin 4609 59122 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/LineEndFormat.html 0664 root bin 4267 27457 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MaxChildrenException-xref.html 0664 root bin 1588 3485 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MaxChildrenException.html 0664 root bin 1894 27455 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MenuBar-xref.html 0664 root bin 1249 39527 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MenuBar.html 0664 root bin 2365 2013 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MenuEvent-xref.html 0664 root bin 2407 8821 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MenuEvent.html 0664 root bin 2806 36924 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MenuItemStyle.html 0664 root bin 3847 57983 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MessageBoxButtons.html 0664 root bin 9301 39282 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MessageBoxCommand.html 0664 root bin 4033 4455 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MouseButton.html 0664 root bin 3658 42987 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MouseEvent-xref.html 0664 root bin 4416 58335 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/MouseEvent.html 0664 root bin 6001 48908 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PaintEvent-xref.html 0664 root bin 1612 4775 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PaintEvent.html 0664 root bin 3911 2877 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Point-xref.html 0664 root bin 11805 56000 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Point.html 0664 root bin 3023 54716 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PopupMenu-xref.html 0664 root bin 1257 40547 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PopupMenu.html 0664 root bin 2406 6573 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PopupMenuDirection.html 0664 root bin 5710 11342 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PosSize.html 0664 root bin 5354 47861 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PrinterException-xref.html 0664 root bin 1802 21464 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PrinterException.html 0664 root bin 2076 42855 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PushButtonType-xref.html 0664 root bin 1623 6016 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/PushButtonType.html 0664 root bin 3908 59470 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/RasterOperation-xref.html 0664 root bin 1962 34701 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/RasterOperation.html 0664 root bin 4873 12883 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Rectangle-xref.html 0664 root bin 12686 9452 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Rectangle.html 0664 root bin 3920 63560 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/RoadmapItem-xref.html 0664 root bin 1770 19598 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/RoadmapItem.html 0664 root bin 5620 20997 1219950701
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/ScrollBarOrientation.html 0664 root bin 3125 63607 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Selection-xref.html 0664 root bin 2048 42634 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Selection.html 0664 root bin 3061 58188 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/SimpleFontMetric-xref.html 0664 root bin 1712 13404 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/SimpleFontMetric.html 0664 root bin 6101 54029 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Size-xref.html 0664 root bin 12344 36006 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Size.html 0664 root bin 3036 56005 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/SpinEvent-xref.html 0664 root bin 1880 28111 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/SpinEvent.html 0664 root bin 2855 41478 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Style.html 0664 root bin 2968 48745 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/SystemDependentXWindow-xref.html 0664 root bin 1332 47422 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/SystemDependentXWindow.html 0664 root bin 3616 42712 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/SystemPointer.html 0664 root bin 42247 52512 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/TabController-xref.html 0664 root bin 1273 42155 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/TabController.html 0664 root bin 2253 59100 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/TabControllerModel-xref.html 0664 root bin 1293 44143 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/TabControllerModel.html 0664 root bin 2572 21269 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/TextAlign.html 0664 root bin 3482 26210 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/TextEvent-xref.html 0664 root bin 1605 4092 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/TextEvent.html 0664 root bin 2848 40833 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Toolkit-xref.html 0664 root bin 2424 14485 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/Toolkit.html 0664 root bin 3443 32705 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControl-xref.html 0664 root bin 6829 16097 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControl.html 0664 root bin 4427 53307 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlButton-xref.html 0664 root bin 2153 53192 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlButton.html 0664 root bin 2955 54360 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlButtonModel-xref.html 0664 root bin 2052 44265 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlButtonModel.html 0664 root bin 22050 40832 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCheckBox-xref.html 0664 root bin 2018 40453 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCheckBox.html 0664 root bin 2974 55702 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCheckBoxModel-xref.html 0664 root bin 2364 5852 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCheckBoxModel.html 0664 root bin 17704 55919 1219950702
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlComboBox-xref.html 0664 root bin 2131 50544 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlComboBox.html 0664 root bin 2748 36021 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlComboBoxModel-xref.html 0664 root bin 2364 6068 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlComboBoxModel.html 0664 root bin 16848 54284 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlContainer-xref.html 0664 root bin 1600 5115 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlContainer.html 0664 root bin 3429 31165 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlContainerModel-xref.html 0664 root bin 1317 46683 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlContainerModel.html 0664 root bin 7698 61520 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCurrencyField-xref.html 0664 root bin 2181 55884 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCurrencyField.html 0664 root bin 3164 6318 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCurrencyFieldModel-xref.html 0664 root bin 1897 32149 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlCurrencyFieldModel.html 0664 root bin 20145 13961 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDateField-xref.html 0664 root bin 2260 61907 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDateField.html 0664 root bin 3126 1989 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDateFieldModel-xref.html 0664 root bin 2376 6944 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDateFieldModel.html 0664 root bin 19809 41047 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDialog-xref.html 0664 root bin 1818 24855 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDialog.html 0664 root bin 2987 56876 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDialogElement-xref.html 0664 root bin 12145 36886 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDialogElement.html 0664 root bin 6439 19115 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDialogModel-xref.html 0664 root bin 1983 40121 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlDialogModel.html 0664 root bin 15305 53295 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlEdit-xref.html 0664 root bin 3876 10159 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlEdit.html 0664 root bin 3218 12265 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlEditModel-xref.html 0664 root bin 2823 48012 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlEditModel.html 0664 root bin 21158 30425 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFileControl-xref.html 0664 root bin 1774 20551 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFileControl.html 0664 root bin 2350 1731 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFileControlModel-xref.html 0664 root bin 1718 15811 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFileControlModel.html 0664 root bin 13462 28516 1219950703
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedHyperlink-xref.html 0664 root bin 1317 46755 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedHyperlink.html 0664 root bin 3165 6790 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedHyperlinkModel-xref.html 0664 root bin 1337 48743 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedHyperlinkModel.html 0664 root bin 14105 15208 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedLine-xref.html 0664 root bin 1828 25999 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedLine.html 0664 root bin 2233 56916 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedLineModel-xref.html 0664 root bin 1703 14552 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedLineModel.html 0664 root bin 9789 44714 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedText-xref.html 0664 root bin 1762 19107 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedText.html 0664 root bin 2970 55801 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedTextModel-xref.html 0664 root bin 2050 43795 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFixedTextModel.html 0664 root bin 13476 28855 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFormattedField-xref.html 0664 root bin 2191 56794 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFormattedField.html 0664 root bin 2827 42563 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFormattedFieldModel-xref.html 0664 root bin 2589 27650 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlFormattedFieldModel.html 0664 root bin 22428 9614 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlGroupBox-xref.html 0664 root bin 2131 50834 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlGroupBox.html 0664 root bin 2229 56652 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlGroupBoxModel-xref.html 0664 root bin 1700 14017 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlGroupBoxModel.html 0664 root bin 9199 60455 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlImageControl-xref.html 0664 root bin 2312 1757 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlImageControl.html 0664 root bin 2742 36177 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlImageControlModel-xref.html 0664 root bin 2235 60811 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlImageControlModel.html 0664 root bin 10440 29052 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlListBox-xref.html 0664 root bin 2121 49704 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlListBox.html 0664 root bin 3330 21807 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlListBoxModel-xref.html 0664 root bin 2352 5060 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlListBoxModel.html 0664 root bin 15565 10816 1219950704
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlModel-xref.html 0664 root bin 12702 22152 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlModel.html 0664 root bin 6444 30244 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlNumericField-xref.html 0664 root bin 2294 164 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlNumericField.html 0664 root bin 3167 6300 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlNumericFieldModel-xref.html 0664 root bin 2412 11036 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlNumericFieldModel.html 0664 root bin 18995 44915 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlPatternField-xref.html 0664 root bin 2171 54794 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlPatternField.html 0664 root bin 3184 7992 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlPatternFieldModel-xref.html 0664 root bin 1889 31277 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlPatternFieldModel.html 0664 root bin 15453 1625 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlProgressBar-xref.html 0664 root bin 1774 20623 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlProgressBar.html 0664 root bin 2714 33064 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlProgressBarModel-xref.html 0664 root bin 1671 11484 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlProgressBarModel.html 0664 root bin 9621 30266 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRadioButton-xref.html 0664 root bin 2044 43577 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRadioButton.html 0664 root bin 3005 59200 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRadioButtonModel-xref.html 0664 root bin 2400 10124 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRadioButtonModel.html 0664 root bin 17155 10231 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRoadmap-xref.html 0664 root bin 1641 8438 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRoadmap.html 0664 root bin 4112 25261 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRoadmapModel-xref.html 0664 root bin 1837 26448 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlRoadmapModel.html 0664 root bin 11640 7213 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlScrollBar-xref.html 0664 root bin 1796 22694 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlScrollBar.html 0664 root bin 2762 37388 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlScrollBarModel-xref.html 0664 root bin 2048 43565 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlScrollBarModel.html 0664 root bin 14984 28726 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSimpleAnimation-xref.html 0664 root bin 1321 47155 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSimpleAnimation.html 0664 root bin 3090 723 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSimpleAnimationModel-xref.html 0664 root bin 1341 49143 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSimpleAnimationModel.html 0664 root bin 4626 579 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSpinButton-xref.html 0664 root bin 1301 45155 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSpinButton.html 0664 root bin 3103 1362 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSpinButtonModel-xref.html 0664 root bin 1712 15361 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlSpinButtonModel.html 0664 root bin 13112 5802 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlThrobber-xref.html 0664 root bin 1293 44267 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlThrobber.html 0664 root bin 3027 59760 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlThrobberModel-xref.html 0664 root bin 1313 46255 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlThrobberModel.html 0664 root bin 2773 37927 1219950705
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlTimeField-xref.html 0664 root bin 2022 40811 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlTimeField.html 0664 root bin 3128 2196 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlTimeFieldModel-xref.html 0664 root bin 2376 7148 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/UnoControlTimeFieldModel.html 0664 root bin 18497 62119 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/VclContainerEvent-xref.html 0664 root bin 1800 22601 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/VclContainerEvent.html 0664 root bin 3199 6654 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/VclWindowPeerAttribute.html 0664 root bin 12410 22435 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/VisualEffect.html 0664 root bin 3754 48538 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/WindowAttribute.html 0664 root bin 8829 13828 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/WindowClass-xref.html 0664 root bin 1937 32364 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/WindowClass.html 0664 root bin 4219 21869 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/WindowDescriptor-xref.html 0664 root bin 2060 44553 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/WindowDescriptor.html 0664 root bin 7376 35922 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/WindowEvent-xref.html 0664 root bin 2335 3983 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/WindowEvent.html 0664 root bin 6940 58760 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XActionListener-xref.html 0664 root bin 4133 36018 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XActionListener.html 0664 root bin 3708 50828 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XActivateListener-xref.html 0664 root bin 1412 54490 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XActivateListener.html 0664 root bin 5239 50446 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XAdjustmentListener-xref.html 0664 root bin 2476 16688 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XAdjustmentListener.html 0664 root bin 3779 58329 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XBitmap-xref.html 0664 root bin 4288 42935 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XBitmap.html 0664 root bin 4237 26437 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XButton-xref.html 0664 root bin 2178 54869 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XButton.html 0664 root bin 5405 64721 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XCallback-xref.html 0664 root bin 1714 13747 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XCallback.html 0664 root bin 3216 7297 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XCheckBox-xref.html 0664 root bin 2309 746 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XCheckBox.html 0664 root bin 6637 34292 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XComboBox-xref.html 0664 root bin 2283 63574 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XComboBox.html 0664 root bin 11557 61874 1219950706
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XContainerWindowEventHandler-xref.html 0664 root bin 1880 30731 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XContainerWindowEventHandler.html 0664 root bin 6411 28893 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XContainerWindowProvider-xref.html 0664 root bin 1761 20021 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XContainerWindowProvider.html 0664 root bin 6698 54626 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XControl-xref.html 0664 root bin 8441 24626 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XControl.html 0664 root bin 10940 5519 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XControlContainer-xref.html 0664 root bin 2963 57752 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XControlContainer.html 0664 root bin 6202 1022 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XControlModel-xref.html 0664 root bin 13278 1969 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XControlModel.html 0664 root bin 1778 17504 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XCurrencyField-xref.html 0664 root bin 1866 28527 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XCurrencyField.html 0664 root bin 13774 48791 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDataTransferProviderAccess-xref.html 0664 root bin 1741 17677 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDataTransferProviderAccess.html 0664 root bin 6774 53585 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDateField-xref.html 0664 root bin 1834 24839 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDateField.html 0664 root bin 13727 41182 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDevice-xref.html 0664 root bin 3415 29447 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDevice.html 0664 root bin 8643 10262 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialog-xref.html 0664 root bin 3803 739 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialog.html 0664 root bin 4987 23845 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialog2-xref.html 0664 root bin 1376 50438 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialog2.html 0664 root bin 3261 10223 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialogEventHandler-xref.html 0664 root bin 1894 31806 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialogEventHandler.html 0664 root bin 6335 20629 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialogProvider-xref.html 0664 root bin 2786 43806 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialogProvider.html 0664 root bin 3733 50465 1219950707
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialogProvider2-xref.html 0664 root bin 2171 55075 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDialogProvider2.html 0664 root bin 6777 57655 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDisplayBitmap-xref.html 0664 root bin 2018 39355 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDisplayBitmap.html 0664 root bin 1926 30402 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDisplayConnection-xref.html 0664 root bin 1416 54934 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDisplayConnection.html 0664 root bin 7310 32575 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDockableWindow-xref.html 0664 root bin 1800 22273 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDockableWindow.html 0664 root bin 11294 44975 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDockableWindowListener-xref.html 0664 root bin 1946 36329 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XDockableWindowListener.html 0664 root bin 9998 1577 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XEnhancedMouseClickHandler-xref.html 0664 root bin 2222 60995 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XEnhancedMouseClickHandler.html 0664 root bin 4646 158 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XEventHandler-xref.html 0664 root bin 2158 55329 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XEventHandler.html 0664 root bin 3327 18967 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XExtendedToolkit-xref.html 0664 root bin 1935 35359 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XExtendedToolkit.html 0664 root bin 16942 26486 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFileDialog-xref.html 0664 root bin 1388 51774 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFileDialog.html 0664 root bin 5854 31970 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFixedHyperlink-xref.html 0664 root bin 1727 16347 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFixedHyperlink.html 0664 root bin 8193 33699 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFixedText-xref.html 0664 root bin 1697 13173 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFixedText.html 0664 root bin 5051 30132 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFocusListener-xref.html 0664 root bin 2458 14706 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFocusListener.html 0664 root bin 4915 23361 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFont-xref.html 0664 root bin 2883 48008 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFont.html 0664 root bin 8487 62243 1219950708
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFont2-xref.html 0664 root bin 1368 49698 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XFont2.html 0664 root bin 3949 2865 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XGraphics-xref.html 0664 root bin 2650 28203 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XGraphics.html 0664 root bin 30050 40176 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XImageButton-xref.html 0664 root bin 1392 52346 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XImageButton.html 0664 root bin 4657 1693 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XImageConsumer-xref.html 0664 root bin 1848 26329 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XImageConsumer.html 0664 root bin 9464 19613 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XImageProducer-xref.html 0664 root bin 2157 52239 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XImageProducer.html 0664 root bin 5801 40091 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XInfoPrinter-xref.html 0664 root bin 1728 15657 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XInfoPrinter.html 0664 root bin 3746 53426 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XItemEventBroadcaster-xref.html 0664 root bin 2414 9425 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XItemEventBroadcaster.html 0664 root bin 4042 14008 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XItemListener-xref.html 0664 root bin 3571 49307 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XItemListener.html 0664 root bin 3752 54420 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XKeyHandler-xref.html 0664 root bin 2534 21822 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XKeyHandler.html 0664 root bin 7022 15907 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XKeyListener-xref.html 0664 root bin 2182 54595 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XKeyListener.html 0664 root bin 4423 44321 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutConstrains-xref.html 0664 root bin 5596 33089 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutConstrains.html 0664 root bin 4512 54172 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutContainer-xref.html 0664 root bin 2176 54763 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutContainer.html 0664 root bin 9793 40250 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutFlow-xref.html 0664 root bin 1388 52054 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutFlow.html 0664 root bin 3323 16946 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutRoot-xref.html 0664 root bin 1388 52102 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutRoot.html 0664 root bin 3587 40545 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutUnit-xref.html 0664 root bin 2060 44176 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XLayoutUnit.html 0664 root bin 2791 37825 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XListBox-xref.html 0664 root bin 2271 62566 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XListBox.html 0664 root bin 19318 2773 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenu-xref.html 0664 root bin 2377 4649 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenu.html 0664 root bin 12770 30500 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenuBar-xref.html 0664 root bin 2721 35594 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenuBar.html 0664 root bin 2225 54066 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenuExtended-xref.html 0664 root bin 1396 52758 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenuExtended.html 0664 root bin 6192 62604 1219950709
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenuListener-xref.html 0664 root bin 1806 22105 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMenuListener.html 0664 root bin 5931 40445 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMessageBox-xref.html 0664 root bin 1734 15966 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMessageBox.html 0664 root bin 5688 18445 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMessageBoxFactory-xref.html 0664 root bin 2049 43297 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMessageBoxFactory.html 0664 root bin 5031 34228 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMetricField-xref.html 0664 root bin 1392 52254 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMetricField.html 0664 root bin 16337 3496 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseClickHandler-xref.html 0664 root bin 2336 4370 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseClickHandler.html 0664 root bin 5221 50584 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseListener-xref.html 0664 root bin 2666 33536 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseListener.html 0664 root bin 6752 51001 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseMotionHandler-xref.html 0664 root bin 1808 22983 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseMotionHandler.html 0664 root bin 5489 9014 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseMotionListener-xref.html 0664 root bin 2738 41096 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XMouseMotionListener.html 0664 root bin 4858 18725 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XNumericField-xref.html 0664 root bin 1858 27567 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XNumericField.html 0664 root bin 13766 47831 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPaintListener-xref.html 0664 root bin 2664 33124 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPaintListener.html 0664 root bin 3800 58645 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPatternField-xref.html 0664 root bin 1858 27655 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPatternField.html 0664 root bin 6769 48174 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPointer-xref.html 0664 root bin 1693 12059 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPointer.html 0664 root bin 3761 54732 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPopupMenu-xref.html 0664 root bin 2494 15113 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPopupMenu.html 0664 root bin 7469 39224 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPrinter-xref.html 0664 root bin 1704 13281 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPrinter.html 0664 root bin 8249 40022 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPrinterPropertySet-xref.html 0664 root bin 1755 18386 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPrinterPropertySet.html 0664 root bin 8430 63185 1219950710
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPrinterServer-xref.html 0664 root bin 1400 53354 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XPrinterServer.html 0664 root bin 4756 8894 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XProgressBar-xref.html 0664 root bin 2361 4577 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XProgressBar.html 0664 root bin 6380 14515 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XProgressMonitor-xref.html 0664 root bin 1408 54258 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XProgressMonitor.html 0664 root bin 5586 11618 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XRadioButton-xref.html 0664 root bin 2216 58712 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XRadioButton.html 0664 root bin 5998 46904 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XRegion-xref.html 0664 root bin 2864 47241 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XRegion.html 0664 root bin 11641 4451 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XRequestCallback-xref.html 0664 root bin 1709 14271 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XRequestCallback.html 0664 root bin 3552 36555 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XReschedule-xref.html 0664 root bin 1734 15987 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XReschedule.html 0664 root bin 3315 15964 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XScrollBar-xref.html 0664 root bin 2039 42151 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XScrollBar.html 0664 root bin 13790 59174 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSimpleAnimation-xref.html 0664 root bin 1733 16947 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSimpleAnimation.html 0664 root bin 4471 46454 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSimpleTabController-xref.html 0664 root bin 1424 55698 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSimpleTabController.html 0664 root bin 12060 39513 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSpinField-xref.html 0664 root bin 2894 54728 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSpinField.html 0664 root bin 7120 9679 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSpinListener-xref.html 0664 root bin 2188 55195 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSpinListener.html 0664 root bin 5915 38136 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSpinValue-xref.html 0664 root bin 1699 13439 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSpinValue.html 0664 root bin 13072 1026 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSystemChildFactory-xref.html 0664 root bin 2147 52771 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSystemChildFactory.html 0664 root bin 3965 5857 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSystemDependentMenuPeer-xref.html 0664 root bin 1440 57330 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSystemDependentMenuPeer.html 0664 root bin 4271 32729 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSystemDependentWindowPeer-xref.html 0664 root bin 1870 29165 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XSystemDependentWindowPeer.html 0664 root bin 4446 48757 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTabController-xref.html 0664 root bin 2825 45855 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTabController.html 0664 root bin 8621 6695 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTabControllerModel-xref.html 0664 root bin 3270 18683 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTabControllerModel.html 0664 root bin 8925 37627 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTabListener-xref.html 0664 root bin 1888 30409 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTabListener.html 0664 root bin 7350 26873 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextArea-xref.html 0664 root bin 1380 51062 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextArea.html 0664 root bin 2928 49408 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextComponent-xref.html 0664 root bin 3824 5745 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextComponent.html 0664 root bin 10938 7646 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextEditField-xref.html 0664 root bin 1400 53050 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextEditField.html 0664 root bin 2999 55245 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextLayoutConstrains-xref.html 0664 root bin 3583 51573 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextLayoutConstrains.html 0664 root bin 4084 18579 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextListener-xref.html 0664 root bin 2200 56877 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTextListener.html 0664 root bin 3677 47554 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XThrobber-xref.html 0664 root bin 1691 12615 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XThrobber.html 0664 root bin 3599 38185 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTimeField-xref.html 0664 root bin 1834 24975 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTimeField.html 0664 root bin 12358 57190 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XToggleButton-xref.html 0664 root bin 1396 52854 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XToggleButton.html 0664 root bin 2710 32008 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XToolkit-xref.html 0664 root bin 2986 58266 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XToolkit.html 0664 root bin 7917 18792 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTopWindow-xref.html 0664 root bin 3128 9318 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTopWindow.html 0664 root bin 6985 8299 1219950711
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTopWindowListener-xref.html 0664 root bin 2554 24888 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XTopWindowListener.html 0664 root bin 9100 49936 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XUnitConversion-xref.html 0664 root bin 1404 53782 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XUnitConversion.html 0664 root bin 6444 20848 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XUnoControlContainer-xref.html 0664 root bin 1794 22593 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XUnoControlContainer.html 0664 root bin 5489 8248 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XUserInputInterception-xref.html 0664 root bin 3089 7694 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XUserInputInterception.html 0664 root bin 7197 28094 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclContainer-xref.html 0664 root bin 1396 52766 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclContainer.html 0664 root bin 4988 31635 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclContainerListener-xref.html 0664 root bin 1918 33571 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclContainerListener.html 0664 root bin 4970 27778 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclContainerPeer-xref.html 0664 root bin 1412 54350 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclContainerPeer.html 0664 root bin 4829 11969 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclWindowPeer-xref.html 0664 root bin 1780 20413 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XVclWindowPeer.html 0664 root bin 10621 45563 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XView-xref.html 0664 root bin 6980 26041 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XView.html 0664 root bin 6371 9706 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindow-xref.html 0664 root bin 18499 10095 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindow.html 0664 root bin 18369 65198 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindow2-xref.html 0664 root bin 1738 16202 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindow2.html 0664 root bin 7320 27721 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindowListener-xref.html 0664 root bin 2548 21241 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindowListener.html 0664 root bin 6436 21633 1219950712
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindowListener2-xref.html 0664 root bin 1408 53950 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindowListener2.html 0664 root bin 4866 17105 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindowPeer-xref.html 0664 root bin 5099 50591 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/XWindowPeer.html 0664 root bin 7733 3266 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/module-ix.html 0664 root bin 56037 44687 1219950698
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/ExpandVetoException-xref.html 0664 root bin 2097 49662 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/ExpandVetoException.html 0664 root bin 3495 30498 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/MutableTreeDataModel.html 0664 root bin 2212 53514 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/MutableTreeNode.html 0664 root bin 2096 42927 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/TreeControl.html 0664 root bin 5760 40459 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/TreeControlModel-xref.html 0664 root bin 1294 43752 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/TreeControlModel.html 0664 root bin 9813 50846 1219950713
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/TreeDataModelEvent-xref.html 0664 root bin 2141 53326 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/TreeDataModelEvent.html 0664 root bin 4390 40582 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/TreeExpansionEvent-xref.html 0664 root bin 2584 27337 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/TreeExpansionEvent.html 0664 root bin 3206 5299 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XMutableTreeDataModel-xref.html 0664 root bin 1752 17936 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XMutableTreeDataModel.html 0664 root bin 6642 38084 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XMutableTreeNode-xref.html 0664 root bin 2660 30464 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XMutableTreeNode.html 0664 root bin 13365 21552 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeControl-xref.html 0664 root bin 1698 12824 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeControl.html 0664 root bin 27225 35891 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeDataModel-xref.html 0664 root bin 2366 3944 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeDataModel.html 0664 root bin 6635 39924 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeDataModelListener-xref.html 0664 root bin 1941 34702 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeDataModelListener.html 0664 root bin 9545 35153 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeEditListener-xref.html 0664 root bin 1889 29994 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeEditListener.html 0664 root bin 6705 46100 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeExpansionListener-xref.html 0664 root bin 1929 34466 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeExpansionListener.html 0664 root bin 8694 21191 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeNode-xref.html 0664 root bin 4557 64860 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/XTreeNode.html 0664 root bin 10828 63487 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/awt/tree/module-ix.html 0664 root bin 6344 26047 1219950713
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Ambiguous-xref.html 0664 root bin 1781 20213 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Ambiguous.html 0664 root bin 3792 57601 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Defaulted-xref.html 0664 root bin 1622 5700 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Defaulted.html 0664 root bin 3789 56934 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/GetDirectPropertyTolerantResult-xref.html 0664 root bin 1368 51246 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/GetDirectPropertyTolerantResult.html 0664 root bin 3202 10726 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/GetPropertyTolerantResult-xref.html 0664 root bin 1677 12262 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/GetPropertyTolerantResult.html 0664 root bin 4163 22832 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/IllegalTypeException-xref.html 0664 root bin 1734 17443 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/IllegalTypeException.html 0664 root bin 2206 54526 1219950714
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Introspection-xref.html 0664 root bin 2259 65146 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Introspection.html 0664 root bin 2974 57564 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/IntrospectionException-xref.html 0664 root bin 2341 5825 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/IntrospectionException.html 0664 root bin 2278 60349 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/MethodConcept.html 0664 root bin 8535 61522 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/NamedValue-xref.html 0664 root bin 2147 54438 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/NamedValue.html 0664 root bin 3093 61000 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/NotRemoveableException-xref.html 0664 root bin 1614 6574 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/NotRemoveableException.html 0664 root bin 2089 45162 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Optional-xref.html 0664 root bin 2836 48161 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Optional.html 0664 root bin 3857 63633 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Property-xref.html 0664 root bin 2759 43388 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/Property.html 0664 root bin 4993 28819 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyAttribute.html 0664 root bin 9265 59360 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyBag-xref.html 0664 root bin 10027 36031 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyBag.html 0664 root bin 3226 14484 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyChangeEvent-xref.html 0664 root bin 1828 25516 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyChangeEvent.html 0664 root bin 5784 32900 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyConcept.html 0664 root bin 6454 24660 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyExistException-xref.html 0664 root bin 1608 6112 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyExistException.html 0664 root bin 2156 51352 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertySet-xref.html 0664 root bin 3203 11792 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertySet.html 0664 root bin 3482 35596 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertySetInfoChange.html 0664 root bin 3606 40962 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertySetInfoChangeEvent-xref.html 0664 root bin 1744 18262 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertySetInfoChangeEvent.html 0664 root bin 4327 37168 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyState-xref.html 0664 root bin 3495 43585 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyState.html 0664 root bin 5456 726 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyStateChangeEvent-xref.html 0664 root bin 1726 16615 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyStateChangeEvent.html 0664 root bin 5373 64001 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyValue-xref.html 0664 root bin 6819 21589 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyValue.html 0664 root bin 4650 63813 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyValues-xref.html 0664 root bin 7617 9484 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyValues.html 0664 root bin 1792 18976 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyVetoException-xref.html 0664 root bin 4095 33563 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/PropertyVetoException.html 0664 root bin 2117 47365 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/SetPropertyTolerantFailed-xref.html 0664 root bin 1344 48650 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/SetPropertyTolerantFailed.html 0664 root bin 3568 38865 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/StringPair-xref.html 0664 root bin 1701 12427 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/StringPair.html 0664 root bin 3101 62534 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/TolerantPropertySetResultType.html 0664 root bin 6526 21377 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/UnknownPropertyException-xref.html 0664 root bin 9991 50647 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/UnknownPropertyException.html 0664 root bin 2127 48563 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XExactName-xref.html 0664 root bin 2679 36237 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XExactName.html 0664 root bin 3688 49115 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XFastPropertySet-xref.html 0664 root bin 12590 62726 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XFastPropertySet.html 0664 root bin 6736 57267 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XFastPropertyState-xref.html 0664 root bin 1416 54990 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XFastPropertyState.html 0664 root bin 8204 49787 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XHierarchicalPropertySet-xref.html 0664 root bin 2841 50972 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XHierarchicalPropertySet.html 0664 root bin 9333 27340 1219950715
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XHierarchicalPropertySetInfo-xref.html 0664 root bin 2045 46805 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XHierarchicalPropertySetInfo.html 0664 root bin 4969 32436 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XIntroTest-xref.html 0664 root bin 1698 12572 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XIntroTest.html 0664 root bin 20991 56810 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XIntrospection-xref.html 0664 root bin 2237 60789 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XIntrospection.html 0664 root bin 6408 27266 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XIntrospectionAccess-xref.html 0664 root bin 2359 5656 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XIntrospectionAccess.html 0664 root bin 20720 26423 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMaterialHolder-xref.html 0664 root bin 1843 26361 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMaterialHolder.html 0664 root bin 3597 43776 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMultiHierarchicalPropertySet-xref.html 0664 root bin 3016 1903 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMultiHierarchicalPropertySet.html 0664 root bin 9400 36587 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMultiPropertySet-xref.html 0664 root bin 19056 49784 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMultiPropertySet.html 0664 root bin 11480 14700 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMultiPropertyStates-xref.html 0664 root bin 4912 34271 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XMultiPropertyStates.html 0664 root bin 8183 51731 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertiesChangeListener-xref.html 0664 root bin 3016 5845 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertiesChangeListener.html 0664 root bin 4029 15074 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertiesChangeNotifier-xref.html 0664 root bin 5927 59688 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertiesChangeNotifier.html 0664 root bin 4709 13052 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XProperty-xref.html 0664 root bin 2709 39741 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XProperty.html 0664 root bin 3176 5460 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyAccess-xref.html 0664 root bin 12266 34300 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyAccess.html 0664 root bin 4907 27954 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyChangeListener-xref.html 0664 root bin 4040 29000 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyChangeListener.html 0664 root bin 3824 61988 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyContainer-xref.html 0664 root bin 15859 28812 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyContainer.html 0664 root bin 5813 39545 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySet-xref.html 0664 root bin 89823 64264 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySet.html 0664 root bin 14476 10891 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySetInfo-xref.html 0664 root bin 4207 41672 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySetInfo.html 0664 root bin 5480 6942 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySetInfoChangeListener-xref.html 0664 root bin 2092 51485 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySetInfoChangeListener.html 0664 root bin 4186 30048 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySetInfoChangeNotifier-xref.html 0664 root bin 5947 61672 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertySetInfoChangeNotifier.html 0664 root bin 4877 29157 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyState-xref.html 0664 root bin 13415 6322 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyState.html 0664 root bin 8385 65045 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyStateChangeListener-xref.html 0664 root bin 1456 59078 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyStateChangeListener.html 0664 root bin 3972 10036 1219950716
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyWithState-xref.html 0664 root bin 3127 11199 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XPropertyWithState.html 0664 root bin 6602 40691 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XTolerantMultiPropertySet-xref.html 0664 root bin 7649 12501 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XTolerantMultiPropertySet.html 0664 root bin 8134 53773 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XVetoableChangeListener-xref.html 0664 root bin 2272 64288 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/XVetoableChangeListener.html 0664 root bin 4195 29014 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/beans/module-ix.html 0664 root bin 15186 33540 1219950714
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/Bridge-xref.html 0664 root bin 1245 39155 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/Bridge.html 0664 root bin 3914 8253 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/BridgeExistsException-xref.html 0664 root bin 1594 4105 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/BridgeExistsException.html 0664 root bin 2033 39648 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/BridgeFactory-xref.html 0664 root bin 1921 33699 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/BridgeFactory.html 0664 root bin 3099 1999 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/IiopBridge-xref.html 0664 root bin 1261 40759 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/IiopBridge.html 0664 root bin 3349 21713 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/InvalidProtocolChangeException-xref.html 0664 root bin 1645 9595 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/InvalidProtocolChangeException.html 0664 root bin 3842 64403 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/ModelDependent.html 0664 root bin 3723 46244 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleApplicationRegistration-xref.html 0664 root bin 1325 47611 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleApplicationRegistration.html 0664 root bin 3505 37715 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleBridgeSupplier-xref.html 0664 root bin 1289 43715 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleBridgeSupplier.html 0664 root bin 2776 38379 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleBridgeSupplier2-xref.html 0664 root bin 1606 5215 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleBridgeSupplier2.html 0664 root bin 3763 61913 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleBridgeSupplierVar1-xref.html 0664 root bin 1305 45099 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleBridgeSupplierVar1.html 0664 root bin 2852 46149 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleObjectFactory-xref.html 0664 root bin 1285 43259 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/OleObjectFactory.html 0664 root bin 3336 22215 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/ProtocolProperty-xref.html 0664 root bin 1688 12951 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/ProtocolProperty.html 0664 root bin 2849 40539 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/UnoUrlResolver.html 0664 root bin 2704 35188 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/UrpBridge-xref.html 0664 root bin 1257 40399 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/UrpBridge.html 0664 root bin 3349 22005 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridge-xref.html 0664 root bin 2696 33294 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridge.html 0664 root bin 5012 30314 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridgeFactory-xref.html 0664 root bin 2186 55997 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridgeFactory.html 0664 root bin 7019 10230 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridgeSupplier-xref.html 0664 root bin 1713 14807 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridgeSupplier.html 0664 root bin 5314 57800 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridgeSupplier2-xref.html 0664 root bin 2319 2404 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XBridgeSupplier2.html 0664 root bin 6136 4363 1219950717
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XInstanceProvider-xref.html 0664 root bin 2108 48419 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XInstanceProvider.html 0664 root bin 4200 29880 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XProtocolProperties-xref.html 0664 root bin 1420 55546 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XProtocolProperties.html 0664 root bin 7028 13819 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XUnoUrlResolver-xref.html 0664 root bin 2777 43637 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/XUnoUrlResolver.html 0664 root bin 4546 61105 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/module-ix.html 0664 root bin 7280 40388 1219950717
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/ApplicationRegistration-xref.html 0664 root bin 1447 58390 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/ApplicationRegistration.html 0664 root bin 4120 24199 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/BridgeSupplier-xref.html 0664 root bin 1893 31270 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/BridgeSupplier.html 0664 root bin 4554 63022 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Currency-xref.html 0664 root bin 1661 8870 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Currency.html 0664 root bin 3632 42989 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Date-xref.html 0664 root bin 1645 7026 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Date.html 0664 root bin 3570 36800 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Decimal-xref.html 0664 root bin 1830 23844 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Decimal.html 0664 root bin 4962 17556 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Factory-xref.html 0664 root bin 1823 24578 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/Factory.html 0664 root bin 3684 51270 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/NamedArgument-xref.html 0664 root bin 1765 18644 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/NamedArgument.html 0664 root bin 4365 40554 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/PropertyPutArgument-xref.html 0664 root bin 1809 23615 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/PropertyPutArgument.html 0664 root bin 4644 1565 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/SCode-xref.html 0664 root bin 1649 7346 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/SCode.html 0664 root bin 3427 24815 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/XAutomationObject-xref.html 0664 root bin 1421 54911 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/XAutomationObject.html 0664 root bin 2567 20682 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/bridge/oleautomation/module-ix.html 0664 root bin 4168 28010 1219950718
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/AccessibleChartDocumentView-xref.html 0664 root bin 1329 47783 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/AccessibleChartDocumentView.html 0664 root bin 6627 54364 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/AccessibleChartElement-xref.html 0664 root bin 1309 45671 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/AccessibleChartElement.html 0664 root bin 9335 29452 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/AreaDiagram-xref.html 0664 root bin 1673 11022 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/AreaDiagram.html 0664 root bin 4000 14880 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/BarDiagram-xref.html 0664 root bin 1965 37288 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/BarDiagram.html 0664 root bin 9275 10710 1219950718
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/Chart3DBarProperties-xref.html 0664 root bin 2221 59703 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/Chart3DBarProperties.html 0664 root bin 3883 2462 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartArea-xref.html 0664 root bin 1663 10350 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartArea.html 0664 root bin 3837 64772 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxis-xref.html 0664 root bin 1257 40411 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxis.html 0664 root bin 20711 57991 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisArrangeOrderType-xref.html 0664 root bin 1797 20546 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisArrangeOrderType.html 0664 root bin 4582 55720 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisAssign.html 0664 root bin 3131 63416 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisMarks.html 0664 root bin 3785 53021 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisXSupplier-xref.html 0664 root bin 1837 25513 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisXSupplier.html 0664 root bin 6019 52474 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisYSupplier-xref.html 0664 root bin 1882 29389 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisYSupplier.html 0664 root bin 5919 43268 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisZSupplier-xref.html 0664 root bin 1721 15001 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartAxisZSupplier.html 0664 root bin 5946 45937 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartData-xref.html 0664 root bin 2142 51435 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartData.html 0664 root bin 2671 30090 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataArray-xref.html 0664 root bin 2232 59884 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataArray.html 0664 root bin 3321 21079 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataCaption.html 0664 root bin 5912 36413 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataChangeEvent-xref.html 0664 root bin 1707 13803 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataChangeEvent.html 0664 root bin 5090 35296 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataChangeType-xref.html 0664 root bin 1621 5276 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataChangeType.html 0664 root bin 5814 23552 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataPoint-xref.html 0664 root bin 1282 42253 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataPoint.html 0664 root bin 1752 13667 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataPointProperties-xref.html 0664 root bin 1707 15377 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataPointProperties.html 0664 root bin 11867 33487 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataRow-xref.html 0664 root bin 1292 43038 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataRow.html 0664 root bin 3417 22318 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataRowProperties-xref.html 0664 root bin 1309 45827 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataRowProperties.html 0664 root bin 8742 30473 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataRowSource-xref.html 0664 root bin 2432 10938 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataRowSource.html 0664 root bin 3362 19370 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataValue-xref.html 0664 root bin 1300 43826 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDataValue.html 0664 root bin 3778 53249 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDocument-xref.html 0664 root bin 2399 10773 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartDocument.html 0664 root bin 6156 1337 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartErrorCategory-xref.html 0664 root bin 1620 5819 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartErrorCategory.html 0664 root bin 6768 47667 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartErrorIndicatorType-xref.html 0664 root bin 1642 8061 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartErrorIndicatorType.html 0664 root bin 4022 5953 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartGrid-xref.html 0664 root bin 1257 40351 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartGrid.html 0664 root bin 3660 48549 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartLegend-xref.html 0664 root bin 1265 41155 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartLegend.html 0664 root bin 4630 1522 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartLegendPosition-xref.html 0664 root bin 1604 3909 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartLegendPosition.html 0664 root bin 5207 40180 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartLine-xref.html 0664 root bin 1257 40359 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartLine.html 0664 root bin 2930 51543 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartPieSegmentProperties-xref.html 0664 root bin 1778 21448 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartPieSegmentProperties.html 0664 root bin 4692 7255 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartRegressionCurveType-xref.html 0664 root bin 1650 9053 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartRegressionCurveType.html 0664 root bin 5739 16938 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartSeriesAddress-xref.html 0664 root bin 1316 45594 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartSeriesAddress.html 0664 root bin 4220 29260 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartSolidType.html 0664 root bin 4117 12154 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartStatistics-xref.html 0664 root bin 2235 60079 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartStatistics.html 0664 root bin 12926 64673 1219950719
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartSymbolType.html 0664 root bin 8871 13234 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTableAddressSupplier-xref.html 0664 root bin 1321 46991 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTableAddressSupplier.html 0664 root bin 5704 29085 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTitle-xref.html 0664 root bin 1261 40847 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTitle.html 0664 root bin 4959 28681 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTwoAxisXSupplier-xref.html 0664 root bin 1707 14794 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTwoAxisXSupplier.html 0664 root bin 4639 3600 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTwoAxisYSupplier-xref.html 0664 root bin 1782 20565 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ChartTwoAxisYSupplier.html 0664 root bin 4569 62741 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/DataLabelPlacement.html 0664 root bin 7062 53222 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/Diagram-xref.html 0664 root bin 2340 3227 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/Diagram.html 0664 root bin 6064 59302 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/Dim3DDiagram-xref.html 0664 root bin 2380 6387 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/Dim3DDiagram.html 0664 root bin 6080 55129 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/DonutDiagram-xref.html 0664 root bin 1269 41659 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/DonutDiagram.html 0664 root bin 2295 61846 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/ErrorBarStyle.html 0664 root bin 8488 63876 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/LineDiagram-xref.html 0664 root bin 2183 55826 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/LineDiagram.html 0664 root bin 10573 54642 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/NetDiagram-xref.html 0664 root bin 1261 40751 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/NetDiagram.html 0664 root bin 2834 42942 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/PieDiagram-xref.html 0664 root bin 1844 26641 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/PieDiagram.html 0664 root bin 2537 17541 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/StackableDiagram-xref.html 0664 root bin 2166 53365 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/StackableDiagram.html 0664 root bin 3669 46790 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/StockDiagram-xref.html 0664 root bin 1732 16670 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/StockDiagram.html 0664 root bin 8341 61298 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/X3DDefaultSetter-xref.html 0664 root bin 2048 42568 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/X3DDefaultSetter.html 0664 root bin 4994 32732 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/X3DDisplay-xref.html 0664 root bin 1910 30571 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/X3DDisplay.html 0664 root bin 4169 21941 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XAxisXSupplier-xref.html 0664 root bin 2317 1447 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XAxisXSupplier.html 0664 root bin 5823 28044 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XAxisYSupplier-xref.html 0664 root bin 2362 5327 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XAxisYSupplier.html 0664 root bin 5821 27931 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XAxisZSupplier-xref.html 0664 root bin 1893 30229 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XAxisZSupplier.html 0664 root bin 5685 16355 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartData-xref.html 0664 root bin 4313 41705 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartData.html 0664 root bin 7537 57171 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartDataArray-xref.html 0664 root bin 4142 34392 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartDataArray.html 0664 root bin 8410 60406 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartDataChangeEventListener-xref.html 0664 root bin 2314 1924 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartDataChangeEventListener.html 0664 root bin 4284 36099 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartDocument-xref.html 0664 root bin 2515 20295 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XChartDocument.html 0664 root bin 10272 8952 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XDiagram-xref.html 0664 root bin 3131 4576 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XDiagram.html 0664 root bin 6614 35011 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XSecondAxisTitleSupplier-xref.html 0664 root bin 1440 57370 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XSecondAxisTitleSupplier.html 0664 root bin 3508 33914 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XStatisticDisplay-xref.html 0664 root bin 1711 14715 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XStatisticDisplay.html 0664 root bin 5546 8186 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XTwoAxisXSupplier-xref.html 0664 root bin 1729 16535 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XTwoAxisXSupplier.html 0664 root bin 3837 61233 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XTwoAxisYSupplier-xref.html 0664 root bin 1960 36419 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XTwoAxisYSupplier.html 0664 root bin 3840 62153 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XYDiagram-xref.html 0664 root bin 2146 54586 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/XYDiagram.html 0664 root bin 3920 8470 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart/module-ix.html 0664 root bin 15899 13842 1219950718
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Axis-xref.html 0664 root bin 1237 38419 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Axis.html 0664 root bin 12567 29247 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/AxisOrientation-xref.html 0664 root bin 1707 13245 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/AxisOrientation.html 0664 root bin 3033 55674 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/AxisPosition.html 0664 root bin 3934 5547 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/AxisType.html 0664 root bin 4003 4263 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Break-xref.html 0664 root bin 1264 40226 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Break.html 0664 root bin 2710 28164 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CandleStickChartType-xref.html 0664 root bin 1301 44835 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CandleStickChartType.html 0664 root bin 9171 64569 1219950720
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartDocument-xref.html 0664 root bin 1273 42115 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartDocument.html 0664 root bin 4051 17378 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartDocumentWrapper-xref.html 0664 root bin 1301 45063 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartDocumentWrapper.html 0664 root bin 3463 31443 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartType-xref.html 0664 root bin 1568 1631 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartType.html 0664 root bin 2748 34574 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartTypeManager-xref.html 0664 root bin 1285 43259 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartTypeManager.html 0664 root bin 2588 21622 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartTypeTemplate-xref.html 0664 root bin 1289 43775 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ChartTypeTemplate.html 0664 root bin 2079 44385 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CoordinateSystem-xref.html 0664 root bin 1285 43507 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CoordinateSystem.html 0664 root bin 3777 58906 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CoordinateSystemType-xref.html 0664 root bin 1301 45179 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CoordinateSystemType.html 0664 root bin 1713 13147 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CoordinateSystemTypeID-xref.html 0664 root bin 1648 8557 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CoordinateSystemTypeID.html 0664 root bin 1543 62811 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CurveStyle-xref.html 0664 root bin 1257 39897 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CurveStyle.html 0664 root bin 4445 41906 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CustomLegendEntry-xref.html 0664 root bin 1289 43823 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/CustomLegendEntry.html 0664 root bin 4528 57944 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataPoint-xref.html 0664 root bin 1257 40399 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataPoint.html 0664 root bin 4165 26777 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataPointGeometry3D.html 0664 root bin 4174 15981 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataPointLabel-xref.html 0664 root bin 1627 5980 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataPointLabel.html 0664 root bin 4978 29336 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataPointProperties-xref.html 0664 root bin 1631 7513 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataPointProperties.html 0664 root bin 36475 31056 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataSeries-xref.html 0664 root bin 1261 40787 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/DataSeries.html 0664 root bin 9614 43480 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Diagram-xref.html 0664 root bin 1249 39571 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Diagram.html 0664 root bin 9376 9734 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ErrorBar-xref.html 0664 root bin 1253 39995 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ErrorBar.html 0664 root bin 6589 34162 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExplicitIncrementData-xref.html 0664 root bin 1328 46866 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExplicitIncrementData.html 0664 root bin 8776 35384 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExplicitScaleData-xref.html 0664 root bin 1312 45086 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExplicitScaleData.html 0664 root bin 4755 4708 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExplicitSubIncrement-xref.html 0664 root bin 1324 46546 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExplicitSubIncrement.html 0664 root bin 3293 15996 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExponentialScaling-xref.html 0664 root bin 1293 44255 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ExponentialScaling.html 0664 root bin 2513 14278 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/FillBitmap-xref.html 0664 root bin 1284 42270 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/FillBitmap.html 0664 root bin 7577 49481 1219950721
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/FormattedString-xref.html 0664 root bin 1281 43059 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/FormattedString.html 0664 root bin 3531 39518 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/GridProperties-xref.html 0664 root bin 1277 42635 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/GridProperties.html 0664 root bin 3460 29645 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/IncrementData-xref.html 0664 root bin 1609 4057 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/IncrementData.html 0664 root bin 6473 35337 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/InterpretedData-xref.html 0664 root bin 2412 11281 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/InterpretedData.html 0664 root bin 3856 61550 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Legend-xref.html 0664 root bin 1245 39163 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Legend.html 0664 root bin 8203 45398 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LegendExpansion-xref.html 0664 root bin 1573 851 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LegendExpansion.html 0664 root bin 4739 147 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LegendPosition-xref.html 0664 root bin 1579 1481 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LegendPosition.html 0664 root bin 4712 59223 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LegendSymbolStyle-xref.html 0664 root bin 1618 5606 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LegendSymbolStyle.html 0664 root bin 9154 34568 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LightSource-xref.html 0664 root bin 1288 42802 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LightSource.html 0664 root bin 4362 38699 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LinearScaling-xref.html 0664 root bin 1273 42031 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LinearScaling.html 0664 root bin 2565 18181 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LogarithmicScaling-xref.html 0664 root bin 1293 44175 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LogarithmicScaling.html 0664 root bin 2475 11305 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LogicTargetModel-xref.html 0664 root bin 1285 43223 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/LogicTargetModel.html 0664 root bin 5643 24924 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/MutableDataSequence-xref.html 0664 root bin 1297 44467 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/MutableDataSequence.html 0664 root bin 2750 35342 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/PieChartOffsetMode-xref.html 0664 root bin 1289 42865 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/PieChartOffsetMode.html 0664 root bin 3345 14581 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/PowerScaling-xref.html 0664 root bin 1269 41719 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/PowerScaling.html 0664 root bin 2503 13316 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/PropertyPool-xref.html 0664 root bin 1269 41915 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/PropertyPool.html 0664 root bin 3214 11067 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RectangularDataSource-xref.html 0664 root bin 1305 45387 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RectangularDataSource.html 0664 root bin 6126 64716 1219950722
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RegressionCurve-xref.html 0664 root bin 1281 43095 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RegressionCurve.html 0664 root bin 2877 46104 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RegressionCurveEquation-xref.html 0664 root bin 1313 46447 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RegressionCurveEquation.html 0664 root bin 6200 7360 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RelativePosition-xref.html 0664 root bin 1963 37180 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RelativePosition.html 0664 root bin 5281 57381 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RelativeSize-xref.html 0664 root bin 1292 43242 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/RelativeSize.html 0664 root bin 4455 51108 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ScaleData-xref.html 0664 root bin 1882 26104 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ScaleData.html 0664 root bin 7487 45618 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Scaling-xref.html 0664 root bin 1717 14943 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Scaling.html 0664 root bin 2320 62913 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/StackingDirection-xref.html 0664 root bin 1609 4505 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/StackingDirection.html 0664 root bin 3129 61261 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/StandardDiagramCreationParameters-xref.html 0664 root bin 1353 50299 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/StandardDiagramCreationParameters.html 0664 root bin 3336 21276 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/SubIncrement-xref.html 0664 root bin 1292 43210 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/SubIncrement.html 0664 root bin 3157 4075 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Symbol-xref.html 0664 root bin 1597 3280 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Symbol.html 0664 root bin 8142 31616 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/SymbolStyle-xref.html 0664 root bin 1549 64139 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/SymbolStyle.html 0664 root bin 5573 6511 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/TextAnchor.html 0664 root bin 1718 11441 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/TickmarkStyle.html 0664 root bin 3474 26348 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Title-xref.html 0664 root bin 1241 38855 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/Title.html 0664 root bin 7201 25138 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/TransparencyStyle-xref.html 0664 root bin 1285 42925 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/TransparencyStyle.html 0664 root bin 3587 37688 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ViewLegendEntry-xref.html 0664 root bin 1304 44414 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/ViewLegendEntry.html 0664 root bin 3490 30783 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XAxis-xref.html 0664 root bin 2345 2641 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XAxis.html 0664 root bin 6309 12359 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartDocument-xref.html 0664 root bin 1701 13559 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartDocument.html 0664 root bin 12239 848 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartShape-xref.html 0664 root bin 1388 51850 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartShape.html 0664 root bin 9595 34042 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartShapeContainer-xref.html 0664 root bin 1424 55574 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartShapeContainer.html 0664 root bin 4395 41632 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartType-xref.html 0664 root bin 2586 24865 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartType.html 0664 root bin 7545 60080 1219950723
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartTypeContainer-xref.html 0664 root bin 1727 16327 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartTypeContainer.html 0664 root bin 6026 51779 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartTypeManager-xref.html 0664 root bin 2096 47224 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartTypeManager.html 0664 root bin 1710 12104 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartTypeTemplate-xref.html 0664 root bin 1725 16049 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XChartTypeTemplate.html 0664 root bin 16120 14304 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XColorScheme-xref.html 0664 root bin 2048 42188 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XColorScheme.html 0664 root bin 3489 32402 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XCoordinateSystem-xref.html 0664 root bin 2605 28359 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XCoordinateSystem.html 0664 root bin 9390 21275 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XCoordinateSystemContainer-xref.html 0664 root bin 1737 17403 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XCoordinateSystemContainer.html 0664 root bin 6328 19345 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDataInterpreter-xref.html 0664 root bin 1758 18644 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDataInterpreter.html 0664 root bin 8175 46916 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDataSeries-xref.html 0664 root bin 2299 314 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDataSeries.html 0664 root bin 3726 51263 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDataSeriesContainer-xref.html 0664 root bin 1782 21041 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDataSeriesContainer.html 0664 root bin 6057 53780 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDiagram-xref.html 0664 root bin 3251 19052 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDiagram.html 0664 root bin 8874 30918 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDiagramProvider-xref.html 0664 root bin 1408 54014 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XDiagramProvider.html 0664 root bin 3681 45525 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XFormattedString-xref.html 0664 root bin 1713 14975 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XFormattedString.html 0664 root bin 3258 10992 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XInternalDataProvider-xref.html 0664 root bin 1428 56070 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XInternalDataProvider.html 0664 root bin 11038 27692 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLabeled-xref.html 0664 root bin 1376 50594 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLabeled.html 0664 root bin 7427 32025 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLegend-xref.html 0664 root bin 2267 59648 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLegend.html 0664 root bin 5455 4262 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLegendEntry-xref.html 0664 root bin 2105 47783 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLegendEntry.html 0664 root bin 1695 10622 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLegendSymbolProvider-xref.html 0664 root bin 1737 17353 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XLegendSymbolProvider.html 0664 root bin 3320 17855 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XPlotter-xref.html 0664 root bin 1376 50854 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XPlotter.html 0664 root bin 7639 3477 1219950724
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XRegressionCurve-xref.html 0664 root bin 2255 63751 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XRegressionCurve.html 0664 root bin 4405 45054 1219950725
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XRegressionCurveCalculator-xref.html 0664 root bin 1782 21334 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XRegressionCurveCalculator.html 0664 root bin 11417 1936 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XRegressionCurveContainer-xref.html 0664 root bin 1739 17599 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XRegressionCurveContainer.html 0664 root bin 6230 9416 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XScaling-xref.html 0664 root bin 3145 7520 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XScaling.html 0664 root bin 3295 14046 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTarget-xref.html 0664 root bin 1372 50330 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTarget.html 0664 root bin 2660 26001 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTitle-xref.html 0664 root bin 2455 10455 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTitle.html 0664 root bin 3347 18073 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTitled-xref.html 0664 root bin 1804 22089 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTitled.html 0664 root bin 3961 5194 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTransformation-xref.html 0664 root bin 1834 25593 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XTransformation.html 0664 root bin 6247 13077 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XUndoHelper-xref.html 0664 root bin 1388 51926 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XUndoHelper.html 0664 root bin 4661 438 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XUndoManager-xref.html 0664 root bin 1719 14516 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XUndoManager.html 0664 root bin 13125 1875 1219950726
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XUndoSupplier-xref.html 0664 root bin 1697 13275 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/XUndoSupplier.html 0664 root bin 3135 489 1219950727
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataFilter-xref.html 0664 root bin 1270 41184 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataFilter.html 0664 root bin 2844 41220 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataProvider-xref.html 0664 root bin 1278 42100 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataProvider.html 0664 root bin 2741 33453 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSequence-xref.html 0664 root bin 1278 42028 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSequence.html 0664 root bin 8992 50937 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSequenceRole-xref.html 0664 root bin 1603 3218 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSequenceRole.html 0664 root bin 3896 5410 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSink-xref.html 0664 root bin 1553 65017 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSink.html 0664 root bin 2550 16555 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSource-xref.html 0664 root bin 1561 362 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DataSource.html 0664 root bin 2559 17512 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/DatabaseDataProvider.html 0664 root bin 3014 57141 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/HighlightedRange-xref.html 0664 root bin 1317 45159 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/HighlightedRange.html 0664 root bin 5156 44613 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/LabelOrigin-xref.html 0664 root bin 1599 2788 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/LabelOrigin.html 0664 root bin 6215 57862 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/LabeledDataSequence-xref.html 0664 root bin 1306 44752 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/LabeledDataSequence.html 0664 root bin 3829 62072 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/RangeHighlightListener-xref.html 0664 root bin 1318 46220 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/RangeHighlightListener.html 0664 root bin 2664 27918 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/RangeHighlighter-xref.html 0664 root bin 1294 43728 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/RangeHighlighter.html 0664 root bin 2328 63486 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/TabularDataProviderArguments-xref.html 0664 root bin 1342 48760 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/TabularDataProviderArguments.html 0664 root bin 10771 6600 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataProvider-xref.html 0664 root bin 2944 53700 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataProvider.html 0664 root bin 12373 21921 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataReceiver-xref.html 0664 root bin 1767 18463 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataReceiver.html 0664 root bin 9632 42034 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataSequence-xref.html 0664 root bin 3040 64859 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataSequence.html 0664 root bin 8674 18985 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataSink-xref.html 0664 root bin 1933 31972 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataSink.html 0664 root bin 4040 13539 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataSource-xref.html 0664 root bin 3542 41014 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDataSource.html 0664 root bin 3986 10700 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDatabaseDataProvider-xref.html 0664 root bin 1752 18062 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XDatabaseDataProvider.html 0664 root bin 18897 42324 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XLabeledDataSequence-xref.html 0664 root bin 2294 63361 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XLabeledDataSequence.html 0664 root bin 5926 39654 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XNumericalDataSequence-xref.html 0664 root bin 1740 16932 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XNumericalDataSequence.html 0664 root bin 3260 11225 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XRangeHighlighter-xref.html 0664 root bin 2065 44400 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XRangeHighlighter.html 0664 root bin 5453 7096 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XRangeXMLConversion-xref.html 0664 root bin 2109 48489 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XRangeXMLConversion.html 0664 root bin 4868 18133 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XTextualDataSequence-xref.html 0664 root bin 1732 16192 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/XTextualDataSequence.html 0664 root bin 3179 3921 1219950728
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/data/module-ix.html 0664 root bin 7344 46191 1219950727
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/chart2/module-ix.html 0664 root bin 17663 38626 1219950720
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/AccessRootElement-xref.html 0664 root bin 1732 17209 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/AccessRootElement.html 0664 root bin 8663 37805 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/AdministrationProvider-xref.html 0664 root bin 2146 54916 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/AdministrationProvider.html 0664 root bin 10925 55063 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/CannotLoadConfigurationException-xref.html 0664 root bin 2634 35874 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/CannotLoadConfigurationException.html 0664 root bin 2102 47028 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationAccess-xref.html 0664 root bin 2608 30066 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationAccess.html 0664 root bin 11589 26135 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationProvider-xref.html 0664 root bin 2972 64000 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationProvider.html 0664 root bin 12282 24577 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationRegistry-xref.html 0664 root bin 1305 45699 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationRegistry.html 0664 root bin 3446 33902 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationUpdateAccess-xref.html 0664 root bin 2158 56100 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/ConfigurationUpdateAccess.html 0664 root bin 7236 46032 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/CorruptedConfigurationException-xref.html 0664 root bin 1650 10702 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/CorruptedConfigurationException.html 0664 root bin 3421 28690 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/CorruptedUIConfigurationException-xref.html 0664 root bin 1318 47246 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/CorruptedUIConfigurationException.html 0664 root bin 2399 7186 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/DefaultProvider-xref.html 0664 root bin 1281 43007 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/DefaultProvider.html 0664 root bin 5169 46469 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/GroupAccess-xref.html 0664 root bin 1696 13555 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/GroupAccess.html 0664 root bin 6603 53063 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/GroupElement-xref.html 0664 root bin 1653 9869 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/GroupElement.html 0664 root bin 3901 5931 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/GroupUpdate-xref.html 0664 root bin 1968 36932 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/GroupUpdate.html 0664 root bin 4445 55151 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/HierarchyAccess-xref.html 0664 root bin 1845 26693 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/HierarchyAccess.html 0664 root bin 9385 33023 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/HierarchyElement-xref.html 0664 root bin 1881 30505 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/HierarchyElement.html 0664 root bin 6063 64858 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/InstallationIncompleteException-xref.html 0664 root bin 1310 46558 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/InstallationIncompleteException.html 0664 root bin 2206 56697 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/InvalidBootstrapFileException-xref.html 0664 root bin 1302 45546 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/InvalidBootstrapFileException.html 0664 root bin 3201 9908 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/MissingBootstrapFileException-xref.html 0664 root bin 1302 45622 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/MissingBootstrapFileException.html 0664 root bin 3206 10342 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/PropertyHierarchy-xref.html 0664 root bin 1767 20395 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/PropertyHierarchy.html 0664 root bin 4773 23925 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SetAccess-xref.html 0664 root bin 2066 45498 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SetAccess.html 0664 root bin 4872 28170 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SetElement-xref.html 0664 root bin 2027 42262 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SetElement.html 0664 root bin 9294 22415 1219950729
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SetUpdate-xref.html 0664 root bin 1960 36032 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SetUpdate.html 0664 root bin 4713 14018 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SimpleSetAccess-xref.html 0664 root bin 1806 23311 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SimpleSetAccess.html 0664 root bin 5510 20664 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SimpleSetUpdate-xref.html 0664 root bin 1645 8927 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/SimpleSetUpdate.html 0664 root bin 11366 16045 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/UpdateRootElement-xref.html 0664 root bin 1610 6075 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/UpdateRootElement.html 0664 root bin 5801 45843 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/XTemplateContainer-xref.html 0664 root bin 2380 8351 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/XTemplateContainer.html 0664 root bin 4113 23518 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/XTemplateInstance-xref.html 0664 root bin 1845 27067 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/XTemplateInstance.html 0664 root bin 3508 35431 1219950730
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/AuthenticationFailedException-xref.html 0664 root bin 1311 45963 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/AuthenticationFailedException.html 0664 root bin 2452 10148 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Backend-xref.html 0664 root bin 2505 18620 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Backend.html 0664 root bin 3858 2885 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/BackendAccessException-xref.html 0664 root bin 3891 15234 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/BackendAccessException.html 0664 root bin 2376 2300 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/BackendAdapter-xref.html 0664 root bin 2238 60167 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/BackendAdapter.html 0664 root bin 3887 1046 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/BackendSetupException-xref.html 0664 root bin 1844 28159 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/BackendSetupException.html 0664 root bin 3691 49684 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/CannotConnectException-xref.html 0664 root bin 1283 43051 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/CannotConnectException.html 0664 root bin 2639 25436 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/ComponentChangeEvent-xref.html 0664 root bin 1706 13617 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/ComponentChangeEvent.html 0664 root bin 3315 15118 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/ConnectionLostException-xref.html 0664 root bin 1287 43583 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/ConnectionLostException.html 0664 root bin 2498 12701 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/CopyImporter-xref.html 0664 root bin 1825 25743 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/CopyImporter.html 0664 root bin 4059 18073 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/DataImporter-xref.html 0664 root bin 1583 2716 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/DataImporter.html 0664 root bin 6146 5449 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/DefaultBackend-xref.html 0664 root bin 1286 42772 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/DefaultBackend.html 0664 root bin 2812 38419 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/HierarchyBrowser-xref.html 0664 root bin 1607 5350 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/HierarchyBrowser.html 0664 root bin 3814 61253 1219950730
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Importer-xref.html 0664 root bin 1608 4874 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Importer.html 0664 root bin 3310 16342 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/InsufficientAccessRightsException-xref.html 0664 root bin 1327 47647 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/InsufficientAccessRightsException.html 0664 root bin 2773 37553 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/InteractionHandler-xref.html 0664 root bin 1302 44632 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/InteractionHandler.html 0664 root bin 5102 41369 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/InvalidAuthenticationMechanismException-xref.html 0664 root bin 1351 50151 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/InvalidAuthenticationMechanismException.html 0664 root bin 2564 21158 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Layer-xref.html 0664 root bin 1549 64783 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Layer.html 0664 root bin 5060 36105 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LayerDescriber-xref.html 0664 root bin 1286 42912 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LayerDescriber.html 0664 root bin 2273 60359 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LayerFilter-xref.html 0664 root bin 1274 41708 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LayerFilter.html 0664 root bin 4032 12691 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LayerUpdateMerger-xref.html 0664 root bin 1298 44136 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LayerUpdateMerger.html 0664 root bin 4136 23937 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LdapMultiLayerStratum-xref.html 0664 root bin 1314 45892 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LdapMultiLayerStratum.html 0664 root bin 2632 25917 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LdapSingleBackend-xref.html 0664 root bin 1298 43916 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LdapSingleBackend.html 0664 root bin 2435 7239 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LdapSingleStratum-xref.html 0664 root bin 1298 44204 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LdapSingleStratum.html 0664 root bin 2602 22809 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalDataImporter-xref.html 0664 root bin 1845 27575 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalDataImporter.html 0664 root bin 5270 56942 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalHierarchyBrowser-xref.html 0664 root bin 1314 45848 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalHierarchyBrowser.html 0664 root bin 3822 62619 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalSchemaSupplier-xref.html 0664 root bin 1306 44960 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalSchemaSupplier.html 0664 root bin 2566 19329 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalSingleBackend-xref.html 0664 root bin 1684 11922 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalSingleBackend.html 0664 root bin 2468 10407 1219950731
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalSingleStratum-xref.html 0664 root bin 1302 44628 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/LocalSingleStratum.html 0664 root bin 2610 23593 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MalformedDataException-xref.html 0664 root bin 7897 45316 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MalformedDataException.html 0664 root bin 5186 48626 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MergeImporter-xref.html 0664 root bin 1829 26083 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MergeImporter.html 0664 root bin 3425 29149 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MergeRecoveryRequest-xref.html 0664 root bin 1275 42331 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MergeRecoveryRequest.html 0664 root bin 5203 47487 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MultiLayerStratum-xref.html 0664 root bin 1611 5840 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MultiLayerStratum.html 0664 root bin 2827 42183 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MultiStratumBackend-xref.html 0664 root bin 1306 45036 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/MultiStratumBackend.html 0664 root bin 3467 32111 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/NodeAttribute.html 0664 root bin 5975 43022 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/OfflineBackend-xref.html 0664 root bin 1286 42764 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/OfflineBackend.html 0664 root bin 3286 16283 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/OnlineBackend-xref.html 0664 root bin 1282 42388 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/OnlineBackend.html 0664 root bin 2646 25708 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/PlatformBackend-xref.html 0664 root bin 1290 43284 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/PlatformBackend.html 0664 root bin 2603 22803 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/PolicyLayerBackend-xref.html 0664 root bin 1302 44468 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/PolicyLayerBackend.html 0664 root bin 2494 12352 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/PropertyInfo-xref.html 0664 root bin 1301 43763 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/PropertyInfo.html 0664 root bin 4618 58815 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Schema-xref.html 0664 root bin 1254 39588 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/Schema.html 0664 root bin 4048 13720 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SchemaAttribute.html 0664 root bin 4655 60180 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SchemaSupplier-xref.html 0664 root bin 1595 4018 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SchemaSupplier.html 0664 root bin 2490 12424 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SingleBackend-xref.html 0664 root bin 2311 1588 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SingleBackend.html 0664 root bin 3848 2785 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SingleBackendAdapter-xref.html 0664 root bin 1847 26784 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SingleBackendAdapter.html 0664 root bin 2719 32498 1219950732
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SingleLayerStratum-xref.html 0664 root bin 1723 15872 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SingleLayerStratum.html 0664 root bin 2829 42345 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/StratumCreationException-xref.html 0664 root bin 1291 44043 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/StratumCreationException.html 0664 root bin 4076 16036 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SystemIntegration-xref.html 0664 root bin 1298 44420 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/SystemIntegration.html 0664 root bin 3004 56738 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/TemplateIdentifier-xref.html 0664 root bin 2544 23063 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/TemplateIdentifier.html 0664 root bin 3343 17141 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/UpdatableLayer-xref.html 0664 root bin 1286 42908 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/UpdatableLayer.html 0664 root bin 5045 41389 1219950733
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackend-xref.html 0664 root bin 2804 43064 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackend.html 0664 root bin 10889 17480 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackendChangesListener-xref.html 0664 root bin 1975 38402 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackendChangesListener.html 0664 root bin 4275 33181 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackendChangesNotifier-xref.html 0664 root bin 1445 57123 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackendChangesNotifier.html 0664 root bin 4932 25984 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackendEntities-xref.html 0664 root bin 2577 26487 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XBackendEntities.html 0664 root bin 7856 13295 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XCompositeLayer-xref.html 0664 root bin 1751 17584 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XCompositeLayer.html 0664 root bin 6739 49192 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayer-xref.html 0664 root bin 3278 19110 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayer.html 0664 root bin 4258 31427 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayerContentDescriber-xref.html 0664 root bin 1744 17470 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayerContentDescriber.html 0664 root bin 4750 10522 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayerHandler-xref.html 0664 root bin 2353 4453 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayerHandler.html 0664 root bin 32945 19067 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayerImporter-xref.html 0664 root bin 1800 22140 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XLayerImporter.html 0664 root bin 9309 5270 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XMultiLayerStratum-xref.html 0664 root bin 1972 38112 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XMultiLayerStratum.html 0664 root bin 19685 56564 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSchema-xref.html 0664 root bin 2142 50672 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSchema.html 0664 root bin 8799 31898 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSchemaHandler-xref.html 0664 root bin 1908 30141 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSchemaHandler.html 0664 root bin 33099 36034 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSchemaSupplier-xref.html 0664 root bin 2649 31206 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSchemaSupplier.html 0664 root bin 4082 18449 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSingleLayerStratum-xref.html 0664 root bin 1915 33144 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XSingleLayerStratum.html 0664 root bin 7322 34355 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XUpdatableLayer-xref.html 0664 root bin 2205 57554 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XUpdatableLayer.html 0664 root bin 4877 19413 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XUpdateHandler-xref.html 0664 root bin 2146 51019 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XUpdateHandler.html 0664 root bin 40977 61406 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XVersionedSchemaSupplier-xref.html 0664 root bin 1449 57839 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/XVersionedSchemaSupplier.html 0664 root bin 5253 55351 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/module-ix.html 0664 root bin 17851 6882 1219950730
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml/LayerParser-xref.html 0664 root bin 1283 42153 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml/LayerParser.html 0664 root bin 4100 15050 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml/LayerWriter-xref.html 0664 root bin 1283 42217 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml/LayerWriter.html 0664 root bin 3659 43496 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml/SchemaParser-xref.html 0664 root bin 1287 42489 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml/SchemaParser.html 0664 root bin 3816 56147 1219950734
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/backend/xml/module-ix.html 0664 root bin 2616 23325 1219950734
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/bootstrap 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/bootstrap/BootstrapContext-xref.html 0664 root bin 1294 44012 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/bootstrap/BootstrapContext.html 0664 root bin 3188 9158 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/bootstrap/module-ix.html 0664 root bin 2247 59273 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/configuration/module-ix.html 0664 root bin 9475 54084 1219950729
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/Acceptor.html 0664 root bin 2366 4468 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/AlreadyAcceptingException-xref.html 0664 root bin 1583 2967 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/AlreadyAcceptingException.html 0664 root bin 2037 40449 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/ConnectionSetupException-xref.html 0664 root bin 2497 18746 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/ConnectionSetupException.html 0664 root bin 2023 39165 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/Connector.html 0664 root bin 2365 4621 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/NoConnectException-xref.html 0664 root bin 2384 8443 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/NoConnectException.html 0664 root bin 1998 36470 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/SocketPermission-xref.html 0664 root bin 1308 45014 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/SocketPermission.html 0664 root bin 5253 55533 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XAcceptor-xref.html 0664 root bin 2158 53265 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XAcceptor.html 0664 root bin 5431 6909 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnection-xref.html 0664 root bin 2862 46039 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnection.html 0664 root bin 7936 14772 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnection2-xref.html 0664 root bin 1392 52230 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnection2.html 0664 root bin 4918 20222 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnectionBroadcaster-xref.html 0664 root bin 1432 56550 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnectionBroadcaster.html 0664 root bin 4630 2221 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnector-xref.html 0664 root bin 2164 53997 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/XConnector.html 0664 root bin 4399 49313 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/connection/module-ix.html 0664 root bin 4785 21029 1219950735
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/ContainerEvent-xref.html 0664 root bin 3141 11359 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/ContainerEvent.html 0664 root bin 4209 27113 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/ElementExistException-xref.html 0664 root bin 11311 15029 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/ElementExistException.html 0664 root bin 2380 4544 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/NoSuchElementException-xref.html 0664 root bin 26011 21030 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/NoSuchElementException.html 0664 root bin 2221 56403 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XChild-xref.html 0664 root bin 22773 44330 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XChild.html 0664 root bin 4597 60949 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XComponentEnumeration-xref.html 0664 root bin 1821 25464 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XComponentEnumeration.html 0664 root bin 3794 58980 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XComponentEnumerationAccess-xref.html 0664 root bin 1452 58670 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XComponentEnumerationAccess.html 0664 root bin 3785 61226 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainer-xref.html 0664 root bin 7861 31534 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainer.html 0664 root bin 5139 48440 1219950735
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerApproveBroadcaster-xref.html 0664 root bin 1456 59046 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerApproveBroadcaster.html 0664 root bin 4317 42203 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerApproveListener-xref.html 0664 root bin 2040 46511 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerApproveListener.html 0664 root bin 6887 63905 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerListener-xref.html 0664 root bin 2389 8881 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerListener.html 0664 root bin 5415 1030 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerQuery-xref.html 0664 root bin 2352 6108 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContainerQuery.html 0664 root bin 6087 1440 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContentEnumerationAccess-xref.html 0664 root bin 4080 28474 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XContentEnumerationAccess.html 0664 root bin 4885 27111 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XElementAccess-xref.html 0664 root bin 29931 42670 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XElementAccess.html 0664 root bin 3632 43045 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XEnumeration-xref.html 0664 root bin 10380 6689 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XEnumeration.html 0664 root bin 4887 21965 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XEnumerationAccess-xref.html 0664 root bin 13791 31751 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XEnumerationAccess.html 0664 root bin 3970 10022 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalName-xref.html 0664 root bin 3121 10163 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalName.html 0664 root bin 4675 4152 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalNameAccess-xref.html 0664 root bin 5071 50958 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalNameAccess.html 0664 root bin 4857 16462 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalNameContainer-xref.html 0664 root bin 2395 8087 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalNameContainer.html 0664 root bin 5355 63417 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalNameReplace-xref.html 0664 root bin 2347 3471 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XHierarchicalNameReplace.html 0664 root bin 4201 29449 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIdentifierAccess-xref.html 0664 root bin 1787 20980 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIdentifierAccess.html 0664 root bin 5088 38594 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIdentifierContainer-xref.html 0664 root bin 1424 55702 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIdentifierContainer.html 0664 root bin 6486 30224 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIdentifierReplace-xref.html 0664 root bin 1730 16086 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIdentifierReplace.html 0664 root bin 5065 39858 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XImplicitIDAccess-xref.html 0664 root bin 1412 54118 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XImplicitIDAccess.html 0664 root bin 4327 36151 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XImplicitIDContainer-xref.html 0664 root bin 1424 55466 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XImplicitIDContainer.html 0664 root bin 4861 18402 1219950736
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XImplicitIDReplace-xref.html 0664 root bin 1730 15732 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XImplicitIDReplace.html 0664 root bin 3395 24191 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIndexAccess-xref.html 0664 root bin 30750 24811 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIndexAccess.html 0664 root bin 5415 179 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIndexContainer-xref.html 0664 root bin 9003 63690 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIndexContainer.html 0664 root bin 5947 47024 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIndexReplace-xref.html 0664 root bin 8965 59505 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XIndexReplace.html 0664 root bin 4356 40984 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNameAccess-xref.html 0664 root bin 32774 16453 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNameAccess.html 0664 root bin 6598 32804 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNameContainer-xref.html 0664 root bin 15500 8016 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNameContainer.html 0664 root bin 5701 25872 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNameReplace-xref.html 0664 root bin 8359 9029 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNameReplace.html 0664 root bin 4256 31965 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNamed-xref.html 0664 root bin 22539 26765 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XNamed.html 0664 root bin 3906 478 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XSet-xref.html 0664 root bin 3613 50289 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XSet.html 0664 root bin 5662 19042 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XStringKeyMap-xref.html 0664 root bin 2668 32083 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XStringKeyMap.html 0664 root bin 9370 3459 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XUniqueIDAccess-xref.html 0664 root bin 1404 53334 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/XUniqueIDAccess.html 0664 root bin 4069 14918 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/container/module-ix.html 0664 root bin 9297 30807 1219950735
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/corba 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/corba/module-ix.html 0664 root bin 1742 14447 1219950737
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/data 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/data/module-ix.html 0664 root bin 1765 16771 1219950737
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/DataFlavor-xref.html 0664 root bin 3131 7147 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/DataFlavor.html 0664 root bin 4268 31912 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/DataFormatTranslator-xref.html 0664 root bin 1301 45043 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/DataFormatTranslator.html 0664 root bin 3258 16475 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/MimeContentTypeFactory-xref.html 0664 root bin 1309 45875 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/MimeContentTypeFactory.html 0664 root bin 3499 35626 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/UnsupportedFlavorException-xref.html 0664 root bin 2733 39857 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/UnsupportedFlavorException.html 0664 root bin 2235 57683 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XDataFormatTranslator-xref.html 0664 root bin 1743 17951 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XDataFormatTranslator.html 0664 root bin 5438 8531 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XMimeContentType-xref.html 0664 root bin 1779 20781 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XMimeContentType.html 0664 root bin 8099 29217 1219950737
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XMimeContentTypeFactory-xref.html 0664 root bin 1755 19199 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XMimeContentTypeFactory.html 0664 root bin 4461 50719 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XSystemTransferable-xref.html 0664 root bin 1420 55414 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XSystemTransferable.html 0664 root bin 4164 29105 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferDataAccess-xref.html 0664 root bin 1420 55106 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferDataAccess.html 0664 root bin 5002 30198 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferable-xref.html 0664 root bin 4953 39081 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferable.html 0664 root bin 6513 30305 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferableEx-xref.html 0664 root bin 1404 53590 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferableEx.html 0664 root bin 3809 63124 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferableSource-xref.html 0664 root bin 1420 55334 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferableSource.html 0664 root bin 3057 61812 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferableSupplier-xref.html 0664 root bin 1428 56242 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/XTransferableSupplier.html 0664 root bin 4631 1634 1219950738
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/ClipboardEvent-xref.html 0664 root bin 1657 8796 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/ClipboardEvent.html 0664 root bin 3216 7327 1219950738
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/ClipboardManager-xref.html 0664 root bin 1294 43660 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/ClipboardManager.html 0664 root bin 3351 20889 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/GenericClipboard-xref.html 0664 root bin 1294 43668 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/GenericClipboard.html 0664 root bin 3760 56217 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/RenderingCapabilities.html 0664 root bin 3593 42369 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/SystemClipboard-xref.html 0664 root bin 1839 26779 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/SystemClipboard.html 0664 root bin 5152 48776 1219950739
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboard-xref.html 0664 root bin 3355 26024 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboard.html 0664 root bin 6512 30148 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardEx-xref.html 0664 root bin 1763 18640 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardEx.html 0664 root bin 3860 63737 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardFactory-xref.html 0664 root bin 1421 54847 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardFactory.html 0664 root bin 3850 62480 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardListener-xref.html 0664 root bin 2413 11300 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardListener.html 0664 root bin 4059 14636 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardManager-xref.html 0664 root bin 1728 15668 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardManager.html 0664 root bin 6982 516 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardNotifier-xref.html 0664 root bin 1787 21212 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardNotifier.html 0664 root bin 4148 25068 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardOwner-xref.html 0664 root bin 2179 54443 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XClipboardOwner.html 0664 root bin 3936 5115 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XFlushableClipboard-xref.html 0664 root bin 1734 16436 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/XFlushableClipboard.html 0664 root bin 3344 20852 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/clipboard/module-ix.html 0664 root bin 5153 51731 1219950738
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DNDConstants.html 0664 root bin 5658 3223 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragGestureEvent-xref.html 0664 root bin 1784 20318 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragGestureEvent.html 0664 root bin 6303 11087 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragSourceDragEvent-xref.html 0664 root bin 1932 33769 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragSourceDragEvent.html 0664 root bin 4241 29991 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragSourceDropEvent-xref.html 0664 root bin 1672 10157 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragSourceDropEvent.html 0664 root bin 4161 23766 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragSourceEvent-xref.html 0664 root bin 2018 39690 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DragSourceEvent.html 0664 root bin 4317 36302 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetDragEnterEvent-xref.html 0664 root bin 1688 11848 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetDragEnterEvent.html 0664 root bin 4180 26759 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetDragEvent-xref.html 0664 root bin 2126 49911 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetDragEvent.html 0664 root bin 6276 9474 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetDropEvent-xref.html 0664 root bin 1658 8926 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetDropEvent.html 0664 root bin 6906 63749 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetEvent-xref.html 0664 root bin 2091 46373 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/DropTargetEvent.html 0664 root bin 3437 26167 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/InvalidDNDOperationException-xref.html 0664 root bin 1307 45231 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/InvalidDNDOperationException.html 0664 root bin 2501 14179 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/OleDragSource-xref.html 0664 root bin 1282 42396 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/OleDragSource.html 0664 root bin 4055 16288 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/OleDropTarget-xref.html 0664 root bin 1282 42448 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/OleDropTarget.html 0664 root bin 3679 48308 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/X11DragSource-xref.html 0664 root bin 1282 41988 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/X11DragSource.html 0664 root bin 3846 62125 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/X11DropTarget-xref.html 0664 root bin 1282 42040 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/X11DropTarget.html 0664 root bin 3999 10410 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XAutoscroll-xref.html 0664 root bin 1397 52543 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XAutoscroll.html 0664 root bin 5142 48057 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragGestureListener-xref.html 0664 root bin 1973 38778 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragGestureListener.html 0664 root bin 4558 61094 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragGestureRecognizer-xref.html 0664 root bin 1912 31927 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragGestureRecognizer.html 0664 root bin 5660 26409 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragSource-xref.html 0664 root bin 2639 27485 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragSource.html 0664 root bin 7855 16503 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragSourceContext-xref.html 0664 root bin 1764 18645 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragSourceContext.html 0664 root bin 7014 8885 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragSourceListener-xref.html 0664 root bin 1744 16587 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDragSourceListener.html 0664 root bin 8172 37131 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTarget-xref.html 0664 root bin 2198 55229 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTarget.html 0664 root bin 8423 61082 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTargetDragContext-xref.html 0664 root bin 1772 19396 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTargetDragContext.html 0664 root bin 5576 18095 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTargetDropContext-xref.html 0664 root bin 1772 19557 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTargetDropContext.html 0664 root bin 6179 3015 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTargetListener-xref.html 0664 root bin 1899 31132 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/XDropTargetListener.html 0664 root bin 8556 8241 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/dnd/module-ix.html 0664 root bin 9605 58058 1219950741
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/datatransfer/module-ix.html 0664 root bin 6958 14441 1219950737
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/DependencyException-xref.html 0664 root bin 1262 41426 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/DependencyException.html 0664 root bin 4313 39718 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/DeploymentException-xref.html 0664 root bin 2739 40033 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/DeploymentException.html 0664 root bin 3121 64722 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/InstallException-xref.html 0664 root bin 1250 40242 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/InstallException.html 0664 root bin 3374 19746 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/LicenseException-xref.html 0664 root bin 1250 40162 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/LicenseException.html 0664 root bin 3648 43309 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/LicenseIndividualAgreementException-xref.html 0664 root bin 1326 47974 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/LicenseIndividualAgreementException.html 0664 root bin 3315 17582 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/PackageInformationProvider.html 0664 root bin 1932 30226 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/PackageRegistryBackend.html 0664 root bin 4816 15110 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/PlatformException-xref.html 0664 root bin 1254 40682 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/PlatformException.html 0664 root bin 3184 4987 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/UpdateInformationEntry-xref.html 0664 root bin 1332 47482 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/UpdateInformationEntry.html 0664 root bin 3797 59670 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/UpdateInformationProvider.html 0664 root bin 2138 48435 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/VersionException-xref.html 0664 root bin 1250 40302 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/VersionException.html 0664 root bin 4015 8784 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackage-xref.html 0664 root bin 3224 17858 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackage.html 0664 root bin 27952 24933 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageInformationProvider-xref.html 0664 root bin 2185 57669 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageInformationProvider.html 0664 root bin 5713 29885 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageManager-xref.html 0664 root bin 1764 18743 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageManager.html 0664 root bin 18685 31621 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageManagerFactory-xref.html 0664 root bin 1761 19571 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageManagerFactory.html 0664 root bin 5304 57404 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageRegistry-xref.html 0664 root bin 1727 16191 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageRegistry.html 0664 root bin 5629 18673 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageTypeInfo-xref.html 0664 root bin 1720 14360 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XPackageTypeInfo.html 0664 root bin 7396 36084 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XUpdateInformationProvider-xref.html 0664 root bin 1773 21257 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/XUpdateInformationProvider.html 0664 root bin 8250 54230 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/module-ix.html 0664 root bin 7686 16920 1219950742
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/thePackageManagerFactory.html 0664 root bin 2135 47819 1219950743
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/ui 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/ui/LicenseDialog.html 0664 root bin 3792 54695 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/ui/PackageManagerDialog.html 0664 root bin 5829 34592 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/deployment/ui/module-ix.html 0664 root bin 2468 11949 1219950743
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/AmbigousFilterRequest-xref.html 0664 root bin 1270 42290 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/AmbigousFilterRequest.html 0664 root bin 4690 6467 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/BrokenPackageRequest-xref.html 0664 root bin 1266 41714 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/BrokenPackageRequest.html 0664 root bin 2970 51724 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/CorruptedFilterConfigurationException-xref.html 0664 root bin 1334 49070 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/CorruptedFilterConfigurationException.html 0664 root bin 3329 20490 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/DocumentInfo-xref.html 0664 root bin 1984 38392 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/DocumentInfo.html 0664 root bin 19976 3493 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/DocumentProperties.html 0664 root bin 3491 33811 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/DocumentRevisionListPersistence.html 0664 root bin 2049 40777 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/EventDescriptor-xref.html 0664 root bin 1281 43075 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/EventDescriptor.html 0664 root bin 3600 41424 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/EventObject-xref.html 0664 root bin 2417 11311 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/EventObject.html 0664 root bin 3461 29842 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/Events-xref.html 0664 root bin 2046 45455 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/Events.html 0664 root bin 3895 3209 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ExportFilter-xref.html 0664 root bin 2610 29911 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ExportFilter.html 0664 root bin 6211 17922 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ExtendedTypeDetection-xref.html 0664 root bin 2379 11002 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ExtendedTypeDetection.html 0664 root bin 5821 52168 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ExtendedTypeDetectionFactory-xref.html 0664 root bin 1333 48359 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ExtendedTypeDetectionFactory.html 0664 root bin 6910 14160 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/FilterAdapter-xref.html 0664 root bin 1273 42075 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/FilterAdapter.html 0664 root bin 2208 54895 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/FilterFactory-xref.html 0664 root bin 2211 61173 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/FilterFactory.html 0664 root bin 11394 18750 1219950743
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/FilterOptionsRequest-xref.html 0664 root bin 1266 41990 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/FilterOptionsRequest.html 0664 root bin 3826 61054 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/HeaderFooterSettings-xref.html 0664 root bin 1832 26001 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/HeaderFooterSettings.html 0664 root bin 5012 33536 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ImportFilter-xref.html 0664 root bin 2610 29869 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/ImportFilter.html 0664 root bin 6195 16296 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/LinkTarget-xref.html 0664 root bin 1641 8004 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/LinkTarget.html 0664 root bin 3935 8070 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/LinkTargets-xref.html 0664 root bin 1265 41311 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/LinkTargets.html 0664 root bin 2776 38971 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/LinkUpdateModes.html 0664 root bin 4154 18237 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/LockedDocumentRequest-xref.html 0664 root bin 1270 42242 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/LockedDocumentRequest.html 0664 root bin 3523 33743 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/MacroExecMode.html 0664 root bin 9334 61275 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/MediaDescriptor-xref.html 0664 root bin 4391 1629 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/MediaDescriptor.html 0664 root bin 41959 49310 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/NoSuchFilterRequest-xref.html 0664 root bin 1262 41366 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/NoSuchFilterRequest.html 0664 root bin 4216 32576 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/OOXMLDocumentPropertiesImporter.html 0664 root bin 2032 39490 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/OfficeDocument-xref.html 0664 root bin 4778 27615 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/OfficeDocument.html 0664 root bin 9813 56412 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/OleEmbeddedServerRegistration-xref.html 0664 root bin 1337 48687 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/OleEmbeddedServerRegistration.html 0664 root bin 2495 14621 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/PrinterIndependentLayout.html 0664 root bin 4567 52762 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/RedlineDisplayType.html 0664 root bin 4217 23265 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/Settings-xref.html 0664 root bin 2556 23909 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/Settings.html 0664 root bin 23913 15288 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/StandaloneDocumentInfo-xref.html 0664 root bin 1309 45839 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/StandaloneDocumentInfo.html 0664 root bin 3705 54430 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/TypeDetection-xref.html 0664 root bin 2440 17097 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/TypeDetection.html 0664 root bin 8772 42982 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/UpdateDocMode.html 0664 root bin 4609 55716 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XActionLockable-xref.html 0664 root bin 2700 37027 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XActionLockable.html 0664 root bin 6491 27395 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XBinaryStreamResolver-xref.html 0664 root bin 1428 56202 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XBinaryStreamResolver.html 0664 root bin 6279 14187 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentInfo-xref.html 0664 root bin 2437 11741 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentInfo.html 0664 root bin 9487 18227 1219950744
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentInfoSupplier-xref.html 0664 root bin 3985 19996 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentInfoSupplier.html 0664 root bin 4471 55923 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentInsertable-xref.html 0664 root bin 2513 19816 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentInsertable.html 0664 root bin 3978 10568 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentLanguages-xref.html 0664 root bin 1416 54870 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentLanguages.html 0664 root bin 3461 30887 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentProperties-xref.html 0664 root bin 2506 19756 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentProperties.html 0664 root bin 32290 18550 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentPropertiesSupplier-xref.html 0664 root bin 1452 58878 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentPropertiesSupplier.html 0664 root bin 3704 53521 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentRevisionListPersistence-xref.html 0664 root bin 1809 25067 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentRevisionListPersistence.html 0664 root bin 5404 62770 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentSubStorageSupplier-xref.html 0664 root bin 2485 16909 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XDocumentSubStorageSupplier.html 0664 root bin 5033 35303 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedObjectResolver-xref.html 0664 root bin 1436 56778 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedObjectResolver.html 0664 root bin 3217 10146 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedObjectSupplier-xref.html 0664 root bin 2784 42564 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedObjectSupplier.html 0664 root bin 3101 65107 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedObjectSupplier2-xref.html 0664 root bin 1440 56986 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedObjectSupplier2.html 0664 root bin 5755 30994 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedScripts-xref.html 0664 root bin 3169 12476 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEmbeddedScripts.html 0664 root bin 4999 35374 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEventBroadcaster-xref.html 0664 root bin 5303 2875 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEventBroadcaster.html 0664 root bin 4706 9732 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEventListener-xref.html 0664 root bin 2250 61903 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEventListener.html 0664 root bin 4046 14720 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEventsSupplier-xref.html 0664 root bin 4859 31375 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XEventsSupplier.html 0664 root bin 3581 41787 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XExporter-xref.html 0664 root bin 2534 21146 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XExporter.html 0664 root bin 3987 11095 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XExtendedFilterDetection-xref.html 0664 root bin 2231 61429 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XExtendedFilterDetection.html 0664 root bin 4554 63960 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XFilter-xref.html 0664 root bin 3326 27503 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XFilter.html 0664 root bin 5184 49471 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XFilterAdapter-xref.html 0664 root bin 1701 13499 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XFilterAdapter.html 0664 root bin 3521 33389 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XGraphicObjectResolver-xref.html 0664 root bin 1432 56474 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XGraphicObjectResolver.html 0664 root bin 3208 9462 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XImporter-xref.html 0664 root bin 2270 62664 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XImporter.html 0664 root bin 3987 10956 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XInteractionFilterOptions-xref.html 0664 root bin 1444 57926 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XInteractionFilterOptions.html 0664 root bin 5066 38599 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XInteractionFilterSelect-xref.html 0664 root bin 1440 57366 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XInteractionFilterSelect.html 0664 root bin 5943 50452 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XLinkTargetSupplier-xref.html 0664 root bin 2770 43314 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XLinkTargetSupplier.html 0664 root bin 3588 42302 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLBasicExporter-xref.html 0664 root bin 1285 43119 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLBasicExporter.html 0664 root bin 3086 84 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLBasicImporter-xref.html 0664 root bin 1285 43091 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLBasicImporter.html 0664 root bin 2984 57219 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLOasisBasicExporter-xref.html 0664 root bin 1305 45163 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLOasisBasicExporter.html 0664 root bin 3104 1690 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLOasisBasicImporter-xref.html 0664 root bin 1305 45135 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMLOasisBasicImporter.html 0664 root bin 3002 58825 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMimeTypeInfo-xref.html 0664 root bin 2137 51367 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XMimeTypeInfo.html 0664 root bin 3756 55502 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XOOXMLDocumentPropertiesImporter-xref.html 0664 root bin 1809 24479 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XOOXMLDocumentPropertiesImporter.html 0664 root bin 5254 57560 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XRedlinesSupplier-xref.html 0664 root bin 2019 42785 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XRedlinesSupplier.html 0664 root bin 3593 43354 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XScriptInvocationContext-xref.html 0664 root bin 1904 32592 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XScriptInvocationContext.html 0664 root bin 4483 62998 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XStandaloneDocumentInfo-xref.html 0664 root bin 1755 19145 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XStandaloneDocumentInfo.html 0664 root bin 6583 35996 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XStorageBasedDocument-xref.html 0664 root bin 2881 51608 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XStorageBasedDocument.html 0664 root bin 10060 7165 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XStorageChangeListener-xref.html 0664 root bin 1974 39101 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XStorageChangeListener.html 0664 root bin 4425 46847 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XTypeDetection-xref.html 0664 root bin 1701 13655 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XTypeDetection.html 0664 root bin 7076 21791 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XViewDataSupplier-xref.html 0664 root bin 4677 14980 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/XViewDataSupplier.html 0664 root bin 5664 27801 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/document/module-ix.html 0664 root bin 17742 2083 1219950743
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleDrawDocumentView-xref.html 0664 root bin 1325 47383 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleDrawDocumentView.html 0664 root bin 6837 9781 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleGraphControl-xref.html 0664 root bin 1309 45763 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleGraphControl.html 0664 root bin 4173 32644 1219950745
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleGraphicShape-xref.html 0664 root bin 1309 45619 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleGraphicShape.html 0664 root bin 5950 62514 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleImageBullet-xref.html 0664 root bin 1305 45219 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleImageBullet.html 0664 root bin 4367 45289 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleOLEShape-xref.html 0664 root bin 1293 43707 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleOLEShape.html 0664 root bin 4281 40724 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleShape-xref.html 0664 root bin 1657 9719 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleShape.html 0664 root bin 10075 31187 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleSlideView-xref.html 0664 root bin 1297 44455 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleSlideView.html 0664 root bin 4447 57161 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleSlideViewObject-xref.html 0664 root bin 1321 46851 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AccessibleSlideViewObject.html 0664 root bin 4146 30770 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Alignment-xref.html 0664 root bin 2095 45499 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Alignment.html 0664 root bin 5435 52330 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AppletShape-xref.html 0664 root bin 1265 41243 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/AppletShape.html 0664 root bin 6433 24290 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Arrangement-xref.html 0664 root bin 1581 1709 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Arrangement.html 0664 root bin 4310 28811 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Background-xref.html 0664 root bin 1261 40895 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Background.html 0664 root bin 2546 19584 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BezierPoint-xref.html 0664 root bin 1288 42810 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BezierPoint.html 0664 root bin 4251 29095 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BitmapMode-xref.html 0664 root bin 2374 5287 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BitmapMode.html 0664 root bin 3656 40617 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BitmapTable-xref.html 0664 root bin 1265 41171 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BitmapTable.html 0664 root bin 2776 38693 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BoundVolume-xref.html 0664 root bin 1288 42830 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/BoundVolume.html 0664 root bin 3248 10842 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CameraGeometry-xref.html 0664 root bin 1300 44002 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CameraGeometry.html 0664 root bin 3590 37860 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CanvasFeature.html 0664 root bin 2745 33014 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CaptionEscapeDirection.html 0664 root bin 4117 21396 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CaptionShape-xref.html 0664 root bin 2082 46830 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CaptionShape.html 0664 root bin 12974 3555 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CaptionType.html 0664 root bin 4125 21532 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CircleKind-xref.html 0664 root bin 1927 31113 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CircleKind.html 0664 root bin 3905 59380 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ClosedBezierShape-xref.html 0664 root bin 1848 27746 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ClosedBezierShape.html 0664 root bin 4058 20782 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ColorMode-xref.html 0664 root bin 2288 63823 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ColorMode.html 0664 root bin 4228 23264 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectionType-xref.html 0664 root bin 1721 14714 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectionType.html 0664 root bin 5156 35996 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectorProperties-xref.html 0664 root bin 2189 57351 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectorProperties.html 0664 root bin 5278 55746 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectorShape-xref.html 0664 root bin 1993 41267 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectorShape.html 0664 root bin 11142 40050 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectorType-xref.html 0664 root bin 1602 3998 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ConnectorType.html 0664 root bin 4190 20903 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ControlShape-xref.html 0664 root bin 1895 31974 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ControlShape.html 0664 root bin 3307 19110 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CoordinateSequence-xref.html 0664 root bin 1298 44089 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CoordinateSequence.html 0664 root bin 1563 64234 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CoordinateSequenceSequence-xref.html 0664 root bin 1330 47389 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CoordinateSequenceSequence.html 0664 root bin 1639 6006 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CustomShape-xref.html 0664 root bin 1265 41327 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CustomShape.html 0664 root bin 8245 58124 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CustomShapeEngine-xref.html 0664 root bin 1289 43719 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/CustomShapeEngine.html 0664 root bin 2604 22679 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DashStyle-xref.html 0664 root bin 1547 63593 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DashStyle.html 0664 root bin 4226 21337 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DashTable-xref.html 0664 root bin 1257 40287 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DashTable.html 0664 root bin 2782 38605 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Defaults-xref.html 0664 root bin 1253 40095 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Defaults.html 0664 root bin 3699 54750 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Direction3D-xref.html 0664 root bin 2380 9624 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Direction3D.html 0664 root bin 3271 11294 1219950746
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DocumentSettings-xref.html 0664 root bin 1633 8039 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DocumentSettings.html 0664 root bin 9000 50212 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DoubleSequence-xref.html 0664 root bin 1282 42373 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DoubleSequence.html 0664 root bin 1553 63150 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DoubleSequenceSequence-xref.html 0664 root bin 1886 29674 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DoubleSequenceSequence.html 0664 root bin 1619 3861 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawPage-xref.html 0664 root bin 2344 6009 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawPage.html 0664 root bin 3915 6921 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawPages-xref.html 0664 root bin 1257 40375 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawPages.html 0664 root bin 3096 603 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawViewMode-xref.html 0664 root bin 1265 40505 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawViewMode.html 0664 root bin 3688 42498 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawingDocument-xref.html 0664 root bin 2208 60292 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawingDocument.html 0664 root bin 2477 12674 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawingDocumentDrawView-xref.html 0664 root bin 2943 61349 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawingDocumentDrawView.html 0664 root bin 11250 42295 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawingDocumentFactory-xref.html 0664 root bin 1309 45899 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/DrawingDocumentFactory.html 0664 root bin 2521 16109 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EllipseShape-xref.html 0664 root bin 1828 25774 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EllipseShape.html 0664 root bin 6009 53577 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeAdjustmentValue-xref.html 0664 root bin 1380 52230 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeAdjustmentValue.html 0664 root bin 3314 15140 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeExtrusion-xref.html 0664 root bin 1333 48395 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeExtrusion.html 0664 root bin 20206 30808 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeGeometry-xref.html 0664 root bin 1329 47863 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeGeometry.html 0664 root bin 13058 17231 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeGluePointType.html 0664 root bin 4468 45885 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeHandle-xref.html 0664 root bin 1321 46839 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeHandle.html 0664 root bin 12145 1329 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeParameter-xref.html 0664 root bin 2792 49421 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeParameter.html 0664 root bin 3208 5724 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeParameterPair-xref.html 0664 root bin 2736 44745 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeParameterPair.html 0664 root bin 3229 9551 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeParameterType.html 0664 root bin 10319 1973 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapePath-xref.html 0664 root bin 1313 46075 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapePath.html 0664 root bin 11736 32633 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeSegment-xref.html 0664 root bin 1348 48866 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeSegment.html 0664 root bin 2977 51738 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeSegmentCommand.html 0664 root bin 9067 15348 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeTextFrame-xref.html 0664 root bin 1356 49622 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeTextFrame.html 0664 root bin 3268 13481 1219950747
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeTextPath-xref.html 0664 root bin 1329 47759 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeTextPath.html 0664 root bin 4584 60866 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeTextPathMode-xref.html 0664 root bin 1706 14170 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EnhancedCustomShapeTextPathMode.html 0664 root bin 3503 28586 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EscapeDirection-xref.html 0664 root bin 1579 1201 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/EscapeDirection.html 0664 root bin 4600 49945 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FillProperties-xref.html 0664 root bin 5494 25833 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FillProperties.html 0664 root bin 19502 26124 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FillStyle-xref.html 0664 root bin 2165 52874 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FillStyle.html 0664 root bin 4411 34139 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FlagSequence-xref.html 0664 root bin 1274 41473 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FlagSequence.html 0664 root bin 1585 329 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FlagSequenceSequence-xref.html 0664 root bin 1645 8239 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/FlagSequenceSequence.html 0664 root bin 1609 2736 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GenericDrawPage-xref.html 0664 root bin 2428 12900 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GenericDrawPage.html 0664 root bin 14071 14998 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GenericDrawingDocument-xref.html 0664 root bin 1768 20588 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GenericDrawingDocument.html 0664 root bin 13613 52342 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GluePoint-xref.html 0664 root bin 1280 41962 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GluePoint.html 0664 root bin 5378 60503 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GluePoint2-xref.html 0664 root bin 1284 42162 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GluePoint2.html 0664 root bin 6149 63589 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GradientTable-xref.html 0664 root bin 1273 42007 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GradientTable.html 0664 root bin 3058 62267 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GraphicExportFilter-xref.html 0664 root bin 1757 19591 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GraphicExportFilter.html 0664 root bin 4911 31343 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GraphicFilterRequest-xref.html 0664 root bin 1266 41806 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GraphicFilterRequest.html 0664 root bin 3173 3760 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GraphicObjectShape-xref.html 0664 root bin 2047 43726 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GraphicObjectShape.html 0664 root bin 13254 21365 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GroupShape-xref.html 0664 root bin 1918 33911 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/GroupShape.html 0664 root bin 3434 29131 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Hatch-xref.html 0664 root bin 2168 52773 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Hatch.html 0664 root bin 4442 43354 1219950748
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HatchStyle-xref.html 0664 root bin 1542 63145 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HatchStyle.html 0664 root bin 3646 40154 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HatchTable-xref.html 0664 root bin 1261 40703 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HatchTable.html 0664 root bin 2761 36613 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrix-xref.html 0664 root bin 1648 8455 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrix.html 0664 root bin 3774 52781 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrix3-xref.html 0664 root bin 1789 19843 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrix3.html 0664 root bin 3377 19475 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrix4-xref.html 0664 root bin 1300 43878 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrix4.html 0664 root bin 3785 53307 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrixLine-xref.html 0664 root bin 1912 31022 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrixLine.html 0664 root bin 3656 42600 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrixLine3-xref.html 0664 root bin 1828 23164 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrixLine3.html 0664 root bin 3293 12331 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrixLine4-xref.html 0664 root bin 1928 31854 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HomogenMatrixLine4.html 0664 root bin 3661 42860 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HorizontalDimensioning-xref.html 0664 root bin 1305 44985 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/HorizontalDimensioning.html 0664 root bin 4211 23273 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Layer-xref.html 0664 root bin 1673 11611 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Layer.html 0664 root bin 6006 46787 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LayerManager-xref.html 0664 root bin 1701 14407 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LayerManager.html 0664 root bin 3144 3463 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LayerType-xref.html 0664 root bin 1253 39421 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LayerType.html 0664 root bin 4158 15209 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineDash-xref.html 0664 root bin 2394 7272 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineDash.html 0664 root bin 5205 39770 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineEndType-xref.html 0664 root bin 1261 40069 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineEndType.html 0664 root bin 4654 54618 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineJoint-xref.html 0664 root bin 1957 34436 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineJoint.html 0664 root bin 4533 47358 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineProperties-xref.html 0664 root bin 6702 65006 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineProperties.html 0664 root bin 12891 50690 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineShape-xref.html 0664 root bin 1816 24470 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineShape.html 0664 root bin 3792 62310 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineStyle-xref.html 0664 root bin 2377 6149 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/LineStyle.html 0664 root bin 3395 17068 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MarkerTable-xref.html 0664 root bin 1265 41191 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MarkerTable.html 0664 root bin 2790 40374 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MasterPage-xref.html 0664 root bin 1693 13579 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MasterPage.html 0664 root bin 2956 53398 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MasterPages-xref.html 0664 root bin 1265 41263 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MasterPages.html 0664 root bin 2486 13509 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureKind-xref.html 0664 root bin 1594 3065 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureKind.html 0664 root bin 3315 12499 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureProperties-xref.html 0664 root bin 2177 56049 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureProperties.html 0664 root bin 13813 7183 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureShape-xref.html 0664 root bin 1828 25790 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureShape.html 0664 root bin 5716 30069 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureTextHorzPos-xref.html 0664 root bin 1658 9989 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureTextHorzPos.html 0664 root bin 3620 36512 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureTextVertPos-xref.html 0664 root bin 1654 9501 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MeasureTextVertPos.html 0664 root bin 3934 61703 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MirrorAxis-xref.html 0664 root bin 1569 622 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/MirrorAxis.html 0664 root bin 3029 54233 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/NormalsKind-xref.html 0664 root bin 1261 40201 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/NormalsKind.html 0664 root bin 3668 42487 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/OLE2Shape-xref.html 0664 root bin 2268 62823 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/OLE2Shape.html 0664 root bin 5998 49633 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/OpenBezierShape-xref.html 0664 root bin 1635 7840 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/OpenBezierShape.html 0664 root bin 3798 63531 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PageShape-xref.html 0664 root bin 2135 50985 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PageShape.html 0664 root bin 3948 8616 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PluginShape-xref.html 0664 root bin 1619 6288 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PluginShape.html 0664 root bin 5063 39048 1219950749
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PointSequence-xref.html 0664 root bin 1696 11947 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PointSequence.html 0664 root bin 1640 4848 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PointSequenceSequence-xref.html 0664 root bin 2487 18704 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PointSequenceSequence.html 0664 root bin 1614 3456 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyLineShape-xref.html 0664 root bin 1832 26150 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyLineShape.html 0664 root bin 3831 375 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonBezierCoords-xref.html 0664 root bin 3104 7285 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonBezierCoords.html 0664 root bin 3033 58762 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonBezierDescriptor-xref.html 0664 root bin 2562 26717 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonBezierDescriptor.html 0664 root bin 4697 11267 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonBezierShape-xref.html 0664 root bin 1868 29994 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonBezierShape.html 0664 root bin 4081 23438 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonDescriptor-xref.html 0664 root bin 2056 44875 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonDescriptor.html 0664 root bin 4268 37201 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonShape-xref.html 0664 root bin 1844 27558 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonShape.html 0664 root bin 4155 29116 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonShape3D-xref.html 0664 root bin 1316 45406 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolyPolygonShape3D.html 0664 root bin 3476 30603 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolygonFlags-xref.html 0664 root bin 1265 40661 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolygonFlags.html 0664 root bin 4296 31112 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolygonKind-xref.html 0664 root bin 2115 49754 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/PolygonKind.html 0664 root bin 6639 23417 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Position3D-xref.html 0664 root bin 1916 31920 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Position3D.html 0664 root bin 3801 56015 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ProjectionMode-xref.html 0664 root bin 1645 8369 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ProjectionMode.html 0664 root bin 3197 3496 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/RectanglePoint-xref.html 0664 root bin 3602 44057 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/RectanglePoint.html 0664 root bin 7214 8976 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/RectangleShape-xref.html 0664 root bin 1953 37232 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/RectangleShape.html 0664 root bin 4921 27596 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/RotationDescriptor-xref.html 0664 root bin 4540 7104 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/RotationDescriptor.html 0664 root bin 5273 59424 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ShadeMode-xref.html 0664 root bin 1615 4961 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ShadeMode.html 0664 root bin 4466 42703 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ShadowProperties-xref.html 0664 root bin 4659 17812 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ShadowProperties.html 0664 root bin 5680 22677 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Shape-xref.html 0664 root bin 6408 40694 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Shape.html 0664 root bin 14172 28390 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ShapeCollection-xref.html 0664 root bin 1924 34612 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/ShapeCollection.html 0664 root bin 3173 8782 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Shapes-xref.html 0664 root bin 1683 12630 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Shapes.html 0664 root bin 2285 60845 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/SlideRenderer.html 0664 root bin 3027 56620 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/SlideSorter.html 0664 root bin 4118 20789 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/SnapObjectType-xref.html 0664 root bin 1273 41389 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/SnapObjectType.html 0664 root bin 3255 5469 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Text-xref.html 0664 root bin 4356 54379 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/Text.html 0664 root bin 2842 43534 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextAdjust-xref.html 0664 root bin 1257 39873 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextAdjust.html 0664 root bin 5097 29251 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextAnimationDirection-xref.html 0664 root bin 2035 42743 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextAnimationDirection.html 0664 root bin 3511 28102 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextAnimationKind-xref.html 0664 root bin 2005 39509 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextAnimationKind.html 0664 root bin 4625 55909 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextFitToSizeType-xref.html 0664 root bin 1997 38655 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextFitToSizeType.html 0664 root bin 4415 39898 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextHorizontalAdjust-xref.html 0664 root bin 2023 41711 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextHorizontalAdjust.html 0664 root bin 4332 32557 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextProperties-xref.html 0664 root bin 4811 31711 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextProperties.html 0664 root bin 24939 57115 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextShape-xref.html 0664 root bin 3208 17477 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextShape.html 0664 root bin 4758 13275 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextVerticalAdjust-xref.html 0664 root bin 2011 40271 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextVerticalAdjust.html 0664 root bin 4324 31938 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureKind-xref.html 0664 root bin 1261 40285 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureKind.html 0664 root bin 3614 39449 1219950750
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureKind2-xref.html 0664 root bin 1265 40485 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureKind2.html 0664 root bin 4116 15876 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureMode-xref.html 0664 root bin 1261 40281 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureMode.html 0664 root bin 3659 40921 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureProjectionMode-xref.html 0664 root bin 1301 44493 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TextureProjectionMode.html 0664 root bin 3921 63665 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TransparencyGradientTable-xref.html 0664 root bin 1321 47103 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/TransparencyGradientTable.html 0664 root bin 3116 2706 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/VerticalDimensioning-xref.html 0664 root bin 1297 44025 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/VerticalDimensioning.html 0664 root bin 4174 19649 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XConnectableShape-xref.html 0664 root bin 2106 49787 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XConnectableShape.html 0664 root bin 4062 12263 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XConnectorShape-xref.html 0664 root bin 1404 53614 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XConnectorShape.html 0664 root bin 6478 22105 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XControlShape-xref.html 0664 root bin 2049 43533 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XControlShape.html 0664 root bin 5217 47185 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XCustomShapeEngine-xref.html 0664 root bin 1725 15965 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XCustomShapeEngine.html 0664 root bin 5089 33900 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XCustomShapeHandle-xref.html 0664 root bin 1416 54750 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XCustomShapeHandle.html 0664 root bin 4067 14678 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPage-xref.html 0664 root bin 7152 40489 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPage.html 0664 root bin 2673 26589 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageDuplicator-xref.html 0664 root bin 2519 22160 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageDuplicator.html 0664 root bin 4201 29573 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageExpander-xref.html 0664 root bin 1705 13781 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageExpander.html 0664 root bin 3763 54378 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageSummarizer-xref.html 0664 root bin 1713 14773 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageSummarizer.html 0664 root bin 3457 28299 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageSupplier-xref.html 0664 root bin 2548 23597 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPageSupplier.html 0664 root bin 3439 26948 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPages-xref.html 0664 root bin 3219 15401 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPages.html 0664 root bin 6377 19046 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPagesSupplier-xref.html 0664 root bin 3162 15721 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawPagesSupplier.html 0664 root bin 3379 24422 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawSubController-xref.html 0664 root bin 1416 54894 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawSubController.html 0664 root bin 3919 6797 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawView-xref.html 0664 root bin 3057 2082 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XDrawView.html 0664 root bin 4043 12076 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XEnhancedCustomShapeDefaulter-xref.html 0664 root bin 1460 59254 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XEnhancedCustomShapeDefaulter.html 0664 root bin 12361 30117 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XGluePointsSupplier-xref.html 0664 root bin 5151 57598 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XGluePointsSupplier.html 0664 root bin 3084 63267 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XLayer-xref.html 0664 root bin 2260 60948 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XLayer.html 0664 root bin 2489 12070 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XLayerManager-xref.html 0664 root bin 2170 54612 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XLayerManager.html 0664 root bin 8225 37615 1219950751
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XLayerSupplier-xref.html 0664 root bin 2292 643 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XLayerSupplier.html 0664 root bin 3104 63943 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XMasterPageTarget-xref.html 0664 root bin 2259 62571 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XMasterPageTarget.html 0664 root bin 4002 8133 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XMasterPagesSupplier-xref.html 0664 root bin 1956 37494 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XMasterPagesSupplier.html 0664 root bin 3036 59107 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XPresenterHelper-xref.html 0664 root bin 1408 54110 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XPresenterHelper.html 0664 root bin 15498 20567 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSelectionFunction-xref.html 0664 root bin 1416 54958 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSelectionFunction.html 0664 root bin 6046 57002 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShape-xref.html 0664 root bin 17020 48841 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShape.html 0664 root bin 6428 14836 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeAligner-xref.html 0664 root bin 1396 52682 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeAligner.html 0664 root bin 3354 18498 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeArranger-xref.html 0664 root bin 1400 53130 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeArranger.html 0664 root bin 8385 51272 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeBinder-xref.html 0664 root bin 2313 1097 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeBinder.html 0664 root bin 5013 30799 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeCombiner-xref.html 0664 root bin 2455 14437 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeCombiner.html 0664 root bin 5282 56633 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeDescriptor-xref.html 0664 root bin 9353 23588 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeDescriptor.html 0664 root bin 3253 10660 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeGroup-xref.html 0664 root bin 2832 45072 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeGroup.html 0664 root bin 5232 46494 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeGrouper-xref.html 0664 root bin 2586 26009 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeGrouper.html 0664 root bin 5226 49472 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeMirror-xref.html 0664 root bin 1392 52398 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapeMirror.html 0664 root bin 4297 32224 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapes-xref.html 0664 root bin 5214 57082 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XShapes.html 0664 root bin 5075 32566 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlidePreviewCache-xref.html 0664 root bin 1416 54682 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlidePreviewCache.html 0664 root bin 11954 49717 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlidePreviewCacheListener-xref.html 0664 root bin 2004 42233 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlidePreviewCacheListener.html 0664 root bin 3788 61056 1219950752
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlideRenderer-xref.html 0664 root bin 1701 13505 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlideRenderer.html 0664 root bin 8703 30004 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlideSorterBase-xref.html 0664 root bin 1705 13917 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XSlideSorterBase.html 0664 root bin 13050 8812 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XUniversalShapeDescriptor-xref.html 0664 root bin 1444 57890 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/XUniversalShapeDescriptor.html 0664 root bin 3565 38673 1219950753
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/AnchorBindingMode-xref.html 0664 root bin 1832 23687 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/AnchorBindingMode.html 0664 root bin 3312 11071 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/BasicPaneFactory.html 0664 root bin 4116 22991 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/BasicToolBarFactory.html 0664 root bin 4043 16072 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/BasicViewFactory.html 0664 root bin 4347 43946 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/BorderType-xref.html 0664 root bin 1730 14813 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/BorderType.html 0664 root bin 3557 30329 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/Configuration.html 0664 root bin 3505 32873 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/ConfigurationChangeEvent-xref.html 0664 root bin 1924 35144 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/ConfigurationChangeEvent.html 0664 root bin 6760 52872 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/ConfigurationController.html 0664 root bin 3826 64123 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/ModuleController.html 0664 root bin 3908 3535 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/ResourceActivationMode-xref.html 0664 root bin 1700 13835 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/ResourceActivationMode.html 0664 root bin 3890 128 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/ResourceId.html 0664 root bin 6374 14572 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/TabBarButton-xref.html 0664 root bin 2052 41894 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/TabBarButton.html 0664 root bin 4834 14915 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfiguration-xref.html 0664 root bin 3139 10530 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfiguration.html 0664 root bin 10297 38524 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationChangeListener-xref.html 0664 root bin 2115 53800 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationChangeListener.html 0664 root bin 4660 4047 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationChangeRequest-xref.html 0664 root bin 1867 29718 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationChangeRequest.html 0664 root bin 4356 47209 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationController-xref.html 0664 root bin 2136 52480 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationController.html 0664 root bin 21312 54077 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationControllerBroadcaster-xref.html 0664 root bin 2136 52873 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationControllerBroadcaster.html 0664 root bin 6760 60738 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationControllerRequestQueue-xref.html 0664 root bin 2140 53401 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XConfigurationControllerRequestQueue.html 0664 root bin 5364 3603 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XControllerManager-xref.html 0664 root bin 1425 55323 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XControllerManager.html 0664 root bin 4656 3969 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XModuleController-xref.html 0664 root bin 2080 46448 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XModuleController.html 0664 root bin 3788 59780 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XPane-xref.html 0664 root bin 1373 49839 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XPane.html 0664 root bin 5967 42271 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XPaneBorderPainter-xref.html 0664 root bin 1425 55155 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XPaneBorderPainter.html 0664 root bin 12926 61493 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XRelocatableResource-xref.html 0664 root bin 1433 56119 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XRelocatableResource.html 0664 root bin 3568 38448 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResource-xref.html 0664 root bin 3183 10024 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResource.html 0664 root bin 4900 24072 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResourceFactory-xref.html 0664 root bin 2763 42163 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResourceFactory.html 0664 root bin 5924 49467 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResourceFactoryManager-xref.html 0664 root bin 2088 47709 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResourceFactoryManager.html 0664 root bin 8215 57334 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResourceId-xref.html 0664 root bin 4425 57968 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XResourceId.html 0664 root bin 14520 56679 1219950754
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XTabBar-xref.html 0664 root bin 1381 50511 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XTabBar.html 0664 root bin 8546 5447 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XToolBar-xref.html 0664 root bin 1385 51051 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XToolBar.html 0664 root bin 2665 26240 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XView-xref.html 0664 root bin 2100 46225 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/XView.html 0664 root bin 3090 64167 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/framework/module-ix.html 0664 root bin 11323 21876 1219950753
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/drawing/module-ix.html 0664 root bin 41892 19816 1219950745
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/Actions.html 0664 root bin 4043 11328 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/Aspects.html 0664 root bin 5032 26185 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/BaseStorage-xref.html 0664 root bin 1609 5217 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/BaseStorage.html 0664 root bin 4530 53978 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/DocumentCloser.html 0664 root bin 4639 1236 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/ElementModes.html 0664 root bin 6937 50567 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EmbedMapUnits.html 0664 root bin 8844 12139 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EmbedMisc.html 0664 root bin 15667 26861 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EmbedStates.html 0664 root bin 5914 32883 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EmbedUpdateModes.html 0664 root bin 3743 50186 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EmbedVerbs.html 0664 root bin 6411 5137 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EmbeddedObjectDescriptor-xref.html 0664 root bin 1317 46527 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EmbeddedObjectDescriptor.html 0664 root bin 5096 46953 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/EntryInitModes.html 0664 root bin 5987 44548 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/FileSystemStorage-xref.html 0664 root bin 1289 43815 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/FileSystemStorage.html 0664 root bin 4158 28314 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/FileSystemStorageFactory-xref.html 0664 root bin 1317 46727 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/FileSystemStorageFactory.html 0664 root bin 4307 41850 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/InsertedObjectInfo-xref.html 0664 root bin 1873 29506 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/InsertedObjectInfo.html 0664 root bin 3691 47713 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/InstanceLocker.html 0664 root bin 7375 42649 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/InvalidStorageException-xref.html 0664 root bin 5106 64449 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/InvalidStorageException.html 0664 root bin 2346 64461 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/LinkageMisuseException-xref.html 0664 root bin 1274 42650 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/LinkageMisuseException.html 0664 root bin 2245 56494 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/NeedsRunningStateException-xref.html 0664 root bin 1758 19256 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/NeedsRunningStateException.html 0664 root bin 2609 24825 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/NoVisualAreaSizeException-xref.html 0664 root bin 1286 43754 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/NoVisualAreaSizeException.html 0664 root bin 2208 54080 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/OLESimpleStorage.html 0664 root bin 5111 41854 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/ObjectSaveVetoException-xref.html 0664 root bin 1601 4667 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/ObjectSaveVetoException.html 0664 root bin 2274 59398 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StateChangeInProgressException-xref.html 0664 root bin 1306 45858 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StateChangeInProgressException.html 0664 root bin 3452 29535 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/Storage-xref.html 0664 root bin 1249 39699 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/Storage.html 0664 root bin 15113 5297 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StorageFactory-xref.html 0664 root bin 1277 42611 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StorageFactory.html 0664 root bin 4731 11295 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StorageStream-xref.html 0664 root bin 1273 42179 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StorageStream.html 0664 root bin 11731 31195 1219950755
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StorageWrappedTargetException-xref.html 0664 root bin 4920 48301 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/StorageWrappedTargetException.html 0664 root bin 2386 4268 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/UnreachableStateException-xref.html 0664 root bin 1718 14988 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/UnreachableStateException.html 0664 root bin 3632 42825 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/UseBackupException-xref.html 0664 root bin 1258 40930 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/UseBackupException.html 0664 root bin 3753 55165 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/VerbAttributes.html 0664 root bin 3639 40625 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/VerbDescriptor-xref.html 0664 root bin 1300 44102 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/VerbDescriptor.html 0664 root bin 4452 43500 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/VisualRepresentation-xref.html 0664 root bin 1687 12777 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/VisualRepresentation.html 0664 root bin 3492 30245 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/WrongStateException-xref.html 0664 root bin 6875 19693 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/WrongStateException.html 0664 root bin 2197 53071 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XActionsApproval-xref.html 0664 root bin 1752 17918 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XActionsApproval.html 0664 root bin 3861 313 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XClassifiedObject-xref.html 0664 root bin 2078 45726 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XClassifiedObject.html 0664 root bin 5267 48199 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XCommonEmbedPersist-xref.html 0664 root bin 1771 19732 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XCommonEmbedPersist.html 0664 root bin 7329 32001 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XComponentSupplier-xref.html 0664 root bin 1771 19718 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XComponentSupplier.html 0664 root bin 3394 22747 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedObjectClipboardCreator-xref.html 0664 root bin 1456 58702 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedObjectClipboardCreator.html 0664 root bin 5441 6890 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedObjectCreator-xref.html 0664 root bin 1420 55054 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedObjectCreator.html 0664 root bin 12131 60227 1219950756
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedObjectFactory-xref.html 0664 root bin 1420 55086 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedObjectFactory.html 0664 root bin 6430 26108 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedPersist-xref.html 0664 root bin 1396 52762 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbedPersist.html 0664 root bin 16666 56546 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbeddedClient-xref.html 0664 root bin 2070 44180 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbeddedClient.html 0664 root bin 5353 60839 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbeddedObject-xref.html 0664 root bin 2227 58817 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEmbeddedObject.html 0664 root bin 18662 22866 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEncryptionProtectedSource-xref.html 0664 root bin 2106 49390 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XEncryptionProtectedSource.html 0664 root bin 4558 57275 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XExtendedStorageStream-xref.html 0664 root bin 2056 47368 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XExtendedStorageStream.html 0664 root bin 5633 20494 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHatchWindow-xref.html 0664 root bin 1759 18634 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHatchWindow.html 0664 root bin 5335 60404 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHatchWindowController-xref.html 0664 root bin 1758 18753 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHatchWindowController.html 0664 root bin 5804 32853 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHatchWindowFactory-xref.html 0664 root bin 1420 55262 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHatchWindowFactory.html 0664 root bin 4366 41030 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHierarchicalStorageAccess-xref.html 0664 root bin 1448 58006 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XHierarchicalStorageAccess.html 0664 root bin 11513 17101 1219950757
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XInplaceClient-xref.html 0664 root bin 1400 53098 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XInplaceClient.html 0664 root bin 16999 11401 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XInplaceObject-xref.html 0664 root bin 1400 53066 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XInplaceObject.html 0664 root bin 7316 33171 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XInsertObjectDialog-xref.html 0664 root bin 1420 55150 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XInsertObjectDialog.html 0664 root bin 5038 35416 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XLinkCreator-xref.html 0664 root bin 1392 52342 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XLinkCreator.html 0664 root bin 5725 27648 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XLinkFactory-xref.html 0664 root bin 1392 52374 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XLinkFactory.html 0664 root bin 5772 32320 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XLinkageSupport-xref.html 0664 root bin 1404 53726 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XLinkageSupport.html 0664 root bin 8237 45674 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XOLESimpleStorage-xref.html 0664 root bin 1719 14987 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XOLESimpleStorage.html 0664 root bin 4878 21633 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XOptimizedStorage-xref.html 0664 root bin 1769 19975 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XOptimizedStorage.html 0664 root bin 16708 12765 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XPackageStructureCreator-xref.html 0664 root bin 1440 57394 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XPackageStructureCreator.html 0664 root bin 3975 7603 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XPersistanceHolder-xref.html 0664 root bin 1416 54906 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XPersistanceHolder.html 0664 root bin 5054 33338 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XRelationshipAccess-xref.html 0664 root bin 1420 55310 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XRelationshipAccess.html 0664 root bin 19941 61140 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStateChangeBroadcaster-xref.html 0664 root bin 1740 16916 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStateChangeBroadcaster.html 0664 root bin 4179 27616 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStateChangeListener-xref.html 0664 root bin 1970 38545 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStateChangeListener.html 0664 root bin 6244 4336 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStorage-xref.html 0664 root bin 12275 57796 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStorage.html 0664 root bin 39006 36737 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStorageRawAccess-xref.html 0664 root bin 1412 54338 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XStorageRawAccess.html 0664 root bin 11889 54319 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransactedObject-xref.html 0664 root bin 2131 50712 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransactedObject.html 0664 root bin 4399 41490 1219950758
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransactionBroadcaster-xref.html 0664 root bin 2043 43438 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransactionBroadcaster.html 0664 root bin 4197 30200 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransactionListener-xref.html 0664 root bin 1970 39427 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransactionListener.html 0664 root bin 6831 50841 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransferableSupplier-xref.html 0664 root bin 1428 56242 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XTransferableSupplier.html 0664 root bin 3861 322 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XVisualObject-xref.html 0664 root bin 2212 57636 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XVisualObject.html 0664 root bin 9718 44508 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XWindowSupplier-xref.html 0664 root bin 1404 53806 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/XWindowSupplier.html 0664 root bin 3237 9469 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/embed/module-ix.html 0664 root bin 17102 9295 1219950755
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DataAwareControlModel-xref.html 0664 root bin 5505 31141 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DataAwareControlModel.html 0664 root bin 13436 56139 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DataSelectionType-xref.html 0664 root bin 1285 42633 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DataSelectionType.html 0664 root bin 3779 48830 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DatabaseDeleteEvent-xref.html 0664 root bin 1320 45878 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DatabaseDeleteEvent.html 0664 root bin 3056 58673 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DatabaseParameterEvent-xref.html 0664 root bin 1706 14289 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/DatabaseParameterEvent.html 0664 root bin 3856 65269 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/ErrorEvent-xref.html 0664 root bin 1614 5055 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/ErrorEvent.html 0664 root bin 3008 54151 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormButtonType-xref.html 0664 root bin 1881 29553 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormButtonType.html 0664 root bin 4894 18959 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormComponent-xref.html 0664 root bin 9943 39949 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormComponent.html 0664 root bin 7050 15677 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormComponentType.html 0664 root bin 15883 17523 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormComponents-xref.html 0664 root bin 3076 6425 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormComponents.html 0664 root bin 5554 25688 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormControlModel-xref.html 0664 root bin 9066 25794 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormControlModel.html 0664 root bin 7110 18752 1219950759
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormController-xref.html 0664 root bin 2012 40417 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormController.html 0664 root bin 11708 42422 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormControllerDispatcher-xref.html 0664 root bin 1741 17697 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormControllerDispatcher.html 0664 root bin 11604 33946 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormSubmitEncoding-xref.html 0664 root bin 1695 12143 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormSubmitEncoding.html 0664 root bin 3951 2523 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormSubmitMethod-xref.html 0664 root bin 1683 10955 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/FormSubmitMethod.html 0664 root bin 3198 4830 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/Forms-xref.html 0664 root bin 1597 4100 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/Forms.html 0664 root bin 2746 36579 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/ListSourceType-xref.html 0664 root bin 1918 33011 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/ListSourceType.html 0664 root bin 5793 25125 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/NavigationBarMode-xref.html 0664 root bin 1697 12360 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/NavigationBarMode.html 0664 root bin 4662 65491 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/PropertyBrowserController-xref.html 0664 root bin 1321 47475 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/PropertyBrowserController.html 0664 root bin 8423 10190 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/TabulatorCycle-xref.html 0664 root bin 1661 8868 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/TabulatorCycle.html 0664 root bin 4823 13845 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XApproveActionBroadcaster-xref.html 0664 root bin 1948 36475 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XApproveActionBroadcaster.html 0664 root bin 4737 14337 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XApproveActionListener-xref.html 0664 root bin 1998 41961 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XApproveActionListener.html 0664 root bin 4478 52976 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XBoundComponent-xref.html 0664 root bin 5772 55008 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XBoundComponent.html 0664 root bin 4691 7893 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XBoundControl-xref.html 0664 root bin 3130 10441 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XBoundControl.html 0664 root bin 3831 59529 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XChangeBroadcaster-xref.html 0664 root bin 1904 31759 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XChangeBroadcaster.html 0664 root bin 4514 55145 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XChangeListener-xref.html 0664 root bin 1900 31363 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XChangeListener.html 0664 root bin 4182 25531 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XConfirmDeleteBroadcaster-xref.html 0664 root bin 1872 29125 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XConfirmDeleteBroadcaster.html 0664 root bin 4938 31397 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XConfirmDeleteListener-xref.html 0664 root bin 1998 41597 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XConfirmDeleteListener.html 0664 root bin 4305 37336 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDatabaseParameterBroadcaster-xref.html 0664 root bin 2801 44934 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDatabaseParameterBroadcaster.html 0664 root bin 5419 10249 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDatabaseParameterBroadcaster2-xref.html 0664 root bin 1464 59462 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDatabaseParameterBroadcaster2.html 0664 root bin 6308 24677 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDatabaseParameterListener-xref.html 0664 root bin 2874 55781 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDatabaseParameterListener.html 0664 root bin 4457 52850 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDeleteListener-xref.html 0664 root bin 1404 53602 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XDeleteListener.html 0664 root bin 5298 55449 1219950760
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XErrorBroadcaster-xref.html 0664 root bin 1412 54478 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XErrorBroadcaster.html 0664 root bin 4288 35459 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XErrorListener-xref.html 0664 root bin 1886 30523 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XErrorListener.html 0664 root bin 4357 40528 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XForm-xref.html 0664 root bin 3094 4648 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XForm.html 0664 root bin 3027 59781 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormComponent-xref.html 0664 root bin 9777 21814 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormComponent.html 0664 root bin 2685 29426 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormController-xref.html 0664 root bin 2691 33999 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormController.html 0664 root bin 7076 19443 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormControllerListener-xref.html 0664 root bin 1922 34343 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormControllerListener.html 0664 root bin 5520 12234 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormsSupplier-xref.html 0664 root bin 2563 22283 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormsSupplier.html 0664 root bin 4223 28446 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormsSupplier2-xref.html 0664 root bin 1404 53554 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XFormsSupplier2.html 0664 root bin 4378 45108 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGrid-xref.html 0664 root bin 1886 30055 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGrid.html 0664 root bin 4851 22090 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGridColumnFactory-xref.html 0664 root bin 1797 22531 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGridColumnFactory.html 0664 root bin 4792 13046 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGridFieldDataSupplier-xref.html 0664 root bin 1954 36911 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGridFieldDataSupplier.html 0664 root bin 6014 57417 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGridPeer-xref.html 0664 root bin 1380 51014 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XGridPeer.html 0664 root bin 4675 3176 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XImageProducerSupplier-xref.html 0664 root bin 2596 27403 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XImageProducerSupplier.html 0664 root bin 3236 10035 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XInsertListener-xref.html 0664 root bin 1404 53738 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XInsertListener.html 0664 root bin 5395 63692 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XLoadListener-xref.html 0664 root bin 5911 64512 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XLoadListener.html 0664 root bin 8425 58847 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XLoadable-xref.html 0664 root bin 2221 58855 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XLoadable.html 0664 root bin 7296 25205 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XPositioningListener-xref.html 0664 root bin 1424 55906 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XPositioningListener.html 0664 root bin 4433 48075 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XReset-xref.html 0664 root bin 7673 28543 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XReset.html 0664 root bin 4803 13938 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XResetListener-xref.html 0664 root bin 1820 23645 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XResetListener.html 0664 root bin 5498 6612 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XRestoreListener-xref.html 0664 root bin 1408 54182 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XRestoreListener.html 0664 root bin 4500 53632 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XSubmit-xref.html 0664 root bin 2093 46771 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XSubmit.html 0664 root bin 5910 42117 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XSubmitListener-xref.html 0664 root bin 1834 25227 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XSubmitListener.html 0664 root bin 4634 65478 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XUpdateBroadcaster-xref.html 0664 root bin 5971 5518 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XUpdateBroadcaster.html 0664 root bin 4783 15417 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XUpdateListener-xref.html 0664 root bin 2256 62455 1219950761
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/XUpdateListener.html 0664 root bin 5475 6062 1219950761
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableControlModel-xref.html 0664 root bin 3128 11909 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableControlModel.html 0664 root bin 5448 11762 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDataAwareControlModel-xref.html 0664 root bin 2681 36544 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDataAwareControlModel.html 0664 root bin 8867 53856 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseCheckBox-xref.html 0664 root bin 1326 46612 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseCheckBox.html 0664 root bin 6881 3898 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseComboBox-xref.html 0664 root bin 1326 46684 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseComboBox.html 0664 root bin 3848 797 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseDateField-xref.html 0664 root bin 1330 46976 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseDateField.html 0664 root bin 3714 53191 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseFormattedField-xref.html 0664 root bin 1350 49184 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseFormattedField.html 0664 root bin 3539 40541 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseListBox-xref.html 0664 root bin 1322 46348 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseListBox.html 0664 root bin 4398 51485 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseNumericField-xref.html 0664 root bin 1342 48340 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseNumericField.html 0664 root bin 3515 38081 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseRadioButton-xref.html 0664 root bin 1338 48036 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseRadioButton.html 0664 root bin 6582 45623 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseTextField-xref.html 0664 root bin 1330 47132 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseTextField.html 0664 root bin 3790 61402 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseTimeField-xref.html 0664 root bin 1330 47044 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableDatabaseTimeField.html 0664 root bin 3689 51375 1219950762
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableIntegerValueRange-xref.html 0664 root bin 1330 47236 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/BindableIntegerValueRange.html 0664 root bin 3679 52843 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/IncompatibleTypesException-xref.html 0664 root bin 2193 56245 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/IncompatibleTypesException.html 0664 root bin 2367 1464 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/InvalidBindingStateException-xref.html 0664 root bin 1620 6219 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/InvalidBindingStateException.html 0664 root bin 2339 64578 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/ListEntryEvent-xref.html 0664 root bin 1929 34258 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/ListEntryEvent.html 0664 root bin 4648 62736 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/ListEntrySource-xref.html 0664 root bin 2165 52886 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/ListEntrySource.html 0664 root bin 3584 44584 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/ValueBinding-xref.html 0664 root bin 2282 62300 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/ValueBinding.html 0664 root bin 7854 21715 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XBindableValue-xref.html 0664 root bin 3360 32164 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XBindableValue.html 0664 root bin 5209 50224 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XListEntryListener-xref.html 0664 root bin 1921 33790 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XListEntryListener.html 0664 root bin 8314 57220 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XListEntrySink-xref.html 0664 root bin 1896 31224 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XListEntrySink.html 0664 root bin 4758 12139 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XListEntrySource-xref.html 0664 root bin 3150 7948 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XListEntrySource.html 0664 root bin 8594 12996 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XValueBinding-xref.html 0664 root bin 3387 27511 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/XValueBinding.html 0664 root bin 7885 21074 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/binding/module-ix.html 0664 root bin 8487 26686 1219950761
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/CheckBox-xref.html 0664 root bin 1722 14452 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/CheckBox.html 0664 root bin 5645 18272 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ComboBox-xref.html 0664 root bin 1722 14596 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ComboBox.html 0664 root bin 4824 14690 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/CommandButton-xref.html 0664 root bin 1282 42572 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/CommandButton.html 0664 root bin 6944 1111 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/CurrencyField-xref.html 0664 root bin 1595 3906 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/CurrencyField.html 0664 root bin 4770 10759 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DataForm-xref.html 0664 root bin 2047 45121 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DataForm.html 0664 root bin 16322 38239 1219950763
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseCheckBox-xref.html 0664 root bin 1697 12586 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseCheckBox.html 0664 root bin 3264 14024 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseComboBox-xref.html 0664 root bin 1697 12694 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseComboBox.html 0664 root bin 6518 32830 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseCurrencyField-xref.html 0664 root bin 1314 45680 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseCurrencyField.html 0664 root bin 2923 51050 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseDateField-xref.html 0664 root bin 1703 13132 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseDateField.html 0664 root bin 2896 47787 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseFormattedField-xref.html 0664 root bin 1733 16444 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseFormattedField.html 0664 root bin 4536 59957 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseImageControl-xref.html 0664 root bin 1310 45252 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseImageControl.html 0664 root bin 9166 64014 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseListBox-xref.html 0664 root bin 1691 12190 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseListBox.html 0664 root bin 11047 38353 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseNumericField-xref.html 0664 root bin 1721 15178 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseNumericField.html 0664 root bin 2890 47881 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabasePatternField-xref.html 0664 root bin 1310 45244 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabasePatternField.html 0664 root bin 4437 51287 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseRadioButton-xref.html 0664 root bin 1715 14722 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseRadioButton.html 0664 root bin 2923 50416 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseTextField-xref.html 0664 root bin 1703 13366 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseTextField.html 0664 root bin 4408 47941 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseTimeField-xref.html 0664 root bin 1703 13234 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DatabaseTimeField.html 0664 root bin 2863 45279 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DateField-xref.html 0664 root bin 2229 59281 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/DateField.html 0664 root bin 4983 28236 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/FileControl-xref.html 0664 root bin 1274 41700 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/FileControl.html 0664 root bin 4827 15237 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/FixedText-xref.html 0664 root bin 1266 40884 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/FixedText.html 0664 root bin 3190 7469 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/Form-xref.html 0664 root bin 2103 47139 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/Form.html 0664 root bin 4646 3668 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/FormattedField-xref.html 0664 root bin 2124 50154 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/FormattedField.html 0664 root bin 3653 46469 1219950764
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/GridControl-xref.html 0664 root bin 1274 41724 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/GridControl.html 0664 root bin 12108 54452 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/GroupBox-xref.html 0664 root bin 1262 40504 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/GroupBox.html 0664 root bin 2859 44322 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/HTMLForm-xref.html 0664 root bin 1785 20026 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/HTMLForm.html 0664 root bin 7166 20240 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/HiddenControl-xref.html 0664 root bin 1282 42516 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/HiddenControl.html 0664 root bin 3779 57802 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ImageButton-xref.html 0664 root bin 1274 41692 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ImageButton.html 0664 root bin 7957 22743 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ListBox-xref.html 0664 root bin 1714 13924 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ListBox.html 0664 root bin 5469 4922 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/NavigationToolBar-xref.html 0664 root bin 1298 44140 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/NavigationToolBar.html 0664 root bin 12266 996 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/NumericField-xref.html 0664 root bin 2148 52403 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/NumericField.html 0664 root bin 4834 15996 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/PatternField-xref.html 0664 root bin 1589 3252 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/PatternField.html 0664 root bin 4848 17587 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/RadioButton-xref.html 0664 root bin 1746 17300 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/RadioButton.html 0664 root bin 7385 39089 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/RichTextControl-xref.html 0664 root bin 1797 21768 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/RichTextControl.html 0664 root bin 6503 30049 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ScrollBar-xref.html 0664 root bin 1266 40816 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/ScrollBar.html 0664 root bin 4925 23146 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/SpinButton-xref.html 0664 root bin 1270 41400 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/SpinButton.html 0664 root bin 4922 23125 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/SubmitButton-xref.html 0664 root bin 1278 42272 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/SubmitButton.html 0664 root bin 3735 56284 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/TextField-xref.html 0664 root bin 2513 20126 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/TextField.html 0664 root bin 5528 10241 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/TimeField-xref.html 0664 root bin 1730 15316 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/TimeField.html 0664 root bin 4975 28020 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/component/module-ix.html 0664 root bin 10133 34359 1219950763
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/CheckBox-xref.html 0664 root bin 1262 40316 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/CheckBox.html 0664 root bin 3423 26011 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ComboBox-xref.html 0664 root bin 1262 40388 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ComboBox.html 0664 root bin 3355 20046 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/CommandButton-xref.html 0664 root bin 1282 42572 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/CommandButton.html 0664 root bin 4412 48842 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/CurrencyField-xref.html 0664 root bin 1282 42524 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/CurrencyField.html 0664 root bin 3508 34504 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/DateField-xref.html 0664 root bin 1266 40680 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/DateField.html 0664 root bin 3473 30387 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/FormattedField-xref.html 0664 root bin 1286 42888 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/FormattedField.html 0664 root bin 3905 4114 1219950765
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/GridControl-xref.html 0664 root bin 1589 3432 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/GridControl.html 0664 root bin 8155 46357 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/GroupBox-xref.html 0664 root bin 1262 40504 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/GroupBox.html 0664 root bin 2877 45258 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ImageButton-xref.html 0664 root bin 1274 41692 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ImageButton.html 0664 root bin 4492 55956 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ImageControl-xref.html 0664 root bin 1278 42096 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ImageControl.html 0664 root bin 3701 51882 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/InteractionGridControl-xref.html 0664 root bin 1318 46332 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/InteractionGridControl.html 0664 root bin 4177 31962 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ListBox-xref.html 0664 root bin 1258 40052 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/ListBox.html 0664 root bin 3975 8091 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/NavigationToolBar-xref.html 0664 root bin 1298 44140 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/NavigationToolBar.html 0664 root bin 2953 52342 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/NumericField-xref.html 0664 root bin 1278 42044 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/NumericField.html 0664 root bin 3481 31815 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/PatternField-xref.html 0664 root bin 1278 42088 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/PatternField.html 0664 root bin 3501 33722 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/RadioButton-xref.html 0664 root bin 1274 41740 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/RadioButton.html 0664 root bin 3450 29215 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/SubmitButton-xref.html 0664 root bin 1278 42272 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/SubmitButton.html 0664 root bin 4627 5571 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/TextField-xref.html 0664 root bin 1266 40836 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/TextField.html 0664 root bin 4227 30613 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/TimeField-xref.html 0664 root bin 1266 40748 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/TimeField.html 0664 root bin 3450 28560 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/control/module-ix.html 0664 root bin 6234 17521 1219950765
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/ButtonNavigationHandler-xref.html 0664 root bin 1322 46728 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/ButtonNavigationHandler.html 0664 root bin 4236 36761 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/CellBindingPropertyHandler-xref.html 0664 root bin 1334 47832 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/CellBindingPropertyHandler.html 0664 root bin 4659 6819 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.html 0664 root bin 6803 65195 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/EditPropertyHandler-xref.html 0664 root bin 1306 45060 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/EditPropertyHandler.html 0664 root bin 4664 7503 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/EventHandler-xref.html 0664 root bin 1278 42080 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/EventHandler.html 0664 root bin 3881 2766 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/FormComponentPropertyHandler-xref.html 0664 root bin 1342 48904 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/FormComponentPropertyHandler.html 0664 root bin 3059 62429 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/SubmissionPropertyHandler-xref.html 0664 root bin 1330 47772 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/SubmissionPropertyHandler.html 0664 root bin 4408 51990 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/XMLFormsPropertyHandler-xref.html 0664 root bin 1322 46540 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/XMLFormsPropertyHandler.html 0664 root bin 5176 51752 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/XSDValidationPropertyHandler-xref.html 0664 root bin 1342 48596 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/XSDValidationPropertyHandler.html 0664 root bin 5545 20618 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/inspection/module-ix.html 0664 root bin 6746 3272 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/module-ix.html 0664 root bin 15590 61015 1219950759
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/FeatureState-xref.html 0664 root bin 1622 5279 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/FeatureState.html 0664 root bin 3769 53655 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/FormFeature.html 0664 root bin 15678 34396 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/FormOperations.html 0664 root bin 5914 43833 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/XFeatureInvalidation-xref.html 0664 root bin 1433 56151 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/XFeatureInvalidation.html 0664 root bin 4821 16818 1219950766
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/XFormOperations-xref.html 0664 root bin 2108 47950 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/XFormOperations.html 0664 root bin 22801 60793 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/runtime/module-ix.html 0664 root bin 3889 4143 1219950766
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission/XSubmission-xref.html 0664 root bin 2157 52057 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission/XSubmission.html 0664 root bin 8399 1202 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission/XSubmissionSupplier-xref.html 0664 root bin 1818 24220 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission/XSubmissionSupplier.html 0664 root bin 3353 21518 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission/XSubmissionVetoListener-xref.html 0664 root bin 1931 35116 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission/XSubmissionVetoListener.html 0664 root bin 5155 42246 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/submission/module-ix.html 0664 root bin 2705 34267 1219950767
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/ValidatableBindableControlModel-xref.html 0664 root bin 1726 16508 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/ValidatableBindableControlModel.html 0664 root bin 4931 33609 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/ValidatableControlModel-xref.html 0664 root bin 2146 53201 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/ValidatableControlModel.html 0664 root bin 5596 29825 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XFormComponentValidityListener-xref.html 0664 root bin 2417 13416 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XFormComponentValidityListener.html 0664 root bin 4719 7606 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidatable-xref.html 0664 root bin 2587 25410 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidatable.html 0664 root bin 5168 44918 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidatableFormComponent-xref.html 0664 root bin 2207 58513 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidatableFormComponent.html 0664 root bin 9787 58363 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidator-xref.html 0664 root bin 2882 48392 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidator.html 0664 root bin 8044 35238 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidityConstraintListener-xref.html 0664 root bin 2365 8215 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/XValidityConstraintListener.html 0664 root bin 4750 10455 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/form/validation/module-ix.html 0664 root bin 3960 15839 1219950767
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/AccessibleFormulaText-xref.html 0664 root bin 1305 45411 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/AccessibleFormulaText.html 0664 root bin 3897 8949 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/AccessibleFormulaView-xref.html 0664 root bin 1305 45371 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/AccessibleFormulaView.html 0664 root bin 4246 39749 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/FormulaProperties-xref.html 0664 root bin 1713 15497 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/FormulaProperties.html 0664 root bin 37280 24536 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/SymbolDescriptor-xref.html 0664 root bin 1308 45026 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/SymbolDescriptor.html 0664 root bin 10461 21402 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/formula/module-ix.html 0664 root bin 2915 52140 1219950767
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/BorderWidths-xref.html 0664 root bin 1986 37328 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/BorderWidths.html 0664 root bin 4234 25821 1219950767
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/CommandGroup.html 0664 root bin 15487 36950 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Components-xref.html 0664 root bin 1261 41047 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Components.html 0664 root bin 2712 33085 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ContentHandler-xref.html 0664 root bin 1665 10740 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ContentHandler.html 0664 root bin 3135 5939 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ContentHandlerFactory-xref.html 0664 root bin 1305 45443 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ContentHandlerFactory.html 0664 root bin 4346 46038 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ControlCommand-xref.html 0664 root bin 1300 44046 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ControlCommand.html 0664 root bin 3772 55706 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ControlEvent-xref.html 0664 root bin 1664 10365 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ControlEvent.html 0664 root bin 4328 36111 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Controller-xref.html 0664 root bin 4287 51604 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Controller.html 0664 root bin 5773 41135 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Desktop-xref.html 0664 root bin 4238 51117 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Desktop.html 0664 root bin 4581 1682 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DesktopTask-xref.html 0664 root bin 1265 41331 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DesktopTask.html 0664 root bin 7894 10784 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DesktopTasks-xref.html 0664 root bin 1269 41791 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DesktopTasks.html 0664 root bin 2438 8931 1219950768
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchDescriptor-xref.html 0664 root bin 1316 45770 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchDescriptor.html 0664 root bin 5117 38477 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchHelper-xref.html 0664 root bin 1277 42495 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchHelper.html 0664 root bin 2669 28887 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchInformation-xref.html 0664 root bin 1320 46182 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchInformation.html 0664 root bin 3460 28301 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchProvider-xref.html 0664 root bin 1285 43435 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchProvider.html 0664 root bin 3598 47340 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchRecorder-xref.html 0664 root bin 1285 43351 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchRecorder.html 0664 root bin 3623 49691 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchRecorderSupplier-xref.html 0664 root bin 1317 46759 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchRecorderSupplier.html 0664 root bin 3185 11221 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchResultEvent-xref.html 0664 root bin 2206 58331 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchResultEvent.html 0664 root bin 3914 2316 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchResultState.html 0664 root bin 3606 38139 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchStatement-xref.html 0664 root bin 1312 45346 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DispatchStatement.html 0664 root bin 5848 37886 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DocumentTemplates-xref.html 0664 root bin 1289 43895 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DocumentTemplates.html 0664 root bin 2415 8799 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DoubleInitializationException-xref.html 0664 root bin 2555 23389 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/DoubleInitializationException.html 0664 root bin 2067 42992 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FeatureStateEvent-xref.html 0664 root bin 2369 7789 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FeatureStateEvent.html 0664 root bin 5894 39732 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Frame-xref.html 0664 root bin 3133 11958 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Frame.html 0664 root bin 11356 4857 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameAction-xref.html 0664 root bin 1581 1453 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameAction.html 0664 root bin 9400 63552 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameActionEvent-xref.html 0664 root bin 2262 62594 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameActionEvent.html 0664 root bin 3575 37951 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameControl-xref.html 0664 root bin 1269 41711 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameControl.html 0664 root bin 4332 39708 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameLoader-xref.html 0664 root bin 2804 47095 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameLoader.html 0664 root bin 5136 52540 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameLoaderFactory-xref.html 0664 root bin 2019 43432 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameLoaderFactory.html 0664 root bin 4442 54254 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FrameSearchFlag.html 0664 root bin 9083 42487 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FramesContainer-xref.html 0664 root bin 1281 42947 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/FramesContainer.html 0664 root bin 2518 16450 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/GlobalEventBroadcaster-xref.html 0664 root bin 1673 11704 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/GlobalEventBroadcaster.html 0664 root bin 3163 7708 1219950769
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/IllegalArgumentIOException-xref.html 0664 root bin 1290 44074 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/IllegalArgumentIOException.html 0664 root bin 2156 49335 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/LayoutManager-xref.html 0664 root bin 1273 42147 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/LayoutManager.html 0664 root bin 4957 32077 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/LayoutManagerEvents.html 0664 root bin 7993 13559 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/MediaTypeDetectionHelper-xref.html 0664 root bin 1317 46531 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/MediaTypeDetectionHelper.html 0664 root bin 2619 26123 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ModuleManager-xref.html 0664 root bin 1273 42051 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ModuleManager.html 0664 root bin 3243 12727 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/PopupMenuController-xref.html 0664 root bin 1297 44787 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/PopupMenuController.html 0664 root bin 5881 49225 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/PopupMenuControllerFactory-xref.html 0664 root bin 1325 47699 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/PopupMenuControllerFactory.html 0664 root bin 3935 11982 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ProtocolHandler-xref.html 0664 root bin 1897 32450 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ProtocolHandler.html 0664 root bin 4430 56170 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/SessionManager-xref.html 0664 root bin 1277 42555 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/SessionManager.html 0664 root bin 4196 39314 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Settings-xref.html 0664 root bin 1253 40195 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Settings.html 0664 root bin 2401 4897 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/StatusbarController-xref.html 0664 root bin 1297 44851 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/StatusbarController.html 0664 root bin 5994 61782 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/StatusbarControllerFactory-xref.html 0664 root bin 1325 47763 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/StatusbarControllerFactory.html 0664 root bin 3935 10910 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/SynchronousFrameLoader-xref.html 0664 root bin 2144 55609 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/SynchronousFrameLoader.html 0664 root bin 5147 53909 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Task-xref.html 0664 root bin 1237 38411 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/Task.html 0664 root bin 3019 55543 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TemplateAccess-xref.html 0664 root bin 1277 42487 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TemplateAccess.html 0664 root bin 2540 18442 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TerminationVetoException-xref.html 0664 root bin 1626 7889 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TerminationVetoException.html 0664 root bin 2622 26431 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TitleChangedEvent-xref.html 0664 root bin 1660 9403 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TitleChangedEvent.html 0664 root bin 2979 51507 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ToolbarController-xref.html 0664 root bin 1289 43931 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/ToolbarController.html 0664 root bin 6061 1131 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TransientDocumentsDocumentContentFactory-xref.html 0664 root bin 1381 53551 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/TransientDocumentsDocumentContentFactory.html 0664 root bin 2728 36172 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/UnknownModuleException-xref.html 0664 root bin 1590 3927 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/UnknownModuleException.html 0664 root bin 2248 57095 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/UntitledNumbersConst.html 0664 root bin 2404 3549 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/WindowArrange.html 0664 root bin 5005 21363 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XBorderResizeListener-xref.html 0664 root bin 1942 36287 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XBorderResizeListener.html 0664 root bin 4376 43013 1219950770
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XBrowseHistoryRegistry-xref.html 0664 root bin 1432 56818 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XBrowseHistoryRegistry.html 0664 root bin 4079 14509 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XComponentLoader-xref.html 0664 root bin 4603 14532 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XComponentLoader.html 0664 root bin 9988 16750 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XComponentRegistry-xref.html 0664 root bin 1416 55086 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XComponentRegistry.html 0664 root bin 3299 13451 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XConfigManager-xref.html 0664 root bin 1400 53058 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XConfigManager.html 0664 root bin 7813 14212 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XControlNotificationListener-xref.html 0664 root bin 1456 59190 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XControlNotificationListener.html 0664 root bin 3366 21865 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XController-xref.html 0664 root bin 10247 56074 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XController.html 0664 root bin 10193 14503 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XController2-xref.html 0664 root bin 1838 24948 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XController2.html 0664 root bin 4980 28728 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XControllerBorder-xref.html 0664 root bin 1412 54534 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XControllerBorder.html 0664 root bin 6277 11088 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDesktop-xref.html 0664 root bin 3049 1855 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDesktop.html 0664 root bin 10553 59840 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDesktopTask-xref.html 0664 root bin 1689 12383 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDesktopTask.html 0664 root bin 5395 58773 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatch-xref.html 0664 root bin 3846 5685 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatch.html 0664 root bin 8992 50233 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchHelper-xref.html 0664 root bin 1707 14129 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchHelper.html 0664 root bin 4649 2798 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchInformationProvider-xref.html 0664 root bin 1780 21189 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchInformationProvider.html 0664 root bin 4838 22607 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchProvider-xref.html 0664 root bin 8231 14997 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchProvider.html 0664 root bin 6261 12846 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchProviderInterception-xref.html 0664 root bin 3191 17939 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchProviderInterception.html 0664 root bin 5961 65015 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchProviderInterceptor-xref.html 0664 root bin 2963 62094 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchProviderInterceptor.html 0664 root bin 9162 14648 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchRecorder-xref.html 0664 root bin 2610 28246 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchRecorder.html 0664 root bin 8920 39675 1219950771
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchRecorderSupplier-xref.html 0664 root bin 2074 46188 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchRecorderSupplier.html 0664 root bin 7593 62948 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchResultListener-xref.html 0664 root bin 2168 55104 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDispatchResultListener.html 0664 root bin 4133 24101 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDocumentTemplates-xref.html 0664 root bin 1778 20967 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XDocumentTemplates.html 0664 root bin 12661 26939 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XExtendedFilterDetection-xref.html 0664 root bin 1440 57302 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XExtendedFilterDetection.html 0664 root bin 3976 9041 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFilterDetect-xref.html 0664 root bin 1396 52730 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFilterDetect.html 0664 root bin 3858 61538 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrame-xref.html 0664 root bin 7054 25476 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrame.html 0664 root bin 27524 58555 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameActionListener-xref.html 0664 root bin 2576 23636 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameActionListener.html 0664 root bin 4369 43842 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameLoader-xref.html 0664 root bin 2826 45657 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameLoader.html 0664 root bin 5655 22572 1219950772
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameLoaderQuery-xref.html 0664 root bin 1412 54366 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameLoaderQuery.html 0664 root bin 6765 53571 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameSetModel-xref.html 0664 root bin 1400 53022 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrameSetModel.html 0664 root bin 3614 38684 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrames-xref.html 0664 root bin 2952 57855 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFrames.html 0664 root bin 6935 63896 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFramesSupplier-xref.html 0664 root bin 3327 23608 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XFramesSupplier.html 0664 root bin 7722 4511 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XInplaceLayout-xref.html 0664 root bin 1701 13611 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XInplaceLayout.html 0664 root bin 4285 34456 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XInterceptorInfo-xref.html 0664 root bin 1408 54122 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XInterceptorInfo.html 0664 root bin 3899 5510 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLayoutManager-xref.html 0664 root bin 2476 14098 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLayoutManager.html 0664 root bin 42011 5851 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLayoutManagerEventBroadcaster-xref.html 0664 root bin 1765 20183 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLayoutManagerEventBroadcaster.html 0664 root bin 4848 23559 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLayoutManagerListener-xref.html 0664 root bin 2048 47073 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLayoutManagerListener.html 0664 root bin 4948 27453 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLoadEventListener-xref.html 0664 root bin 1724 14935 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLoadEventListener.html 0664 root bin 4813 12827 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLoadable-xref.html 0664 root bin 2145 51390 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XLoadable.html 0664 root bin 5039 33625 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XMenuBarAcceptor-xref.html 0664 root bin 1408 53866 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XMenuBarAcceptor.html 0664 root bin 3679 47985 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XMenuBarMergingAcceptor-xref.html 0664 root bin 1737 17107 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XMenuBarMergingAcceptor.html 0664 root bin 4916 24457 1219950773
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModel-xref.html 0664 root bin 12494 48907 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModel.html 0664 root bin 18322 9931 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModel2-xref.html 0664 root bin 1372 50058 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModel2.html 0664 root bin 10917 21338 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModule-xref.html 0664 root bin 1372 50326 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModule.html 0664 root bin 4195 25653 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModuleManager-xref.html 0664 root bin 1701 13463 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XModuleManager.html 0664 root bin 6173 4215 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XNotifyingDispatch-xref.html 0664 root bin 2222 59927 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XNotifyingDispatch.html 0664 root bin 4985 32073 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XPopupMenuController-xref.html 0664 root bin 1737 17567 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XPopupMenuController.html 0664 root bin 5422 5525 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XRecordableDispatch-xref.html 0664 root bin 1420 55178 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XRecordableDispatch.html 0664 root bin 5638 27154 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSessionManagerClient-xref.html 0664 root bin 1731 16647 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSessionManagerClient.html 0664 root bin 9072 63738 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSessionManagerListener-xref.html 0664 root bin 2399 13148 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSessionManagerListener.html 0664 root bin 8427 7940 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStatusListener-xref.html 0664 root bin 2852 50607 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStatusListener.html 0664 root bin 4281 36512 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStatusbarController-xref.html 0664 root bin 1737 17663 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStatusbarController.html 0664 root bin 12473 18904 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStorable-xref.html 0664 root bin 6045 7586 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStorable.html 0664 root bin 12380 9760 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStorable2-xref.html 0664 root bin 1384 51382 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XStorable2.html 0664 root bin 4795 12564 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSubToolbarController-xref.html 0664 root bin 1737 17475 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSubToolbarController.html 0664 root bin 6625 41255 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSynchronousDispatch-xref.html 0664 root bin 1424 55914 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSynchronousDispatch.html 0664 root bin 3966 9877 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSynchronousFrameLoader-xref.html 0664 root bin 2162 54385 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XSynchronousFrameLoader.html 0664 root bin 5155 43822 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTask-xref.html 0664 root bin 1975 35904 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTask.html 0664 root bin 6374 9529 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTasksSupplier-xref.html 0664 root bin 1400 53350 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTasksSupplier.html 0664 root bin 4458 48471 1219950774
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTerminateListener-xref.html 0664 root bin 2544 21190 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTerminateListener.html 0664 root bin 6063 60252 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTerminateListener2-xref.html 0664 root bin 1420 55170 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTerminateListener2.html 0664 root bin 4942 29373 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTitle-xref.html 0664 root bin 1788 21187 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTitle.html 0664 root bin 3609 38559 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTitleChangeBroadcaster-xref.html 0664 root bin 1856 28035 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTitleChangeBroadcaster.html 0664 root bin 4000 10503 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTitleChangeListener-xref.html 0664 root bin 1970 38559 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTitleChangeListener.html 0664 root bin 3805 57639 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XToolbarController-xref.html 0664 root bin 1725 16283 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XToolbarController.html 0664 root bin 8215 44418 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XToolbarControllerListener-xref.html 0664 root bin 1448 58354 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XToolbarControllerListener.html 0664 root bin 3962 9619 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTransientDocumentsDocumentContentFactory-xref.html 0664 root bin 1863 30713 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XTransientDocumentsDocumentContentFactory.html 0664 root bin 5533 17360 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XUIControllerRegistration-xref.html 0664 root bin 1848 28383 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XUIControllerRegistration.html 0664 root bin 7041 16659 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XUntitledNumbers-xref.html 0664 root bin 1408 54162 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XUntitledNumbers.html 0664 root bin 8660 21538 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XUrlList-xref.html 0664 root bin 1376 50746 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XUrlList.html 0664 root bin 2742 31897 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XWindowArranger-xref.html 0664 root bin 1701 13651 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/XWindowArranger.html 0664 root bin 3731 49427 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/module-ix.html 0664 root bin 29212 29928 1219950767
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/ClipboardFormats-xref.html 0664 root bin 1317 45279 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/ClipboardFormats.html 0664 root bin 3656 44210 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/FontHeight-xref.html 0664 root bin 1293 42735 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/FontHeight.html 0664 root bin 4031 7805 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/ItemState.html 0664 root bin 5801 30282 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/ItemStatus-xref.html 0664 root bin 1293 42875 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/ItemStatus.html 0664 root bin 3702 48240 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/LeftRightMargin-xref.html 0664 root bin 1313 44747 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/LeftRightMargin.html 0664 root bin 3382 17312 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/Template-xref.html 0664 root bin 1285 42015 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/Template.html 0664 root bin 3383 18853 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/UpperLowerMargin-xref.html 0664 root bin 1317 45307 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/UpperLowerMargin.html 0664 root bin 3374 17150 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/UpperLowerMarginScale-xref.html 0664 root bin 1337 47259 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/UpperLowerMarginScale.html 0664 root bin 4439 42012 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/Verb-xref.html 0664 root bin 1269 40299 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/Verb.html 0664 root bin 4581 54017 1219950775
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/Visibility-xref.html 0664 root bin 1293 42959 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/Visibility.html 0664 root bin 2941 47843 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/frame/status/module-ix.html 0664 root bin 3840 64888 1219950775
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/GalleryItem-xref.html 0664 root bin 1265 41275 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/GalleryItem.html 0664 root bin 7704 59581 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/GalleryItemType.html 0664 root bin 4121 12493 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/GalleryTheme-xref.html 0664 root bin 1269 41675 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/GalleryTheme.html 0664 root bin 2533 16387 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/GalleryThemeProvider-xref.html 0664 root bin 1301 45047 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/GalleryThemeProvider.html 0664 root bin 3617 47296 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/XGalleryItem-xref.html 0664 root bin 1689 12299 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/XGalleryItem.html 0664 root bin 3191 4417 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/XGalleryTheme-xref.html 0664 root bin 2048 43284 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/XGalleryTheme.html 0664 root bin 12731 35204 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/XGalleryThemeProvider-xref.html 0664 root bin 1743 17957 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/XGalleryThemeProvider.html 0664 root bin 6511 29333 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/gallery/module-ix.html 0664 root bin 3763 60977 1219950776
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/AffineMatrix2D-xref.html 0664 root bin 3417 31993 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/AffineMatrix2D.html 0664 root bin 6717 41695 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/EllipticalArc-xref.html 0664 root bin 1296 43506 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/EllipticalArc.html 0664 root bin 6905 61388 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerBezierSegment2D-xref.html 0664 root bin 1332 46958 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerBezierSegment2D.html 0664 root bin 5812 29891 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerPoint2D-xref.html 0664 root bin 3292 22831 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerPoint2D.html 0664 root bin 3305 13016 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerRectangle2D-xref.html 0664 root bin 3292 22235 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerRectangle2D.html 0664 root bin 4367 34931 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerSize2D-xref.html 0664 root bin 3067 1622 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/IntegerSize2D.html 0664 root bin 3385 20599 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/Matrix2D-xref.html 0664 root bin 1678 9714 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/Matrix2D.html 0664 root bin 5831 34987 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealBezierSegment2D-xref.html 0664 root bin 2410 8684 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealBezierSegment2D.html 0664 root bin 5805 29014 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealPoint2D-xref.html 0664 root bin 5997 60038 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealPoint2D.html 0664 root bin 3297 12102 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealRectangle2D-xref.html 0664 root bin 3552 45981 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealRectangle2D.html 0664 root bin 4365 34767 1219950776
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealSize2D-xref.html 0664 root bin 3026 62223 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/RealSize2D.html 0664 root bin 3377 19685 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/XMapping2D-xref.html 0664 root bin 2050 44105 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/XMapping2D.html 0664 root bin 4604 60448 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/geometry/module-ix.html 0664 root bin 4524 64434 1219950776
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/Graphic-xref.html 0664 root bin 1249 39607 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/Graphic.html 0664 root bin 3228 12552 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicColorMode.html 0664 root bin 3523 33511 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicDescriptor-xref.html 0664 root bin 1574 2381 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicDescriptor.html 0664 root bin 10422 30875 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicProvider-xref.html 0664 root bin 1281 42979 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicProvider.html 0664 root bin 2830 45605 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicRendererVCL-xref.html 0664 root bin 1293 43815 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicRendererVCL.html 0664 root bin 5907 44497 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/GraphicType.html 0664 root bin 3533 31898 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/MediaProperties-xref.html 0664 root bin 1281 42995 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/MediaProperties.html 0664 root bin 8295 51201 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphic-xref.html 0664 root bin 6372 30119 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphic.html 0664 root bin 3640 45529 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphicProvider-xref.html 0664 root bin 1713 14855 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphicProvider.html 0664 root bin 9199 3670 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphicRenderer-xref.html 0664 root bin 1719 15193 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphicRenderer.html 0664 root bin 3396 21814 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphicTransformer-xref.html 0664 root bin 1420 55362 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/XGraphicTransformer.html 0664 root bin 4009 9138 1219950777
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/graphic/module-ix.html 0664 root bin 4848 25741 1219950777
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/AmPmValue.html 0664 root bin 3086 60132 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Boundary-xref.html 0664 root bin 2168 53399 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Boundary.html 0664 root bin 3327 16376 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/BreakIterator-xref.html 0664 root bin 1273 42107 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/BreakIterator.html 0664 root bin 2858 47003 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/BreakType.html 0664 root bin 3790 52657 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CTLScriptType.html 0664 root bin 4850 9661 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Calendar-xref.html 0664 root bin 2188 54798 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Calendar.html 0664 root bin 6397 14530 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CalendarDisplayCode.html 0664 root bin 10850 42391 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CalendarDisplayIndex.html 0664 root bin 4491 42905 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CalendarFieldIndex.html 0664 root bin 10717 24482 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CalendarItem-xref.html 0664 root bin 1292 43058 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CalendarItem.html 0664 root bin 4148 18073 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ChapterCollator-xref.html 0664 root bin 1281 42971 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ChapterCollator.html 0664 root bin 2642 28135 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CharType.html 0664 root bin 15692 32326 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CharacterClassification-xref.html 0664 root bin 1313 46243 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CharacterClassification.html 0664 root bin 2821 43676 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CharacterIteratorMode.html 0664 root bin 3781 52304 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Collator-xref.html 0664 root bin 1653 9621 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Collator.html 0664 root bin 2628 26525 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/CollatorOptions.html 0664 root bin 4373 39630 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Currency-xref.html 0664 root bin 1975 35966 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Currency.html 0664 root bin 7406 34827 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Currency2-xref.html 0664 root bin 1280 41858 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Currency2.html 0664 root bin 3473 30106 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/DirectionProperty-xref.html 0664 root bin 1285 42905 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/DirectionProperty.html 0664 root bin 10228 40321 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ForbiddenCharacters-xref.html 0664 root bin 2744 39590 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ForbiddenCharacters.html 0664 root bin 3382 22420 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/FormatElement-xref.html 0664 root bin 1706 13649 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/FormatElement.html 0664 root bin 6606 33911 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Implementation-xref.html 0664 root bin 1710 14237 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Implementation.html 0664 root bin 3367 20844 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/IndexEntrySupplier-xref.html 0664 root bin 1293 44343 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/IndexEntrySupplier.html 0664 root bin 2943 54935 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/InputSequenceCheckMode.html 0664 root bin 3709 46595 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/InputSequenceChecker-xref.html 0664 root bin 1301 44983 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/InputSequenceChecker.html 0664 root bin 2954 54602 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/KCharacterType.html 0664 root bin 6855 39977 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/KNumberFormatType.html 0664 root bin 3507 30090 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/KNumberFormatUsage.html 0664 root bin 6306 55016 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/KParseTokens.html 0664 root bin 22894 44401 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/KParseType.html 0664 root bin 8680 64069 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LanguageCountryInfo-xref.html 0664 root bin 2067 44748 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LanguageCountryInfo.html 0664 root bin 5140 39374 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LineBreakHyphenationOptions-xref.html 0664 root bin 1682 11816 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LineBreakHyphenationOptions.html 0664 root bin 4448 52415 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LineBreakResults-xref.html 0664 root bin 1634 6787 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LineBreakResults.html 0664 root bin 3942 5128 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LineBreakUserOptions-xref.html 0664 root bin 1654 8840 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LineBreakUserOptions.html 0664 root bin 5437 9102 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LocaleCalendar-xref.html 0664 root bin 1277 42343 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LocaleCalendar.html 0664 root bin 2797 40365 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LocaleData-xref.html 0664 root bin 1261 40679 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LocaleData.html 0664 root bin 2890 48270 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LocaleDataItem-xref.html 0664 root bin 2029 40470 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LocaleDataItem.html 0664 root bin 12261 54620 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/LocaleItem.html 0664 root bin 13295 48958 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Months.html 0664 root bin 7378 14283 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/MultipleCharsOutputException-xref.html 0664 root bin 1672 12504 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/MultipleCharsOutputException.html 0664 root bin 2204 55542 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NativeNumberMode.html 0664 root bin 11568 41543 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NativeNumberSupplier-xref.html 0664 root bin 1301 45135 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NativeNumberSupplier.html 0664 root bin 2771 39160 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NativeNumberXmlAttributes-xref.html 0664 root bin 2086 48092 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NativeNumberXmlAttributes.html 0664 root bin 4261 32769 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NumberFormatCode-xref.html 0664 root bin 1766 18648 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NumberFormatCode.html 0664 root bin 5992 45123 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NumberFormatIndex.html 0664 root bin 45316 34542 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NumberFormatMapper-xref.html 0664 root bin 1293 44187 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/NumberFormatMapper.html 0664 root bin 2676 30875 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/OrdinalSuffix-xref.html 0664 root bin 1273 42167 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/OrdinalSuffix.html 0664 root bin 2831 42954 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ParseResult-xref.html 0664 root bin 1808 23406 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ParseResult.html 0664 root bin 7488 46462 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ScriptDirection.html 0664 root bin 3719 47646 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/ScriptType.html 0664 root bin 4487 45498 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TextConversion-xref.html 0664 root bin 1695 13796 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TextConversion.html 0664 root bin 2372 3454 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TextConversionOption.html 0664 root bin 4764 3611 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TextConversionResult-xref.html 0664 root bin 1657 9819 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TextConversionResult.html 0664 root bin 3597 41469 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TextConversionType.html 0664 root bin 4288 29990 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Transliteration-xref.html 0664 root bin 1281 43211 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Transliteration.html 0664 root bin 2867 47943 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TransliterationModules-xref.html 0664 root bin 2201 58326 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TransliterationModules.html 0664 root bin 25431 13309 1219950779
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TransliterationModulesNew-xref.html 0664 root bin 1881 31095 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TransliterationModulesNew.html 0664 root bin 43465 33151 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/TransliterationType.html 0664 root bin 6898 61772 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/UnicodeScript-xref.html 0664 root bin 1269 41073 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/UnicodeScript.html 0664 root bin 36976 53973 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/UnicodeType.html 0664 root bin 15124 48016 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/Weekdays.html 0664 root bin 5493 59499 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/WordType.html 0664 root bin 5649 19380 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XBreakIterator-xref.html 0664 root bin 2782 42593 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XBreakIterator.html 0664 root bin 32428 8862 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XCalendar-xref.html 0664 root bin 2813 44936 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XCalendar.html 0664 root bin 22013 29824 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XCharacterClassification-xref.html 0664 root bin 2446 15259 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XCharacterClassification.html 0664 root bin 19660 36320 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XCollator-xref.html 0664 root bin 2351 4949 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XCollator.html 0664 root bin 12336 4467 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedCalendar-xref.html 0664 root bin 2285 65369 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedCalendar.html 0664 root bin 5310 62906 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedIndexEntrySupplier-xref.html 0664 root bin 2363 8478 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedIndexEntrySupplier.html 0664 root bin 12197 59046 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedInputSequenceChecker-xref.html 0664 root bin 1775 21129 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedInputSequenceChecker.html 0664 root bin 4259 34824 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedTextConversion-xref.html 0664 root bin 1436 57070 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedTextConversion.html 0664 root bin 5640 26503 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedTransliteration-xref.html 0664 root bin 1745 18471 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XExtendedTransliteration.html 0664 root bin 7089 21344 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XForbiddenCharacters-xref.html 0664 root bin 2328 4638 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XForbiddenCharacters.html 0664 root bin 6530 32696 1219950780
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XIndexEntrySupplier-xref.html 0664 root bin 2941 59040 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XIndexEntrySupplier.html 0664 root bin 5884 41514 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XInputSequenceChecker-xref.html 0664 root bin 2675 34823 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XInputSequenceChecker.html 0664 root bin 3892 3538 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XLocaleData-xref.html 0664 root bin 3770 1058 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XLocaleData.html 0664 root bin 14173 23927 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XLocaleData2-xref.html 0664 root bin 1687 11605 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XLocaleData2.html 0664 root bin 4006 8952 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XNativeNumberSupplier-xref.html 0664 root bin 2416 12489 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XNativeNumberSupplier.html 0664 root bin 7373 41144 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XNumberFormatCode-xref.html 0664 root bin 2293 770 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XNumberFormatCode.html 0664 root bin 7442 43896 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XOrdinalSuffix-xref.html 0664 root bin 1701 13637 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XOrdinalSuffix.html 0664 root bin 3555 34491 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XScriptTypeDetector-xref.html 0664 root bin 1420 55362 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XScriptTypeDetector.html 0664 root bin 7789 3379 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XTextConversion-xref.html 0664 root bin 2676 34006 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XTextConversion.html 0664 root bin 10416 48523 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XTransliteration-xref.html 0664 root bin 2976 62356 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/XTransliteration.html 0664 root bin 22782 49293 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/module-ix.html 0664 root bin 22201 64823 1219950778
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/i18n/reservedWords.html 0664 root bin 8556 40785 1219950781
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMap-xref.html 0664 root bin 1253 39875 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMap.html 0664 root bin 2675 28299 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapCircleObject-xref.html 0664 root bin 1301 44647 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapCircleObject.html 0664 root bin 4075 16023 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapObject-xref.html 0664 root bin 1726 15927 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapObject.html 0664 root bin 5994 47878 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapPolygonObject-xref.html 0664 root bin 1305 45247 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapPolygonObject.html 0664 root bin 3685 50683 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapRectangleObject-xref.html 0664 root bin 1313 45939 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/ImageMapRectangleObject.html 0664 root bin 3602 42724 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/image/module-ix.html 0664 root bin 2897 50576 1219950781
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/DefaultHelpProvider.html 0664 root bin 4208 30028 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/GenericPropertyHandler.html 0664 root bin 2645 29627 1219950781
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/InteractiveSelectionResult-xref.html 0664 root bin 1689 13268 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/InteractiveSelectionResult.html 0664 root bin 5363 64700 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/LineDescriptor-xref.html 0664 root bin 1648 8577 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/LineDescriptor.html 0664 root bin 16896 26230 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/ObjectInspector.html 0664 root bin 7304 42863 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/ObjectInspectorModel.html 0664 root bin 8794 46670 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/PropertyCategoryDescriptor-xref.html 0664 root bin 1348 49302 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/PropertyCategoryDescriptor.html 0664 root bin 4835 18776 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/PropertyControlType.html 0664 root bin 14107 37355 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/PropertyLineElement.html 0664 root bin 4943 28785 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/StringRepresentation.html 0664 root bin 4260 33584 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XHyperlinkControl-xref.html 0664 root bin 1412 54618 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XHyperlinkControl.html 0664 root bin 5465 8112 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XNumericControl-xref.html 0664 root bin 1404 53710 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XNumericControl.html 0664 root bin 7925 23207 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XObjectInspector-xref.html 0664 root bin 1713 14885 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XObjectInspector.html 0664 root bin 10402 45322 1219950782
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XObjectInspectorModel-xref.html 0664 root bin 2472 17636 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XObjectInspectorModel.html 0664 root bin 14149 60182 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XObjectInspectorUI-xref.html 0664 root bin 2053 46224 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XObjectInspectorUI.html 0664 root bin 15745 52043 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControl-xref.html 0664 root bin 3312 25977 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControl.html 0664 root bin 9488 28449 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControlContext-xref.html 0664 root bin 1436 57258 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControlContext.html 0664 root bin 4423 51798 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControlFactory-xref.html 0664 root bin 1788 22126 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControlFactory.html 0664 root bin 5122 48137 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControlObserver-xref.html 0664 root bin 2270 64832 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyControlObserver.html 0664 root bin 4784 14542 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyHandler-xref.html 0664 root bin 3469 44893 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XPropertyHandler.html 0664 root bin 38828 13535 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XStringListControl-xref.html 0664 root bin 1416 54990 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XStringListControl.html 0664 root bin 6270 8029 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XStringRepresentation-xref.html 0664 root bin 1743 18317 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/XStringRepresentation.html 0664 root bin 5222 53137 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/inspection/module-ix.html 0664 root bin 7751 27221 1219950781
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/InstallationCheck-xref.html 0664 root bin 1289 43775 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/InstallationCheck.html 0664 root bin 2938 52349 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/InstallationCheckService-xref.html 0664 root bin 1317 46659 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/InstallationCheckService.html 0664 root bin 2910 51332 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/InternetSettings-xref.html 0664 root bin 1285 43559 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/InternetSettings.html 0664 root bin 2432 8195 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/ProtDlgRes-xref.html 0664 root bin 1620 5521 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/ProtDlgRes.html 0664 root bin 3920 62374 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/ProtocolHandlerCheck-xref.html 0664 root bin 1301 44919 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/ProtocolHandlerCheck.html 0664 root bin 2320 64236 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/ProtocolHandlerCheckService-xref.html 0664 root bin 1329 47803 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/ProtocolHandlerCheckService.html 0664 root bin 2341 864 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/XInstallationCheck-xref.html 0664 root bin 1798 22873 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/XInstallationCheck.html 0664 root bin 7491 45677 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/XProtocolHandlerCheck-xref.html 0664 root bin 1822 25161 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/XProtocolHandlerCheck.html 0664 root bin 6648 44953 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/module-ix.html 0664 root bin 4478 53654 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/installation/protocols.html 0664 root bin 5255 41289 1219950783
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/AlreadyConnectedException-xref.html 0664 root bin 1853 26186 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/AlreadyConnectedException.html 0664 root bin 2259 57923 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/BufferSizeExceededException-xref.html 0664 root bin 2141 53615 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/BufferSizeExceededException.html 0664 root bin 2317 64750 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/ConnectException-xref.html 0664 root bin 1817 22558 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/ConnectException.html 0664 root bin 2409 5035 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/DataInputStream-xref.html 0664 root bin 1281 42903 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/DataInputStream.html 0664 root bin 2924 51045 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/DataOutputStream-xref.html 0664 root bin 1285 43419 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/DataOutputStream.html 0664 root bin 2651 27943 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/DataTransferEvent-xref.html 0664 root bin 1816 24093 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/DataTransferEvent.html 0664 root bin 2986 54125 1219950783
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/FilePermission-xref.html 0664 root bin 1300 44082 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/FilePermission.html 0664 root bin 4721 8230 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/IOException-xref.html 0664 root bin 31422 38101 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/IOException.html 0664 root bin 1951 31732 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/MarkableInputStream-xref.html 0664 root bin 1297 44587 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/MarkableInputStream.html 0664 root bin 3206 11055 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/MarkableOutputStream-xref.html 0664 root bin 1301 45103 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/MarkableOutputStream.html 0664 root bin 3441 32554 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/NoRouteToHostException-xref.html 0664 root bin 1841 25002 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/NoRouteToHostException.html 0664 root bin 2443 8635 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/NotConnectedException-xref.html 0664 root bin 3070 4919 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/NotConnectedException.html 0664 root bin 2091 44372 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/ObjectInputStream-xref.html 0664 root bin 1289 43787 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/ObjectInputStream.html 0664 root bin 4178 30132 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/ObjectOutputStream-xref.html 0664 root bin 1293 44303 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/ObjectOutputStream.html 0664 root bin 3794 62983 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/Pipe-xref.html 0664 root bin 1833 26169 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/Pipe.html 0664 root bin 2780 39733 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/Pump-xref.html 0664 root bin 1237 38471 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/Pump.html 0664 root bin 2826 42934 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/SequenceInputStream.html 0664 root bin 3121 2272 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/SequenceOutputStream.html 0664 root bin 2004 36612 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/SocketException-xref.html 0664 root bin 1617 6458 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/SocketException.html 0664 root bin 2221 53987 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/TempFile.html 0664 root bin 1928 28673 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/TextInputStream-xref.html 0664 root bin 1621 6398 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/TextInputStream.html 0664 root bin 2811 42539 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/TextOutputStream-xref.html 0664 root bin 1625 6914 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/TextOutputStream.html 0664 root bin 2833 45361 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/UnexpectedEOFException-xref.html 0664 root bin 1274 42386 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/UnexpectedEOFException.html 0664 root bin 2118 45966 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/UnknownHostException-xref.html 0664 root bin 1833 24366 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/UnknownHostException.html 0664 root bin 2213 53709 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/WrongFormatException-xref.html 0664 root bin 1932 34978 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/WrongFormatException.html 0664 root bin 2098 44982 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataControl-xref.html 0664 root bin 1699 13297 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataControl.html 0664 root bin 6380 18811 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataSink-xref.html 0664 root bin 2924 56357 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataSink.html 0664 root bin 4023 11782 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataSource-xref.html 0664 root bin 3376 29485 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataSource.html 0664 root bin 3957 6252 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataStreamer-xref.html 0664 root bin 1420 55138 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XActiveDataStreamer.html 0664 root bin 3969 6048 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XAsyncOutputMonitor-xref.html 0664 root bin 1420 55514 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XAsyncOutputMonitor.html 0664 root bin 6200 18861 1219950784
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XConnectable-xref.html 0664 root bin 2817 45457 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XConnectable.html 0664 root bin 5668 22298 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataExporter-xref.html 0664 root bin 1396 52810 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataExporter.html 0664 root bin 4120 20110 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataImporter-xref.html 0664 root bin 1396 52782 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataImporter.html 0664 root bin 4138 21578 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataInputStream-xref.html 0664 root bin 2082 46550 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataInputStream.html 0664 root bin 9861 33138 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataOutputStream-xref.html 0664 root bin 2092 47840 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataOutputStream.html 0664 root bin 10515 27264 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataTransferEventListener-xref.html 0664 root bin 1880 29680 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XDataTransferEventListener.html 0664 root bin 4595 61436 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XInputStream-xref.html 0664 root bin 16607 25078 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XInputStream.html 0664 root bin 10325 32949 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XInputStreamProvider-xref.html 0664 root bin 1915 33285 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XInputStreamProvider.html 0664 root bin 3383 24724 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XMarkableStream-xref.html 0664 root bin 1841 26589 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XMarkableStream.html 0664 root bin 7950 18940 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XObjectInputStream-xref.html 0664 root bin 2039 42480 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XObjectInputStream.html 0664 root bin 3981 9549 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XObjectOutputStream-xref.html 0664 root bin 2047 43540 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XObjectOutputStream.html 0664 root bin 4190 27665 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XOutputStream-xref.html 0664 root bin 6185 16355 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XOutputStream.html 0664 root bin 5902 44545 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XPersist-xref.html 0664 root bin 1376 50854 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XPersist.html 0664 root bin 3970 4099 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XPersistObject-xref.html 0664 root bin 15025 18241 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XPersistObject.html 0664 root bin 6684 47783 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XSeekable-xref.html 0664 root bin 2884 50541 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XSeekable.html 0664 root bin 5715 25032 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XSeekableInputStream-xref.html 0664 root bin 1737 17307 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XSeekableInputStream.html 0664 root bin 2660 27488 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XSequenceOutputStream-xref.html 0664 root bin 1743 18197 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XSequenceOutputStream.html 0664 root bin 3863 64048 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XStream-xref.html 0664 root bin 6296 22235 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XStream.html 0664 root bin 3887 912 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XStreamListener-xref.html 0664 root bin 2384 10318 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XStreamListener.html 0664 root bin 6236 3594 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTempFile-xref.html 0664 root bin 1671 10325 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTempFile.html 0664 root bin 4941 23307 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTextInputStream-xref.html 0664 root bin 2053 43857 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTextInputStream.html 0664 root bin 8083 26440 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTextOutputStream-xref.html 0664 root bin 2059 44631 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTextOutputStream.html 0664 root bin 5640 22760 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTruncate-xref.html 0664 root bin 1380 51222 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XTruncate.html 0664 root bin 3072 61083 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XXMLExtractor-xref.html 0664 root bin 1396 52658 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/XXMLExtractor.html 0664 root bin 3147 2376 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/io/module-ix.html 0664 root bin 13845 40115 1219950783
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/InvalidJavaSettingsException-xref.html 0664 root bin 1298 45118 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/InvalidJavaSettingsException.html 0664 root bin 2781 37863 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaDisabledException-xref.html 0664 root bin 1270 42046 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaDisabledException.html 0664 root bin 2529 15968 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaInitializationException-xref.html 0664 root bin 2048 47718 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaInitializationException.html 0664 root bin 3003 60771 1219950785
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaNotConfiguredException-xref.html 0664 root bin 1290 44218 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaNotConfiguredException.html 0664 root bin 2584 21529 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaNotFoundException-xref.html 0664 root bin 1270 42130 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaNotFoundException.html 0664 root bin 2525 14214 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaVMCreationFailureException-xref.html 0664 root bin 1306 45662 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaVMCreationFailureException.html 0664 root bin 4181 28728 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaVirtualMachine-xref.html 0664 root bin 1293 44087 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/JavaVirtualMachine.html 0664 root bin 2879 46047 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/MissingJavaRuntimeException-xref.html 0664 root bin 1294 44758 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/MissingJavaRuntimeException.html 0664 root bin 3536 36086 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/RestartRequiredException-xref.html 0664 root bin 1282 43630 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/RestartRequiredException.html 0664 root bin 2565 18190 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/WrongJavaVersionException-xref.html 0664 root bin 1286 43946 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/WrongJavaVersionException.html 0664 root bin 4570 64688 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/XJavaThreadRegister_11-xref.html 0664 root bin 1743 17293 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/XJavaThreadRegister_11.html 0664 root bin 4778 8818 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/XJavaVM-xref.html 0664 root bin 1683 11425 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/XJavaVM.html 0664 root bin 8024 28861 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/java/module-ix.html 0664 root bin 4840 25537 1219950785
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ArrayIndexOutOfBoundsException-xref.html 0664 root bin 2742 40219 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ArrayIndexOutOfBoundsException.html 0664 root bin 2255 59226 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ClassNotFoundException-xref.html 0664 root bin 1274 42594 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ClassNotFoundException.html 0664 root bin 2058 42186 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/DisposedException-xref.html 0664 root bin 4231 45624 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/DisposedException.html 0664 root bin 3165 9866 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/EventObject-xref.html 0664 root bin 27341 50361 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/EventObject.html 0664 root bin 3184 6667 1219950786
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/IllegalAccessException-xref.html 0664 root bin 3567 46367 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/IllegalAccessException.html 0664 root bin 2027 39252 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/IllegalArgumentException-xref.html 0664 root bin 114699 7663 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/IllegalArgumentException.html 0664 root bin 3119 1410 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/IndexOutOfBoundsException-xref.html 0664 root bin 29912 55839 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/IndexOutOfBoundsException.html 0664 root bin 2159 50682 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/InvalidListenerException-xref.html 0664 root bin 1600 4958 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/InvalidListenerException.html 0664 root bin 2242 58555 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ListenerExistException-xref.html 0664 root bin 1592 4214 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ListenerExistException.html 0664 root bin 2214 55958 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/Locale-xref.html 0664 root bin 44191 29693 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/Locale.html 0664 root bin 6246 10244 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/MultiServiceFactory-xref.html 0664 root bin 2303 598 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/MultiServiceFactory.html 0664 root bin 3770 177 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NoSuchFieldException-xref.html 0664 root bin 1266 41638 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NoSuchFieldException.html 0664 root bin 2001 36497 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NoSuchMethodException-xref.html 0664 root bin 1687 12218 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NoSuchMethodException.html 0664 root bin 2010 37533 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NoSupportException-xref.html 0664 root bin 9467 56257 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NoSupportException.html 0664 root bin 2344 383 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NotInitializedException-xref.html 0664 root bin 1278 43122 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NotInitializedException.html 0664 root bin 2167 51453 1219950787
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NullPointerException-xref.html 0664 root bin 7548 21943 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/NullPointerException.html 0664 root bin 2416 7320 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/RegistryServiceManager-xref.html 0664 root bin 1309 45907 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/RegistryServiceManager.html 0664 root bin 5118 45864 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ServiceManager-xref.html 0664 root bin 2737 40869 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ServiceManager.html 0664 root bin 8601 30455 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ServiceNotRegisteredException-xref.html 0664 root bin 2374 8880 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/ServiceNotRegisteredException.html 0664 root bin 2157 51231 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/SystemDependent.html 0664 root bin 6968 52867 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/WrappedTargetException-xref.html 0664 root bin 34578 34842 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/WrappedTargetException.html 0664 root bin 3484 32597 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/WrappedTargetRuntimeException-xref.html 0664 root bin 1302 45646 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/WrappedTargetRuntimeException.html 0664 root bin 3479 34261 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XComponent-xref.html 0664 root bin 77243 11676 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XComponent.html 0664 root bin 9320 27323 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XConnectionPoint-xref.html 0664 root bin 1783 21455 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XConnectionPoint.html 0664 root bin 11975 58811 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XConnectionPointContainer-xref.html 0664 root bin 1806 23756 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XConnectionPointContainer.html 0664 root bin 7343 39125 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XEventListener-xref.html 0664 root bin 28274 16718 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XEventListener.html 0664 root bin 4093 22092 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XInitialization-xref.html 0664 root bin 17156 14722 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XInitialization.html 0664 root bin 4515 61297 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XLocalizable-xref.html 0664 root bin 3156 10611 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XLocalizable.html 0664 root bin 3653 43009 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XMain-xref.html 0664 root bin 2342 5498 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XMain.html 0664 root bin 3790 59625 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XMultiComponentFactory-xref.html 0664 root bin 3927 14490 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XMultiComponentFactory.html 0664 root bin 8251 59654 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XMultiServiceFactory-xref.html 0664 root bin 13331 12348 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XMultiServiceFactory.html 0664 root bin 6561 36533 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XServiceDisplayName-xref.html 0664 root bin 2779 44344 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XServiceDisplayName.html 0664 root bin 3830 63452 1219950788
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XServiceInfo-xref.html 0664 root bin 16100 53789 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XServiceInfo.html 0664 root bin 5656 27518 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XServiceName-xref.html 0664 root bin 2242 60615 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XServiceName.html 0664 root bin 3171 4076 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XSingleComponentFactory-xref.html 0664 root bin 2878 54557 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XSingleComponentFactory.html 0664 root bin 5525 14218 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XSingleServiceFactory-xref.html 0664 root bin 5763 50956 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XSingleServiceFactory.html 0664 root bin 5048 35422 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XTypeProvider-xref.html 0664 root bin 8412 35314 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XTypeProvider.html 0664 root bin 5515 16811 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XUnoTunnel-xref.html 0664 root bin 2494 18115 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/XUnoTunnel.html 0664 root bin 4337 42764 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/lang/module-ix.html 0664 root bin 11814 60512 1219950786
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/ldap 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/ldap/LdapConnectionException-xref.html 0664 root bin 1278 43034 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/ldap/LdapConnectionException.html 0664 root bin 2081 43711 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/ldap/LdapGenericException-xref.html 0664 root bin 1266 41678 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/ldap/LdapGenericException.html 0664 root bin 3156 3172 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/ldap/module-ix.html 0664 root bin 2489 15037 1219950789
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionDictionary-xref.html 0664 root bin 1634 8775 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionDictionary.html 0664 root bin 3435 33254 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionDictionaryList-xref.html 0664 root bin 1317 46879 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionDictionaryList.html 0664 root bin 3409 31615 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionDictionaryType.html 0664 root bin 3623 40827 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionDirection-xref.html 0664 root bin 2260 1277 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionDirection.html 0664 root bin 3402 22159 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/ConversionPropertyType.html 0664 root bin 10493 11044 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryEvent-xref.html 0664 root bin 2030 42096 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryEvent.html 0664 root bin 4291 35477 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryEventFlags.html 0664 root bin 6013 38632 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryList-xref.html 0664 root bin 1784 21994 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryList.html 0664 root bin 3608 47826 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryListEvent-xref.html 0664 root bin 2066 45804 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryListEvent.html 0664 root bin 5181 52896 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryListEventFlags.html 0664 root bin 7589 47262 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryType-xref.html 0664 root bin 2061 43946 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/DictionaryType.html 0664 root bin 3987 4921 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/GrammarCheckingIterator.html 0664 root bin 2188 52917 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/GrammarCheckingResult-xref.html 0664 root bin 1823 24523 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/GrammarCheckingResult.html 0664 root bin 5553 10294 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/HangulHanjaConversionDictionary-xref.html 0664 root bin 1345 49587 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/HangulHanjaConversionDictionary.html 0664 root bin 2924 53297 1219950789
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/Hyphenator-xref.html 0664 root bin 1768 20394 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/Hyphenator.html 0664 root bin 4123 26516 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LanguageGuessing.html 0664 root bin 1705 11489 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LinguProperties-xref.html 0664 root bin 2291 3810 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LinguProperties.html 0664 root bin 17018 27488 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LinguServiceEvent-xref.html 0664 root bin 2211 58795 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LinguServiceEvent.html 0664 root bin 3765 58450 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LinguServiceEventFlags.html 0664 root bin 4700 63642 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LinguServiceManager-xref.html 0664 root bin 1804 23886 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/LinguServiceManager.html 0664 root bin 3586 45944 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/SingleGrammarError-xref.html 0664 root bin 1316 45658 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/SingleGrammarError.html 0664 root bin 5282 51984 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/SpellChecker-xref.html 0664 root bin 1776 20982 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/SpellChecker.html 0664 root bin 4120 25853 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/SpellFailure.html 0664 root bin 4129 16722 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/Thesaurus-xref.html 0664 root bin 1764 20018 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/Thesaurus.html 0664 root bin 3871 3962 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XAvailableLocales-xref.html 0664 root bin 1725 15863 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XAvailableLocales.html 0664 root bin 3589 42153 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XConversionDictionary-xref.html 0664 root bin 2615 29565 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XConversionDictionary.html 0664 root bin 15128 46269 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XConversionDictionaryList-xref.html 0664 root bin 1767 20705 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XConversionDictionaryList.html 0664 root bin 11881 44089 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XConversionPropertyType-xref.html 0664 root bin 1838 27485 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XConversionPropertyType.html 0664 root bin 5824 39877 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionary-xref.html 0664 root bin 2666 32064 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionary.html 0664 root bin 18908 37608 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionary1-xref.html 0664 root bin 1392 52250 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionary1.html 0664 root bin 11917 19569 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryEntry-xref.html 0664 root bin 2736 37747 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryEntry.html 0664 root bin 5326 58888 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryEventListener-xref.html 0664 root bin 2212 61135 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryEventListener.html 0664 root bin 4332 41029 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryList-xref.html 0664 root bin 2031 42180 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryList.html 0664 root bin 17245 47659 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryListEventListener-xref.html 0664 root bin 2332 5127 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XDictionaryListEventListener.html 0664 root bin 4443 53053 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XGrammarChecker-xref.html 0664 root bin 1757 18279 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XGrammarChecker.html 0664 root bin 11921 27123 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XGrammarCheckingIterator-xref.html 0664 root bin 1761 19679 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XGrammarCheckingIterator.html 0664 root bin 8745 23961 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XHyphenatedWord-xref.html 0664 root bin 2669 31740 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XHyphenatedWord.html 0664 root bin 7132 12611 1219950790
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XHyphenator-xref.html 0664 root bin 3183 11848 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XHyphenator.html 0664 root bin 11924 46618 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLanguageGuessing-xref.html 0664 root bin 1719 15431 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLanguageGuessing.html 0664 root bin 11725 2927 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLinguServiceEventBroadcaster-xref.html 0664 root bin 2470 17306 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.html 0664 root bin 4854 24433 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLinguServiceEventListener-xref.html 0664 root bin 2400 11827 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLinguServiceEventListener.html 0664 root bin 4137 25074 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLinguServiceManager-xref.html 0664 root bin 2131 51601 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XLinguServiceManager.html 0664 root bin 12068 52729 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XMeaning-xref.html 0664 root bin 1376 50682 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XMeaning.html 0664 root bin 3829 60460 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XPossibleHyphens-xref.html 0664 root bin 2151 53173 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XPossibleHyphens.html 0664 root bin 5951 47189 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSearchableDictionaryList-xref.html 0664 root bin 1747 18341 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSearchableDictionaryList.html 0664 root bin 5055 38129 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSpellAlternatives-xref.html 0664 root bin 2239 60298 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSpellAlternatives.html 0664 root bin 6164 62014 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSpellChecker-xref.html 0664 root bin 2735 38971 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSpellChecker.html 0664 root bin 7611 58830 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSpellChecker1-xref.html 0664 root bin 1400 52886 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSpellChecker1.html 0664 root bin 5071 33944 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSupportedLanguages-xref.html 0664 root bin 1722 15310 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSupportedLanguages.html 0664 root bin 3483 29690 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSupportedLocales-xref.html 0664 root bin 2628 28811 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XSupportedLocales.html 0664 root bin 4420 43918 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XThesaurus-xref.html 0664 root bin 2540 21284 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/XThesaurus.html 0664 root bin 5255 53336 1219950791
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/linguistic2/module-ix.html 0664 root bin 11966 8968 1219950789
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/CannotActivateFactoryException-xref.html 0664 root bin 1643 9357 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/CannotActivateFactoryException.html 0664 root bin 2574 23821 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/Dynamic-xref.html 0664 root bin 1249 39635 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/Dynamic.html 0664 root bin 3071 1799 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/Java-xref.html 0664 root bin 1908 29941 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/Java.html 0664 root bin 2656 29101 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/Java2-xref.html 0664 root bin 1631 6584 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/Java2.html 0664 root bin 2431 7585 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/SharedLibrary-xref.html 0664 root bin 2282 3096 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/SharedLibrary.html 0664 root bin 3052 65158 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/XImplementationLoader-xref.html 0664 root bin 2515 20195 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/XImplementationLoader.html 0664 root bin 8461 17498 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/loader/module-ix.html 0664 root bin 3592 45246 1219950792
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/ConsoleHandler.html 0664 root bin 5298 58073 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/CsvLogFormatter.html 0664 root bin 3686 50509 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/FileHandler.html 0664 root bin 6089 60034 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/LogLevel.html 0664 root bin 7372 21948 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/LogRecord-xref.html 0664 root bin 1692 11339 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/LogRecord.html 0664 root bin 7728 64469 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/LoggerPool.html 0664 root bin 2025 37321 1219950792
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/PlainTextFormatter.html 0664 root bin 3424 26877 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XConsoleHandler-xref.html 0664 root bin 1707 14135 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XConsoleHandler.html 0664 root bin 4332 39129 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XCsvLogFormatter-xref.html 0664 root bin 1713 14813 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XCsvLogFormatter.html 0664 root bin 7697 64694 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLogFormatter-xref.html 0664 root bin 2068 45248 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLogFormatter.html 0664 root bin 5420 64415 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLogHandler-xref.html 0664 root bin 2456 11723 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLogHandler.html 0664 root bin 7666 59532 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLogger-xref.html 0664 root bin 1808 22052 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLogger.html 0664 root bin 11073 23017 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLoggerPool-xref.html 0664 root bin 1689 12371 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/XLoggerPool.html 0664 root bin 4476 51819 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/logging/module-ix.html 0664 root bin 5218 55701 1219950792
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailAttachment-xref.html 0664 root bin 1749 17043 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailAttachment.html 0664 root bin 4527 56086 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailException-xref.html 0664 root bin 2597 27511 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailException.html 0664 root bin 2150 47612 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailMessage.html 0664 root bin 7016 6459 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailServer.html 0664 root bin 3810 58799 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailServiceProvider.html 0664 root bin 3048 58261 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailServiceType-xref.html 0664 root bin 1613 4945 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/MailServiceType.html 0664 root bin 3458 21375 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/NoMailServiceProviderException-xref.html 0664 root bin 1636 8473 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/NoMailServiceProviderException.html 0664 root bin 2483 12547 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/NoMailTransportProviderException-xref.html 0664 root bin 1614 6418 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/NoMailTransportProviderException.html 0664 root bin 2501 14420 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/SendMailMessageFailedException-xref.html 0664 root bin 1743 17593 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/SendMailMessageFailedException.html 0664 root bin 4959 27154 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XAuthenticator-xref.html 0664 root bin 1819 23505 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XAuthenticator.html 0664 root bin 4087 15289 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XConnectionListener-xref.html 0664 root bin 2152 54805 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XConnectionListener.html 0664 root bin 5420 63606 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailMessage-xref.html 0664 root bin 2132 50220 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailMessage.html 0664 root bin 15149 42851 1219950793
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailServer-xref.html 0664 root bin 1683 11693 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailServer.html 0664 root bin 18699 42210 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailService-xref.html 0664 root bin 2022 40222 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailService.html 0664 root bin 14383 63051 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailServiceProvider-xref.html 0664 root bin 1737 17291 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XMailServiceProvider.html 0664 root bin 3771 54352 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XSmtpService-xref.html 0664 root bin 1392 52434 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/XSmtpService.html 0664 root bin 5915 47185 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mail/module-ix.html 0664 root bin 6055 64748 1219950793
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/Manager.html 0664 root bin 1959 31189 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XFrameGrabber-xref.html 0664 root bin 1713 13695 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XFrameGrabber.html 0664 root bin 3489 31201 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XManager-xref.html 0664 root bin 1665 9779 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XManager.html 0664 root bin 3205 5164 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XPlayer-xref.html 0664 root bin 1680 10551 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XPlayer.html 0664 root bin 17852 64185 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XPlayerWindow-xref.html 0664 root bin 1713 14109 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/XPlayerWindow.html 0664 root bin 6151 58569 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/ZoomLevel-xref.html 0664 root bin 1903 29091 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/ZoomLevel.html 0664 root bin 7216 8957 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/media/module-ix.html 0664 root bin 3393 25726 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/module-ix.html 0664 root bin 13161 47788 1219950693
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuMultipleChange-xref.html 0664 root bin 1316 45610 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuMultipleChange.html 0664 root bin 6649 31986 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuProxy-xref.html 0664 root bin 1257 40603 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuProxy.html 0664 root bin 2209 54770 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuProxyListener-xref.html 0664 root bin 1289 43955 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuProxyListener.html 0664 root bin 2190 53561 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuSingleChange-xref.html 0664 root bin 1308 44674 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MenuSingleChange.html 0664 root bin 3566 34195 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MozillaBootstrap-xref.html 0664 root bin 1285 43543 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MozillaBootstrap.html 0664 root bin 2268 60818 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MozillaProductType-xref.html 0664 root bin 2970 61613 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/MozillaProductType.html 0664 root bin 4007 6925 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XCloseSessionListener-xref.html 0664 root bin 1428 56190 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XCloseSessionListener.html 0664 root bin 3205 9796 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XCodeProxy-xref.html 0664 root bin 1690 11747 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XCodeProxy.html 0664 root bin 4575 58062 1219950794
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XMenuProxy-xref.html 0664 root bin 1677 11291 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XMenuProxy.html 0664 root bin 5928 46663 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XMenuProxyListener-xref.html 0664 root bin 2185 56577 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XMenuProxyListener.html 0664 root bin 5105 40751 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XMozillaBootstrap-xref.html 0664 root bin 1719 15701 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XMozillaBootstrap.html 0664 root bin 3162 7077 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstance-xref.html 0664 root bin 1777 20632 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstance.html 0664 root bin 10243 16911 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstanceNotifySink-xref.html 0664 root bin 1898 31317 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstanceNotifySink.html 0664 root bin 3385 24922 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstancePeer-xref.html 0664 root bin 1420 55230 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstancePeer.html 0664 root bin 11040 20725 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstanceSyncPeer-xref.html 0664 root bin 1436 56882 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginInstanceSyncPeer.html 0664 root bin 3772 59340 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginWindowPeer-xref.html 0664 root bin 1412 54474 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XPluginWindowPeer.html 0664 root bin 3235 11838 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XProfileDiscover-xref.html 0664 root bin 2023 41464 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XProfileDiscover.html 0664 root bin 9347 12654 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XProfileManager-xref.html 0664 root bin 2019 40936 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XProfileManager.html 0664 root bin 7959 24104 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XProxyRunner-xref.html 0664 root bin 2007 39976 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XProxyRunner.html 0664 root bin 3333 17740 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XRemoteServiceManagerProvider-xref.html 0664 root bin 1460 59402 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/XRemoteServiceManagerProvider.html 0664 root bin 3560 39843 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/mozilla/module-ix.html 0664 root bin 6960 20047 1219950794
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement/Core.html 0664 root bin 3051 58736 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement/CoreController.html 0664 root bin 3177 5726 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement/XCore-xref.html 0664 root bin 1647 7943 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement/XCore.html 0664 root bin 4727 6774 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement/XCoreController-xref.html 0664 root bin 1707 14303 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement/XCoreController.html 0664 root bin 4001 11681 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/oooimprovement/module-ix.html 0664 root bin 2918 52750 1219950795
1 d none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/packages 0755 root bin
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/packages/EncryptionNotAllowedException-xref.html 0664 root bin 1644 9460 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/packages/EncryptionNotAllowedException.html 0664 root bin 2216 55278 1219950795
1 f none opt/openoffice.org/basis3.0/sdk/docs/common/ref/com/sun/star/packages/NoEncryptionException-xref.html 0664 root bin 2553 24836 1219950796
1 f no
