summaryrefslogtreecommitdiffstats
path: root/base/silent
Commit message (Collapse)AuthorAgeFilesLines
* Fixed pkisilent build problem.alee-82Endi Sukma Dewata2012-11-101-1/+0
| | | | | | | The CMakeLists.txt for pkisilent has been fixed to remove references to subca_silent.template. Ticket #398
* Removed 'pki/base/silent/templates/subca_silent.template'.Matthew Harmsen2012-11-091-512/+0
|
* Move default location for client certificate database (pkisilent)Matthew Harmsen2012-11-091-1/+5
| | | | * TRAC Ticket #398 - Move default location for client certificate databas
* Removal of version numbers from jar file namesMatthew Harmsen2012-10-291-12/+2
| | | | * TRAC Ticket #350 - Dogtag 10: Remove version numbers from PKI jar files . . .
* Merged pki-silent into pki-server.Endi Sukma Dewata2012-10-072-12/+10
| | | | | | The pki-silent package has been merged into pki-server package. Ticket #354
* Using RPM version number in CMake.Endi Sukma Dewata2012-10-011-1/+2
| | | | | | | | | | | | The RPM spec files have been modified to pass the full RPM version number to CMake. The version number contains the product version number, release number, milestone, and platform. The CMake scritps will parse and use this version number to generate Java manifest files. The product version number will be used as the specification version and full version number will be used as the implementation version. Ticket #339
* Added VERSION file.Endi Sukma Dewata2012-09-282-0/+11
| | | | | | | | | | | The CMake scripts have been modified to store the version number in /usr/share/pki/VERSION and in JAR manifest files. These files can be read by PKI applications to obtain the version number without having to query the RPM database. Fixed warnings in Java.cmake file. Ticket #339
* Merged pki-native-tools and pki-java-tools.Endi Sukma Dewata2012-08-291-1/+1
| | | | | | | | | The pki-native-tools and pki-java-tools have been merged into pki-tools and pki-server will depend on it. Since pki-ra and pki-tps depends on pki-server they automatically depends on pki-tools as well. Ticket #295
* Updated the remaining build scripts.Endi Sukma Dewata2012-08-151-52/+43
| | | | | | | The remaining build scripts have been updated to automatically find the source codes. Ticket #62
* SE_BAD_FIELD, MIGHT_IGNORE , STATIC_INNER_CLASSAbhishek Koneru2012-07-102-7/+5
|
* LeftOver Cases in Resource Leaks and NULL_RETURNSAbhishek Koneru2012-07-021-8/+3
|
* Fixes for Guarded_By_Violation issues shown in CoverityAbhishek Koneru2012-07-021-2/+2
|
* Fix for handling null object value passed to DBAttrMapper as part of ↵Abhishek Koneru2012-06-291-1/+1
| | | | Coverity fix for Forward NULL cases in DogTag 10.
* Fixes for Forward Null Cases in Coverity for DogTag10Abhishek Koneru2012-06-293-6/+11
| | | | Addressed review coments.
* Fixes for Resource Leaks shown in Coverity for DogTag 10Abhishek Koneru2012-06-2111-227/+534
|
* Fixed null pointer exception in pkisilent on connection error.Endi Sukma Dewata2012-06-187-153/+175
| | | | | | | | | Previously HTTPClient.sslConnect() would return a null if there is a connection issue. Some code in pkisilent did not check the return value properly so it would throw an exception. The sslConnect() has been modified to throw an exception instead. Ticket #180
* Fixes for Coverity issues of type Stringbuffer, NO_EQUALS_METHOD , ↵Abhishek Koneru2012-06-151-0/+25
| | | | REVERSE_INULL,Wrong_Map_Iterators
* Fixes for NULL_RETURNS Coverity Issues - Part 2Abhishek Koneru2012-06-143-37/+21
|
* Patch with fixes for review comments 0529Abhishek Koneru2012-06-011-3/+1
|
* Fixes for Coverity Issues CALL_SUPER,UNCONFIRMEDCAST,DEAD_STORE,TOSTRING_ARRAYAbhishek Koneru2012-06-013-4/+4
|
* Patch for fixes for Review CommentsAbhishek Koneru2012-05-244-9/+4
|
* Fixes for Coverity Defects of Category : ↵Abhishek Koneru2012-05-245-45/+44
| | | | FB.SBSC_USE_STRINGBUFFER_CONCATENATION --Remaining
* Fixes for Coverity Defects of Category : FB.DM_NUMBER_CTOR, ↵Abhishek Koneru2012-05-243-21/+9
| | | | FB.DM_STRING_CTOR, FB.DM_STRING_VOID_CTOR
* Fixes for Coverity Defects of Category : FB.BC_VACUOUS_INSTANCEOFAbhishek Koneru2012-05-241-3/+2
|
* Removed unused private fields.Endi Sukma Dewata2012-04-1210-24/+43
| | | | | | | Most of unused private fields have been removed because they generate warnings in Eclipse. Some are kept because it might be useful later. Ticket #139
* Removed unnecessary type casts.Endi Sukma Dewata2012-04-096-16/+14
| | | | | | Unnecessary type casts have been removed using Eclipse Quick Fix. Ticket #134
* Removed whitespaces from Java code.Endi Sukma Dewata2012-04-0936-372/+372
| | | | | | | | Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134
* Replaced deprecated DataInputStream.readLine().Endi Sukma Dewata2012-03-282-30/+28
| | | | | | | The deprecated readLine() method in DataInputStream has been replaced by the same method in BufferedReader. Ticket #3
* Replaced deprecated XMLSerializer.Endi Sukma Dewata2012-03-271-8/+13
| | | | | | | | The deprecated XMLSerializer has been replaced with LSSerializer. The new API does not provide a way to control the indentation or line width. Ticket #3
* Removed unnecessary pki folder.Endi Sukma Dewata2012-03-2650-0/+26368
Previously the source code was located inside a pki folder. This folder was created during svn migration and is no longer needed. This folder has now been removed and the contents have been moved up one level. Ticket #131