Kaynağa Gözat

Repoint repository references to new location

master
j3s 3 yıl önce
committed by Drew DeVault
ebeveyn
işleme
b5fcf10c44
21 değiştirilmiş dosya ile 37 ekleme ve 37 silme
  1. +1
    -1
      .build.yml
  2. +6
    -6
      README.md
  3. +7
    -7
      cmd/alps/main.go
  4. +2
    -2
      docs/example-go-plugin/plugin.go
  5. +1
    -1
      go.mod
  6. +1
    -1
      plugins/base/plugin.go
  7. +1
    -1
      plugins/base/routes.go
  8. +1
    -1
      plugins/base/viewer.go
  9. +1
    -1
      plugins/caldav/caldav.go
  10. +1
    -1
      plugins/caldav/plugin.go
  11. +1
    -1
      plugins/caldav/routes.go
  12. +1
    -1
      plugins/carddav/carddav.go
  13. +2
    -2
      plugins/carddav/plugin.go
  14. +1
    -1
      plugins/carddav/routes.go
  15. +1
    -1
      plugins/lua/lua.go
  16. +1
    -1
      plugins/lua/plugin.go
  17. +2
    -2
      plugins/viewhtml/plugin.go
  18. +1
    -1
      plugins/viewhtml/sanitize.go
  19. +2
    -2
      plugins/viewhtml/viewer.go
  20. +1
    -1
      plugins/viewtext/plugin.go
  21. +2
    -2
      plugins/viewtext/viewer.go

+ 1
- 1
.build.yml Dosyayı Görüntüle

@@ -2,7 +2,7 @@ image: alpine/edge
packages:
- go
sources:
- https://git.sr.ht/~emersion/alps
- https://git.sr.ht/~migadu/alps
tasks:
- build: |
cd alps


+ 6
- 6
README.md Dosyayı Görüntüle

@@ -1,7 +1,7 @@
# [alps]

