History log of /aoo42x/main/connectivity/ (Results 51 - 75 of 115)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
b63233d807-Aug-2016 damjan

Merge branches/gbuild-reintegration to trunk.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1755455 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO4121
b687524308-Jun-2016 damjan

#i126917# windows build breaks in module connectivity/source/parse/sqliterator.cxx

Fix a *nix build breaker from my 2 previous commits.

Patch by: me



git-svn-id: h

#i126917# windows build breaks in module connectivity/source/parse/sqliterator.cxx

Fix a *nix build breaker from my 2 previous commits.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1747442 13f79535-47bb-0310-9956-ffa450edef68

show more ...

8973800e08-Jun-2016 damjan

#i126917# windows build breaks in module connectivity/source/parse/sqliterator.cxx

Fix compile errors in Patricia's patch in #1747439.

Patch by: me



git-svn-id: ht

#i126917# windows build breaks in module connectivity/source/parse/sqliterator.cxx

Fix compile errors in Patricia's patch in #1747439.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1747440 13f79535-47bb-0310-9956-ffa450edef68

show more ...

ba7fd2e308-Jun-2016 damjan

#i126917# windows build breaks in module connectivity/source/parse/sqliterator.cxx

Commit Patricia's initial broken patch which starts in the right direction,
and fix it in my next commi

#i126917# windows build breaks in module connectivity/source/parse/sqliterator.cxx

Commit Patricia's initial broken patch which starts in the right direction,
and fix it in my next commit.

Patch by: pats
Review by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1747439 13f79535-47bb-0310-9956-ffa450edef68

show more ...

30acf5e822-May-2016 pfg

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535-47bb-0310-9956-ffa450edef68

show more ...

ab01ac7917-Apr-2016 damjan

Fix a string limit error in my previous patch.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1739631 13f79535-47bb-0310-9956-ffa450edef68

bc1fc15f17-Apr-2016 damjan

Make CSV line parsers consistent with CSV field parsers.

Our CSV field parsing algorithms treats fields starting with a quote
(immediately at the beginning of the row, or after the field

Make CSV line parsers consistent with CSV field parsers.

Our CSV field parsing algorithms treats fields starting with a quote
(immediately at the beginning of the row, or after the field delimiter) as
quoted. A quoted field ends at the corresponding closing quote, and any
remaining text between the closing quote and the next field delimeter or end
of line is appended to the text already extracted from the field, but not
processed further. Any quotes in this extra text are taken verbatim - they
do not quote anything.

Our CSV line parsers were big hacks - they essentially read and concatenate
lines until an even number of quote characters is found, and then feed this
through the CSV field parsers.

This patch rewrites the line parsers to work exactly how the field parsers
work. Text such as:
"another" ",something else
is now correctly parsed by both Calc and Base as:
[another "],[something else]
instead of breaking all further parsing.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1739628 13f79535-47bb-0310-9956-ffa450edef68

show more ...

6b41ff7a03-Apr-2016 damjan

#i122754# Base does not properly parse CSV files as per RFC-4180 (while
Calc does)

The flat file driver, in file
main/connectivity/source/drivers/flat/ETable.cxx, method
OFlatTab

#i122754# Base does not properly parse CSV files as per RFC-4180 (while
Calc does)

The flat file driver, in file
main/connectivity/source/drivers/flat/ETable.cxx, method
OFlatTable::fillColumns(), which reads lines to initialize columns,
assumes fields in the header and the first few lines never continue onto
the next line(s). This causes truncation of columns when they do.

Read all lines using the readLine() method instead of
SvStream::ReadByteStringLine(), which takes overflow onto next lines into
account. Also implement a new version of readLine() which allows reading
into an arbitrary string, as opposed to m_aCurrentLine only.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1737591 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0975338107-Feb-2016 Damjan Jovanovic

The main/connectivity module doesn't depend on nss any more.
This was probably a remnant from the days when the Mozilla address book was
a database driver we supported.

Patch by: me

The main/connectivity module doesn't depend on nss any more.
This was probably a remnant from the days when the Mozilla address book was
a database driver we supported.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1728962 13f79535-47bb-0310-9956-ffa450edef68

show more ...

f9333cb525-Nov-2015 Pedro Giffuni

i125369 - Illumos port: avoid some redefinitions

In the case of the Illumos/Solaris-i386 port there are some
conflicts caused by internal C definitions. Try to work them
out with som

i125369 - Illumos port: avoid some redefinitions

In the case of the Illumos/Solaris-i386 port there are some
conflicts caused by internal C definitions. Try to work them
out with some help of Illumos' opengrok.

On the case of the odbcbase driver rename the affected typedef
to avoid conflicts.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716482 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO412, SNAPSHOT, AOO411
a84fbf3307-Aug-2015 Pedro Giffuni

FreeBSD: Work around clang-3.4 issues.

It is well known that clang-3.4 doesn't build all AOO correctly.
Workaround the issue for FreeBSD 10 which ships with clang-3.4.
The workaround

FreeBSD: Work around clang-3.4 issues.

