This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: cp936 -*- | |
''' | |
Created on 2013-6-19 | |
@author: gdh | |
''' | |
import sys | |
import urllib | |
def GetCateKeys(fileName): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function HS_DateAdd(interval, number, date) { | |
number = parseInt(number); | |
if (typeof (date) == "string") { | |
var date = new Date(date.split("-")[0], date.split("-")[1], date | |
.split("-")[2]) | |
} | |
if (typeof (date) == "object") { | |
var date = date |
NewerOlder