# <http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html>\r
#\r
# SINCE 0.5.0\r
-web.datetimestampLongFormat = EEEE, MMMM d, yyyy h:mm a z\r
+web.datetimestampLongFormat = EEEE, MMMM d, yyyy HH:mm Z\r
\r
# Mount URL parameters\r
# This setting controls if pretty or parameter URLs are used.\r
\r
**%VERSION%** ([go](http://code.google.com/p/gitblit/downloads/detail?name=%GO%) | [war](http://code.google.com/p/gitblit/downloads/detail?name=%WAR%) | [express](http://code.google.com/p/gitblit/downloads/detail?name=%EXPRESS%) | [fedclient](http://code.google.com/p/gitblit/downloads/detail?name=%FEDCLIENT%) | [manager](http://code.google.com/p/gitblit/downloads/detail?name=%MANAGER%) | [api](http://code.google.com/p/gitblit/downloads/detail?name=%API%)) based on [%JGIT%][jgit] *released %BUILDDATE%*\r
\r
+#### changes\r
+\r
+- web.datetimestampLongFormat from *EEEE, MMMM d, yyyy h:mm a z* to *EEEE, MMMM d, yyyy HH:mm Z* (issue 50)\r
+\r
#### additions\r
\r
- Allow relinking HEAD to a branch or a tag (Github/plm)\r
\r
public static Label createTimestampLabel(String wicketId, Date date, TimeZone timeZone) {\r
String format = GitBlit.getString(Keys.web.datetimestampLongFormat,\r
- "EEEE, MMMM d, yyyy h:mm a z");\r
+ "EEEE, MMMM d, yyyy HH:mm Z");\r
DateFormat df = new SimpleDateFormat(format);\r
if (timeZone != null) {\r
df.setTimeZone(timeZone);\r
add(new PathBreadcrumbsPanel("breadcrumbs", repositoryName, blobPath, objectId));\r
\r
String format = GitBlit.getString(Keys.web.datetimestampLongFormat,\r
- "EEEE, MMMM d, yyyy h:mm a z");\r
+ "EEEE, MMMM d, yyyy HH:mm Z");\r
final DateFormat df = new SimpleDateFormat(format);\r
df.setTimeZone(getTimeZone());\r
List<AnnotatedLine> lines = DiffUtils.blame(getRepository(), blobPath, objectId);\r