Documentation ¶
Index ¶
- Constants
- Variables
- func AvatarLink(email string) string
- func BasicAuthDecode(encoded string) (string, string, error)
- func BasicAuthEncode(username, password string) string
- func BuildSanitizer() (p *bluemonday.Policy)
- func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string
- func DetectEncoding(content []byte) (string, error)
- func EllipsisString(str string, length int) string
- func EncodeMD5(str string) string
- func EncodeSha1(str string) string
- func ExecPath() (string, error)
- func FileSize(s int64) string
- func GetRandomString(n int, alphabets ...byte) string
- func Int64sToMap(ints []int64) map[int64]bool
- func Int64sToStrings(ints []int64) []string
- func IsImageFile(data []byte) (string, bool)
- func IsMarkdownFile(name string) bool
- func IsReadmeFile(name string) bool
- func IsTextFile(data []byte) (string, bool)
- func PBKDF2(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte
- func PostProcessMarkdown(rawHtml []byte, urlPrefix string, metas map[string]string) []byte
- func RawTimeSince(t time.Time, lang string) string
- func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string, metas map[string]string) []byte
- func RenderMarkdown(rawBytes []byte, urlPrefix string, metas map[string]string) []byte
- func RenderMarkdownString(raw, urlPrefix string, metas map[string]string) string
- func RenderRawMarkdown(body []byte, urlPrefix string) []byte
- func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte
- func RenderSpecialLink(rawBytes []byte, urlPrefix string, metas map[string]string) []byte
- func ShortSha(sha1 string) string
- func StringsToInt64s(strs []string) []int64
- func Subtract(left interface{}, right interface{}) interface{}
- func TimeSince(t time.Time, lang string) template.HTML
- func TimeSincePro(then time.Time) string
- func VerifyTimeLimitCode(data string, minutes int, code string) bool
- type CustomRender
- func (r *CustomRender) AutoLink(out *bytes.Buffer, link []byte, kind int)
- func (r *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte)
- func (r *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte, content []byte)
- func (options *CustomRender) ListItem(out *bytes.Buffer, text []byte, flags int)
- type TplName
Constants ¶
const ( Minute = 60 Hour = 60 * Minute Day = 24 * Hour Week = 7 * Day Month = 30 * Day Year = 12 * Month )
Seconds-based time units
const ( Byte = 1 KByte = Byte * 1024 MByte = KByte * 1024 GByte = MByte * 1024 TByte = GByte * 1024 PByte = TByte * 1024 EByte = PByte * 1024 )
const DOC_URL = "https://github.com/gogits/go-gogs-client/wiki"
const TimeLimitCodeLength = 12 + 6 + 40
Variables ¶
var GoGetMetas = make(map[string]bool)
var (
MentionPattern = regexp.MustCompile(`(\s|^)@[0-9a-zA-Z_\.]+`)
)
var Sanitizer = BuildSanitizer()
Functions ¶
func AvatarLink ¶
AvatarLink returns avatar link by given e-mail.
func BasicAuthEncode ¶ added in v0.5.8
func BuildSanitizer ¶ added in v0.8.25
func BuildSanitizer() (p *bluemonday.Policy)
func CreateTimeLimitCode ¶
create a time limit code code format: 12 length date time string + 6 minutes string + 40 sha1 encoded string
func DetectEncoding ¶ added in v0.5.9
func EllipsisString ¶ added in v0.8.25
EllipsisString returns a truncated short string, it appends '...' in the end of the length of string is too large.
func EncodeSha1 ¶ added in v0.5.8
Encode string to sha1 hex value.
func GetRandomString ¶
GetRandomString generate random string by specify chars.
func Int64sToMap ¶ added in v0.6.5
Int64sToMap converts a slice of int64 to a int64 map.
func Int64sToStrings ¶ added in v0.6.9
Int64sToStrings converts a slice of int64 to a slice of string.
func IsImageFile ¶
func IsMarkdownFile ¶
func IsReadmeFile ¶
IsReadmeFile returns true if given file name suppose to be a README file.
func IsTextFile ¶
func PBKDF2 ¶ added in v0.3.0
http://code.google.com/p/go/source/browse/pbkdf2/pbkdf2.go?repo=crypto
func PostProcessMarkdown ¶ added in v0.6.1
PostProcessMarkdown treats different types of HTML differently, and only renders special links for plain text blocks.
func RenderIssueIndexPattern ¶ added in v0.5.9
func RenderMarkdown ¶
func RenderMarkdownString ¶ added in v0.3.0
func RenderRawMarkdown ¶ added in v0.4.0
func RenderSha1CurrentPattern ¶ added in v0.5.9
func RenderSpecialLink ¶ added in v0.3.0
func StringsToInt64s ¶ added in v0.6.5
StringsToInt64s converts a slice of string to a slice of int64.
func Subtract ¶
func Subtract(left interface{}, right interface{}) interface{}
Subtract deals with subtraction of all types of number.
func TimeSincePro ¶
TimeSincePro calculates the time interval and generate full user-friendly string.
Types ¶
type CustomRender ¶
type CustomRender struct { blackfriday.Renderer // contains filtered or unexported fields }
func (*CustomRender) AutoLink ¶ added in v0.8.25
func (r *CustomRender) AutoLink(out *bytes.Buffer, link []byte, kind int)