Skip to content

Commit

Permalink
Merge pull request sakaiproject#1255 from ddelblanco/SAK-30039
Browse files Browse the repository at this point in the history
SAK-30039 Making the short date format to match with the locale forma…
  • Loading branch information
ottenhoff committed Nov 9, 2015
2 parents 9ded799 + ae46a42 commit fa6d460
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion signup/tool/src/webapp/signup/attendee/signupMeeting.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
<f:convertDateTime pattern=", EEE," timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{timeSlotWrapper.timeSlot.endTime}" rendered="#{AttendeeSignupMBean.meetingWrapper.meeting.meetingCrossDays}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
</h:panelGroup>
</h:column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
<f:convertDateTime pattern="EEE, " timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{wrapper.meeting.startTime}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
</h:panelGroup>
</t:column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<f:convertDateTime pattern=", EEE, " timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{timeSlot.timeSlot.endTime}" rendered="#{NewSignupMeetingBean.signupMeeting.meetingCrossDays}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
</h:panelGroup>
</h:column>
Expand Down
4 changes: 2 additions & 2 deletions signup/tool/src/webapp/signup/newMeeting/step2.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
<f:convertDateTime pattern=", EEE," timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{timeSlot.timeSlot.startTime}" rendered="#{NewSignupMeetingBean.signupMeeting.meetingCrossDays}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{msgs.timeperiod_divider}" escape="false"/>
<h:outputText value="#{timeSlot.timeSlot.endTime}" styleClass="longtext">
Expand All @@ -217,7 +217,7 @@
<f:convertDateTime pattern=", EEE," timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{timeSlot.timeSlot.endTime}" rendered="#{NewSignupMeetingBean.signupMeeting.meetingCrossDays}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
</h:panelGroup>
</h:column>
Expand Down
4 changes: 2 additions & 2 deletions signup/tool/src/webapp/signup/organizer/orgSignupMeeting.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@
<f:convertDateTime pattern=", EEE, " timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{timeSlotWrapper.timeSlot.endTime}" rendered="#{OrganizerSignupMBean.meetingWrapper.meeting.meetingCrossDays}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
</h:outputLink>
<h:panelGroup rendered="#{OrganizerSignupMBean.meetingWrapper.meeting.meetingExpired}">
Expand All @@ -510,7 +510,7 @@
<f:convertDateTime pattern=", EEE, " timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{timeSlotWrapper.timeSlot.endTime}" rendered="#{OrganizerSignupMBean.meetingWrapper.meeting.meetingCrossDays}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
</h:panelGroup>
</h:panelGroup>
Expand Down
2 changes: 1 addition & 1 deletion signup/tool/src/webapp/signup/signupMeetings.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
<f:convertDateTime pattern="EEE, " timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
<h:outputText value="#{wrapper.meeting.startTime}">
<f:convertDateTime dateStyle="short" timeZone="#{UserTimeZone.userTimeZone}"/>
<f:convertDateTime dateStyle="short" pattern="#{UserLocale.dateFormat}" timeZone="#{UserTimeZone.userTimeZone}"/>
</h:outputText>
</h:panelGroup>
</t:column>
Expand Down

0 comments on commit fa6d460

Please sign in to comment.