- Written in Python + Markdown + HTML
- Deployed site is located at http://www.cs.umd.edu/~varshney
- First, if you do not have access to this repo, email ruofei@umiacs
- Next, clone the repo to local diretory
git clone [email protected]:AugmentariumLab/VarshneyWebsite.git- Make minor revision in data/students.json or data/papers.json,
- You may want to put new teaser images and paper preprints under teaser/ and papers/
- After you make all the changes, run:
python build.pyto rebuild all the html files.
- Finally, commit the changes and push
git add -A
git commit -m "documentation of your modification"
git push- DONE!
- First, clone this repo, and create your own branch of this:
git clone [email protected]:AugmentariumLab/VarshneyWebsite.git
git branch feature-your-branch-name
git checkout feature-your-branch-name- Make major revision in Python scripts
- (optional) Run:
python build.py- Commit and push
git add -A
git commit -m "documentation of your modification"
git push- Send a pull request to the main branch and notify any one in the admin group
- DONE!
- All students are structured as JSON objects now so it's easier to add new people or hide people
- For example:
{
"url": "http://www.duruofei.com",
"photo": "RuofeiDu.jpg",
"name": "Ruofei Du",
"title": "Ph.D. Student",
"category": "Graduate Students",
"time": "",
"visible": true,
"tags": "GVIL,Augmentarium",
"department": "Computer Science",
"current": "University of Maryland",
"year": 2013
}- Every paper is structured as JSON objects now, so it's easier to generate BibTeX, change visualization, and add filters in the future:
{
"bibname": "HsuehChien2018Winnow",
"url": "https://dl.acm.org/citation.cfm?id=3107449",
"title": "Winnow: Interactive Visualization of Temporal Changes in Multidimensional Clinical Data",
"bib": "",
"author": "Hsueh-Chien Cheng, Antonio Cardone, and Amitabh Varshney",
"type": "article",
"booktitle": "Proceedings of IEEE International Conference on Image Processing, 2017",
"attr": "",
"pages": "",
"year": "2018",
"month": "",
"day": "",
"series": "",
"book_title_short": "",
"editor": "",
"isbn": "",
"numpages": 1,
"doi": "",
"publisher": "",
"address": "",
"location": "",
"volume": 1,
"number": 1,
"keywords": "",
"note": "",
"citations": "",
"published": true,
"visible": true,
"poseter": "",
"video": "",
"youtube": "",
"vimeo": "",
"code": "",
"slides": "",
"talk": "",
"award": "",
"abstract": "",
"image": "HsuehChien2018Winnow.png",
"supple": "",
"categories": ""
}- Main author: Ruofei Du
- Contributors: Xiaoxu Meng and Shuo Li