Initial code commit.

This commit is contained in:
Archie Hilton 2024-10-14 21:30:34 +01:00
parent ebae4d0156
commit 6a416f652d
8 changed files with 106 additions and 0 deletions

13
.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
/target
/classes
/checkouts
profiles.clj
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
/.prepl-port
.hgignore
.hg/

24
CHANGELOG.md Normal file
View File

@ -0,0 +1,24 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
## [Unreleased]
### Changed
- Add a new arity to `make-widget-async` to provide a different widget shape.
## [0.1.1] - 2024-10-14
### Changed
- Documentation on how to make the widgets.
### Removed
- `make-widget-sync` - we're all async, all the time.
### Fixed
- Fixed widget maker to keep working when daylight savings switches over.
## 0.1.0 - 2024-10-14
### Added
- Files from the new template.
- Widget maker public API - `make-widget-sync`.
[Unreleased]: https://sourcehost.site/your-name/website/compare/0.1.1...HEAD
[0.1.1]: https://sourcehost.site/your-name/website/compare/0.1.0...0.1.1

20
LICENSE Normal file
View File

@ -0,0 +1,20 @@
Copyright 2024 Archie Hilton
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# website
A Clojure library designed to ... well, that part is up to you.
## Usage
FIXME
## License
See [LICENSE](LICENSE)

3
doc/intro.md Normal file
View File

@ -0,0 +1,3 @@
# Introduction to website
TODO: write [great documentation](http://jacobian.org/writing/what-to-write/)

8
project.clj Normal file
View File

@ -0,0 +1,8 @@
(defproject website "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]
[hiccup "2.0.0-RC3"]]
:repl-options {:init-ns website.core})

20
src/website/core.clj Normal file
View File

@ -0,0 +1,20 @@
(ns website.core)
;; Requirements:
;; - Parse markdown into html content
;; - Build templates from html
;; - Handle images
;; - Automatically update when new content is pushed
;; - Blog framework
;; - Ability to link blogs covering the same project automatically
;; - Parse YAML headers for date and project
;;
;; Stack
;; - Clojure for the SSB
;; - Just HTML/CSS/JS I don't need anything fancy
;; - Markdown files in a directory
(defn foo
"I don't do a whole lot."
[x]
(println x "Hello, World!"))

View File

@ -0,0 +1,7 @@
(ns website.core-test
(:require [clojure.test :refer :all]
[website.core :refer :all]))
(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))