Wiki/Log

Team Leader - Everyone
Wiki Updates - Taking turns
Goal - A

8/22/14 - Mini Meeting in the normal room (SKU 120). Decided Project.
8/26/14 - Planned Git repository push + Compilation + Change the "about" section.
8/27/14 - Pushed to Git repository. Changed "about" section.

11/20/14 - Been a while since the wiki has been updated. We've been meeting for the past few days so we can discuss problems we're having and help the other team members fix the bugs. As of now, it looks like 1 bug patch/feature request has been committed to this repo, while 2 bug patches/features others are almost ready to be committed. Tomorrow at our team meeting I'd like to figure out what format we should use for presenting the presentation. Prezi is nifty, I'd rather not use a dull powerpoint. - AV

11/25/14 - Group coding session in the SWE classroom in Crawford. Andrue didn't show. I updated the FAQ for more git commands. -AV

Important Links

Bug List (Google Drive) - https://docs.google.com/document/d/1-PZJZ9bRfsO-xg2fS9dXwaLW8JdipPKJmggYjhOfVFQ/edit?usp=sharing
Bug Locations (Google Drive) - https://docs.google.com/document/d/1EjORQEgBH95aQknupZISaPFgON6lxIMEG7SuSbOYyfA/edit?usp=sharing
Ubuntu VM (Google Drive) - https://drive.google.com/folderview?id=0BxC2JuggltBDQXJLQ1REOUlCNEU&usp=sharing
Presentation (Prezi? Drive?) - TBD

FAQ - For our team members

Q: Why does your repository have a bunch of random commits?
A: Because we did not delete the initial .git files from the project, the previous commits are still listed. However, only our team members currently can add new commits.

Q: How do I add a file to the repo?
A: Sync the repo with your local copy:

git pull <url>

Edit the files you want and then add them to the local repo and commit (use "git add ." for all changes).
git add <filename>
git commit -m <msg>

Finally, push it back up to this repo.
git push <url> master

Q: I can't compile Wireshark for the first time. What do I do?
A: One of our team members (Justin Pavao), uploaded a copy of his VM onto a Google Drive folder. Download it and open it in VMWare. Ask him for the password!

Q: Who's doing what for this project?
A: We have a bug list and a bug locations list. Both have who is doing what bug as well as links to the Wireshark Bugzilla page. Feel free to ask for help to fix a bug.