Home
last modified time | relevance | path

Searched refs:version (Results 1 – 25 of 600) sorted by relevance

12345678910>>...24

/trunk/main/cli_ure/
H A Dreadme.txt24 After a release the entries in cli_ure/version/version.txt must be changed to reflect the versions
72 Open the file cli_ure\version\version.txt.
81 last release. So if a version from version.txt is greater then the one of the respective
96 XYZ_POLICY_VERSION: change the version according to the version of the policy assembly from the
145 The contents of version.txt
177 "old version" and the policy version must be changed as well. Using the former example,
193 the name is new and refers to the version 2 auf cli_uretypes, we can start with the policy version
217 The names are exactly the same as in version.txt. The script knows how to increase the version
252 cli_uretypes.dll with version 1 and a cli_ure.dll with version 1. cli_ure.dll references version 1 …
257 cli_uretypes.dll version 1 was replaced by version 2. cli_ure.dll now references cli_uretypes.dll v…
[all …]
/trunk/main/desktop/test/deployment/version/
H A Dreadme.txt32 A version_none contains no version element (treated as version "0").
37 D version_0.0 contains <version value="0.0"/> (same as version "0").
38 E version_1.2.3 contains <version value="1.2.3"/>.
39 F version_1.2.4.7 contains <version value="1.2.4.7"/>.
40 G version_1.02.4.7.0 contains <version value="1.02.4.7.0"/> (same as version
42 H version_1.2.15.3 contains <version value="1.2.15.3"/>.
50 - If version y of extension e is to be installed and version x < y of
55 - If version y of extension e is to be installed and version x >= y of
60 - If version y of extension e is to be installed and any version x of
65 - If version y of extension e is to be installed and any version x of
[all …]
/trunk/main/solenv/bin/modules/installer/patch/
H A DInstallationSet.pm330 my ($path, $version) = @_;
334 $version));
345 my ($path, $version) = @_;
585 $version,
638 $version,
730 $version,
757 $version);
789 $version,
812 $version,
819 $version,
[all …]
H A DReleasesList.pm331 die "could not read version from releases.xml" if $version eq "";
333 push @{$self->{'releases'}}, $version;
342 $self->{$version}->{$package_format}->{'upgrade-code'} = $upgrade_code;
343 $self->{$version}->{$package_format}->{'build-id'} = $build_id;
356 $self->{$version}->{$package_format}->{'languages'} = \@languages;
429 foreach my $version (@{$self->{'releases'}})
433 my @version_array = split(/\./, $version);
441 while (my ($package_format, $data) = each %{$self->{$version}})
527 foreach my $version (@{$release_data->{'releases'}})
529 if ($version eq $current_version)
[all …]
H A DMsi.pm42 my ($class, $version, $is_current_version, $language, $product_name) = @_;
44 my $condensed_version = $version;
52 $version,
62 return $class->new($filename, $version, $is_current, $language, $product_name);
81 my ($class, $filename, $version, $is_current_version, $language, $product_name) = @_;
86 $version,
95 'version' => $version,
106 if ( ! (defined $version && defined $language && defined $product_name))
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/
H A DSolarisHelper.java158 private String getMainVersion (String version) { in getMainVersion() argument
161 int pos = version.indexOf(","); in getMainVersion()
163 mainVersion = version.substring(0, pos); in getMainVersion()
172 int pos = version.indexOf("="); in getPackageRevision()
174 revision = version.substring(pos + 1, version.length() ); in getPackageRevision()
185 pos = version.indexOf("."); in getVectorOfNumbers()
188 version = version.substring(pos + 1, version.length()); in getVectorOfNumbers()
193 numbers.add(version); in getVectorOfNumbers()
344 public int getInstalledMinor(String version) { in getInstalledMinor() argument
348 int pos = version.indexOf("."); in getInstalledMinor()
[all …]
/trunk/main/desktop/test/deployment/dependencies/
H A Dreadme.txt37 dependency (and should thus not install in any OOo version). version22.oxt
41 hypothetical OOo version 10000 (and should thus not install in any OOo version).
47 maxversion30.oxt contains a maximal version dependency on OOo 3.0 (and should
49 additionally specified OpenOffice.org-minimal-version attribute).
50 maxversion10000.oxt contains a maximal version dependency on the hypothetical
51 OOo version 10000 (and should thus install in any OOo version 3.1 or later;
53 minimal-version attribute is specified). bad-minmaxversion.oxt contains a
54 minimal version dependency on OOo 3.2 and a maximal version dependency on
55 OOo 3.1 (and should thus not install in any OOo version).
58 UNSATISFIED dependency with an OpenOffice.org-minimal-version attribute of
[all …]
/trunk/main/desktop/source/deployment/gui/
H A Ddp_gui_versionboxes.src29 Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
30 "The newer version $DEPLOYED is already installed.\n"
36 Text [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
37 "The newer version $DEPLOYED, named \'$OLDNAME\', is already installed.\n"
45 Message[en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
46 "That version is already installed.\n"
52 Text [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
53 "That version, named \'$OLDNAME\', is already installed.\n"
62 "The older version $DEPLOYED is already installed.\n"
68 TEXT [en-US] = "You are about to install version $NEW of the extension \'$NAME\'.\n"
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/palm/
H A DPalmDB.java101 private int version = 0; field in PalmDB
118 public PalmDB(int creatorID, int typeID, int version, short attribute) { in PalmDB() argument
121 setAttributes(creatorID, typeID, version, attribute); in PalmDB()
141 public PalmDB(String name, int creatorID, int typeID, int version, in PalmDB() argument
145 this(name.getBytes(PdbUtil.ENCODING), creatorID, typeID, version, in PalmDB()
167 public PalmDB(byte[] name, int creatorID, int typeID, int version, in PalmDB() argument
174 setAttributes(creatorID, typeID, version, attribute); in PalmDB()
186 public void setAttributes (int creatorID, int typeID, int version, short attribute) { in setAttributes() argument
189 this.version = version; in setAttributes()
276 return version; in getVersion()
/trunk/main/solenv/bin/
H A Dpatch_make_releases_xml.pl55 my $version = $ARGV[0];
147 my @lines = split(/\n/, DownloadFile("http://archive.apache.org/dist/openoffice/".$version."/binari…
162 printf " <version>%s</version>\n", $version;
166 …dist/openoffice/%s/binaries/%%L/Apache_OpenOffice_%s_Win_x86_install_%%L.exe\n",$version, $version;
174 $version,
176 $version,
180 …sprintf("http://archive.apache.org/dist/openoffice/%s/binaries/%s/%s.sha256", $version, $language,…
186 …sprintf("http://archive.apache.org/dist/openoffice/%s/binaries/%s/%s", $version, $language, $name)…
/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DBeginningOfFile.java42 private byte[] version = new byte[2]; field in BeginningOfFile
65 private void setVersion(short version) { in setVersion() argument
66 this.version = EndianConverter.writeShort(version); in setVersion()
70 return EndianConverter.readShort(version); in getVersion()
92 int numBytesRead = input.read(version); in read()
94 Debug.log(Debug.TRACE,"\tVersion : "+ EndianConverter.readShort(version) + in read()
103 output.write(version); in write()
/trunk/main/offapi/com/sun/star/configuration/backend/
H A DXVersionedSchemaSupplier.idl54 Returns the schema version for a particular component.
57 component whose schema version will be determined
60 a <atom>string</atom> that identifies the schema version for
63 <p> The format of the version string is arbitrary. No meaning
65 defines one. If no version can be determined, an empty
70 same version are identical. The converse is not true.
71 In particular an implementation may return the same version
72 string for all schemas it supplies (i.e. return a version for
80 if an error occurs while accessing the version data.
/trunk/main/testtools/source/cliversioning/
H A Dreadme.txt36 version do not work anymore. To use these old tests one needs to install a
37 version of OOo less than v 3.0. Then one needs to check out the cli_ure module
38 for that version. The tests are contained in cli_ure/qa/versioning.
47 They are named version_3_0_0 etc, where the name indicates the version of the
54 "version", from the same directory and tries to run a particular test code
95 When a version of our assemblies changes then one should provide a new version dll which test exact…
98 3. copy the new version dll from the output tree into qa/versioning/version_libs
99 4. commit the new version.dll using the -kb switch (only when creating the new file : cvs new -kb v…
/trunk/main/vcl/aqua/source/gdi/
H A Dsalnativewidgets.cxx509 aComboInfo.version = 0; in drawNativeControl()
560 aMenuInfo.version = 0; in drawNativeControl()
619 aPushInfo.version = 0; in drawNativeControl()
678 aInfo.version = 0; in drawNativeControl()
733 aInfo.version = 0; in drawNativeControl()
899 aTabItemDrawInfo.version=0; in drawNativeControl()
949 aTabItemDrawInfo.version=1; in drawNativeControl()
1006 aListInfo.version = 0; in drawNativeControl()
1022 aTextDrawInfo.version=0; in drawNativeControl()
1043 aTextDrawInfo.version=0; in drawNativeControl()
[all …]
/trunk/main/unodevtools/source/skeletonmaker/
H A Dskeletonmaker.cxx115 void printUsageAndExit(const char* programname, const char* version) in printUsageAndExit() argument
133 << programname << " Version " << version << "\n\n"; in printUsageAndExit()
140 const char* version = "0.4"; variable
144 printUsageAndExit(programname, version);
177 printUsageAndExit(programname, version);
182 << " Version " << version << "\n\n";
189 printUsageAndExit(programname, version);
287 printUsageAndExit(programname, version);
/trunk/main/instsetoo_native/inc_openoffice/windows/msi_languages/
H A DCustomAc.ulf23 en-US = "A newer version of [DEFINEDPRODUCT] was found. To install an older version, the newer vers…
26 en-US = "The same version of [DEFINEDPRODUCT] is already installed."
29 en-US = "An older version of [DEFINEDPRODUCT] was found. To install a newer version, the older vers…
/trunk/main/
H A Daclocal.m421 # the Free Software Foundation; either version 2 of the License, or
22 # (at your option) any later version.
53 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
54 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
101 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
200 # cause an error if the version of python installed on the system
212 dnl No version check is needed.
219 dnl A version check is needed.
222 AC_MSG_CHECKING([whether $PYTHON version >= $1])
230 AC_CACHE_CHECK([for a Python interpreter with version >= $1],
[all …]
H A Dconfigure.ac859 AC_ARG_WITH(os-version,
885 AC_ARG_WITH(build-version,
886 [ --with-build-version Allows the builder to add a custom version tag
1762 AC_MSG_ERROR([found version "$_gcc_version", use version 3+ of the gcc compiler])
2034 AC_MSG_ERROR([found Perl version "$_perl_version", use version 5 of Perl])
2247 CCVER=`${CC} --version 2>&1 | head -n1 | sed -e"s/.*version //" -e"s/ .*//"`;
2792 # check ccache version
2943 dnl Custom build version
4213 AC_MSG_CHECKING([version])
4499 # check curl version
[all …]
H A DLICENSE_category_b174 Section 2.2. The Source Code version of Covered Code may be
179 version that alters or restricts the applicable version of this
308 will be given a distinguishing version number.
736 distribute the Covered Software under a subsequent version of this
930 publish new versions of this License. Each version will be given a
931 distinguishing version number.
1148 on any Source Code version that alters or restricts the applicable version
1259 distinguishing version number.
1394 of the License, or (at your option) any later version,
1399 Free Software Foundation; either version 2.1 of License, or
[all …]
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Ddotnetcheck.cxx90 string getElement(string const & version, string::size_type * index) { in getElement() argument
91 while (*index < version.size() && version[*index] == '0') { in getElement()
95 *index = version.find('.', i); in getElement()
97 *index = version.size(); in getElement()
98 return string(version, i); in getElement()
101 return string(version, i, *index - 1 - i); in getElement()
/trunk/main/unoil/climaker/
H A Dmakefile.mk36 .INCLUDE : version.txt
63 $(BIN)/cli_oootypes.dll : $(RDB) $(EXTRA_RDB) version.txt
66 --assembly-version $(CLI_OOOTYPES_NEW_VERSION) \
76 $(BIN)$/cli_oootypes.config: cli_oootypes_config version.txt
82 -version:$(CLI_OOOTYPES_POLICY_VERSION) \
88 $(BIN)$/clioootypesversion.mk: version.txt
/trunk/main/oovbaapi/
H A Dttt.diff56 +# it under the terms of the GNU Lesser General Public License version 3
62 +# GNU Lesser General Public License version 3 for more details
66 +# version 3 along with OpenOffice.org. If not, see
104 +# GNU Lesser General Public License version 3 for more details
108 +# version 3 along with OpenOffice.org. If not, see
138 +# GNU Lesser General Public License version 3 for more details
142 +# version 3 along with OpenOffice.org. If not, see
172 +# GNU Lesser General Public License version 3 for more details
176 +# version 3 along with OpenOffice.org. If not, see
384 +# GNU Lesser General Public License version 3 for more details
[all …]
/trunk/main/offapi/type_reference/
H A Dtypelibrary_history.txt100 update the reference type library with the released version of OOo2.0.2
121 update reference type library with the released version of OOo2.0.3. The
130 update reference type library with the released version of OOo2.0.4. The
134 update reference type library with the released version of OO0.2.2.0. The new
142 update reference type library with the released version of OO.org 2.3. The new
151 implementation used the plural version.
158 update reference rdb with the released version from OO.org 3.0 (ooo300m9)
162 to maybevoid and deprecate. They should be removed in a future version. The
175 Update reference type library with the version of OOo 3.2. The new
179 Update reference type library with the version of OOo 3.2.1. The new
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/
H A Dmodule.properties30 version.major: 0
31 version.minor: 90
32 version.patchlevel: 0
36 version.major: 0
37 version.minor: 92
38 version.patchlevel: 0
/trunk/main/solenv/bin/modules/installer/windows/
H A Dproperty.pm42 my $version = $allvariables->{'PRODUCTVERSION'};
43 my $comment = $name . " " . $version;
146 my $version = $allvariables->{'PRODUCTVERSION'};
147 my $productname = $name . " " . $version;
167 $productname = $name . " " . $version . " Language Pack" . " " . $langstring;
192 my $version = $allvariables->{'PRODUCTVERSION'};
193 my $quickstartername = $name . " " . $version;
598 my $version = $allvariables->{'PRODUCTVERSION'};

Completed in 208 milliseconds

12345678910>>...24