1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 20:01:36 +03:00
A workspace for research teams
Go to file
2017-01-24 08:39:52 +02:00
favicon Add a favicon 2016-05-10 23:44:20 +03:00
lib Fix unnecesary additions of NoImplicitPrelude 2017-01-24 00:40:50 +00:00
scripts Fix the test script to use stack 2016-10-16 20:21:57 +03:00
src Remove unused (so far) admin-css widget 2016-08-17 23:18:53 +03:00
static Remove “hire me” from /donate 2016-10-23 14:09:13 +03:00
templates Wrap item titles nicely 2016-11-26 22:23:01 +03:00
tests Fix test compilation (due to hspec-webdriver version bump) 2017-01-23 13:21:05 +03:00
.ghci Add a .ghci file 2016-07-30 01:11:56 +03:00
.gitignore Use config instead of environment variables 2016-03-22 01:17:53 +03:00
.travis.yml Download Chromedriver 2016-11-15 13:36:26 +03:00
CHANGELOG.md Create the project 2016-02-02 12:36:07 +03:00
guide.cabal Add an 'Imports' module 2017-01-23 13:14:23 +03:00
INSTALL.md [INSTALL] Update for Stack 2016-08-25 17:05:29 +03:00
LICENSE Create the project 2016-02-02 12:36:07 +03:00
README.md Big switch to Mustache (only half-done) 2016-08-17 11:18:57 +03:00
Setup.hs Create the project 2016-02-02 12:36:07 +03:00
stack.yaml Switch to GHC 8 2016-11-26 03:40:46 +03:00

Aelve Guide

Build status BSD3 license

The beta version is running at guide.aelve.com. The most complete section yet is the one about lenses.

Installation instructions and the explanation of config variables (in config.json) are here: INSTALL.md. Don't be afraid to install it locally it's very easy! You don't need to set up any databases or anything like that, and you can get a full copy of the data from the site by simply cloning it from Github.

Contributing

If you want to contribute but don't know where to start, grep the source for [very-easy] and [easy], or look at these issues:

  • “your first pull request” really easy things, with detailed “how to fix it” instructions
  • “your second pull request” less easy things, which assume that you already know where stuff happens in the code
  • “not-fleshed-out idea” discussion issues (“should we have users? what better ways are there to present pros and cons?”) which you can help with even if you don't know Haskell
  • “design” issues about design (which I'm not good at, and so help is wanted)

Overview of the code

Folder structure

  • lib actual code (as a library)
  • src just a dumb Main.hs file to compile an executable
  • tests tests
  • static icons, CSS, Markdown pages, HTML pages, and some JS libraries
  • templates HTML templates for pages and elements of pages
  • scripts some scripts used by automatic testing
  • favicon code used to generate a favicon

Notes

When you see something like

-- See Note [acid-state]

it means that there's an extensive comment somewhere else in the code, which you can find by grepping for Note [acid-state]. This convention was stolen from GHC. If you know some plugin for Emacs that would help with jumping to comments (even if those comments would have to be formatted differently), let me know.

Main modules

There are 4 main modules Guide.hs, JS.hs, View.hs, and Types.hs.

Guide.hs contains:

  • handlers for GET/POST requests (renderMethods, setMethods, etc)
  • feed generation (itemToFeedEntry)
  • some utility functions (undoEdit, lucidWithConfig, createCheckpoint')
  • the main function, which starts the server

JS.hs contains all Javascript that is used in pages. The way it works is tricky: each Javascript function is overloaded in such a way that it can generate either a function call or a function definition. allJSFunctions, exported by JS.hs, is made by producing definitions from all functions in the module and then concatenating them; later allJSFunction is served by the server as /js.js. When you see something like JS.foo (a, b, c) in Haskell code, a call to foo is being generated (and foo can be found in JS.hs).

View.hs contains HTML rendering code. (It's much uglier than using templates, and we should switch to templates one day. Actually, maybe we should even switch to Node.js or Elm from Haskell.)

Types.hs contains almost all types used in code elsewhere Item, Category, and so on. GlobalState is a type for, well, the whole database used by the site. All content, all edits, and all analytics data (i.e. users' IPs, etc) are stored there. The data is held in memory, and acid-state makes sure that data on hard drive is kept in sync with it. For a more detailed explanation, see Note [acid-state].

Currently changing database schema is somewhat painful; to see how exactly painful it is, look at Note [extending types]. Not painful enough to never touch it again, sure, but still kinda annoying. Making it easier is possible, but for that we'd need a different acid-state or a real database.

Other modules

Markdown.hs contains functions for rendering Markdown. There are special types for Markdown as well, coupling rendered Markdown, its text representation, and its parse tree.

Merge.hs contains an algorithm for merging edits if you are editing a description of an item and someone else is editing the same description, upon submitting your edit you'll get a popup showing both versions and a merged version.

Cache.hs provides some helpers for caching pages. (A cache is a global variable holding a map from cache keys to rendered HTML.)

Config.hs has a config type and functions for reading/writing said config.

Utils.hs is just that utility functions.