Colin Wood

Results 15 comments of Colin Wood

the _ you are leaving out is the Link object. Thats what gives you a next and previous link for doing pagination. If you do client.GetPage(link.Next) it will give you...

```go issues, link, err := client.GetIssues(org, proj, nil, nil, "is:resolved") for issues { for _, issue := range issues { fmt.Printf(issue.Title) } if link.Next { err := client.GetPage(link.Next, &issues) if...

Regex for {{STATIC_URL}} ``` viml %s~"{{STATIC_URL}}\(\S*\)"~"{% static "\1" %}"~g ``` Regex for /static/ ``` viml %s~"/static/\(\S*\)"~"{% static "\1" %}"~g ```

I actully get this same issue but its not from the server not being up as much as the vhost isnt up and you need to set permissions and add...