summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* LOGCXX-484: Spelling error s/excute/executeHEADmastertschoening2016-10-232-14/+15
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1766278 13f79535-47bb-0310-9956-ffa450edef68
* Remove blank line to make comparing easier.tschoening2016-08-031-1/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1755031 13f79535-47bb-0310-9956-ffa450edef68
* indentationtschoening2016-07-171-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1753033 13f79535-47bb-0310-9956-ffa450edef68
* If the child zip-process fails, throw an IOException, like with all the ↵tschoening2016-07-081-1/+3
| | | | | | other errors. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1751863 13f79535-47bb-0310-9956-ffa450edef68
* Cleaning up the code a bit.tschoening2016-07-071-54/+60
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1751829 13f79535-47bb-0310-9956-ffa450edef68
* Added some minor apt-get notes and such.tschoening2016-07-021-3/+7
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1751060 13f79535-47bb-0310-9956-ffa450edef68
* wcstombs was not available even if it was defined to be.tschoening2016-07-021-0/+6
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1751058 13f79535-47bb-0310-9956-ffa450edef68
* Intendation fixedtschoening2016-07-021-167/+162
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1751050 13f79535-47bb-0310-9956-ffa450edef68
* LOGCXX-482: I never liked the static_cast<char>-approach and so changed to ↵tschoening2016-07-024-65/+65
| | | | | | | | what the bug author provided and is inline with the following comment, which has already been mentione din LOGCXX-400. http://stackoverflow.com/questions/28094263/create-array-of-chars-avoiding-narrowing?rq=1#comment44564938_28094263 git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1751049 13f79535-47bb-0310-9956-ffa450edef68
* Missing icons.tschoening2016-07-012-0/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750946 13f79535-47bb-0310-9956-ffa450edef68
* print.css is always referenced, but I couldn't find an useful template.tschoening2016-07-011-0/+21
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750941 13f79535-47bb-0310-9956-ffa450edef68
* All the generated HTML files already had a license header.tschoening2016-07-011-7/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750939 13f79535-47bb-0310-9956-ffa450edef68
* The CSS files in the build target already have a license header, adding one ↵tschoening2016-07-011-16/+0
| | | | | | to maven-theme.css breaks line endings. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750938 13f79535-47bb-0310-9956-ffa450edef68
* UTF-8tschoening2016-07-011-0/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750937 13f79535-47bb-0310-9956-ffa450edef68
* spellingtschoening2016-07-011-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750936 13f79535-47bb-0310-9956-ffa450edef68
* Native line endings ios needed because Maven seems to add some text with ↵tschoening2016-07-010-0/+0
| | | | | | native line endings as well. If always UNIX was needed, we would get inconistent endings when building on Windows. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750931 13f79535-47bb-0310-9956-ffa450edef68
* Line endings need to be consistent because files get merged with their ↵tschoening2016-07-013-80/+80
| | | | | | endings during build. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1750929 13f79535-47bb-0310-9956-ffa450edef68
* LOGCXX-464: TimeBasedRollingPolicy should append as configured on rollovertschoening2016-04-101-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1738416 13f79535-47bb-0310-9956-ffa450edef68
* LOGCXX-464: TimeBasedRollingPolicy::initialize was able to forward an ↵tschoening2016-04-056-177/+164
| | | | | | "append" property from the caller appender, the rollover method instead wasn't and originally used a hard coded value of "false", which was later enhanced in LOGCXX-412 to true/false depending on some macro. This looks like an error with the API itself to me so I changed rollover to need an append property as well. Originally I thought of creating a backwards compatible wrapper still providing a hard coded value of true/false depending on the macro, but because of the abstract base RollingPolicy I needed to change that and all children anyways. While the current approach might break callers implementing their own policy, to me this looks like the better approach because that way those implementers need to think of the original error and act accordingly. LOGCXX-412 shows that some users already encountered the same error and resolved it with just another hard coded value. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1737849 13f79535-47bb-0310-9956-ffa450edef68
* code styletschoening2016-04-051-5/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1737844 13f79535-47bb-0310-9956-ffa450edef68
* Project file generation moved to autogen, because this si called during a ↵tschoening2016-03-252-2/+10
| | | | | | release and "site" itself doesn't use the generated project files anyway. They only need to exist for a release. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736647 13f79535-47bb-0310-9956-ffa450edef68
* code styletschoening2016-03-251-4/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736645 13f79535-47bb-0310-9956-ffa450edef68
* Target "site" generates project files currently, which makes it hard on ↵tschoening2016-03-251-3/+9
| | | | | | Windows to generate only the web site and current apidocs, because one needs a full compile environment. I e.g. use an unsupported compiler and generating xcode project files requires a unix shell, so one would need MSYS, Cygwin or such, which is a lot of overhead for just generating the website. So as a first step I moved the project generation into its own target and depend on it in site. But in a second step I'm looking for some way to remove project file generation under some circumstances. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736644 13f79535-47bb-0310-9956-ffa450edef68
* Whitespacetschoening2016-03-251-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736641 13f79535-47bb-0310-9956-ffa450edef68
* Project files use relative paths and those are only valid if one additional ↵tschoening2016-03-251-3/+25
| | | | | | level is used in the release archive. But that should make the dir more easier to read anyways. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736640 13f79535-47bb-0310-9956-ffa450edef68
* code styletschoening2016-03-251-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736632 13f79535-47bb-0310-9956-ffa450edef68
* The file ar-lib was reported missing in a clean new release archive and ↵tschoening2016-03-251-0/+1
| | | | | | because depcomp seems to be comparable in its purpose, I simply added it. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736613 13f79535-47bb-0310-9956-ffa450edef68
* I don't have any configure.in file after running autogen.sh on a clean ↵tschoening2016-03-251-1/+1
| | | | | | working dir and after comparing configure.in form an older release with current configure.ac both are almost identical, so I change to use configurae.ac in a release now. Additionally, aclocal excplicitly said that I need either configure.in or configure.ac, so should be OK to change... git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736612 13f79535-47bb-0310-9956-ffa450edef68
* Executing autoconf and automake is not enough, aclocal is needed as well and ↵tschoening2016-03-251-2/+1
| | | | | | all of those are in autogen.sh already. Don't know how I missed that, I guess I called autogen.sh by accident very early and never removed the created aclocal file anymore. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736603 13f79535-47bb-0310-9956-ffa450edef68
* Include dirs for find_*.m4 have changed and the new dir needs to be provided ↵tschoening2016-03-251-1/+1
| | | | | | here as well, just removing the aclocal line doesn't seemt o work for some reason. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736593 13f79535-47bb-0310-9956-ffa450edef68
* All the IDE project files are now generated in one directory in the target ↵tschoening2016-03-255-15/+16
| | | | | | dir to improve its clarity. They are still in the generated release archives and a "mvn clear && mvn package" still passes. So it doesn't look I broke something. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736561 13f79535-47bb-0310-9956-ffa450edef68
* Makefiletschoening2016-03-250-0/+0
| | | | | | Makefile.in git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736556 13f79535-47bb-0310-9956-ffa450edef68
* IDE project files are generate during phase "site" again.tschoening2016-03-252-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736555 13f79535-47bb-0310-9956-ffa450edef68
* "includeSiteDirectory" seems to add files with wrong permissions.tschoening2016-03-251-1/+15
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736549 13f79535-47bb-0310-9956-ffa450edef68
* "projects" contains dirs as well.tschoening2016-03-251-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736548 13f79535-47bb-0310-9956-ffa450edef68
* code styletschoening2016-03-251-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736547 13f79535-47bb-0310-9956-ffa450edef68
* One should be able to skip tests to easier test the release process itself, ↵tschoening2016-03-251-0/+2
| | | | | | packaging things up and such. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736546 13f79535-47bb-0310-9956-ffa450edef68
* code styletschoening2016-03-251-1/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736542 13f79535-47bb-0310-9956-ffa450edef68
* code styletschoening2016-03-251-1/+9
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736541 13f79535-47bb-0310-9956-ffa450edef68
* For some reason, tars produced with "mvn site assembly:assembly" contained ↵tschoening2016-03-241-0/+3
| | | | | | | | | files which were all executable, even NOTICE and such plain text files. This is wrong of course, but shouldn't have been the case, because regarding the maven documentation, 0644 is the default unless specified otherwise. I make sure now by defining all the permissions I want. https://maven.apache.org/plugins/maven-assembly-plugin/assembly.html git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736497 13f79535-47bb-0310-9956-ffa450edef68
* LOGCXX-433: Missed removing find_*.m4 files.tschoening2016-03-241-2/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736494 13f79535-47bb-0310-9956-ffa450edef68
* make dist creates files like "log4cxx-0.11.0.tar.gz" in the root dir.tschoening2016-03-240-0/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736493 13f79535-47bb-0310-9956-ffa450edef68
* LOGCXX-433: svn:ignoretschoening2016-03-240-0/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736492 13f79535-47bb-0310-9956-ffa450edef68
* LOGCXX-433: Moved our m4 files into some subdir as (partly) suggested by ↵tschoening2016-03-247-6/+35
| | | | | | libtoolize to clean up the root folder a bit. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736491 13f79535-47bb-0310-9956-ffa450edef68
* "mvn site assembly:assembly" produced a warning about too long files, so I ↵tschoening2016-03-241-0/+1
| | | | | | | | | | set to use "gnu" mode instead as found on a maven guide. https://github.com/keedio/buildoop/issues/86 http://maven.apache.org/plugins/maven-assembly-plugin/assembly-mojo.html#tarLongFileMode https://maven.apache.org/guides/mini/guide-default-execution-ids.html git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736467 13f79535-47bb-0310-9956-ffa450edef68
* code styletschoening2016-03-241-0/+13
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736462 13f79535-47bb-0310-9956-ffa450edef68
* I'm pretty sure that the release plugin was wrongly situated in the ↵tschoening2016-03-241-7/+7
| | | | | | reporting section and removed it from there. Additionally, maven warned about a missing required version, so I added one. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736461 13f79535-47bb-0310-9956-ffa450edef68
* apr1.0 vs. apr1 und apache-log4cxx-0.10.0 vs. -x.x.xtschoening2016-03-244-11/+11
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736458 13f79535-47bb-0310-9956-ffa450edef68
* "site" phase in maven seems to only call "apidocs", no generation of project ↵tschoening2016-03-241-1/+1
| | | | | | files. Generating project files even fails in my env currently, while mvn site does not. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736455 13f79535-47bb-0310-9956-ffa450edef68
* Spellingtschoening2016-03-241-13/+13
| | | | git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1736454 13f79535-47bb-0310-9956-ffa450edef68