From 070e83e66801b1d776efdad194993297e06e40d6 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Mon, 3 Jan 2011 09:16:42 +0330 Subject: [PATCH] project library cleaned --- src/lib/project.el | 10 ++++------ src/lib/template.el | 17 ----------------- 2 files changed, 4 insertions(+), 23 deletions(-) delete mode 100644 src/lib/template.el diff --git a/src/lib/project.el b/src/lib/project.el index ee1a859..b72278b 100644 --- a/src/lib/project.el +++ b/src/lib/project.el @@ -1,4 +1,4 @@ -;; Shit - My personal emacs IDE configuration +;; Kuso - My personal emacs IDE ;; Copyright (C) 2010 Sameer Rahmani ;; ;; This program is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . -;; project.el - Shit providen API for projects +;; project.el - Kuso providen API for projects ;; Some of the context variable that template render ;; enginge will render are: @@ -38,9 +38,9 @@ ;; Project name (setq project-name (read-string "Project Name: ")) (if (string= project-name "") (error "Project name must not be emty")) - ;; Shit IDE use unix-project-name for dealing with project OS activity stuffs + ;; Kuso IDE use unix-project-name for dealing with project OS activity stuffs (setq unix-project-name (downcase (replace-regexp-in-string " " "_" project-name))) - ;; if specified directory does not exists, shit will make it + ;; if specified directory does not exists, Kuso will make it (setq project-path (read-directory-name "Project Path: " nil nil nil unix-project-name)) (if (not (file-exists-p project-path)) @@ -55,14 +55,12 @@ (progn (setq project-license nil) (setq project-author nil) - (setq project-home-page nil) (setq project-author-email nil) (setq project-desc nil) ) (progn (setq project-author (read-string "Project Author: ")) (setq project-author-email (read-string "Project Author Email: ")) - (setq project-home-page (read-string "Home Page: ")) (setq project-desc (read-string "Description: ")) ) ) diff --git a/src/lib/template.el b/src/lib/template.el deleted file mode 100644 index 20b1661..0000000 --- a/src/lib/template.el +++ /dev/null @@ -1,17 +0,0 @@ -;; Shit - My personal emacs IDE configuration -;; Copyright (C) 2010 Sameer Rahmani -;; -;; 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. -;; -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. -;; -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;; Template library