Documentation
¶
Index ¶
Constants ¶
View Source
const DATE_FORMAT string = time.RFC3339
Variables ¶
View Source
var DateArgvAction = func(c commander.Context) error { date, ok := c.GetString("<date>") if !ok || len(date) == 0 { return errors.New("ERROR: <date> should not be empty.") } now := time.Now() offset := time.Now() if date = strings.TrimSpace(strings.ToLower(date)); date != "now" { date = regexp.MustCompile(`\d{1,2}:\d{1,2}`).FindString(date) date = regexp.MustCompile(`\d{1,2}`).ReplaceAllStringFunc(date, func(s string) string { if len(s) == 1 { return "0" + s } return s }) offsetStr := offset.Format(DATE_FORMAT) offsetStr = offsetStr[:11] + date + offsetStr[16:] offset, _ = time.Parse(DATE_FORMAT, offsetStr) if offset.IsZero() { return errors.New("ERROR: <date> formats: '15:04' or 'now'.") } } if c.Contain("--day") || c.Contain("--month") || c.Contain("--year") { offset = offset.AddDate(c.MustInt("--year"), c.MustInt("--month"), c.MustInt("--day")) } if i := c.MustInt("--hour"); i != 0 { offset = offset.Add(time.Duration(i) * time.Hour) } if i := c.MustInt("--minute"); i != 0 { offset = offset.Add(time.Duration(i) * time.Minute) } if offset.Equal(now) { return nil } return execCommandGitDate(offset.Unix()) }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.