#1657 Please make it easy to customize text in the default profiles.
Closed: migrated by dmoluguw. Opened by dminnich.

We would like to change the caDirServerCert so that the filed that says "LDAP User Password" would instead say "OTP Password" or similar.

cfu: where is UserMessages.properties located at? i can't find it on one of my installed instances
dminnich, yeah, that's what I was afraid of. I suspect it is just a source...but just in case it is under a different name, I asked mharmsen and edewata to confirm. If that's the source, then it can't be reconfigured

edewata> cfu: which properties file? if it's in jar file you could extract it, change it, then put it back into jar file.
cfu: but if the file is supposed to be user configurable we should consider moving it to conf folder

dminnich, edewata , yes, i think they should be configurable (I actually thought they were).
dminnich> cfu: cool. def let us know if you figure out the properties file or otherwise


I was able to do what I needed here for the auth text. I did it by editing ProfileSelect.template and replacing the (var i = 0; i < authListSet.length; i++) {
logic with

document.writeln('<tr>');
document.writeln('<td width=40%>');
document.writeln('<FONT size="-1" face="PrimaSans BT, Verdana, sans-serif">');
document.writeln('<li>');
document.writeln('Username');
document.writeln('</FONT>');
document.writeln('</td>');
document.writeln('<td>');
document.writeln('<input type=text name="uid">');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('<tr>');
document.writeln('<td width=40%>');
document.writeln('<FONT size="-1" face="PrimaSans BT, Verdana, sans-serif">');
document.writeln('<li>');
document.writeln('Pin and Token');
document.writeln('</FONT>');
document.writeln('</td>');
document.writeln('<td>');
document.writeln('<input type=password name="pwd">');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('</table>');

Changing say "Requestor Email" to different text is more difficult to figure out though because for (var n = 0; n < inputListSet.length; n++) { logic is more complex.

Viewing the source of the HTML shows things like
inputList.inputId="requestor_email";
inputList.inputName="Requestor Email";

are declared at the top as variables. I can't figure out where those names are set but allowing you to override them in a config file would be great.

Per CS/DS meeting of 11/02/2015: 10.4 - minor

Metadata Update from @dminnich:
- Issue set to the milestone: UNTRIAGED

Dogtag PKI is moving from Pagure issues to GitHub issues. This means that existing or new
issues will be reported and tracked through Dogtag PKI's GitHub Issue tracker.

This issue has been cloned to GitHub and is available here:
https://github.com/dogtagpki/pki/issues/2216

If you want to receive further updates on the issue, please navigate to the
GitHub issue and click on Subscribe button.

Thank you for understanding, and we apologize for any inconvenience.

Metadata Update from @dmoluguw:
- Issue close_status updated to: migrated
- Issue status updated to: Closed (was: Open)

Metadata