Giter VIP home page Giter VIP logo

adventcalendar's Introduction

#AdventCalendar

Advent Calendar is a very light web application to show a picture and its legend per day before Christmas.
It’s written in PHP, use last web technologies, and proud to not support old versions of IE.

Home of Advent Calendar


You are in a hurry?

OK, let's do it quickly!

git clone https://github.com/Devenet/AdventCalendar advent
cd advent/private
cp settings.example.json settings.json

Then edit the settings.json file to configure the application and set the year – or generate settings file and put it in the private folder.

To finish, just put your JPEG files in the private folder; images named with the number of the day (such as 1.jpeg or 2.jpg).


Installation

Get the source

Download the last version on the releases page!

Or clone the repository

If you have git on your server, you can also just clone the repository with:

git clone https://github.com/Devenet/AdventCalendar advent

Configuration

Basic configuration

Rename the settings.example.json file on folder private in settings.json and edit it to configure the application.

The minimum configuration file must be like:

{
	"title": "my Advent Calendar",
	"year": 2014
}

Feel free to use the online settings file Generator to easily build your settings.json file, and then put it into the private folder.

Full available options

Property Type Description
year integer Set the year to be used for the calendar and the cutdown
title string Set the title of your AdventCalendar
background string Set to alternate to use an alternative background image
passkey string If filled out visitors need to enter a password to access the private AdventCalendar
disqus_shortname string Set a Disqus account to enable comments for days
google_analytics object Set a Google Analytics account with a child object containing the two properties tracking_id and domain
piwik object Set a Piwik account with a child object containing the two properties piwik_url and site_id

This is an example with all options:

{
	"title": "my Advent Calendar",
	"year": 2014,
	"background": "alternate",
	"passkey": "mySecretPassword",
	"disqus_shortname": "myDisqusName",
	"google_analytics": {
		"tracking_id": "UC-12345",
		"domain": "domain.tld"
	},
	"piwik": {
		"piwik_url": "piwik.domain.tld",
		"site_id": "12345"
	}
}

Transform AdventCalendar into CountDownCalendar

If you want, you can also customize month, first day and last day which are used to display the period of days, but it's not really an AdventCalendar anymore ;-)

Just change the period with those 3 options:

{
	"month": 3,
	"first_day": 8,
	"last_day": 31
}

Picture per days

Add pictures

Put your photos in the private/ folder, and name them with the number of the day you want to illustrate. For example, for the 1st December, call your file 1.jpg or 1.jpeg.

Be sure that the access to private folder is forbidden when browsing it!
For Apache configuration, be sure that a .htaccess file with the directive deny from all is in and read.

Customize legend and title

To add a title, a legend or a text on a day page, just rename calendar.example.json in folder private in calendar.json and add what you want to display.

For example:

{
        "6": {
                "title": "Saint Nicholas Day",
								"legend": "Berlin, March 2013",
								"text": "Lorem ipsum dolor sit amet, [...]."
        }
}

Feel free to use the online calendar file Generator to easily build your calendar.json file, and then put it into the private folder.

A day with title, legend and text


Oups, problems?

  • All days are shown before Christmas: Check the syntax in settings.json or update the year.
  • Photo is not displayed: Be sure your photo is correctly named, like 3.jpg or 12.jpeg.
  • Title, legend or text are not displayed: Check the syntax of your calendar.json file.
  • Day is shown in late or advance: Configure the timezone of your server.

Want to contribute?

Source code is hosted on Github by Nicolas Devenet. Feel free to fork it and to improve the application!

Let me know if you use Advent Calendar by sending me an email, I will be happy ;-)

adventcalendar's People

Contributors

devenet avatar

Watchers

r0b1n avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.