Difference between revisions of "X2maths.web"

From ProgClub
Jump to: navigation, search
(A new project!)
 
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
x2maths is a mathematics website collaboration. For other projects see [[projects]].
+
{{DISPLAYTITLE:x2maths.web}}
 +
x2maths.web is a mathematics website collaboration. For other projects see [[projects]].
  
 
= Status =
 
= Status =
Line 32: Line 33:
 
== License ==
 
== License ==
  
Licensed under the [[New BSD license|New BSD]] license.
+
Licensed under the [[MIT license]].
  
 
== Components ==
 
== Components ==
Line 50: Line 51:
 
The repository can be browsed online:
 
The repository can be browsed online:
  
  https://www.progclub.org/pcrepo/x2maths/branches/0.1
+
  https://www.progclub.org/pcrepo/x2maths.web/branches/0.1
  
 
The latest stable released version of the code is available from:
 
The latest stable released version of the code is available from:
  
  https://www.progclub.org/svn/pcrepo/x2maths/tags/latest/0.1
+
  https://www.progclub.org/svn/pcrepo/x2maths.web/tags/latest/0.1
  
 
Or if you want the latest version for development purposes:
 
Or if you want the latest version for development purposes:
  
  https://www.progclub.org/svn/pcrepo/x2maths/branches/0.1
+
  https://www.progclub.org/svn/pcrepo/x2maths.web/branches/0.1
  
 
== Links ==
 
== Links ==
Line 76: Line 77:
 
The technical specification describes how the project works.
 
The technical specification describes how the project works.
  
The project is a website delivered on the LAMP stack.
+
The project is a website delivered on the LAMP stack using jQuery, AngularJS 2, etc.
  
 
= Notes =
 
= Notes =
Line 90: Line 91:
 
If you're looking to set up a development environment for this project here's what you need to know:
 
If you're looking to set up a development environment for this project here's what you need to know:
  
TBA
+
svn co https://www.progclub.org/svn/pcrepo/x2maths.web/branches/0.1 x2maths.web-0.1
 +
 
 +
You can test using npm, e.g.:
 +
 
 +
jj5@orac:~/repo/svn/pcrepo/x2maths.web-0.1/web$ npm start
 +
 
 +
Or try:
 +
 
 +
jj5@orac:~/repo/svn/pcrepo/x2maths.web-0.1/web$ ng serve
 +
 
 +
=== Install watchman ===
 +
 
 +
See [https://facebook.github.io/watchman/docs/install.html here] how to install watchman, basically:
 +
 
 +
$ git clone https://github.com/facebook/watchman.git
 +
$ cd watchman
 +
$ git checkout v4.7.0  # the latest stable release
 +
$ ./autogen.sh
 +
$ ./configure
 +
$ make
 +
$ sudo make install
  
 
== Notes for ProgClub administrators ==
 
== Notes for ProgClub administrators ==
Line 96: Line 117:
 
To release a version of this project use the [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/pcrepo-branch-release pcrepo-branch-release] script from the [https://www.jj5.net/sixsigma/JJ5-bin jj5-bin] project:
 
To release a version of this project use the [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/pcrepo-branch-release pcrepo-branch-release] script from the [https://www.jj5.net/sixsigma/JJ5-bin jj5-bin] project:
  
  $ pcrepo-branch-release {project name} $MAJOR.$MINOR $REVISION
+
  $ pcrepo-branch-release x2maths.web $MAJOR.$MINOR $REVISION
  
 
Where:
 
Where:
Line 107: Line 128:
  
 
= Tasks =
 
= Tasks =
 
[[Category:TODO]]
 
  
 
== TODO ==
 
== TODO ==
Line 114: Line 133:
 
Things to do, in rough order of priority:
 
Things to do, in rough order of priority:
  
* Create the project in svn
+
* design Angular web site
 +
* port old content
  
 
== Done ==
 
== Done ==
Line 120: Line 140:
 
Stuff that's done. Latest stuff on top.
 
Stuff that's done. Latest stuff on top.
  
 +
* [[User:John|JE]] 2016-11-08: created the project in svn
 
* [[User:John|JE]] 2016-11-08: created project page
 
* [[User:John|JE]] 2016-11-08: created project page

Latest revision as of 15:19, 11 December 2017

x2maths.web is a mathematics website collaboration. For other projects see projects.

Status

Latest production version: unreleased. Latest development version: 0.1.1.

See tasks for work that still needs to be done.

Motivation

Why this software? To help improve the layout and accessibility of the previous website.

Administration

Contributors

Members who have contributed to this project. Newest on top.

All contributors have agreed to the terms of the Contributor License Agreement. This excludes any upstream contributors who tend to have different administrative frameworks.

Upstream contributors:

  • TBA: Derek

Copyright

Copyright 2016, Contributors.

License

Licensed under the MIT license.

Components

Libraries, tools, services or media from third parties used under license:

  • LAMP stack

Resources

Downloads

There are no downloads, this project is a website.

Source code

The repository can be browsed online:

https://www.progclub.org/pcrepo/x2maths.web/branches/0.1

The latest stable released version of the code is available from:

https://www.progclub.org/svn/pcrepo/x2maths.web/tags/latest/0.1

Or if you want the latest version for development purposes:

https://www.progclub.org/svn/pcrepo/x2maths.web/branches/0.1

Links

Specifications

Functional specification

The functional specification describes what the project does.

The project provides the website at www.x2maths.com.

Technical specification

The technical specification describes how the project works.

The project is a website delivered on the LAMP stack using jQuery, AngularJS 2, etc.

Notes

Notes for implementers

If you are interested in incorporating this software into your project, here's what you need to know:

Copy and paste your way to victory!

Notes for developers

If you're looking to set up a development environment for this project here's what you need to know:

svn co https://www.progclub.org/svn/pcrepo/x2maths.web/branches/0.1 x2maths.web-0.1

You can test using npm, e.g.:

jj5@orac:~/repo/svn/pcrepo/x2maths.web-0.1/web$ npm start

Or try:

jj5@orac:~/repo/svn/pcrepo/x2maths.web-0.1/web$ ng serve

Install watchman

See here how to install watchman, basically:

$ git clone https://github.com/facebook/watchman.git
$ cd watchman
$ git checkout v4.7.0  # the latest stable release
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

Notes for ProgClub administrators

To release a version of this project use the pcrepo-branch-release script from the jj5-bin project:

$ pcrepo-branch-release x2maths.web $MAJOR.$MINOR $REVISION

Where:

$MAJOR = the major version number, presently 0
$MINOR = the minor version number, presently 1
$REVISION = the revision number for this release

Note: the $REVISION number starts at 1 and is incremented for each release. The revision number is odd for development releases and even for production releases. See status for last production release and increment by two for next production release.

Tasks

TODO

Things to do, in rough order of priority:

  • design Angular web site
  • port old content

Done

Stuff that's done. Latest stuff on top.

  • JE 2016-11-08: created the project in svn
  • JE 2016-11-08: created project page