Skip to content

Commit

Permalink
Rename project to Taskboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maythee Anegboonlap committed Dec 2, 2011
1 parent 463a3ea commit 0b0b5a5
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 32 deletions.
2 changes: 1 addition & 1 deletion config-default.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var config = {
// Log facility
log: {
appenders: [ { type: 'file',
filename: 'scrum.log',
filename: 'taskboard.log',
maxLogSize: 10485760,
backups: 3,
pollInterval: 15 },
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scrum",
"version": "0.5.4",
"name": "taskboard",
"version": "0.5.5",
"scripts": {
"start": "node server.js"
},
Expand Down
15 changes: 4 additions & 11 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Scrumboard
#Taskboard

Task board that work in offline mode and sync when online. It's a lab project for test HTML5 and [now.js](nowjs.com)

Expand All @@ -9,20 +9,13 @@ Support and test below browser latest version only.
- Safari
- Firefox
- Chrome

##Requirement

- mongodb: Scrumboard use MongoDB to save task data on server and sync to new client.
- now.js: Scrumboard use now.js sync task when online.
- mime: For serve static file.
- log4js: As log facility.

##Usage

Before run scrumboard, must install and run MongoDB first.
Before run taskboard, must install and run MongoDB first.

git clone git://github.com/ideacube/scrumboard.git
git clone git://github.com/llun/taskboard.git
npm install
cp config-default.js config.js
node server server.js
node server.js

File renamed without changes.
20 changes: 10 additions & 10 deletions static/index.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<!DOCTYPE html>
<html manifest="scrum.appcache">
<html manifest="taskboard.appcache">
<head>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black">

<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Scrum Board</title>
<title>Taskboard</title>

<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/scrum.css" rel="stylesheet" />
<link href="css/taskboard.css" rel="stylesheet" />

<script src="scripts/jquery-1.7.min.js" type="text/javascript"></script>
<script src="nowjs/now.js" type="text/javascript"></script>

<script src="scripts/engine-persistent.js" type="text/javascript"></script>
<script src="scripts/engine.js" type="text/javascript"></script>
<script src="scripts/scrum.js" type="text/javascript"></script>
<script src="scripts/scrum-model.js" type="text/javascript"></script>
<script src="scripts/scrum-view.js" type="text/javascript"></script>
<script src="scripts/scrum-controller.js" type="text/javascript"></script>
<script src="scripts/taskboard.js" type="text/javascript"></script>
<script src="scripts/tb-model.js" type="text/javascript"></script>
<script src="scripts/tb-view.js" type="text/javascript"></script>
<script src="scripts/tb-controller.js" type="text/javascript"></script>

<script type="text/html" id="project_list" charset="utf-8">
<li class="project-list-menu-item">
Expand Down Expand Up @@ -109,7 +109,7 @@
<div class="topbar">
<div class="topbar-inner">
<div class="container">
<h3><a href="#">Scrum</a></h3>
<h3><a class="brand" href="#">Taskboard</a></h3>
<ul class="nav">

<!-- Project menu -->
Expand Down Expand Up @@ -245,8 +245,8 @@ <h4 id="iteration-name">Iteration name</h4>

<div class="span16">
<p>
Scrum-board is <a href="http://twitter.com/hybridknight">@hybridknight</a> &amp;
<a href="http://twitter.com/llun">@llun</a> lab project.
Taskboard is <a href="http://twitter.com/llun">@llun</a> &amp;
<a href="http://twitter.com/hybridknight">@hybridknight</a> lab project. Version 0.5.5
</p>
</div>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions static/scrum.appcache → static/taskboard.appcache
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
CACHE MANIFEST
#Version 0.5.4
#2011-11-28
#Version 0.5.5
#2011-12-2

CACHE:
index.html
scripts/engine-persistent.js
scripts/engine.js
scripts/jquery-1.7.min.js
scripts/scrum-controller.js
scripts/scrum-model.js
scripts/scrum-view.js
scripts/scrum.js
scripts/tb-controller.js
scripts/tb-model.js
scripts/tb-view.js
scripts/taskboard.js

css/bootstrap.min.css
css/scrum.css
css/taskboard.css

images/trash.png
images/twitter.png
Expand Down
2 changes: 1 addition & 1 deletion static/test/unittest.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<script src="../scripts/engine-persistent.js" type="text/javascript"></script>
<script src="../scripts/engine.js" type="text/javascript"></script>
<script src="../scripts/scrum-model.js" type="text/javascript"></script>
<script src="../scripts/tb-model.js" type="text/javascript"></script>

<script src="test-task.js" type="text/javascript"></script>
<script src="test-iteration.js" type="text/javascript"></script>
Expand Down

0 comments on commit 0b0b5a5

Please sign in to comment.