Skip to content
This repository has been archived by the owner on Aug 9, 2018. It is now read-only.

Commit

Permalink
remove junk files & setting manifest.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ninoseki committed Sep 30, 2012
1 parent b7a74c3 commit 658cbb9
Show file tree
Hide file tree
Showing 35 changed files with 730 additions and 12,501 deletions.
7 changes: 0 additions & 7 deletions Cakefile

This file was deleted.

76 changes: 17 additions & 59 deletions README.md
@@ -1,72 +1,30 @@
# Brunch with Chaplin
![](https://a248.e.akamai.net/camo.github.com/b7ebb8bbcec7938940cf8e9c441124c3bddafd3a/687474703a2f2f662e636c2e6c792f6974656d732f34373039326b30423141334a317a3166306b34362f6277632e706e67)
Pomodoro daisuki
============

Brunch with Chaplin is a skeleton (boilerplate) for [Brunch](http://brunch.io)
based on [Chaplin](https://github.com/chaplinjs/chaplin) framework.
https://chrome.google.com/webstore/detail/nbggjgoannejpkpeamcdmnpdngnpkcln

Requires Brunch 1.4+.
Pomodoro Daisuki is a tool for Pomodoro Technique.

## Getting started
* Create new project via executing `brunch new <project name>`.
Brunch with chaplin is a default application skeleton for Brunch,
so you don't need to specify `--skeleton` option for the command.
* Build the project with `brunch b` or `brunch w`.
* Open the `public/` dir to see the result.
* Write your code.
Thisa app built with Brunch.

Example application built with the skeleton:
[Ost.io](https://github.com/paulmillr/ostio).

See [Chaplin github page](https://github.com/chaplinjs/chaplin) for
documentation.
Contributors
============

## Difference from Chaplin Boilerplate
[Chaplin Boilerplate](https://github.com/chaplinjs/chaplin-boilerplate)
is a official boilerplate all for chaplin. This skeleton is almost the same,
except a few changes:
* [jcplessis](https://github.com/jcplessis)

* Added Header.
* Added authentication abstractions (`SessionController`, `LoginView` etc).
* CommonJS is used instead of AMD, because it's easier to use & debug.
*Thank you!*

## Features
* HTML5Boilerplate 3.0.3 html & css are included.
* CoffeeScript + Stylus + Handlebars as app languages
(you can change this to anything you want)
* Backbone as main framework
* Cross-module communication using the Mediator and Publish/Subscribe patterns
* Controllers for managing individual UI views
* Rails-style routes which map URLs to controller actions
* An application view as dispatcher and view manager
* Extended model, view and collection classes to avoid repetition and
enforce conventions
* Strict memory management and object disposal
* A collection with additional manipulation methods for smarter change events
* A collection view for easy and intelligent list rendering
* Client-side authentication using service providers like Facebook, Google
and Twitter

## License
The MIT license.
Inspiration and ideas from
============

Copyright (c) 2012 Paul Miller (http://paulmillr.com/)
* [The Pomodoro Technique](http://www.pomodorotechnique.com/)
* [retrospectiveapp](https://github.com/paulbjensen/retrospectiveapp)
* [scrumblr](https://github.com/aliasaria/scrumblr)

Copyright (c) 2012 Moviepilot GmbH, 9elements GmbH et al.

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:
License
-------------

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.
Released under the MIT license.
2 changes: 1 addition & 1 deletion app/application.coffee
Expand Up @@ -39,7 +39,7 @@ Application =
@settings = {}
@settings.date_format = "YYYY-MM-DD"

@development = false
@development = true

# Freeze the object
Object.freeze? Application
Expand Down
39 changes: 39 additions & 0 deletions app/assets/javascripts/options.js
@@ -0,0 +1,39 @@
function save_parameter(name){
var input = document.getElementById(name);
localStorage[name] = input.value;
}

function load_parameter(name){
var value = localStorage[name];
if (!value) {
return;
}
var input = document.getElementById(name);
input.value = value;
}

function save_options() {
save_parameter("pomodoro-duration");
save_parameter("short-duration");
save_parameter("long-duration");

var status = document.getElementById("status");
status.innerHTML = "Options Saved.";
setTimeout(function() {
status.innerHTML = "";
}, 750);
}

function restore_options() {
load_parameter("pomodoro-duration");
load_parameter("short-duration");
load_parameter("long-duration");
}

$(function() {
restore_options();

$('#submit').click(function() {
save_options();
});
});
59 changes: 20 additions & 39 deletions app/assets/options.html
@@ -1,46 +1,27 @@
<html>
<head><title>Pomodoro Daisuki</title></head>
<script type="text/javascript">
<script type="text/javascript" src="javascripts/vendor.js"></script>
<script type="text/javascript" src="javascripts/options.js"></script>

function save_parameter(name){
var input = document.getElementById(name);
localStorage[name] = input.value;
}

function load_parameter(name){
var value = localStorage[name];
if (!value) {
return;
}
var input = document.getElementById(name);
input.value = value;
}

function save_options() {
save_parameter("pomodoro-duration");
save_parameter("short-duration");
save_parameter("long-duration");

var status = document.getElementById("status");
status.innerHTML = "Options Saved.";
setTimeout(function() {
status.innerHTML = "";
}, 750);
}

function restore_options() {
load_parameter("pomodoro-duration");
load_parameter("short-duration");
load_parameter("long-duration");
}
</script>

<body onload="restore_options()">
<body>
<table>
<tr><td>Duration of a pomodoro </td><td><input id="pomodoro-duration" size=2 value="25" /></td><td>minutes</td></tr>
<tr><td>Duration of a short break </td><td><input id="short-duration" size=2 value="5" /></td><td>minutes</td></tr>
<tr><td>Duration of a long break </td><td><input id="long-duration" size=2 value="15"/></td><td>minutes</td></tr>
<tr>
<td>Duration of a pomodoro</td>
<td><input id="pomodoro-duration" size=2 value="25"/></td>
<td>minutes</td>
</tr>
<tr>
<td>Duration of a short break</td>
<td><input id="short-duration" size=2 value="5"/></td>
<td>minutes</td>
</tr>
<tr>
<td>Duration of a long break</td>
<td><input id="long-duration" size=2 value="15"/></td>
<td>minutes</td>
</tr>
</table>
<button onclick="save_options()">Save</button> <span id="status"></span>
<button id="submit">Save</button>
<span id="status"></span>
</body>
</html>
46 changes: 0 additions & 46 deletions app/assets/scripts/background.js

This file was deleted.

1 change: 0 additions & 1 deletion app/assets/scripts/initialize.js

This file was deleted.

8 changes: 0 additions & 8 deletions app/collections/columns_collection.coffee

This file was deleted.

8 changes: 0 additions & 8 deletions app/collections/notes_collection.coffee

This file was deleted.

18 changes: 0 additions & 18 deletions app/collections/pomodoros_collection.coffee

This file was deleted.

22 changes: 0 additions & 22 deletions app/collections/states_collection.coffee

This file was deleted.

11 changes: 0 additions & 11 deletions app/helpers.coffee

This file was deleted.

7 changes: 0 additions & 7 deletions app/models/column_model.coffee

This file was deleted.

11 changes: 0 additions & 11 deletions app/models/note_model.coffee

This file was deleted.

1 change: 0 additions & 1 deletion app/models/pomodoro_model.coffee

This file was deleted.

1 change: 0 additions & 1 deletion app/models/state_model.coffee

This file was deleted.

0 comments on commit 658cbb9

Please sign in to comment.