Procházet zdrojové kódy

Fix spacing around copyright notices

pull/54/head
Matt Baer před 5 roky
rodič
revize
3ae45bc156
39 změnil soubory, kde provedl 39 přidání a 0 odebrání
  1. +1
    -0
      account.go
  2. +1
    -0
      activitypub.go
  3. +1
    -0
      admin.go
  4. +1
    -0
      app.go
  5. +1
    -0
      auth.go
  6. +1
    -0
      author/author.go
  7. +1
    -0
      cache.go
  8. +1
    -0
      cmd/writefreely/main.go
  9. +1
    -0
      collections.go
  10. +1
    -0
      config/config.go
  11. +1
    -0
      config/data.go
  12. +1
    -0
      config/funcs.go
  13. +1
    -0
      config/setup.go
  14. +1
    -0
      config/validation.go
  15. +1
    -0
      database.go
  16. +1
    -0
      errors.go
  17. +1
    -0
      export.go
  18. +1
    -0
      feed.go
  19. +1
    -0
      handle.go
  20. +1
    -0
      hostmeta.go
  21. +1
    -0
      instance.go
  22. +1
    -0
      keys.go
  23. +1
    -0
      nodeinfo.go
  24. +1
    -0
      pad.go
  25. +1
    -0
      page/page.go
  26. +1
    -0
      pages.go
  27. +1
    -0
      parse/posts.go
  28. +1
    -0
      parse/posts_test.go
  29. +1
    -0
      postrender.go
  30. +1
    -0
      posts.go
  31. +1
    -0
      read.go
  32. +1
    -0
      request.go
  33. +1
    -0
      routes.go
  34. +1
    -0
      session.go
  35. +1
    -0
      sitemap.go
  36. +1
    -0
      templates.go
  37. +1
    -0
      unregisteredusers.go
  38. +1
    -0
      users.go
  39. +1
    -0
      webfinger.go

+ 1
- 0
account.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
activitypub.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
admin.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
app.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
auth.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

// AuthenticateUser ensures a user with the given accessToken is valid. Call


+ 1
- 0
author/author.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package author

import (


+ 1
- 0
cache.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
cmd/writefreely/main.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package main

import (


+ 1
- 0
collections.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
config/config.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package config

import (


+ 1
- 0
config/data.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package config

type UserCreation struct {


+ 1
- 0
config/funcs.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package config

import (


+ 1
- 0
config/setup.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package config

import (


+ 1
- 0
config/validation.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package config

import (


+ 1
- 0
database.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
errors.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
export.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
feed.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
handle.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
hostmeta.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
instance.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

type InstanceStats struct {


+ 1
- 0
keys.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
nodeinfo.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
pad.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
page/page.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

// package page provides mechanisms and data for generating a WriteFreely page.
package page



+ 1
- 0
pages.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
parse/posts.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package parse

import (


+ 1
- 0
parse/posts_test.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package parse

import "testing"


+ 1
- 0
postrender.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
posts.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
read.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
request.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import "mime"


+ 1
- 0
routes.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
session.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
sitemap.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
templates.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
unregisteredusers.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
users.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


+ 1
- 0
webfinger.go Zobrazit soubor

@@ -7,6 +7,7 @@
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/

package writefreely

import (


Načítá se…
Zrušit
Uložit