项目:tomcat7
文件:SSIMediator.java
public void setConfigTimeFmt(String configTimeFmt,boolean fromConstructor) {
this.configTimeFmt = configTimeFmt;
this.strftime = new Strftime(configTimeFmt,Locale.US);
//Variables like DATE_LOCAL,DATE_GMT,and LAST_MODIFIED need to be
// updated when
//the timefmt changes. This is what Apache SSI does.
setDateVariables(fromConstructor);
}
项目:lams
文件:SSIMediator.java
public void setConfigTimeFmt(String configTimeFmt,boolean fromConstructor) {
this.configTimeFmt = configTimeFmt;
//What's the story here with Datetool.LOCALE_US?? Why??
this.strftime = new Strftime(configTimeFmt,Datetool.LOCALE_US);
//Variables like DATE_LOCAL,and LAST_MODIFIED need to be
// updated when
//the timefmt changes. This is what Apache SSI does.
setDateVariables(fromConstructor);
}
项目:jerrydog
文件:SSIMediator.java
public void setConfigTimeFmt( String configTimeFmt,boolean fromConstructor ) {
this.configTimeFmt = configTimeFmt;
//What's the story here with Datetool.LOCALE_US?? Why??
this.strftime = new Strftime( configTimeFmt,Datetool.LOCALE_US );
//Variables like DATE_LOCAL,and LAST_MODIFIED need to be updated when
//the timefmt changes. This is what Apache SSI does.
setDateVariables( fromConstructor );
}
项目:apache-tomcat-7.0.73-with-comment
文件:SSIMediator.java
项目:lazycat
文件:SSIMediator.java
项目:class-guard
文件:SSIMediator.java
项目:apache-tomcat-7.0.57
文件:SSIMediator.java
项目:HowTomcatWorks
文件:SSIMediator.java
项目:WBSAirback
文件:SSIMediator.java
项目:tomcat7
文件:SSIFlastmod.java
项目:lams
文件:SSIFlastmod.java
项目:jerrydog
文件:SSIFlastmod.java
项目:apache-tomcat-7.0.73-with-comment
文件:SSIFlastmod.java
protected String formatDate(Date date,Locale.US);
return strftime.format(date);
}
项目:lazycat
文件:SSIFlastmod.java
protected String formatDate(Date date,Locale.US);
return strftime.format(date);
}
项目:class-guard
文件:SSIFlastmod.java
protected String formatDate(Date date,Locale.US);
return strftime.format(date);
}
项目:apache-tomcat-7.0.57
文件:SSIFlastmod.java
protected String formatDate(Date date,Locale.US);
return strftime.format(date);
}
项目:HowTomcatWorks
文件:SSIFlastmod.java
项目:WBSAirback
文件:SSIFlastmod.java