summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-10-13 01:02:49 +0200
committerGravatar Tom Willemse2013-10-13 01:02:49 +0200
commit1f885cd7998112287da454880ed5552db8e276cc (patch)
treeb25cd94da4accd437b6ad31b39f260fd47cbc4e5
parent85aa7c3d11e4ffb83e573683037477ec74deb48b (diff)
downloadorgweb-1f885cd7998112287da454880ed5552db8e276cc.tar.gz
orgweb-1f885cd7998112287da454880ed5552db8e276cc.zip
Remove old junk
-rw-r--r--Makefile4
-rw-r--r--orgweb.el58
-rw-r--r--site.scm5
3 files changed, 0 insertions, 67 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index ff1e85b..0000000
--- a/Makefile
+++ /dev/null
@@ -1,4 +0,0 @@
-.PHONY: publish
-
-publish:
- scp -r _publish/* ryuslash.org:public_html/orgweb/
diff --git a/orgweb.el b/orgweb.el
deleted file mode 100644
index 6f32a6e..0000000
--- a/orgweb.el
+++ /dev/null
@@ -1,58 +0,0 @@
-;;; orgweb.el --- Helper functions for maintaining my site
-
-;; Author: Tom Willemsen <tom@ryuslash.org>
-;; Created: Jul 1, 2012
-;; Version: 1
-
-;;; Commentary:
-
-;; Just for personal use really. Of course, feel free to use any or
-;; all parts of this file.
-
-;;; Code:
-
-;;;###autoload
-(define-skeleton orgweb-new-project
- "A skeleton for creating a new project page for my site."
- ""
- '(find-file (concat "~/code/projects/orgweb/site/projects/"
- (downcase (setq orgweb-project-name
- (skeleton-read "Title: ")))
- ".org"))
- "#+TITLE: " orgweb-project-name "\n"
- "#+LINK_UP: " (setq orgweb-link-up (skeleton-read "Up: ")) "\n"
- "#+LINK_HOME: " (setq orgweb-link-home (skeleton-read "Home: ")) "\n"
- "#+LINK: src https://github.com/ryuslash/" (downcase orgweb-project-name) "\n"
- "#+LINK: tar_gz https://github.com/ryuslash/" (downcase orgweb-project-name) "/tarball/master\n"
- "#+LINK: zip https://github.com/ryuslash/" (downcase orgweb-project-name) "/zipball/master\n"
- "#+STARTUP: showall\n"
- "\n"
- "#+begin_html\n"
- " <script src=\"/keyjs.js\" type=\"text/javascript\"></script>\n"
- " <script type=\"text/javascript\">\n"
- " keyjs_initialize({ \"u\": [ \"keyjs_goto\", \"" orgweb-link-up "\" ],\n"
- " \"h\": [ \"keyjs_goto\", \"" orgweb-link-home "\" ] });\n"
- " </script>\n"
- "#+end_html\n"
- "\n"
- "#+include: \"dlmenu.inc\"\n"
- "\n"
- "* About\n"
- "\n"
- " " _ "\n"
- "\n"
- "** Features\n"
- "\n"
- " - \n"
- "\n"
- "** Requirements\n"
- "\n"
- " - \n"
- "\n"
- "* Usage\n"
- "\n"
- " ")
-
-(provide 'orgweb)
-
-;;; orgweb.el ends here
diff --git a/site.scm b/site.scm
deleted file mode 100644
index f3f3fbc..0000000
--- a/site.scm
+++ /dev/null
@@ -1,5 +0,0 @@
-(html
- (head
- (title "Just a test"))
- (body
- "Hello"))