It is well known that clang-3.4 doesn't build all AOO correctly.
Workaround the issue for FreeBSD 10 which ships with clang-3.4.
The workaround may still be needed for other clang based platforms.

Submitted by: Don Lewis


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1694701 13f79535-47bb-0310-9956-ffa450edef68

show more ...

07a3d7f129-Apr-2014 Pedro Giffuni

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame the international nature of the code but
it is somewhat shameful that this wasn't done before.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591058 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO410, AOO410_Beta
24c56ab928-Nov-2013 Herbert Dürr

#i123068# remove implicit conversions from rtl strings to their elements

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1546390 13f79535-47bb-0310-9956-ffa450edef68

b597708b18-Nov-2013 Herbert Dürr

#i122362# remove stlport4-build support

but keep the --without-stlport configure option for now
it is the new default anyway


git-svn-id: https://svn.apache.org/repos/asf/op

#i122362# remove stlport4-build support

but keep the --without-stlport configure option for now
it is the new default anyway


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1543067 13f79535-47bb-0310-9956-ffa450edef68

show more ...

74cab43006-Nov-2013 Herbert Dürr

#i123623# RmMoz 8/9: remove the obsoleted seamonkey 1.1.14 module

That module was used for its security libs and its address book support.
With #i122365# the dependency on its security l

#i123623# RmMoz 8/9: remove the obsoleted seamonkey 1.1.14 module

That module was used for its security libs and its address book support.
With #i122365# the dependency on its security libs was replaced with plain NSS.
With #i123575# the already quite bit-rotten seamonkey address books were removed.
Now there is nothing left for it to do and so that huge and complex module can
finally be retired after all these years.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1539267 13f79535-47bb-0310-9956-ffa450edef68

show more ...

9157bbca06-Nov-2013 Herbert Dürr

#i123575# RmMoz 7/9: fix mismatching header guard comment


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1539265 13f79535-47bb-0310-9956-ffa450edef68

ffd43a0a06-Nov-2013 Herbert Dürr

#i123575# RmMoz 6/9: drop seamonkey provided address books


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1539264 13f79535-47bb-0310-9956-ffa450edef68


prj/build.lst
prj/d.lst
source/drivers/mozab/MCatalog.cxx
source/drivers/mozab/MCatalog.hxx
source/drivers/mozab/MColumnAlias.cxx
source/drivers/mozab/MColumnAlias.hxx
source/drivers/mozab/MColumns.cxx
source/drivers/mozab/MColumns.hxx
source/drivers/mozab/MConfigAccess.cxx
source/drivers/mozab/MConfigAccess.hxx
source/drivers/mozab/MConnection.cxx
source/drivers/mozab/MConnection.hxx
source/drivers/mozab/MDatabaseMetaData.cxx
source/drivers/mozab/MDatabaseMetaData.hxx
source/drivers/mozab/MDriver.cxx
source/drivers/mozab/MDriver.hxx
source/drivers/mozab/MExtConfigAccess.hxx
source/drivers/mozab/MPreparedStatement.cxx
source/drivers/mozab/MPreparedStatement.hxx
source/drivers/mozab/MResultSet.cxx
source/drivers/mozab/MResultSet.hxx
source/drivers/mozab/MResultSetMetaData.cxx
source/drivers/mozab/MResultSetMetaData.hxx
source/drivers/mozab/MServices.cxx
source/drivers/mozab/MStatement.cxx
source/drivers/mozab/MStatement.hxx
source/drivers/mozab/MTable.cxx
source/drivers/mozab/MTable.hxx
source/drivers/mozab/MTables.cxx
source/drivers/mozab/MTables.hxx
source/drivers/mozab/bootstrap/MMozillaBootstrap.cxx
source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx
source/drivers/mozab/bootstrap/MNSFolders.cxx
source/drivers/mozab/bootstrap/MNSFolders.hxx
source/drivers/mozab/bootstrap/MNSINIParser.cxx
source/drivers/mozab/bootstrap/MNSINIParser.hxx
source/drivers/mozab/bootstrap/MNSInit.cxx
source/drivers/mozab/bootstrap/MNSInit.hxx
source/drivers/mozab/bootstrap/MNSProfile.cxx
source/drivers/mozab/bootstrap/MNSProfile.hxx
source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.cxx
source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.hxx
source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx
source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx
source/drivers/mozab/bootstrap/MNSProfileManager.cxx
source/drivers/mozab/bootstrap/MNSProfileManager.hxx
source/drivers/mozab/bootstrap/MNSRunnable.cxx
source/drivers/mozab/bootstrap/MNSRunnable.hxx
source/drivers/mozab/bootstrap/makefile.mk
source/drivers/mozab/bootstrap/mozbootstrap.component
source/drivers/mozab/bootstrap/mozilla_nsinit.h
source/drivers/mozab/bootstrap/mozilla_nsprofile.h
source/drivers/mozab/bootstrap/mozilla_nsprofiledirserviceprovider.h
source/drivers/mozab/bootstrap/mozilla_profile_discover.h
source/drivers/mozab/bootstrap/mozilla_profilemanager.h
source/drivers/mozab/bootstrap/post_include_windows.h
source/drivers/mozab/bootstrap/pre_include_windows.h
source/drivers/mozab/exports.dxp
source/drivers/mozab/makefile.mk
source/drivers/mozab/makefile_mozab.mk
source/drivers/mozab/mozab.component
source/drivers/mozab/mozab.xcu
source/drivers/mozab/mozab.xml
source/drivers/mozab/mozab2.xcu
source/drivers/mozab/mozabdrv.map
source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.cxx
source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.hxx
source/drivers/mozab/mozillasrc/MErrorResource.hxx
source/drivers/mozab/mozillasrc/MLdapAttributeMap.cxx
source/drivers/mozab/mozillasrc/MLdapAttributeMap.hxx
source/drivers/mozab/mozillasrc/MNSDeclares.hxx
source/drivers/mozab/mozillasrc/MNSInclude.hxx
source/drivers/mozab/mozillasrc/MNSMozabProxy.cxx
source/drivers/mozab/mozillasrc/MNSMozabProxy.hxx
source/drivers/mozab/mozillasrc/MNSTerminateListener.cxx
source/drivers/mozab/mozillasrc/MNSTerminateListener.hxx
source/drivers/mozab/mozillasrc/MNameMapper.cxx
source/drivers/mozab/mozillasrc/MNameMapper.hxx
source/drivers/mozab/mozillasrc/MQuery.cxx
source/drivers/mozab/mozillasrc/MQuery.hxx
source/drivers/mozab/mozillasrc/MQueryHelper.cxx
source/drivers/mozab/mozillasrc/MQueryHelper.hxx
source/drivers/mozab/mozillasrc/MTypeConverter.cxx
source/drivers/mozab/mozillasrc/MTypeConverter.hxx
source/drivers/mozab/mozillasrc/makefile.mk
source/drivers/mozab/post_include_mozilla.h
source/drivers/mozab/pre_include_mozilla.h
version.mk
f8f46c7906-Nov-2013 Herbert Dürr

