This is the source content for the DynamoRIO website.
Please file any issues in the main DynamoRIO issue tracker.
You can use jekyll to run a local server and view local changes to the website contents.
First, install jekyll, ruby, bundler, and the needed gems:
sudo apt-get install jekyll
sudo apt-get install ruby-dev
sudo gem install bundler
bundle config set --local path 'vendor/bundle'
bundle install
The bundle config
command tells bundle to install gems locally to
avoid requiring root access. The bundle install
command should be
run from the directory containing the project Gemfile.
Now you can launch the local server from the same directory like this:
bundle exec jekyll serve
Go to this address in your browser to view the local content, which is
stored in the _site
directory of your git checkout:
Please use the same basic workflow as for DynamoRIO changes: i.e., perform changes in a separate branch and use a Pull Request to squash-and-merge it into master after it is reviewed.
Run these commands to mirror the devsetup.sh
script in the dynamorio
repository, first replacing PATH_TO_DR
with the path to your checkout of
dynamorio
for locating the helper scripts:
git config core.autocrlf input
git config core.whitespace blank-at-eol,tab-in-indent
git config branch.autosetuprebase always
git config alias.newbranch '!sh -c "git checkout --track -b $1 origin/master"'
git config alias.split '!sh -c "git checkout -b $1 $2 && git branch --set-upstream-to=origin/master $1"'
git config alias.review '!myf() { PATH_TO_DR/make/git/git_review.sh "$@"; }; myf'
git config alias.pullall '!myf() { PATH_TO_DR/make/git/git_pullall.sh "$@"; }; myf'
echo Please ensure your author name is correct: \"$(git config user.name)\"
echo " Run \"git config user.name New Name\" to update"
echo Please ensure your author email is correct: \"$(git config user.email)\"
echo " Run \"git config user.email New Email\" to update"
Replace all references in printed statements from the scripts with the
dynamorio.github.io
repository rather than the dynamorio
repository, of
course.
Since we are using the issue tracker in the main dynamorio
repository,
instead of a simple #NNNN
to refer to an issue, use the string
DynamoRIO/dynamorio#NNNN
.
Consider attaching a screenshot of the new page to the Pull Request if it is a proposed layout change.