Age | Commit message (Collapse) | Author |
|
as this changes permissions when extracting, and those are restrictive,
since it is a temporary directory
Change-Id: I41b28fe405e5915faeea944eb3cfdbed518ac55d
|
|
Change-Id: Ia0893eda90307e5dbb7265b3c321515a8b823a24
|
|
I ran pylint and corrected the following errors:
* W: 39,0: Unnecessary semicolon
* W:177,0: Bad indentation. Found 19 spaces, expected 20
* W:178,0: Bad indentation. Found 19 spaces, expected 20
* W:213,0: Unnecessary semicolon
* W: 65,8:Parser.get_comments: Unused variable 'linenum'
* C:190,28:Parser.check_file: Operator not preceded by a space
* C:192,24:Parser.check_file: Operator not followed by a space
* C:196,24:Parser.check_file: Comma not followed by a space
* W:223,33:Parser.check_source_files: Redefining built-in 'dir'
Change-Id: Idd4986fecb7b3a2af87d1062b7d08c6c87b9f80f
Reviewed-on: https://gerrit.libreoffice.org/10475
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: Icef93accc6953a4484707fb9da01a85963002a21
|
|
Change-Id: I8ceb9d815f616afe42ce31a96bc2699438603e43
|
|
At the moment it always stops on folders that already exists. See
https://bugs.freedesktop.org/show_bug.cgi?id=70414#c18 and the following
comments for example of the error messages that I face without this patch.
Change-Id: I1a1f337872ce3a817d425ff10255e3ae9a73c1a2
Reviewed-on: https://gerrit.libreoffice.org/10062
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
|
|
Change-Id: I739f5f9b6f0e6a97832136812b289ae27cfaae37
|
|
Change-Id: I077d7c9a41793abdf5f001386f44ac407f94a6d3
|
|
Change-Id: I3728244712966cf2245a79f2630ac46cb63f1d21
|
|
Not all operation system install packages into /usr, make sure
create-tree.sh do respect the PREFIX variable
Change-Id: Iff358c9e22fb8969afaef2bb96e1f91eb7e91123
Reviewed-on: https://gerrit.libreoffice.org/9730
Tested-by: Michael Stahl <mstahl@redhat.com>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
|
|
Change-Id: I24ee2599ffe8029c3d3888de49cff8bfd0a368e0
Reviewed-on: https://gerrit.libreoffice.org/9723
Tested-by: Michael Stahl <mstahl@redhat.com>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
|
|
connectivity: 3m52s -> 2m47s
cppcanvas: 28s -> 13s
cppuhelper: 20s -> 14s
dbaccess: 2m38s -> 2m01s
hwpfilter: 16s -> 13s
sot: 21s -> 16s
Change-Id: I49286bfe6be73dd1b861be632b95e17a99e82f8a
|
|
desktop: 1m51s -> 54s
framework: 1m55s -> 1m04s
package: 32s -> 16s
sdext: 1m31s -> 47s
svgio: 32s -> 15s
uui: 49s -> 20s
vbahelper: 1m44s -> 27s
xmlscript: 15s -> 10s
xmlsecurity: 45s -> 23s
Change-Id: Ia437969c091bf877983ababc5ea2d044bbc0bee0
|
|
Change-Id: Ie4b925b2411f2a26076de7d0dc367678b390dba8
|
|
Change-Id: Ibdefb876d39419ff622917fcef427b33e3942ae4
|
|
Change-Id: I80ce89351e2a8dbb1d9d928b673a8589fd651584
|
|
Change-Id: I37b4c1081055f98c9254d64480efeb2c205e711d
|
|
Change-Id: I2654933e1e6f50902be6b992767ab5caac273f9c
|
|
Now we have nice example header guards ;)
Change-Id: I1a5f8031cf267abf67dc4fbb20880d23e3640867
|
|
Change-Id: I1039d34cef1d426a9deb6dec2c3e7d746f9cf1ae
|
|
Change-Id: I690c5196ab81178c666ee39dd247fbe0438db80b
|
|
In calculating how many tabs to use for the display,
when the path was more than 40 characters (like for
dbaccess/source/ui/relationdesign/RelationTableView.cxx)
it returned '1, 0' for the number of tabs --
and python didn't like that. Return 1 instead.
Change-Id: If370ffe03b4aff67ca59094dd38863986ca39519
Reviewed-on: https://gerrit.libreoffice.org/9239
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
|
|
follow-up commit to https://gerrit.libreoffice.org/#/c/9226/ .
text_cat -s was documented as "Not very efficient yet, because
language models are re-loaded after each line." So if we want
to use text_cat -s for thousands of lines, better
read the language models only once and store them.
When tested on svl/source, the speed-up was a futher factor 1.5
(reduced from 6 s to 4 s).
Change-Id: I654a250b0e369e01c5eac5970b64df1390f0ef35
Reviewed-on: https://gerrit.libreoffice.org/9227
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
|
|
Instead of recreating a text_cat sub-process for every string, start a
single text-cat process (with the -s flag, "per line") and reuse that.
Testing on svl/source shows a speed-up of 7.5 x, down from 45.6s to 6.1s!
To avoid blocking on the pipes set autoflush in text-cat, and use
read_line instead of read on the find-german-comments side.
Change-Id: Ic6c00fc3c1e7cbcbbfff65512bf54ad11f900697
Reviewed-on: https://gerrit.libreoffice.org/9226
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
|
|
Change-Id: I48b5c6afe861704abe978cb07ecd9df6e39d7b7c
|
|
Change-Id: I12b9d5816c685b2374e6d659436e46965f29cd3a
|
|
Change-Id: I2a0a14c905ec1ba1408b625894ba0b8a02e17aa7
|
|
Change-Id: Ic8d5861fda5b21df43447eb7bc4dc9a416ce1afb
|
|
Change-Id: Id91272de715bbab7b3a18a1905ca593cf959422c
|
|
Reading stdin is confusing as it means running the script without any
arguments and with no input redirection just seems to do
nothing. (OTOH, who would use this script except seasoned hackers who
know how command-line tools typically work... oh well.)
Change-Id: I00b4f70b07b6515b52a22b4ec4e048cc84c1dc83
|
|
Change-Id: Id9c5dfdee00c8b9baa21c7345f7218e982bfd434
|
|
You can specify a regular expression for the -f option, typically
several library names combined with the '|' operator, as in:
bin/ios-mapfile-statistics -s -f 'libswlo|libsclo' <workdir/TiledLibreOffice.map|c++filt
Change-Id: I917fc392a41ed28c6b19ec5c2c16384d1186a532
|
|
Change-Id: I2c6c46f4f570f4999154daa7e0f84f6ecd6f2d79
|
|
Show the total size of code and data linked in from each library.
Change-Id: Ibd6e0e15259f338addc30f2d821c794d65676637
|
|
handle the following expression correctly:
endif /* !INCLUDED_TDOC_DATASUPPLIER_HXX */
Change-Id: I0c8b31464c9545bdbbb1371f13134f2cc89aad71
|
|
|
|
Change-Id: Ie80e2ef74932b9dd46b2f709e181c00aac4d4f9c
|
|
Change-Id: I2407d7b0ccdc592fde3da073a6ee2d40537fbe5f
Reviewed-on: https://gerrit.libreoffice.org/9089
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I6c53ec2ae15a68b9fa6bfd0daf81d6a21ca6c457
|
|
The intent being that the data file will be used instead.
To avoid linking error, correspondingly include the ICU stubdata
library in the list of static libraries to link with.
Change-Id: I0f223fcce89dfbe283aaa2fcd2d5a58ea36ba364
|
|
...besides sal/Library_sal.mk, like i18npool/Library_collator_data.mk.
Change-Id: I2d86540bd8123410972496047fdb59ebcf35968f
|
|
OAuth2Handler is from libcmis
Change-Id: Ia1986d6df7ab45580c66b4e536c5882af41f357f
|
|
Change-Id: Ic0a9ed4aa95418fdc1a2e49419eb2a2482351232
|
|
Change-Id: Ic1b115583415ab9bd2bdb18fa55f61803efc8442
|
|
Change-Id: Icc64d56a74be9e95fdf69204356f9c2405ce7cc8
|
|
Change-Id: Ie10ee80f1d35b40c0baf9d7ba5c1181b52405b5f
|
|
Change-Id: I754345b637bb71a822c9ea4f1edf6e344172b467
|
|
And remove them from tango and tango_testing links.txt.
Change-Id: I47cce64eac403bfaa8dd40f9e1878565bd8ae80f
|
|
Checks for the following mistakes:
* swapped original and link
* both exist, and are the same - git rm link then
* both exist, and differ - warn about that, so that a human can check
Change-Id: I6e0fc5c5b47fbb34aef8a1069c76720e9d6f8d5f
|
|
Change-Id: I14692a566cea6c5939360d62fd4b82c9feb0aa40
|