You will need Git (or a copy of the distribution) and Perforce.
Follow the steps in
https://wiki.ariba.com:8443/display/ENGKB/Setup+the+Visualizer+Project
| #!/bin/bash | |
| # expects python is installed with OS distribution | |
| # single line command for execution | |
| # wget -O - <RAW_URL> | bash | |
| # determine environment | |
| if hash apt-get 2>/dev/null; then | |
| echo "Bootstrapping UBUNTU" | |
| UBUNTU=true |
| """ | |
| This tool can be used to mirror files from a source directory to a destination | |
| directory. You can specify one file using `destination` and `source` or define | |
| many files using `source_map` (a csv with source,destination file per line). | |
| """ | |
| import argparse | |
| import os | |
| import time |
| // Modified from http://mattsnider.com/cross-browser-and-legacy-supported-requestframeanimation/ | |
| // LICENSE: MIT: http://mattsnider.com/projects/license/ | |
| (function(w) { | |
| "use strict"; | |
| // most browsers have an implementation | |
| w.requestAnimationFrame = w.requestAnimationFrame || | |
| w.mozRequestAnimationFrame || w.webkitRequestAnimationFrame || | |
| w.msRequestAnimationFrame; | |
| w.cancelAnimationFrame = w.cancelAnimationFrame || |
You will need Git (or a copy of the distribution) and Perforce.
Follow the steps in
https://wiki.ariba.com:8443/display/ENGKB/Setup+the+Visualizer+Project
| {% extends 'dh5bp/base_script_in_head.html' %} | |
| {% load staticfiles %} | |
| {% load url from future %} | |
| {% block title %}{APP_TITLE}{% endblock %} | |
| {% block head %} | |
| <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" /> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black" /> | |
| <link rel="apple-touch-startup-image" href="{% static '{STATIC_IMAGE_PATH}/startup-image.png' %}"> |