From 7b9773df5fabf72ca4904ce92293a81816ba3938 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 4 Sep 2014 16:25:53 +0200 Subject: [PATCH] Rename humanstxt to humanshtml --- .../humanstxt.coffee => humanshtml/humanshtml.coffee} | 4 ++-- .../humanstxt.html => humanshtml/templates/humans.html} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename app/plugins/{humanstxt/humanstxt.coffee => humanshtml/humanshtml.coffee} (87%) rename app/plugins/{humanstxt/templates/humanstxt.html => humanshtml/templates/humans.html} (100%) diff --git a/app/plugins/humanstxt/humanstxt.coffee b/app/plugins/humanshtml/humanshtml.coffee similarity index 87% rename from app/plugins/humanstxt/humanstxt.coffee rename to app/plugins/humanshtml/humanshtml.coffee index 2b42b38a..59130f8a 100644 --- a/app/plugins/humanstxt/humanstxt.coffee +++ b/app/plugins/humanshtml/humanshtml.coffee @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # -# File: plugins/humanstxt/humanstxt.coffee +# File: plugins/humanshtml/humanshtml.coffee ### # Simple plugin example that extends the urlmappings @@ -26,6 +26,6 @@ taiga = @.taiga module = angular.module("taigaPlugins") configure = ($routeProvider) -> - $routeProvider.when("/humans.txt", {"templateUrl": "/plugins/humanstxt/templates/humanstxt.html"}) + $routeProvider.when("/humans.html", {"templateUrl": "/plugins/humanshtml/templates/humans.html"}) module.config(["$routeProvider", configure]) diff --git a/app/plugins/humanstxt/templates/humanstxt.html b/app/plugins/humanshtml/templates/humans.html similarity index 100% rename from app/plugins/humanstxt/templates/humanstxt.html rename to app/plugins/humanshtml/templates/humans.html