[![GoDoc](https://godoc.org/git.sr.ht/~emersion/alps?status.svg)](https://godoc.org/git.sr.ht/~emersion/alps)
[![builds.sr.ht status](https://builds.sr.ht/~emersion/alps/commits.svg)](https://builds.sr.ht/~emersion/alps/commits?)
[![GoDoc](https://godoc.org/git.sr.ht/~migadu/alps?status.svg)](https://godoc.org/git.sr.ht/~migadu/alps)
[![builds.sr.ht status](https://builds.sr.ht/~migadu/alps/commits.svg)](https://builds.sr.ht/~migadu/alps/commits?)

A simple and extensible webmail.

@@ -29,8 +29,8 @@ Send patches on the [mailing list], report bugs on the [issue tracker].

MIT

[alps]: https://sr.ht/~emersion/alps
[alps]: https://sr.ht/~migadu/alps
[RFC 6186]: https://tools.ietf.org/html/rfc6186
[Go plugin helpers]: https://godoc.org/git.sr.ht/~emersion/alps#GoPlugin
[mailing list]: https://lists.sr.ht/~emersion/alps-dev
[issue tracker]: https://todo.sr.ht/~emersion/alps
[Go plugin helpers]: https://godoc.org/git.sr.ht/~migadu/alps#GoPlugin
[mailing list]: https://lists.sr.ht/~migadu/alps-dev
[issue tracker]: https://todo.sr.ht/~migadu/alps

+ 7
- 7
cmd/alps/main.go Dosyayı Görüntüle

@@ -9,18 +9,18 @@ import (
"syscall"
"time"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/fernet/fernet-go"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/labstack/gommon/log"

_ "git.sr.ht/~emersion/alps/plugins/base"
_ "git.sr.ht/~emersion/alps/plugins/caldav"
_ "git.sr.ht/~emersion/alps/plugins/carddav"
_ "git.sr.ht/~emersion/alps/plugins/lua"
_ "git.sr.ht/~emersion/alps/plugins/viewhtml"
_ "git.sr.ht/~emersion/alps/plugins/viewtext"
_ "git.sr.ht/~migadu/alps/plugins/base"
_ "git.sr.ht/~migadu/alps/plugins/caldav"
_ "git.sr.ht/~migadu/alps/plugins/carddav"
_ "git.sr.ht/~migadu/alps/plugins/lua"
_ "git.sr.ht/~migadu/alps/plugins/viewhtml"
_ "git.sr.ht/~migadu/alps/plugins/viewtext"
)

func main() {


+ 2
- 2
docs/example-go-plugin/plugin.go Dosyayı Görüntüle

@@ -7,8 +7,8 @@ import (
"fmt"
"net/http"

"git.sr.ht/~emersion/alps"
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
"git.sr.ht/~migadu/alps"
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
)

func init() {


+ 1
- 1
go.mod Dosyayı Görüntüle

@@ -1,4 +1,4 @@
module git.sr.ht/~emersion/alps
module git.sr.ht/~migadu/alps

go 1.13



+ 1
- 1
plugins/base/plugin.go Dosyayı Görüntüle

@@ -1,7 +1,7 @@
package alpsbase

import (
"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
)

func init() {


+ 1
- 1
plugins/base/routes.go Dosyayı Görüntüle

@@ -12,7 +12,7 @@ import (
"strconv"
"strings"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/emersion/go-imap"
"github.com/emersion/go-message"
"github.com/emersion/go-message/mail"


+ 1
- 1
plugins/base/viewer.go Dosyayı Görüntüle

@@ -3,7 +3,7 @@ package alpsbase
import (
"fmt"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/emersion/go-message"
)



+ 1
- 1
plugins/caldav/caldav.go Dosyayı Görüntüle

@@ -5,7 +5,7 @@ import (
"net/http"
"net/url"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/emersion/go-webdav/caldav"
)



+ 1
- 1
plugins/caldav/plugin.go Dosyayı Görüntüle

@@ -5,7 +5,7 @@ import (
"net/http"
"net/url"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
)

const (


+ 1
- 1
plugins/caldav/routes.go Dosyayı Görüntüle

@@ -8,7 +8,7 @@ import (
"strings"
"time"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/emersion/go-ical"
"github.com/emersion/go-webdav/caldav"
"github.com/google/uuid"


+ 1
- 1
plugins/carddav/carddav.go Dosyayı Görüntüle

@@ -5,7 +5,7 @@ import (
"net/http"
"net/url"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/emersion/go-webdav/carddav"
)



+ 2
- 2
plugins/carddav/plugin.go Dosyayı Görüntüle

@@ -5,8 +5,8 @@ import (
"net/http"
"net/url"

"git.sr.ht/~emersion/alps"
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
"git.sr.ht/~migadu/alps"
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
"github.com/emersion/go-vcard"
"github.com/emersion/go-webdav/carddav"
)


+ 1
- 1
plugins/carddav/routes.go Dosyayı Görüntüle

@@ -7,7 +7,7 @@ import (
"path"
"strings"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/emersion/go-vcard"
"github.com/emersion/go-webdav/carddav"
"github.com/google/uuid"


+ 1
- 1
plugins/lua/lua.go Dosyayı Görüntüle

@@ -5,7 +5,7 @@ import (
"html/template"
"path/filepath"

"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
"github.com/labstack/echo/v4"
"github.com/yuin/gopher-lua"
"layeh.com/gopher-luar"


+ 1
- 1
plugins/lua/plugin.go Dosyayı Görüntüle

@@ -1,7 +1,7 @@
package alpslua

import (
"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
)

func init() {


+ 2
- 2
plugins/viewhtml/plugin.go Dosyayı Görüntüle

@@ -8,8 +8,8 @@ import (
"strconv"
"strings"

"git.sr.ht/~emersion/alps"
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
"git.sr.ht/~migadu/alps"
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
"github.com/labstack/echo/v4"
)



+ 1
- 1
plugins/viewhtml/sanitize.go Dosyayı Görüntüle

@@ -7,7 +7,7 @@ import (
"regexp"
"strings"

alpsbase "git.sr.ht/~emersion/alps/plugins/base"
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
"github.com/aymerick/douceur/css"
cssparser "github.com/chris-ramon/douceur/parser"
"github.com/microcosm-cc/bluemonday"


+ 2
- 2
plugins/viewhtml/viewer.go Dosyayı Görüntüle

@@ -7,8 +7,8 @@ import (
"io/ioutil"
"strings"

"git.sr.ht/~emersion/alps"
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
"git.sr.ht/~migadu/alps"
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
"github.com/emersion/go-message"
)



+ 1
- 1
plugins/viewtext/plugin.go Dosyayı Görüntüle

@@ -1,7 +1,7 @@
package alpsviewtext

import (
"git.sr.ht/~emersion/alps"
"git.sr.ht/~migadu/alps"
)

func init() {


+ 2
- 2
plugins/viewtext/viewer.go Dosyayı Görüntüle

@@ -7,8 +7,8 @@ import (
"net/url"
"strings"

"git.sr.ht/~emersion/alps"
alpsbase "git.sr.ht/~emersion/alps/plugins/base"
"git.sr.ht/~migadu/alps"
alpsbase "git.sr.ht/~migadu/alps/plugins/base"
"github.com/emersion/go-message"
"gitlab.com/golang-commonmark/linkify"
)


Yükleniyor…
İptal
Kaydet