#i123642# RmMoz 5/9: remove the obsolete Evolution 1.x address book

Evolution 2.x was released in 2004 and is supported by the evoab2 driver.
Platforms where Evolution 1.x still runs are

#i123642# RmMoz 5/9: remove the obsolete Evolution 1.x address book

Evolution 2.x was released in 2004 and is supported by the evoab2 driver.
Platforms where Evolution 1.x still runs are way below AOO's baseline so
the evoab1 driver can be dropped.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1539263 13f79535-47bb-0310-9956-ffa450edef68

show more ...

06f2ef5506-Nov-2013 Herbert Dürr

#i122365# RmMoz 1/9: start replacing AOO's dependency on full Mozilla with just the NSS library

Patch by: Fan Zheng


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trun

#i122365# RmMoz 1/9: start replacing AOO's dependency on full Mozilla with just the NSS library

Patch by: Fan Zheng


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1539257 13f79535-47bb-0310-9956-ffa450edef68

show more ...

dfbf5fd708-Oct-2013 Jürgen Schmidt

#123428# correct spelling, occured -> occurred

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1530306 13f79535-47bb-0310-9956-ffa450edef68

bc4f48a707-Oct-2013 Herbert Dürr

#i123418# fix the TPropertyValueLessFunctor to enable property sorting


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1529818 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO401, AOO400
2633b3d501-Jul-2013 Andre Fischer

122658: Fixed typo in localized string.
Found by: jteera
Reported by: Andrea Pescetti


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1498336 13f79

122658: Fixed typo in localized string.
Found by: jteera
Reported by: Andrea Pescetti


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1498336 13f79535-47bb-0310-9956-ffa450edef68

show more ...

1a3755bc28-May-2013 Herbert Dürr

#i122396# prevent boost from using typeids in connectivity's no-rtti parts

fixes a build breaker in some environments where boost's tr1 is used as STL.
The dependence of rtti-less parts

#i122396# prevent boost from using typeids in connectivity's no-rtti parts

fixes a build breaker in some environments where boost's tr1 is used as STL.
The dependence of rtti-less parts of the connectivity module on rtti-enabled
comphelper headers which in turn uses STL in both modes explores the limits
of compilers and runtime environments for little gain and is thus quite sick...


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1486833 13f79535-47bb-0310-9956-ffa450edef68

show more ...

82c0ddf227-May-2013 Herbert Dürr

#i122208# include <algorithm> explicitly if functions from <algorithm> are used

most STLs include relevant parts of it indirectly, but
one can not depend on it (seen with MSVC's tr1 head

#i122208# include <algorithm> explicitly if functions from <algorithm> are used

most STLs include relevant parts of it indirectly, but
one can not depend on it (seen with MSVC's tr1 headers)


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1486646 13f79535-47bb-0310-9956-ffa450edef68

show more ...

910823ae18-Apr-2013 Jürgen Schmidt

#121996# integrate first part to remove 3layer office

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1469276 13f79535-47bb-0310-9956-ffa450edef68

12345