Skip to content

Commit c16b47a

Browse files
committed
Deleted the WebUtils class. Using DateUtils instead.
1 parent fd0ebc0 commit c16b47a

File tree

3 files changed

+16
-92
lines changed

3 files changed

+16
-92
lines changed

src/javaxt/express/cms/WebSite.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package javaxt.express.cms;
22
import javaxt.express.FileManager;
3-
import javaxt.express.utils.WebUtils;
3+
import javaxt.express.utils.DateUtils;
44
import javaxt.http.servlet.*;
55
import javaxt.utils.Console;
66
import java.io.IOException;
@@ -498,7 +498,7 @@ private void sendHTML(HttpServletRequest request, HttpServletResponse response)
498498

499499
//Get last modified date
500500
long lastModified = dates.last();
501-
String date = WebUtils.getDate(lastModified); //"EEE, dd MMM yyyy HH:mm:ss zzz"
501+
String date = DateUtils.getDate(lastModified); //"EEE, dd MMM yyyy HH:mm:ss zzz"
502502

503503

504504
//Create eTag using the combined, uncompressed size of the html

src/javaxt/express/utils/DateUtils.java

+14-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//** Date Utils
66
//******************************************************************************
77
/**
8-
* Provides static methods
8+
* Provides static methods used to support web applications
99
*
1010
******************************************************************************/
1111

@@ -52,9 +52,9 @@ public static TimeZone getUTC(){
5252
//**************************************************************************
5353
//** getDate
5454
//**************************************************************************
55-
/** Used to convert a UNIX timestamp in milliseconds to a string in GMT (e.g.
56-
* "Mon, 20 Feb 2012 13:04:28 GMT"). Note that this method does not rely on
57-
* the java.text.SimpleDateFormat for performance reasons.
55+
/** Used to convert a UNIX timestamp in milliseconds to a string in GMT
56+
* (e.g. "Mon, 20 Feb 2012 13:04:28 GMT"). Note that this method does not
57+
* rely on the java.text.SimpleDateFormat for performance reasons.
5858
* @param milliseconds Milliseconds since January 1, 1970, 00:00:00 UTC
5959
*/
6060
public static String getDate(long milliseconds){
@@ -63,7 +63,16 @@ public static String getDate(long milliseconds){
6363
return getDate(cal);
6464
}
6565

66-
private static String getDate(Calendar cal){
66+
67+
//**************************************************************************
68+
//** getDate
69+
//**************************************************************************
70+
/** Used to convert a Calendar to a string in GMT (see above)
71+
*/
72+
public static String getDate(Calendar cal){
73+
74+
//DO NOT USE java.text.SimpleDateFormat for performance reasons!!!
75+
6776

6877
if (!cal.getTimeZone().equals(tz)){
6978
cal = (java.util.Calendar) cal.clone();

src/javaxt/express/utils/WebUtils.java

-85
This file was deleted.

0 commit comments

Comments
 (0)