diff --git a/.git.Ontwerp.rhinoceros/COMMIT_EDITMSG b/.git.Ontwerp.rhinoceros/COMMIT_EDITMSG new file mode 100644 index 0000000..e000ac7 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/COMMIT_EDITMSG @@ -0,0 +1 @@ +New version, more bouw scripts added diff --git a/.git.Ontwerp.rhinoceros/FETCH_HEAD b/.git.Ontwerp.rhinoceros/FETCH_HEAD new file mode 100644 index 0000000..3dbc9e1 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/FETCH_HEAD @@ -0,0 +1 @@ +002cdd66d8387dda5ee3b48e945cf1fe9a55826b branch 'master' of http://rhinoceros.can.dvrhss.net:3042/RuG-HPC/Ontwerp diff --git a/.git.Ontwerp.rhinoceros/HEAD b/.git.Ontwerp.rhinoceros/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/.git.Ontwerp.rhinoceros/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/.git.Ontwerp.rhinoceros/ORIG_HEAD b/.git.Ontwerp.rhinoceros/ORIG_HEAD new file mode 100644 index 0000000..1a4aedb --- /dev/null +++ b/.git.Ontwerp.rhinoceros/ORIG_HEAD @@ -0,0 +1 @@ +002cdd66d8387dda5ee3b48e945cf1fe9a55826b diff --git a/.git.Ontwerp.rhinoceros/config b/.git.Ontwerp.rhinoceros/config new file mode 100644 index 0000000..a04f396 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/config @@ -0,0 +1,18 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true + ignorecase = true + precomposeunicode = true +[remote "origin"] + url = http://rhinoceros.can.dvrhss.net:3042/RuG-HPC/Ontwerp.git + fetch = +refs/heads/*:refs/remotes/origin/* +[branch "master"] + remote = origin + merge = refs/heads/master +[alias] + pushgtm = push origin refs/notes/gtm-data + fetchgtm = fetch origin refs/notes/gtm-data:refs/notes/gtm-data +[notes] + rewriteref = refs/notes/gtm-data diff --git a/.git.Ontwerp.rhinoceros/description b/.git.Ontwerp.rhinoceros/description new file mode 100644 index 0000000..498b267 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/.git.Ontwerp.rhinoceros/hooks/applypatch-msg.sample b/.git.Ontwerp.rhinoceros/hooks/applypatch-msg.sample new file mode 100755 index 0000000..a5d7b84 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/applypatch-msg.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script to check the commit log message taken by +# applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. The hook is +# allowed to edit the commit message file. +# +# To enable this hook, rename this file to "applypatch-msg". + +. git-sh-setup +commitmsg="$(git rev-parse --git-path hooks/commit-msg)" +test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} +: diff --git a/.git.Ontwerp.rhinoceros/hooks/commit-msg.sample b/.git.Ontwerp.rhinoceros/hooks/commit-msg.sample new file mode 100755 index 0000000..b58d118 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/commit-msg.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to check the commit log message. +# Called by "git commit" with one argument, the name of the file +# that has the commit message. The hook should exit with non-zero +# status after issuing an appropriate message if it wants to stop the +# commit. The hook is allowed to edit the commit message file. +# +# To enable this hook, rename this file to "commit-msg". + +# Uncomment the below to add a Signed-off-by line to the message. +# Doing this in a hook is a bad idea in general, but the prepare-commit-msg +# hook is more suited to it. +# +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" + +# This example catches duplicate Signed-off-by lines. + +test "" = "$(grep '^Signed-off-by: ' "$1" | + sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { + echo >&2 Duplicate Signed-off-by lines. + exit 1 +} diff --git a/.git.Ontwerp.rhinoceros/hooks/post-commit b/.git.Ontwerp.rhinoceros/hooks/post-commit new file mode 100755 index 0000000..a72f9c5 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/post-commit @@ -0,0 +1,3 @@ +#!/bin/sh + +gtm commit --yes diff --git a/.git.Ontwerp.rhinoceros/hooks/post-update.sample b/.git.Ontwerp.rhinoceros/hooks/post-update.sample new file mode 100755 index 0000000..ec17ec1 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/post-update.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +exec git update-server-info diff --git a/.git.Ontwerp.rhinoceros/hooks/pre-applypatch.sample b/.git.Ontwerp.rhinoceros/hooks/pre-applypatch.sample new file mode 100755 index 0000000..4142082 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/pre-applypatch.sample @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed +# by applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-applypatch". + +. git-sh-setup +precommit="$(git rev-parse --git-path hooks/pre-commit)" +test -x "$precommit" && exec "$precommit" ${1+"$@"} +: diff --git a/.git.Ontwerp.rhinoceros/hooks/pre-commit.sample b/.git.Ontwerp.rhinoceros/hooks/pre-commit.sample new file mode 100755 index 0000000..68d62d5 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/pre-commit.sample @@ -0,0 +1,49 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git commit" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message if +# it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-commit". + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 +fi + +# If you want to allow non-ASCII filenames set this variable to true. +allownonascii=$(git config --bool hooks.allownonascii) + +# Redirect output to stderr. +exec 1>&2 + +# Cross platform projects tend to avoid non-ASCII filenames; prevent +# them from being added to the repository. We exploit the fact that the +# printable range starts at the space character and ends with tilde. +if [ "$allownonascii" != "true" ] && + # Note that the use of brackets around a tr range is ok here, (it's + # even required, for portability to Solaris 10's /usr/bin/tr), since + # the square bracket bytes happen to fall in the designated range. + test $(git diff --cached --name-only --diff-filter=A -z $against | + LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 +then + cat <<\EOF +Error: Attempt to add a non-ASCII file name. + +This can cause problems if you want to work with people on other platforms. + +To be portable it is advisable to rename the file. + +If you know what you are doing you can disable this check using: + + git config hooks.allownonascii true +EOF + exit 1 +fi + +# If there are whitespace errors, print the offending file names and fail. +exec git diff-index --check --cached $against -- diff --git a/.git.Ontwerp.rhinoceros/hooks/pre-push.sample b/.git.Ontwerp.rhinoceros/hooks/pre-push.sample new file mode 100755 index 0000000..6187dbf --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/pre-push.sample @@ -0,0 +1,53 @@ +#!/bin/sh + +# An example hook script to verify what is about to be pushed. Called by "git +# push" after it has checked the remote status, but before anything has been +# pushed. If this script exits with a non-zero status nothing will be pushed. +# +# This hook is called with the following parameters: +# +# $1 -- Name of the remote to which the push is being done +# $2 -- URL to which the push is being done +# +# If pushing without using a named remote those arguments will be equal. +# +# Information about the commits which are being pushed is supplied as lines to +# the standard input in the form: +# +# +# +# This sample shows how to prevent push of commits where the log message starts +# with "WIP" (work in progress). + +remote="$1" +url="$2" + +z40=0000000000000000000000000000000000000000 + +while read local_ref local_sha remote_ref remote_sha +do + if [ "$local_sha" = $z40 ] + then + # Handle delete + : + else + if [ "$remote_sha" = $z40 ] + then + # New branch, examine all commits + range="$local_sha" + else + # Update to existing branch, examine new commits + range="$remote_sha..$local_sha" + fi + + # Check for WIP commit + commit=`git rev-list -n 1 --grep '^WIP' "$range"` + if [ -n "$commit" ] + then + echo >&2 "Found WIP commit in $local_ref, not pushing" + exit 1 + fi + fi +done + +exit 0 diff --git a/.git.Ontwerp.rhinoceros/hooks/pre-rebase.sample b/.git.Ontwerp.rhinoceros/hooks/pre-rebase.sample new file mode 100755 index 0000000..9773ed4 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/pre-rebase.sample @@ -0,0 +1,169 @@ +#!/bin/sh +# +# Copyright (c) 2006, 2008 Junio C Hamano +# +# The "pre-rebase" hook is run just before "git rebase" starts doing +# its job, and can prevent the command from running by exiting with +# non-zero status. +# +# The hook is called with the following parameters: +# +# $1 -- the upstream the series was forked from. +# $2 -- the branch being rebased (or empty when rebasing the current branch). +# +# This sample shows how to prevent topic branches that are already +# merged to 'next' branch from getting rebased, because allowing it +# would result in rebasing already published history. + +publish=next +basebranch="$1" +if test "$#" = 2 +then + topic="refs/heads/$2" +else + topic=`git symbolic-ref HEAD` || + exit 0 ;# we do not interrupt rebasing detached HEAD +fi + +case "$topic" in +refs/heads/??/*) + ;; +*) + exit 0 ;# we do not interrupt others. + ;; +esac + +# Now we are dealing with a topic branch being rebased +# on top of master. Is it OK to rebase it? + +# Does the topic really exist? +git show-ref -q "$topic" || { + echo >&2 "No such branch $topic" + exit 1 +} + +# Is topic fully merged to master? +not_in_master=`git rev-list --pretty=oneline ^master "$topic"` +if test -z "$not_in_master" +then + echo >&2 "$topic is fully merged to master; better remove it." + exit 1 ;# we could allow it, but there is no point. +fi + +# Is topic ever merged to next? If so you should not be rebasing it. +only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` +only_next_2=`git rev-list ^master ${publish} | sort` +if test "$only_next_1" = "$only_next_2" +then + not_in_topic=`git rev-list "^$topic" master` + if test -z "$not_in_topic" + then + echo >&2 "$topic is already up-to-date with master" + exit 1 ;# we could allow it, but there is no point. + else + exit 0 + fi +else + not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` + /usr/bin/perl -e ' + my $topic = $ARGV[0]; + my $msg = "* $topic has commits already merged to public branch:\n"; + my (%not_in_next) = map { + /^([0-9a-f]+) /; + ($1 => 1); + } split(/\n/, $ARGV[1]); + for my $elem (map { + /^([0-9a-f]+) (.*)$/; + [$1 => $2]; + } split(/\n/, $ARGV[2])) { + if (!exists $not_in_next{$elem->[0]}) { + if ($msg) { + print STDERR $msg; + undef $msg; + } + print STDERR " $elem->[1]\n"; + } + } + ' "$topic" "$not_in_next" "$not_in_master" + exit 1 +fi + +exit 0 + +################################################################ + +This sample hook safeguards topic branches that have been +published from being rewound. + +The workflow assumed here is: + + * Once a topic branch forks from "master", "master" is never + merged into it again (either directly or indirectly). + + * Once a topic branch is fully cooked and merged into "master", + it is deleted. If you need to build on top of it to correct + earlier mistakes, a new topic branch is created by forking at + the tip of the "master". This is not strictly necessary, but + it makes it easier to keep your history simple. + + * Whenever you need to test or publish your changes to topic + branches, merge them into "next" branch. + +The script, being an example, hardcodes the publish branch name +to be "next", but it is trivial to make it configurable via +$GIT_DIR/config mechanism. + +With this workflow, you would want to know: + +(1) ... if a topic branch has ever been merged to "next". Young + topic branches can have stupid mistakes you would rather + clean up before publishing, and things that have not been + merged into other branches can be easily rebased without + affecting other people. But once it is published, you would + not want to rewind it. + +(2) ... if a topic branch has been fully merged to "master". + Then you can delete it. More importantly, you should not + build on top of it -- other people may already want to + change things related to the topic as patches against your + "master", so if you need further changes, it is better to + fork the topic (perhaps with the same name) afresh from the + tip of "master". + +Let's look at this example: + + o---o---o---o---o---o---o---o---o---o "next" + / / / / + / a---a---b A / / + / / / / + / / c---c---c---c B / + / / / \ / + / / / b---b C \ / + / / / / \ / + ---o---o---o---o---o---o---o---o---o---o---o "master" + + +A, B and C are topic branches. + + * A has one fix since it was merged up to "next". + + * B has finished. It has been fully merged up to "master" and "next", + and is ready to be deleted. + + * C has not merged to "next" at all. + +We would want to allow C to be rebased, refuse A, and encourage +B to be deleted. + +To compute (1): + + git rev-list ^master ^topic next + git rev-list ^master next + + if these match, topic has not merged in next at all. + +To compute (2): + + git rev-list master..topic + + if this is empty, it is fully merged to "master". diff --git a/.git.Ontwerp.rhinoceros/hooks/prepare-commit-msg.sample b/.git.Ontwerp.rhinoceros/hooks/prepare-commit-msg.sample new file mode 100755 index 0000000..f093a02 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/prepare-commit-msg.sample @@ -0,0 +1,36 @@ +#!/bin/sh +# +# An example hook script to prepare the commit log message. +# Called by "git commit" with the name of the file that has the +# commit message, followed by the description of the commit +# message's source. The hook's purpose is to edit the commit +# message file. If the hook fails with a non-zero status, +# the commit is aborted. +# +# To enable this hook, rename this file to "prepare-commit-msg". + +# This hook includes three examples. The first comments out the +# "Conflicts:" part of a merge commit. +# +# The second includes the output of "git diff --name-status -r" +# into the message, just before the "git status" output. It is +# commented because it doesn't cope with --amend or with squashed +# commits. +# +# The third example adds a Signed-off-by line to the message, that can +# still be edited. This is rarely a good idea. + +case "$2,$3" in + merge,) + /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; + +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$1" ;; + + *) ;; +esac + +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/.git.Ontwerp.rhinoceros/hooks/update.sample b/.git.Ontwerp.rhinoceros/hooks/update.sample new file mode 100755 index 0000000..80ba941 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/hooks/update.sample @@ -0,0 +1,128 @@ +#!/bin/sh +# +# An example hook script to block unannotated tags from entering. +# Called by "git receive-pack" with arguments: refname sha1-old sha1-new +# +# To enable this hook, rename this file to "update". +# +# Config +# ------ +# hooks.allowunannotated +# This boolean sets whether unannotated tags will be allowed into the +# repository. By default they won't be. +# hooks.allowdeletetag +# This boolean sets whether deleting tags will be allowed in the +# repository. By default they won't be. +# hooks.allowmodifytag +# This boolean sets whether a tag may be modified after creation. By default +# it won't be. +# hooks.allowdeletebranch +# This boolean sets whether deleting branches will be allowed in the +# repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. +# + +# --- Command line +refname="$1" +oldrev="$2" +newrev="$3" + +# --- Safety check +if [ -z "$GIT_DIR" ]; then + echo "Don't run this script from the command line." >&2 + echo " (if you want, you could supply GIT_DIR then run" >&2 + echo " $0 )" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "usage: $0 " >&2 + exit 1 +fi + +# --- Config +allowunannotated=$(git config --bool hooks.allowunannotated) +allowdeletebranch=$(git config --bool hooks.allowdeletebranch) +denycreatebranch=$(git config --bool hooks.denycreatebranch) +allowdeletetag=$(git config --bool hooks.allowdeletetag) +allowmodifytag=$(git config --bool hooks.allowmodifytag) + +# check for no description +projectdesc=$(sed -e '1q' "$GIT_DIR/description") +case "$projectdesc" in +"Unnamed repository"* | "") + echo "*** Project description file hasn't been set" >&2 + exit 1 + ;; +esac + +# --- Check types +# if $newrev is 0000...0000, it's a commit to delete a ref. +zero="0000000000000000000000000000000000000000" +if [ "$newrev" = "$zero" ]; then + newrev_type=delete +else + newrev_type=$(git cat-file -t $newrev) +fi + +case "$refname","$newrev_type" in + refs/tags/*,commit) + # un-annotated tag + short_refname=${refname##refs/tags/} + if [ "$allowunannotated" != "true" ]; then + echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 + exit 1 + fi + ;; + refs/tags/*,delete) + # delete tag + if [ "$allowdeletetag" != "true" ]; then + echo "*** Deleting a tag is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/tags/*,tag) + # annotated tag + if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 + then + echo "*** Tag '$refname' already exists." >&2 + echo "*** Modifying a tag is not allowed in this repository." >&2 + exit 1 + fi + ;; + refs/heads/*,commit) + # branch + if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then + echo "*** Creating a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/heads/*,delete) + # delete branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/remotes/*,commit) + # tracking branch + ;; + refs/remotes/*,delete) + # delete tracking branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a tracking branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + *) + # Anything else (is there anything else?) + echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 + exit 1 + ;; +esac + +# --- Finished +exit 0 diff --git a/.git.Ontwerp.rhinoceros/index b/.git.Ontwerp.rhinoceros/index new file mode 100644 index 0000000..69273cf Binary files /dev/null and b/.git.Ontwerp.rhinoceros/index differ diff --git a/.git.Ontwerp.rhinoceros/info/exclude b/.git.Ontwerp.rhinoceros/info/exclude new file mode 100644 index 0000000..a5196d1 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/.git.Ontwerp.rhinoceros/logs/HEAD b/.git.Ontwerp.rhinoceros/logs/HEAD new file mode 100644 index 0000000..9b1ba10 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/logs/HEAD @@ -0,0 +1,10 @@ +0000000000000000000000000000000000000000 58acfba76aea5f55eb0175f41c0c5baae7c27138 rein 1493730986 +0200 commit (initial): first commit +58acfba76aea5f55eb0175f41c0c5baae7c27138 845e8396cb016b5498a69d9e12555f2dce209f20 rein 1493731088 +0200 commit: With templates from gogs and gtm +845e8396cb016b5498a69d9e12555f2dce209f20 5ed79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 rein 1493731120 +0200 commit: First version +5ed79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 c48694ef0248978ca24069d6855899e34fa94dcd rein 1493731759 +0200 commit: Layout change +c48694ef0248978ca24069d6855899e34fa94dcd b0346a0c4f807af318cfeec26debd255b332d7c3 rein 1493796757 +0200 commit: Changed... +b0346a0c4f807af318cfeec26debd255b332d7c3 bb6789989b0f585b77792b79039b3245122099bf rein 1493811852 +0200 commit: Change... +bb6789989b0f585b77792b79039b3245122099bf 036c38087eaf96fff69793a6f09028f87943da43 rein 1498741523 +0200 commit: New version +036c38087eaf96fff69793a6f09028f87943da43 06b2abbc3d1fa353ecf29586453e52dae2f5671d rein 1499167289 +0200 commit: Antwoorden op de vragen van Wim +06b2abbc3d1fa353ecf29586453e52dae2f5671d c9aedd891f5b969b2353e05505ae6284426055c3 rein 1499262201 +0200 commit: New version, bouw scripts added +c9aedd891f5b969b2353e05505ae6284426055c3 002cdd66d8387dda5ee3b48e945cf1fe9a55826b rein 1499273146 +0200 commit: New version, more bouw scripts added diff --git a/.git.Ontwerp.rhinoceros/logs/refs/heads/master b/.git.Ontwerp.rhinoceros/logs/refs/heads/master new file mode 100644 index 0000000..9b1ba10 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/logs/refs/heads/master @@ -0,0 +1,10 @@ +0000000000000000000000000000000000000000 58acfba76aea5f55eb0175f41c0c5baae7c27138 rein 1493730986 +0200 commit (initial): first commit +58acfba76aea5f55eb0175f41c0c5baae7c27138 845e8396cb016b5498a69d9e12555f2dce209f20 rein 1493731088 +0200 commit: With templates from gogs and gtm +845e8396cb016b5498a69d9e12555f2dce209f20 5ed79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 rein 1493731120 +0200 commit: First version +5ed79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 c48694ef0248978ca24069d6855899e34fa94dcd rein 1493731759 +0200 commit: Layout change +c48694ef0248978ca24069d6855899e34fa94dcd b0346a0c4f807af318cfeec26debd255b332d7c3 rein 1493796757 +0200 commit: Changed... +b0346a0c4f807af318cfeec26debd255b332d7c3 bb6789989b0f585b77792b79039b3245122099bf rein 1493811852 +0200 commit: Change... +bb6789989b0f585b77792b79039b3245122099bf 036c38087eaf96fff69793a6f09028f87943da43 rein 1498741523 +0200 commit: New version +036c38087eaf96fff69793a6f09028f87943da43 06b2abbc3d1fa353ecf29586453e52dae2f5671d rein 1499167289 +0200 commit: Antwoorden op de vragen van Wim +06b2abbc3d1fa353ecf29586453e52dae2f5671d c9aedd891f5b969b2353e05505ae6284426055c3 rein 1499262201 +0200 commit: New version, bouw scripts added +c9aedd891f5b969b2353e05505ae6284426055c3 002cdd66d8387dda5ee3b48e945cf1fe9a55826b rein 1499273146 +0200 commit: New version, more bouw scripts added diff --git a/.git.Ontwerp.rhinoceros/logs/refs/notes/gtm-data b/.git.Ontwerp.rhinoceros/logs/refs/notes/gtm-data new file mode 100644 index 0000000..51285a3 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/logs/refs/notes/gtm-data @@ -0,0 +1,9 @@ +0000000000000000000000000000000000000000 b7ebfaf4c349872c249c879730242f47c351c4a5 rein 1493731088 +0200 commit (initial): Notes added by 'git_note_create' from libgit2 +b7ebfaf4c349872c249c879730242f47c351c4a5 eb0eb99573bc7183be882423167d1291b1134551 rein 1493731120 +0200 commit: Notes added by 'git_note_create' from libgit2 +eb0eb99573bc7183be882423167d1291b1134551 eddf7e3160e95fe828307a133319a261832224fe rein 1493731759 +0200 commit: Notes added by 'git_note_create' from libgit2 +eddf7e3160e95fe828307a133319a261832224fe cedda7caf7c9ad55b51c41eeb9142fb429cf8944 rein 1493796757 +0200 commit: Notes added by 'git_note_create' from libgit2 +cedda7caf7c9ad55b51c41eeb9142fb429cf8944 7b6ab7f609b0723e057098fa32a9ffe44dce3bf2 rein 1493811852 +0200 commit: Notes added by 'git_note_create' from libgit2 +7b6ab7f609b0723e057098fa32a9ffe44dce3bf2 b49cf2b8e024527610c5d6a6cd738e26c4e0ad3d rein 1498741523 +0200 commit: Notes added by 'git_note_create' from libgit2 +b49cf2b8e024527610c5d6a6cd738e26c4e0ad3d 5a33532d3963edf23e155a01751d0a8317fb30db rein 1499167289 +0200 commit: Notes added by 'git_note_create' from libgit2 +5a33532d3963edf23e155a01751d0a8317fb30db 98e64c35044c257944d0088c226493e0b489b12f rein 1499262201 +0200 commit: Notes added by 'git_note_create' from libgit2 +98e64c35044c257944d0088c226493e0b489b12f ef2387f05c5d023f1fd7d99df9c8c8c6e5c5bcf1 rein 1499273146 +0200 commit: Notes added by 'git_note_create' from libgit2 diff --git a/.git.Ontwerp.rhinoceros/logs/refs/remotes/origin/master b/.git.Ontwerp.rhinoceros/logs/refs/remotes/origin/master new file mode 100644 index 0000000..ee2bc42 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/logs/refs/remotes/origin/master @@ -0,0 +1,10 @@ +0000000000000000000000000000000000000000 58acfba76aea5f55eb0175f41c0c5baae7c27138 rein 1493730990 +0200 update by push +58acfba76aea5f55eb0175f41c0c5baae7c27138 845e8396cb016b5498a69d9e12555f2dce209f20 rein 1493731089 +0200 update by push +845e8396cb016b5498a69d9e12555f2dce209f20 5ed79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 rein 1493731121 +0200 update by push +5ed79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 c48694ef0248978ca24069d6855899e34fa94dcd rein 1493731759 +0200 update by push +c48694ef0248978ca24069d6855899e34fa94dcd b0346a0c4f807af318cfeec26debd255b332d7c3 rein 1493797271 +0200 update by push +b0346a0c4f807af318cfeec26debd255b332d7c3 bb6789989b0f585b77792b79039b3245122099bf rein 1493811853 +0200 update by push +bb6789989b0f585b77792b79039b3245122099bf 036c38087eaf96fff69793a6f09028f87943da43 rein 1499070216 +0200 update by push +036c38087eaf96fff69793a6f09028f87943da43 06b2abbc3d1fa353ecf29586453e52dae2f5671d rein 1499167292 +0200 update by push +06b2abbc3d1fa353ecf29586453e52dae2f5671d c9aedd891f5b969b2353e05505ae6284426055c3 rein 1499262202 +0200 update by push +c9aedd891f5b969b2353e05505ae6284426055c3 002cdd66d8387dda5ee3b48e945cf1fe9a55826b rein 1499273147 +0200 update by push diff --git a/.git.Ontwerp.rhinoceros/objects/00/2cdd66d8387dda5ee3b48e945cf1fe9a55826b b/.git.Ontwerp.rhinoceros/objects/00/2cdd66d8387dda5ee3b48e945cf1fe9a55826b new file mode 100644 index 0000000..bb3d518 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/00/2cdd66d8387dda5ee3b48e945cf1fe9a55826b differ diff --git a/.git.Ontwerp.rhinoceros/objects/03/6c38087eaf96fff69793a6f09028f87943da43 b/.git.Ontwerp.rhinoceros/objects/03/6c38087eaf96fff69793a6f09028f87943da43 new file mode 100644 index 0000000..d83cac4 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/03/6c38087eaf96fff69793a6f09028f87943da43 @@ -0,0 +1,3 @@ +xK + @ ('dB)$ +ݼ̓eVEt!v`@0CYr4sQ"cH?#YODu +6" LqB1`Ĕ!Q.#;-wi +eJ2  qt@`fCuХ6xm|tv^ȏ~R2hIqR| Y7>^ڱ]KV9ҷj94:Ym \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/5e/d79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 b/.git.Ontwerp.rhinoceros/objects/5e/d79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 new file mode 100644 index 0000000..bef0169 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/5e/d79facdfa1a2e9a20144506fd8c7e0fd0a5bb5 differ diff --git a/.git.Ontwerp.rhinoceros/objects/5f/9961fb4319775f4408e4b9f407dfe562e3acf0 b/.git.Ontwerp.rhinoceros/objects/5f/9961fb4319775f4408e4b9f407dfe562e3acf0 new file mode 100644 index 0000000..97133e4 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/5f/9961fb4319775f4408e4b9f407dfe562e3acf0 differ diff --git a/.git.Ontwerp.rhinoceros/objects/6b/10511aa77043625634b9cca10de83061d8a5a2 b/.git.Ontwerp.rhinoceros/objects/6b/10511aa77043625634b9cca10de83061d8a5a2 new file mode 100644 index 0000000..480be0e Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/6b/10511aa77043625634b9cca10de83061d8a5a2 differ diff --git a/.git.Ontwerp.rhinoceros/objects/6d/37699d498ab2f1e1fca48f34ca1c9750f0d7bd b/.git.Ontwerp.rhinoceros/objects/6d/37699d498ab2f1e1fca48f34ca1c9750f0d7bd new file mode 100644 index 0000000..047042f Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/6d/37699d498ab2f1e1fca48f34ca1c9750f0d7bd differ diff --git a/.git.Ontwerp.rhinoceros/objects/71/f23f4c47459efdc300e0e58ef13390c45a99f1 b/.git.Ontwerp.rhinoceros/objects/71/f23f4c47459efdc300e0e58ef13390c45a99f1 new file mode 100644 index 0000000..2ec3c66 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/71/f23f4c47459efdc300e0e58ef13390c45a99f1 differ diff --git a/.git.Ontwerp.rhinoceros/objects/73/1b9267a95bc9a593b14eec510250f6183f5a9a b/.git.Ontwerp.rhinoceros/objects/73/1b9267a95bc9a593b14eec510250f6183f5a9a new file mode 100644 index 0000000..b78305d Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/73/1b9267a95bc9a593b14eec510250f6183f5a9a differ diff --git a/.git.Ontwerp.rhinoceros/objects/78/52f669fa52705d0f73488dd9500efc70c97584 b/.git.Ontwerp.rhinoceros/objects/78/52f669fa52705d0f73488dd9500efc70c97584 new file mode 100644 index 0000000..06a67ab Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/78/52f669fa52705d0f73488dd9500efc70c97584 differ diff --git a/.git.Ontwerp.rhinoceros/objects/7b/6ab7f609b0723e057098fa32a9ffe44dce3bf2 b/.git.Ontwerp.rhinoceros/objects/7b/6ab7f609b0723e057098fa32a9ffe44dce3bf2 new file mode 100644 index 0000000..9aacba9 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/7b/6ab7f609b0723e057098fa32a9ffe44dce3bf2 @@ -0,0 +1 @@ +xMJ@F]+; "+ LG:5#+}VӃwU*2a5bhZ=X'f2|R*B2ysUk &,lKIi_]Ͽ;ި_]Z>ʭ_cl/S1`=uOcx] pz_] >z[^ \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/82/6c3bb37ac6d6659c4ae9427b21d67b6b729f48 b/.git.Ontwerp.rhinoceros/objects/82/6c3bb37ac6d6659c4ae9427b21d67b6b729f48 new file mode 100644 index 0000000..e525af4 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/82/6c3bb37ac6d6659c4ae9427b21d67b6b729f48 differ diff --git a/.git.Ontwerp.rhinoceros/objects/84/5e8396cb016b5498a69d9e12555f2dce209f20 b/.git.Ontwerp.rhinoceros/objects/84/5e8396cb016b5498a69d9e12555f2dce209f20 new file mode 100644 index 0000000..2389e29 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/84/5e8396cb016b5498a69d9e12555f2dce209f20 differ diff --git a/.git.Ontwerp.rhinoceros/objects/8b/0db72eef2d219df493e00edb7022dc5c380b59 b/.git.Ontwerp.rhinoceros/objects/8b/0db72eef2d219df493e00edb7022dc5c380b59 new file mode 100644 index 0000000..3d2fdb4 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/8b/0db72eef2d219df493e00edb7022dc5c380b59 differ diff --git a/.git.Ontwerp.rhinoceros/objects/8b/8e8d2e1b6d8e53e97140152f985ad9bffe6624 b/.git.Ontwerp.rhinoceros/objects/8b/8e8d2e1b6d8e53e97140152f985ad9bffe6624 new file mode 100644 index 0000000..584c2d9 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/8b/8e8d2e1b6d8e53e97140152f985ad9bffe6624 @@ -0,0 +1,5 @@ +xMPj0 _!vtB%4(4&vdl'}ҥ;Yғ{z3Ȳv kQw`IQȟ`)υ\!6_D^| Zj†lALHv+@,){ \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/8b/b404d1150856f88b75a3fbe17c5066b7c03a41 b/.git.Ontwerp.rhinoceros/objects/8b/b404d1150856f88b75a3fbe17c5066b7c03a41 new file mode 100644 index 0000000..139af23 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/8b/b404d1150856f88b75a3fbe17c5066b7c03a41 differ diff --git a/.git.Ontwerp.rhinoceros/objects/98/e64c35044c257944d0088c226493e0b489b12f b/.git.Ontwerp.rhinoceros/objects/98/e64c35044c257944d0088c226493e0b489b12f new file mode 100644 index 0000000..ca1f6d5 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/98/e64c35044c257944d0088c226493e0b489b12f @@ -0,0 +1 @@ +xAj0 E)E!VPJO+ %w 38)}B7<~޷@OU!,<ǒdhZȈZr/pM]'"&/gR)1't`Zȅ:]]k祉_]~6ʽ_clj=:xF8俧i IDo8}T;;|!jXi \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/a0/75026ecc87177f0f58cd3c07e3c78eafb4e569 b/.git.Ontwerp.rhinoceros/objects/a0/75026ecc87177f0f58cd3c07e3c78eafb4e569 new file mode 100644 index 0000000..1841431 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/a0/75026ecc87177f0f58cd3c07e3c78eafb4e569 differ diff --git a/.git.Ontwerp.rhinoceros/objects/a3/4fe5511ba6870665bd34802c09cac18d37bd34 b/.git.Ontwerp.rhinoceros/objects/a3/4fe5511ba6870665bd34802c09cac18d37bd34 new file mode 100644 index 0000000..764e91f Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/a3/4fe5511ba6870665bd34802c09cac18d37bd34 differ diff --git a/.git.Ontwerp.rhinoceros/objects/a3/d49701c380b96e8965e1f561941a0ddc249eb8 b/.git.Ontwerp.rhinoceros/objects/a3/d49701c380b96e8965e1f561941a0ddc249eb8 new file mode 100644 index 0000000..ab18830 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/a3/d49701c380b96e8965e1f561941a0ddc249eb8 differ diff --git a/.git.Ontwerp.rhinoceros/objects/af/eec4f79837df80d767da52f048dd7ae915c949 b/.git.Ontwerp.rhinoceros/objects/af/eec4f79837df80d767da52f048dd7ae915c949 new file mode 100644 index 0000000..9a802c3 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/af/eec4f79837df80d767da52f048dd7ae915c949 differ diff --git a/.git.Ontwerp.rhinoceros/objects/b0/346a0c4f807af318cfeec26debd255b332d7c3 b/.git.Ontwerp.rhinoceros/objects/b0/346a0c4f807af318cfeec26debd255b332d7c3 new file mode 100644 index 0000000..1cce147 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/b0/346a0c4f807af318cfeec26debd255b332d7c3 differ diff --git a/.git.Ontwerp.rhinoceros/objects/b0/584fd65a6f60e1a7a837726bd704241f059175 b/.git.Ontwerp.rhinoceros/objects/b0/584fd65a6f60e1a7a837726bd704241f059175 new file mode 100644 index 0000000..79d76ea Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/b0/584fd65a6f60e1a7a837726bd704241f059175 differ diff --git a/.git.Ontwerp.rhinoceros/objects/b1/4b1931379b20f70defbe77c71e93e1873aec31 b/.git.Ontwerp.rhinoceros/objects/b1/4b1931379b20f70defbe77c71e93e1873aec31 new file mode 100644 index 0000000..8fa0aa8 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/b1/4b1931379b20f70defbe77c71e93e1873aec31 differ diff --git a/.git.Ontwerp.rhinoceros/objects/b4/133eec351537196b3c358292435157ee91a586 b/.git.Ontwerp.rhinoceros/objects/b4/133eec351537196b3c358292435157ee91a586 new file mode 100644 index 0000000..4cc0273 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/b4/133eec351537196b3c358292435157ee91a586 differ diff --git a/.git.Ontwerp.rhinoceros/objects/b4/9cf2b8e024527610c5d6a6cd738e26c4e0ad3d b/.git.Ontwerp.rhinoceros/objects/b4/9cf2b8e024527610c5d6a6cd738e26c4e0ad3d new file mode 100644 index 0000000..1c69360 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/b4/9cf2b8e024527610c5d6a6cd738e26c4e0ad3d @@ -0,0 +1,3 @@ +xKj@D)zE@|[!ĂhdFm>JM-u],"1L8ֈbxrD6B7C2wi +#g:)#Y'TYNe׭ConSiѯ>6w0>MM^"S8Me.E +o8}.ziGw jVZ=Y6 \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/b7/ebfaf4c349872c249c879730242f47c351c4a5 b/.git.Ontwerp.rhinoceros/objects/b7/ebfaf4c349872c249c879730242f47c351c4a5 new file mode 100644 index 0000000..9d698cf --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/b7/ebfaf4c349872c249c879730242f47c351c4a5 @@ -0,0 +1,3 @@ +xM +0F]B(ID[k%B$OTU1e8\n^1_$M,MFc۷Z Q +gխ.b =ɔw6F'Xq.0OL \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/ba/4018bbf90faeadbc9ca43dde99bcf731d2d530 b/.git.Ontwerp.rhinoceros/objects/ba/4018bbf90faeadbc9ca43dde99bcf731d2d530 new file mode 100644 index 0000000..42ee85d Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/ba/4018bbf90faeadbc9ca43dde99bcf731d2d530 differ diff --git a/.git.Ontwerp.rhinoceros/objects/bb/6789989b0f585b77792b79039b3245122099bf b/.git.Ontwerp.rhinoceros/objects/bb/6789989b0f585b77792b79039b3245122099bf new file mode 100644 index 0000000..e4957d0 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/bb/6789989b0f585b77792b79039b3245122099bf @@ -0,0 +1 @@ +xA @Qל O` z}Wp/:x]DJ9Blg<ʐqb%'sz.m 8<!U;_$G] *cytemyf"HԾÔW_4gm>P;򏡮Kj71ƨZK \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/bc/67a1ea6bbaad769fd6456b505aef7636c505ed b/.git.Ontwerp.rhinoceros/objects/bc/67a1ea6bbaad769fd6456b505aef7636c505ed new file mode 100644 index 0000000..8589588 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/bc/67a1ea6bbaad769fd6456b505aef7636c505ed differ diff --git a/.git.Ontwerp.rhinoceros/objects/c1/217442cc00d709827e3943952a21b4d8069277 b/.git.Ontwerp.rhinoceros/objects/c1/217442cc00d709827e3943952a21b4d8069277 new file mode 100644 index 0000000..8c60f8e Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/c1/217442cc00d709827e3943952a21b4d8069277 differ diff --git a/.git.Ontwerp.rhinoceros/objects/c4/8694ef0248978ca24069d6855899e34fa94dcd b/.git.Ontwerp.rhinoceros/objects/c4/8694ef0248978ca24069d6855899e34fa94dcd new file mode 100644 index 0000000..7529f92 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/c4/8694ef0248978ca24069d6855899e34fa94dcd differ diff --git a/.git.Ontwerp.rhinoceros/objects/c8/2e467b2860e4f45afdaef4c237290d97f72db4 b/.git.Ontwerp.rhinoceros/objects/c8/2e467b2860e4f45afdaef4c237290d97f72db4 new file mode 100644 index 0000000..e76a540 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/c8/2e467b2860e4f45afdaef4c237290d97f72db4 differ diff --git a/.git.Ontwerp.rhinoceros/objects/c9/aedd891f5b969b2353e05505ae6284426055c3 b/.git.Ontwerp.rhinoceros/objects/c9/aedd891f5b969b2353e05505ae6284426055c3 new file mode 100644 index 0000000..8457db5 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/c9/aedd891f5b969b2353e05505ae6284426055c3 @@ -0,0 +1 @@ +xAn0 {+xoaHM@QDRJ_e,^: nH‰Ò Qr|+G4<%)(!q{Lӫ(Q1ϴqqT~p:&Z9P@ 㿧]pz¡V m ۟hbGQآs3CjOXc`޶fAoɔ3Xu% MaP^EqBF835`qhj}8I{?2uyBI9s:'!gXl\ V 1FM䠋y?5si \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 b/.git.Ontwerp.rhinoceros/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 new file mode 100644 index 0000000..7112238 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 differ diff --git a/.git.Ontwerp.rhinoceros/objects/eb/0eb99573bc7183be882423167d1291b1134551 b/.git.Ontwerp.rhinoceros/objects/eb/0eb99573bc7183be882423167d1291b1134551 new file mode 100644 index 0000000..ca4178d --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/eb/0eb99573bc7183be882423167d1291b1134551 @@ -0,0 +1,3 @@ +xMj0F)fEg䑡Whj9ȓ޾iͷx'"sF`bXjB5%fY2 tMCB&5Udk$W7]Eb,c +Se0ux%2:nMr㘻+X\=ykg㌙r@*E +o8}4=;r: >[~8X \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/ed/df7e3160e95fe828307a133319a261832224fe b/.git.Ontwerp.rhinoceros/objects/ed/df7e3160e95fe828307a133319a261832224fe new file mode 100644 index 0000000..c64f4d3 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/ed/df7e3160e95fe828307a133319a261832224fe @@ -0,0 +1,4 @@ +xKj1S i B rOd4Fvm +ټE/ơ f./m.ڌ0dk8)N!82)&h腊Ơ:x6`p< +:nMr};h M.QRS{* K&d<8 +mX \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/ef/2387f05c5d023f1fd7d99df9c8c8c6e5c5bcf1 b/.git.Ontwerp.rhinoceros/objects/ef/2387f05c5d023f1fd7d99df9c8c8c6e5c5bcf1 new file mode 100644 index 0000000..55ea947 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/objects/ef/2387f05c5d023f1fd7d99df9c8c8c6e5c5bcf1 @@ -0,0 +1,4 @@ +xMj0F)fEH%A9A3jIBoW-/RК̠uJD +L%E8 +wfM;)I%'J9gU$2\k#3s*c~붍߫4P! +cZ79s *o9uw/{X] \ No newline at end of file diff --git a/.git.Ontwerp.rhinoceros/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc b/.git.Ontwerp.rhinoceros/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc new file mode 100644 index 0000000..91fccd4 Binary files /dev/null and b/.git.Ontwerp.rhinoceros/objects/f9/3e3a1a1525fb5b91020da86e44810c87a2d7bc differ diff --git a/.git.Ontwerp.rhinoceros/refs/heads/master b/.git.Ontwerp.rhinoceros/refs/heads/master new file mode 100644 index 0000000..1a4aedb --- /dev/null +++ b/.git.Ontwerp.rhinoceros/refs/heads/master @@ -0,0 +1 @@ +002cdd66d8387dda5ee3b48e945cf1fe9a55826b diff --git a/.git.Ontwerp.rhinoceros/refs/notes/gtm-data b/.git.Ontwerp.rhinoceros/refs/notes/gtm-data new file mode 100644 index 0000000..ab71a01 --- /dev/null +++ b/.git.Ontwerp.rhinoceros/refs/notes/gtm-data @@ -0,0 +1 @@ +ef2387f05c5d023f1fd7d99df9c8c8c6e5c5bcf1 diff --git a/.git.Ontwerp.rhinoceros/refs/remotes/origin/master b/.git.Ontwerp.rhinoceros/refs/remotes/origin/master new file mode 100644 index 0000000..1a4aedb --- /dev/null +++ b/.git.Ontwerp.rhinoceros/refs/remotes/origin/master @@ -0,0 +1 @@ +002cdd66d8387dda5ee3b48e945cf1fe9a55826b diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8b8e8d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# ---> LibreOffice +# LibreOffice locks +.~lock.*# + +# ---> macOS +.DS_Store +.AppleDouble +.LSOverride +.DS_Store +._.DS_Store + +# Icon must end with two \r +Icon + + +# ---> Thumbnails +._* + +# ---> Files that might appear in the root of a volum +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# ---> Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# ---> GTM info +/.gtm/ + diff --git a/Docs/Achieving_Rolling_Updates_and_Continuous_Deployment_with_Zero_Downtime.pdf b/Docs/Achieving_Rolling_Updates_and_Continuous_Deployment_with_Zero_Downtime.pdf new file mode 100644 index 0000000..3d447d1 Binary files /dev/null and b/Docs/Achieving_Rolling_Updates_and_Continuous_Deployment_with_Zero_Downtime.pdf differ diff --git a/Docs/Ansible_Tower_in_the_Software_Development_Lifecycle.pdf b/Docs/Ansible_Tower_in_the_Software_Development_Lifecycle.pdf new file mode 100644 index 0000000..d128196 Binary files /dev/null and b/Docs/Ansible_Tower_in_the_Software_Development_Lifecycle.pdf differ diff --git a/Docs/Ansible_in_Depth.pdf b/Docs/Ansible_in_Depth.pdf new file mode 100644 index 0000000..0ab3644 Binary files /dev/null and b/Docs/Ansible_in_Depth.pdf differ diff --git a/Docs/Control-with-Ansible-Tower.pdf b/Docs/Control-with-Ansible-Tower.pdf new file mode 100644 index 0000000..a075026 Binary files /dev/null and b/Docs/Control-with-Ansible-Tower.pdf differ diff --git a/Docs/Dell Networking VXLAN 2.3.pdf b/Docs/Dell Networking VXLAN 2.3.pdf new file mode 100644 index 0000000..b14b193 Binary files /dev/null and b/Docs/Dell Networking VXLAN 2.3.pdf differ diff --git a/Docs/Devops_and_Legacy_Whitepaper.pdf b/Docs/Devops_and_Legacy_Whitepaper.pdf new file mode 100644 index 0000000..14e6338 Binary files /dev/null and b/Docs/Devops_and_Legacy_Whitepaper.pdf differ diff --git a/Docs/Schema HPC Cloud-1.ods b/Docs/Schema HPC Cloud-1.ods new file mode 100644 index 0000000..93c827f Binary files /dev/null and b/Docs/Schema HPC Cloud-1.ods differ diff --git a/Docs/The_Benefits_of_Agentless_Architecture.pdf b/Docs/The_Benefits_of_Agentless_Architecture.pdf new file mode 100644 index 0000000..6d37699 Binary files /dev/null and b/Docs/The_Benefits_of_Agentless_Architecture.pdf differ diff --git a/HPC Cloud - technische ontwerp.odt b/HPC Cloud - technische ontwerp.odt new file mode 100644 index 0000000..bb087e3 Binary files /dev/null and b/HPC Cloud - technische ontwerp.odt differ diff --git a/HPC Cloud - technische ontwerp.pdf b/HPC Cloud - technische ontwerp.pdf new file mode 100644 index 0000000..ea1e76f Binary files /dev/null and b/HPC Cloud - technische ontwerp.pdf differ diff --git a/Pics/Logo Snow.png b/Pics/Logo Snow.png new file mode 100644 index 0000000..351adb7 Binary files /dev/null and b/Pics/Logo Snow.png differ diff --git a/Pics/Snow logo.png b/Pics/Snow logo.png new file mode 100644 index 0000000..c121744 Binary files /dev/null and b/Pics/Snow logo.png differ diff --git a/Pics/rugr_logonl_rood_rgb-logo.png b/Pics/rugr_logonl_rood_rgb-logo.png new file mode 100644 index 0000000..538f997 Binary files /dev/null and b/Pics/rugr_logonl_rood_rgb-logo.png differ diff --git a/Pics/rugr_logonl_rood_rgb-x.png b/Pics/rugr_logonl_rood_rgb-x.png new file mode 100644 index 0000000..642afdc Binary files /dev/null and b/Pics/rugr_logonl_rood_rgb-x.png differ diff --git a/Pics/rugr_logonl_rood_rgb.png b/Pics/rugr_logonl_rood_rgb.png new file mode 100644 index 0000000..d40622f Binary files /dev/null and b/Pics/rugr_logonl_rood_rgb.png differ diff --git a/Vragen-1.odt b/Vragen-1.odt new file mode 100644 index 0000000..3992924 Binary files /dev/null and b/Vragen-1.odt differ diff --git a/Vragen-1.pdf b/Vragen-1.pdf new file mode 100644 index 0000000..3180a24 Binary files /dev/null and b/Vragen-1.pdf differ