From 2ee2b8c60f72157d60047e487688273189732d57 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 1 Sep 2010 10:06:10 -0400 Subject: [PATCH] Add GPL file headers --- build.py | 8 ++++++++ src/main.go | 8 ++++++++ src/paths.go | 9 +++++++++ src/server.go | 9 +++++++++ web_frontend/main.js | 9 +++++++++ 5 files changed, 43 insertions(+) diff --git a/build.py b/build.py index 1f2328f..41f8155 100755 --- a/build.py +++ b/build.py @@ -1,3 +1,11 @@ +# +# Armadillo File Manager +# Copyright (c) 2010, Robert Sesek +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or any later version. +# #!/usr/bin/env python2.5 import os import shutil diff --git a/src/main.go b/src/main.go index 4d2b5f8..e5c8887 100644 --- a/src/main.go +++ b/src/main.go @@ -1,3 +1,11 @@ +// +// Armadillo File Manager +// Copyright (c) 2010, Robert Sesek +// +// This program is free software: you can redistribute it and/or modify it under +// the terms of the GNU General Public License as published by the Free Software +// Foundation, either version 3 of the License, or any later version. +// package main diff --git a/src/paths.go b/src/paths.go index 25ffcec..195007b 100644 --- a/src/paths.go +++ b/src/paths.go @@ -1,3 +1,12 @@ +// +// Armadillo File Manager +// Copyright (c) 2010, Robert Sesek +// +// This program is free software: you can redistribute it and/or modify it under +// the terms of the GNU General Public License as published by the Free Software +// Foundation, either version 3 of the License, or any later version. +// + package paths import ( diff --git a/src/server.go b/src/server.go index 632c9cb..1ce15a0 100644 --- a/src/server.go +++ b/src/server.go @@ -1,3 +1,12 @@ +// +// Armadillo File Manager +// Copyright (c) 2010, Robert Sesek +// +// This program is free software: you can redistribute it and/or modify it under +// the terms of the GNU General Public License as published by the Free Software +// Foundation, either version 3 of the License, or any later version. +// + package server import ( diff --git a/web_frontend/main.js b/web_frontend/main.js index be0ea1e..f056235 100644 --- a/web_frontend/main.js +++ b/web_frontend/main.js @@ -1,3 +1,12 @@ +// +// Armadillo File Manager +// Copyright (c) 2010, Robert Sesek +// +// This program is free software: you can redistribute it and/or modify it under +// the terms of the GNU General Public License as published by the Free Software +// Foundation, either version 3 of the License, or any later version. +// + goog.provide('armadillo'); goog.require('goog.array'); -- 2.22.5